mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 00:17:25 +02:00
CR feedback
This commit is contained in:
parent
47c4ff887e
commit
c2ebd6fc95
2 changed files with 12 additions and 6 deletions
|
@ -33,4 +33,10 @@ const PACKET_HEADER PACKET_HEADER_ENVIRONMENT_DATA = 'e';
|
|||
const PACKET_HEADER PACKET_HEADER_DOMAIN_LIST_REQUEST = 'L';
|
||||
const PACKET_HEADER PACKET_HEADER_DOMAIN_RFD = 'C';
|
||||
|
||||
|
||||
// These are supported Z-Command
|
||||
#define ERASE_ALL_COMMAND "erase all"
|
||||
#define ADD_SCENE_COMMAND "add scene"
|
||||
#define TEST_COMMAND "a message"
|
||||
|
||||
#endif
|
||||
|
|
|
@ -628,16 +628,16 @@ int main(int argc, const char * argv[]) {
|
|||
printf("got Z message len(%ld)= %s\n", receivedBytes, command);
|
||||
|
||||
while (totalLength <= receivedBytes) {
|
||||
if (strcmp(command, (char*)"erase all") == 0) {
|
||||
if (strcmp(command, ERASE_ALL_COMMAND) == 0) {
|
||||
printf("got Z message == erase all\n");
|
||||
|
||||
eraseVoxelTreeAndCleanupAgentVisitData();
|
||||
}
|
||||
if (strcmp(command, (char*)"add scene") == 0) {
|
||||
if (strcmp(command, ADD_SCENE_COMMAND) == 0) {
|
||||
printf("got Z message == add scene\n");
|
||||
addSphereScene(&randomTree);
|
||||
}
|
||||
if (strcmp(command, (char*)"a message") == 0) {
|
||||
if (strcmp(command, TEST_COMMAND) == 0) {
|
||||
printf("got Z message == a message, nothing to do, just report\n");
|
||||
}
|
||||
totalLength += commandLength + 1; // 1 for null termination
|
||||
|
|
Loading…
Reference in a new issue