Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9396 in orxonox.OLD for branches/proxy/src/util


Ignore:
Timestamp:
Jul 23, 2006, 10:07:23 PM (18 years ago)
Author:
patrick
Message:

committing my weekends work: 2100 lines :D

  • proxy server now accepts and synchronizes clients like a master server
  • network manager got different network setup interface
  • network stream got different constructure scheme
  • permissions checking and algorithm extended and changed
  • starting ability to connect to multiple network nodes at the same time
  • some very much smaller changes here and there
Location:
branches/proxy/src/util
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/proxy/src/util/game_rules.cc

    r9387 r9396  
    8787void GameRules::registerKill(const Kill& kill)
    8888{
    89   if ( !SharedNetworkData::getInstance()->isMasterServer() )
     89  if ( SharedNetworkData::getInstance()->isClient() )
    9090    return;
    9191
  • branches/proxy/src/util/kill_target.cc

    r9357 r9396  
    5656
    5757
    58 MissionState KillTarget::checkMissionGoal(float dt) {}
     58MissionState KillTarget::checkMissionGoal(float dt)
     59{
    5960
     61}
     62
  • branches/proxy/src/util/multiplayer_team_deathmatch.cc

    r9371 r9396  
    204204  assignPlayable();
    205205
    206   if ( !SharedNetworkData::getInstance()->isMasterServer() )
     206  if ( SharedNetworkData::getInstance()->isClient() )
    207207    return;
    208208
     
    268268void MultiplayerTeamDeathmatch::checkGameRules()
    269269{
    270   if ( !SharedNetworkData::getInstance()->isMasterServer() )
     270  if ( SharedNetworkData::getInstance()->isClient() )
    271271    return;
    272272
Note: See TracChangeset for help on using the changeset viewer.