Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 18, 2011, 2:35:02 PM (13 years ago)
Author:
jo
Message:

Merged SpaceraceTwo. Old racelevel does not work anymore.

Location:
code/branches/presentation2011
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2011

  • code/branches/presentation2011/src/orxonox/gametypes/Gametype.cc

    r8980 r8998  
    8585        this->dedicatedKillBots_ = createConsoleCommand( "dedicatedKillBots", createExecutor( createFunctor(&Gametype::killBots, this) ) );
    8686        /* HACK HACK HACK */
    87         //this->numberOfPlayers_ = 0;
    8887    }
    8988
     
    124123        if (this->gtinfo_->isStartCountdownRunning() && !this->gtinfo_->hasStarted())
    125124            this->gtinfo_->countdownStartCountdown(dt);
    126 
     125                       
    127126        if (!this->gtinfo_->hasStarted())
    128127        {
     
    132131                if(it->first->isHumanPlayer() && it->first->isReadyToSpawn())
    133132                    this->gtinfo_->playerReadyToSpawn(it->first);
    134             }
    135 
     133                   
     134               
     135            }
    136136            this->checkStart();
    137137        }
     
    144144    void Gametype::start()
    145145    {
     146         
    146147        this->addBots(this->numberOfBots_);
    147148
     
    149150
    150151        this->spawnPlayersIfRequested();
     152       
     153       
    151154    }
    152155
     
    377380                {
    378381                    this->gtinfo_->stopStartCountdown();
    379                     this->gtinfo_->setStartCountdown(0.0f);;
     382                    this->gtinfo_->setStartCountdown(0.0f);
    380383                    this->start();
    381384                }
     
    398401                            hashumanplayers = true;
    399402                    }
     403                         
    400404                    if (allplayersready && hashumanplayers)
    401405                    {
     
    409413                }
    410414            }
     415           
    411416        }
    412417    }
  • code/branches/presentation2011/src/orxonox/gametypes/Gametype.h

    r8980 r8998  
    155155              { return this->gtinfo_->getNumberOfPlayers(); }
    156156
     157       
     158
    157159        protected:
    158160            virtual SpawnPoint* getBestSpawnPoint(PlayerInfo* player) const;
  • code/branches/presentation2011/src/orxonox/infos/GametypeInfo.cc

    r8858 r8998  
    7171        this->bStarted_ = false;
    7272        this->bEnded_ = false;
    73         this->startCountdown_ = 0.0f;
     73        this->startCountdown_ = 10.0f;
    7474        this->bStartCountdownRunning_ = false;
    75         this->counter_ = 0;
     75        this->counter_ = 10;
    7676        this->spawned_ = false;
    7777        this->readyToSpawn_ = false;
     
    164164    {
    165165        if(this->bStarted_)
    166             return;
     166           { return;}
    167167       
    168168        this->bStarted_ = true;
    169169        this->changedStarted();
     170       
     171       
    170172    }
    171173
  • code/branches/presentation2011/src/orxonox/infos/PlayerInfo.cc

    r8988 r8998  
    5858
    5959        this->registerVariables();
     60       
    6061    }
    6162
Note: See TracChangeset for help on using the changeset viewer.