Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9977 for code/trunk


Ignore:
Timestamp:
Jan 4, 2014, 9:42:47 PM (10 years ago)
Author:
jo
Message:

So far so good. Unfortunately I did not figure out what is wrong with the timer.

Location:
code/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/data/gui/scripts/MiscConfigMenu.lua

    r9972 r9977  
    3030    table.insert(P.commandList, "Gametype initialStartCountdown_")
    3131    table.insert(P.commandList, "Gametype bAutoStart_")
    32     --table.insert(P.commandList, "Gametype bAutoEnd_")
     32    table.insert(P.commandList, "Gametype bAutoEnd_")
    3333    table.insert(P.commandList, "Gametype numberOfBots_")
    3434    table.insert(P.commandList, "UnderAttack gameTime_")
     
    5555    table.insert(P.nameList, "Start countdown")
    5656    table.insert(P.nameList, "Autostart")
    57     --table.insert(P.nameList, "Autoend")
     57    table.insert(P.nameList, "Autoend")
    5858    table.insert(P.nameList, "Number of Bots")
    5959    table.insert(P.nameList, "UnderAttack: game time")
  • code/trunk/src/orxonox/gametypes/Gametype.cc

    r9972 r9977  
    3535#include "core/GameMode.h"
    3636#include "core/command/ConsoleCommand.h"
    37 //#include "gamestates/GSLevel.h"
     37#include "gamestates/GSLevel.h"
    3838
    3939#include "infos/PlayerInfo.h"
     
    6262        this->bAutoStart_ = false;
    6363        this->bForceSpawn_ = false;
    64         //this->bAutoEnd_ = true;
     64        this->bAutoEnd_ = true;
    6565        this->numberOfBots_ = 0;
    6666
     
    106106        SetConfigValue(bAutoStart_, false);
    107107        SetConfigValue(bForceSpawn_, false);
    108         //SetConfigValue(bAutoEnd_, true);
     108        SetConfigValue(bAutoEnd_, true);
    109109        SetConfigValue(numberOfBots_, 0);
    110110        SetConfigValue(scoreboardTemplate_, "defaultScoreboard");
     
    154154    {
    155155        this->gtinfo_->end();
    156         //if (this->bAutoEnd_)
    157         //    this->showMenuTimer_.setTimer(2.5f, true, createExecutor(createFunctor(&Gametype::showMenu, this)));
     156        if (this->bAutoEnd_)
     157        {
     158            GSLevel::startMainMenu();
     159            //this->showMenuTimer_.setTimer(2.5f, true, createExecutor(createFunctor(&Gametype::showMenu, this)));
     160        }
    158161
    159162        for (std::map<PlayerInfo*, Player>::iterator it = this->players_.begin(); it != this->players_.end(); ++it)
     
    519522    }
    520523
    521     //void Gametype::showMenu()
    522     //{
    523     //  GSLevel::startMainMenu();
    524     //}
     524    void Gametype::showMenu()
     525    {
     526        GSLevel::startMainMenu();
     527    }
    525528}
  • code/trunk/src/orxonox/gametypes/Gametype.h

    r9972 r9977  
    159159            inline unsigned int getNumberOfPlayers() const
    160160                { return this->players_.size(); }
    161             //void showMenu();
     161            void showMenu();
    162162
    163163
     
    176176            bool bAutoStart_;
    177177            bool bForceSpawn_;
    178             //bool bAutoEnd_;
     178            bool bAutoEnd_;
    179179
    180180            float time_;
Note: See TracChangeset for help on using the changeset viewer.