Changeset 6937 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Feb 1, 2006, 2:32:16 PM (19 years ago)
- Location:
- branches/network/src/lib/network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/network_game_manager.cc
r6917 r6937 576 576 { 577 577 assert((*it)->isA(CL_WORLD_ENTITY)); 578 dynamic_cast<WorldEntity*>(*it)->leaveWorld(); 578 579 dynamic_cast<WorldEntity*>(*it)->toList(OM_DEAD); 579 580 break; -
branches/network/src/lib/network/synchronizeable.h
r6868 r6937 34 34 NWT_SS_VELZ, 35 35 NWT_SS_PL_SYNC, 36 36 NWT_SS_CO_N, 37 NWT_SS_CO_CLID, 38 37 39 NWT_HS_HOST_ID, 38 40 NWT_HS_NGM_ID, 39 41 40 42 NWT_PL_FLAGS, 41 43 42 44 NWT_PN_BO_WRITESTATE, 43 45 NWT_PN_PARENTMODE, … … 49 51 NWT_PN_ROTZ, 50 52 NWT_PN_ROTV, 51 53 52 54 NWT_PN_FLAGS, 53 55 NWT_PN_SCOORX, … … 58 60 NWT_PN_SROTZ, 59 61 NWT_PN_SROTV, 60 62 61 63 NWT_BO_NAME, 62 64 63 65 NWT_WE_PN_WRITESTATE, 64 66 NWT_WE_PN_MODELFILENAME, 65 67 NWT_WE_PN_SCALING, 66 68 67 69 NWT_GT_WE_STATE, 68 70 69 71 NWT_SB_WE_STATE, 70 72 NWT_SB_SIZE, 71 73 NWT_SB_TEXTURENAME, 72 74 73 75 NWT_TER_WE_STATE, 74 76 75 77 NWT_PU_WE_STATE, 76 78 77 79 NWT_TPU_WE_STATE, 78 80 79 81 NWT_LPU_WE_STATE, 80 82 81 83 NWT_WPU_WE_STATE, 82 84 83 85 NWT_PPU_WE_STATE, 84 86 NWT_PPU_TYPE, … … 133 135 * delete[] textureName; 134 136 * textureName = NULL; 135 * SYNCHELP_READ_STRINGM( texturename ); //this will call new char[strlen()+1] 137 * SYNCHELP_READ_STRINGM( texturename ); //this will call new char[strlen()+1] 136 138 * 137 139 * Example 2: … … 142 144 * 143 145 */ 144 146 145 147 #define SYNCHELP_WRITE_DEBUG(n) {\ 146 148 __synchelp_write_n = Converter::intToByteArray( n, data+__synchelp_write_i, maxLength-__synchelp_write_i ); \
Note: See TracChangeset
for help on using the changeset viewer.