Changeset 9371 in orxonox.OLD for branches/proxy/src/lib/network
- Timestamp:
- Jul 20, 2006, 11:08:16 PM (18 years ago)
- Location:
- branches/proxy/src/lib/network
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/network_game_manager.cc
r9357 r9371 288 288 if ( list && std::find( list->begin(), list->end(), *it ) != list->end() ) 289 289 { 290 PRINTF(0)("Delete unused playable: %s owner: %d\n", (*it)->getClass Name(), (*it)->getOwner() );290 PRINTF(0)("Delete unused playable: %s owner: %d\n", (*it)->getClassCName(), (*it)->getOwner() ); 291 291 std::list<Playable*>::iterator delit = it; 292 292 it++; -
branches/proxy/src/lib/network/network_stream.cc
r9367 r9371 208 208 hs->setPreferedNickName( Preferences::getInstance()->getString( "multiplayer", "nickname", "Player" ) ); 209 209 210 PRINTF(0)("NetworkStream: Handshake created: %s\n", hs->get Name());210 PRINTF(0)("NetworkStream: Handshake created: %s\n", hs->getCName()); 211 211 } 212 212 … … 447 447 { 448 448 if( (*it)->beSynchronized() == true) 449 PRINT(0)(" Synchronizeable of class: %s::%s, with unique ID: %i, Synchronize: %i\n", (*it)->getClass Name(), (*it)->getName(),449 PRINT(0)(" Synchronizeable of class: %s::%s, with unique ID: %i, Synchronize: %i\n", (*it)->getClassCName(), (*it)->getCName(), 450 450 (*it)->getUniqueID(), (*it)->beSynchronized()); 451 451 } … … 850 850 sync->setSynchronized(true); 851 851 852 PRINTF(0)("Fabricated %s with id %d\n", sync->getClass Name(), sync->getUniqueID());852 PRINTF(0)("Fabricated %s with id %d\n", sync->getClassCName(), sync->getUniqueID()); 853 853 } 854 854 else -
branches/proxy/src/lib/network/synchronizeable.cc
r9347 r9371 229 229 if ( i != neededSize ) 230 230 { 231 PRINTF(0)("strange error: (%s) %d != %d\n", this->getClass Name(), i, neededSize);231 PRINTF(0)("strange error: (%s) %d != %d\n", this->getClassCName(), i, neededSize); 232 232 assert(false); 233 233 }
Note: See TracChangeset
for help on using the changeset viewer.