Changeset 6983 in orxonox.OLD for branches/network
- Timestamp:
- Feb 2, 2006, 3:30:59 PM (19 years ago)
- Location:
- branches/network/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/network_game_manager.cc
r6959 r6983 539 539 PRINTF(0)("Fabricated %s with id %d\n", s->getClassName(), s->getUniqueID()); 540 540 541 // HACK: hack to prevent collision541 //TODO HACK: hack to prevent collision 542 542 if ( b->isA(CL_WORLD_ENTITY) && !b->isA(CL_PLAYABLE) ) 543 543 { … … 551 551 } 552 552 } 553 /// HACK this is only for network multiplayer games.553 ///TODO HACK this is only for network multiplayer games. 554 554 if( b->isA(CL_SPACE_SHIP)) 555 555 { -
branches/network/src/lib/network/network_socket.cc
r6959 r6983 444 444 if (blen>maxLength) 445 445 { 446 PRINTF(1)("Buffersize is too small (%d) for packet (%d) \n", maxLength, blen);446 PRINTF(1)("Buffersize is too small (%d) for packet (%d).\n", maxLength, blen); 447 447 assert(false); 448 448 return 0; -
branches/network/src/lib/network/network_socket.h
r6959 r6983 8 8 #define _NETWORK_SOCKET 9 9 10 // HACK else gdb will not work on server10 //TODO HACK else gdb will not work on server 11 11 #define DONTEXITTHREADS 12 12 -
branches/network/src/world_entities/playable.h
r6959 r6983 81 81 int oldScore; 82 82 83 // HACK: explosion emitter83 //TODO HACK: explosion emitter 84 84 DotEmitter* emitter; 85 85 SpriteParticles* explosionParticles; -
branches/network/src/world_entities/space_ships/space_ship.cc
r6963 r6983 96 96 { 97 97 //this->loadModel("models/ships/reap_#.obj"); 98 // /HACK this is only for network multiplayer games.98 //TODO HACK this is only for network multiplayer games. 99 99 if( this->getOwner()%2 == 0) 100 100 {
Note: See TracChangeset
for help on using the changeset viewer.