Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9371 in orxonox.OLD for branches/proxy/src/lib/network


Ignore:
Timestamp:
Jul 20, 2006, 11:08:16 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: ORXONOX is now completely std::stringed

Location:
branches/proxy/src/lib/network
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/proxy/src/lib/network/network_game_manager.cc

    r9357 r9371  
    288288      if ( list && std::find( list->begin(), list->end(), *it ) != list->end() )
    289289      {
    290         PRINTF(0)("Delete unused playable: %s owner: %d\n", (*it)->getClassName(), (*it)->getOwner() );
     290        PRINTF(0)("Delete unused playable: %s owner: %d\n", (*it)->getClassCName(), (*it)->getOwner() );
    291291        std::list<Playable*>::iterator delit = it;
    292292        it++;
  • branches/proxy/src/lib/network/network_stream.cc

    r9367 r9371  
    208208  hs->setPreferedNickName( Preferences::getInstance()->getString( "multiplayer", "nickname", "Player" ) );
    209209
    210   PRINTF(0)("NetworkStream: Handshake created: %s\n", hs->getName());
     210  PRINTF(0)("NetworkStream: Handshake created: %s\n", hs->getCName());
    211211}
    212212
     
    447447  {
    448448    if( (*it)->beSynchronized() == true)
    449       PRINT(0)("  Synchronizeable of class: %s::%s, with unique ID: %i, Synchronize: %i\n", (*it)->getClassName(), (*it)->getName(),
     449      PRINT(0)("  Synchronizeable of class: %s::%s, with unique ID: %i, Synchronize: %i\n", (*it)->getClassCName(), (*it)->getCName(),
    450450               (*it)->getUniqueID(), (*it)->beSynchronized());
    451451  }
     
    850850            sync->setSynchronized(true);
    851851
    852             PRINTF(0)("Fabricated %s with id %d\n", sync->getClassName(), sync->getUniqueID());
     852            PRINTF(0)("Fabricated %s with id %d\n", sync->getClassCName(), sync->getUniqueID());
    853853          }
    854854          else
  • branches/proxy/src/lib/network/synchronizeable.cc

    r9347 r9371  
    229229  if ( i != neededSize )
    230230  {
    231     PRINTF(0)("strange error: (%s) %d != %d\n", this->getClassName(), i, neededSize);
     231    PRINTF(0)("strange error: (%s) %d != %d\n", this->getClassCName(), i, neededSize);
    232232    assert(false);
    233233  }
Note: See TracChangeset for help on using the changeset viewer.