Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/core/RootGameState.cc @ 1756

Last change on this file since 1756 was 1756, checked in by rgrieder, 16 years ago

Fixed a bug in Core.cc when creating it via getInstance directly for the first time.

  • Property svn:eol-style set to native
File size: 6.5 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Reto Grieder
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "RootGameState.h"
30
31#include "util/String.h"
32#include "util/SubString.h"
33#include "util/Debug.h"
34#include "Core.h"
35#include "Clock.h"
36#include "Exception.h"
37#include "CommandLine.h"
38
39namespace orxonox
40{
41    SetCommandLineArgument(state, "gui").setShortcut("s");
42
43    RootGameState::RootGameState(const std::string& name)
44        : GameState<GameStateBase>(name)
45        , stateRequest_("")
46    {
47    }
48
49    RootGameState::~RootGameState()
50    {
51    }
52
53    /**
54    @brief
55        Internal method that actually makes the state transition. Since it is internal,
56        the method can assume certain things to be granted (like 'this' is always active).
57    */
58    void RootGameState::makeTransition(GameStateBase* source, GameStateBase* destination)
59    {
60        if (source != 0)
61        {
62            // transition was not initiated by root itself
63            this->activeChild_ = 0;
64        }
65
66        if (destination == this)
67        {
68            // this marks the end of the game.
69            return;
70        }
71
72        // Check for 'destination' in the children map first
73        std::map<GameStateBase*, GameStateBase*>::const_iterator it
74            = this->grandchildrenToChildren_.find(destination);
75        if (it != this->grandchildrenToChildren_.end())
76        {
77            OrxAssert(dynamic_cast<GameStateBase*>(it->second) != 0,
78                "There was a mix with RootGameState and GameState, could not cast.");
79            GameStateBase* child = static_cast<GameStateBase*>(it->second);
80            // child state. Don't use 'state', might be a grandchild!
81            this->activeChild_ = child;
82            child->makeTransition(this, destination);
83        }
84        else
85        {
86            // root doesn't have a parent..
87            OrxAssert(false, "GameState '" + destination->getName() + "' not found in children list of Root.");
88        }
89    }
90
91    void RootGameState::gotoState(const std::string& name)
92    {
93        GameStateBase* request = getState(name);
94        if (request)
95        {
96            GameStateBase* current = getCurrentState();
97            if (current)
98            {
99                current->makeTransition(0, request);
100            }
101            else
102            {
103                // Root is not yet active. This is a violation.
104                ThrowException(GameState, "Activate Root before requesting a state.");
105            }
106        }
107        else
108        {
109            COUT(2) << "Warning: GameState '" << name << "' doesn't exist." << std::endl;
110        }
111    }
112
113    /**
114    @brief
115        Makes a state transition according to the state tree. You can choose any state
116        in the tree to do the call. The function finds the current state on its own.
117    @param state
118        The state to be entered, has to exist in the tree.
119    */
120    void RootGameState::requestState(const std::string& name)
121    {
122        this->stateRequest_ = name;
123    }
124
125    /**
126    @brief
127        Starts the game. The little 'while' denotes the main loop.
128        Whenever the root state is selected, the game ends.
129    @param name
130        State to start with (usually main menu or specified by command line)
131    */
132    void RootGameState::start(int argc, char** argv)
133    {
134        // start global orxonox time
135        Clock clock;
136
137        // create the Core settings to configure the output level
138        Core::getInstance();
139
140        parseArguments(argc, argv);
141
142        this->activate();
143
144        // get initial state from command line
145        std::string initialState;
146        CommandLine::getValue<std::string>("state", &initialState);
147        gotoState(initialState);
148
149        while (this->activeChild_)
150        {
151            clock.capture();
152
153            this->tick(clock);
154
155            if (this->stateRequest_ != "")
156                gotoState(stateRequest_);
157        }
158
159        this->deactivate();
160    }
161
162    /**
163    @brief
164        Parses both command line and start.ini for CommandLineArguments.
165    */
166    void RootGameState::parseArguments(int argc, char** argv)
167    {
168        // parse command line first
169        std::vector<std::string> args;
170        for (int i = 1; i < argc; ++i)
171            args.push_back(argv[i]);
172
173        try
174        {
175            orxonox::CommandLine::parse(args);
176        }
177        catch (orxonox::ArgumentException& ex)
178        {
179            COUT(1) << ex.what() << std::endl;
180            COUT(0) << "Usage:" << std::endl << "orxonox " << CommandLine::getUsageInformation() << std::endl;
181        }
182
183        // look for additional arguments in start.ini
184        std::ifstream file;
185        file.open("start.ini");
186        args.clear();
187        if (file)
188        {
189            while (!file.eof())
190            {
191                std::string line;
192                std::getline(file, line);
193                line = removeTrailingWhitespaces(line);
194                //if (!(line[0] == '#' || line[0] == '%'))
195                //{
196                SubString tokens(line, " ", " ", false, 92, false, 34, false, 40, 41, false, '#');
197                for (unsigned i = 0; i < tokens.size(); ++i)
198                    if (tokens[i][0] != '#')
199                        args.push_back(tokens[i]);
200                //args.insert(args.end(), tokens.getAllStrings().begin(), tokens.getAllStrings().end());
201                //}
202            }
203            file.close();
204        }
205
206        try
207        {
208            orxonox::CommandLine::parse(args);
209        }
210        catch (orxonox::ArgumentException& ex)
211        {
212            COUT(1) << "An Exception occured while parsing start.ini" << std::endl;
213            COUT(1) << ex.what() << std::endl;
214            COUT(0) << "Usage:" << std::endl << "orxonox " << CommandLine::getUsageInformation() << std::endl;
215        }
216    }
217}
Note: See TracBrowser for help on using the repository browser.