Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 23, 2011, 4:16:15 PM (13 years ago)
Author:
eceline
Message:

level Spacerace2 works now

Location:
code/branches/spaceraceTwo/src/orxonox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/spaceraceTwo/src/orxonox/gametypes/Gametype.cc

    r8944 r8949  
    134134               
    135135            }
    136            
    137              const std::string& message = "Gametype should start";
    138          orxout()<< message << endl;   
    139                 this->start();
    140                 const std::string& message2 = "Gametype should have started";
    141          orxout()<< message2 << endl;
     136             
     137                this->checkStart();
     138           
    142139         
    143140        }
     
    149146
    150147    void Gametype::start()
    151     { const std::string& message = "Gametype starts";
    152          orxout()<< message << endl;
     148    {
    153149         
    154150        this->addBots(this->numberOfBots_);
     
    158154        this->spawnPlayersIfRequested();
    159155       
    160          
     156       
    161157    }
    162158
     
    387383                {
    388384                    this->gtinfo_->stopStartCountdown();
    389                     this->gtinfo_->setStartCountdown(0.0f);;
     385                    this->gtinfo_->setStartCountdown(0.0f);
    390386                    this->start();
    391387                }
     
    408404                            hashumanplayers = true;
    409405                    }
     406                         
    410407                    if (allplayersready && hashumanplayers)
    411408                    {
     
    419416                }
    420417            }
     418           
    421419        }
    422420    }
  • code/branches/spaceraceTwo/src/orxonox/infos/GametypeInfo.cc

    r8944 r8949  
    164164    {
    165165        if(this->bStarted_)
    166            {const std::string& message = "bStarted true";
    167          orxout()<< message << endl; return;}
     166           { return;}
    168167       
    169168        this->bStarted_ = true;
    170169        this->changedStarted();
    171170       
    172         const std::string& message = "bStarted true";
    173          orxout()<< message << endl;
     171       
    174172    }
    175173
Note: See TracChangeset for help on using the changeset viewer.