Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/merge/src/orxonox/Orxonox.cc @ 1266

Last change on this file since 1266 was 1266, checked in by rgrieder, 16 years ago
  • another fix
File size: 15.7 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 *      Benjamin Knecht <beni_at_orxonox.net>, (C) 2007
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
30 @file
31 @brief Orxonox Main Class
32 */
33
34// Precompiled Headers
35#include "OrxonoxStableHeaders.h"
36#include "Orxonox.h"
37
38//****** STD *******
39#include <deque>
40
41//****** OGRE ******
42#include <OgreFrameListener.h>
43#include <OgreOverlay.h>
44#include <OgreOverlayManager.h>
45#include <OgreRoot.h>
46#include <OgreTimer.h>
47#include <OgreWindowEventUtilities.h>
48
49//***** ORXONOX ****
50// util
51//#include "util/Sleep.h"
52#include "util/ArgReader.h"
53#include "util/ExprParser.h"
54
55// core
56#include "core/ConfigFileManager.h"
57#include "core/ConsoleCommand.h"
58#include "core/Debug.h"
59#include "core/Factory.h"
60#include "core/Loader.h"
61#include "core/Tickable.h"
62#include "core/InputBuffer.h"
63#include "core/InputManager.h"
64#include "core/TclBind.h"
65
66// audio
67#include "audio/AudioManager.h"
68
69// network
70#include "network/Server.h"
71#include "network/Client.h"
72
73// objects and tools
74#include "tools/Timer.h"
75#include "hud/HUD.h"
76#include "console/InGameConsole.h"
77
78// FIXME: is this really file scope?
79// globals for the server or client
80network::Client *client_g;
81network::Server *server_g;
82
83namespace orxonox
84{
85  ConsoleCommandShortcut(Orxonox, exit, AccessLevel::None);
86  ConsoleCommandShortcut(Orxonox, slomo, AccessLevel::Offline).setDefaultValue(0, 1.0);
87  ConsoleCommandShortcut(Orxonox, setTimeFactor, AccessLevel::Offline).setDefaultValue(0, 1.0);
88  ConsoleCommandShortcut(Orxonox, activateConsole, AccessLevel::None);
89  class Testconsole : public InputBufferListener
90  {
91    public:
92      Testconsole(InputBuffer* ib) : ib_(ib) {}
93      void listen() const
94      {
95        std::cout << "> " << this->ib_->get() << std::endl;
96      }
97      void execute() const
98      {
99        std::cout << ">> " << this->ib_->get() << std::endl;
100        if (!CommandExecutor::execute(this->ib_->get()))
101          std::cout << "Error" << std::endl;
102        this->ib_->clear();
103      }
104      void hintandcomplete() const
105      {
106        std::cout << CommandExecutor::hint(this->ib_->get()) << std::endl;
107        this->ib_->set(CommandExecutor::complete(this->ib_->get()));
108      }
109      void clear() const
110      {
111        this->ib_->clear();
112      }
113      void removeLast() const
114      {
115        this->ib_->removeLast();
116      }
117      void exit() const
118      {
119        InputManager::setInputState(InputManager::IS_NORMAL);
120      }
121
122    private:
123      InputBuffer* ib_;
124  };
125
126  class Calculator
127  {
128  public:
129    static float calculate(const std::string& calculation)
130    {
131      ExprParser expr(calculation);
132      if (expr.getSuccess())
133      {
134        if (expr.getResult() == 42.0)
135          std::cout << "Greetings from the restaurant at the end of the universe." << std::endl;
136        // FIXME: insert modifier to display in full precision
137        std::cout << "Result is: " << expr.getResult() << std::endl;
138        if (expr.getRemains() != "")
139          std::cout << "Warning: Expression could not be parsed to the end! Remains: '"
140              << expr.getRemains() << "'" << std::endl;
141        return expr.getResult();
142      }
143      else
144      {
145        std::cout << "Cannot calculate expression: Parse error" << std::endl;
146        return 0;
147      }
148    }
149  };
150  ConsoleCommandShortcut(Calculator, calculate, AccessLevel::None);
151
152  /**
153    @brief Reference to the only instance of the class.
154  */
155  Orxonox *Orxonox::singletonRef_s = 0;
156
157  /**
158   * Create a new instance of Orxonox. Avoid doing any actual work here.
159   */
160  Orxonox::Orxonox() :
161    ogre_(0),
162    //auMan_(0),
163    timer_(0),
164    // turn on frame smoothing by setting a value different from 0
165    frameSmoothingTime_(0.0f),
166    orxonoxConsole_(0),
167    orxonoxHUD_(0),
168    bAbort_(false),
169    timefactor_(1.0f),
170    mode_(STANDALONE),
171    serverIp_("")
172  {
173  }
174
175  /**
176   * Destruct Orxonox.
177   */
178  Orxonox::~Orxonox()
179  {
180    // keep in mind: the order of deletion is very important!
181    if (this->orxonoxHUD_)
182      delete this->orxonoxHUD_;
183    Loader::close();
184    InputManager::destroy();
185    //if (this->auMan_)
186    //  delete this->auMan_;
187    if (this->timer_)
188      delete this->timer_;
189    GraphicsEngine::getSingleton().destroy();
190
191    if (network::Client::getSingleton())
192      network::Client::destroySingleton();
193    if (server_g)
194      delete server_g;
195  }
196
197
198  /**
199    Asks the mainloop nicely to abort.
200  */
201  void Orxonox::abortRequest()
202  {
203    COUT(3) << "*** Orxonox: Abort requested." << std::endl;
204    bAbort_ = true;
205  }
206
207  /**
208   * @return singleton reference
209   */
210  Orxonox* Orxonox::getSingleton()
211  {
212    if (!singletonRef_s)
213      singletonRef_s = new Orxonox();
214    return singletonRef_s;
215  }
216
217  /**
218    @brief Destroys the Orxonox singleton.
219  */
220  void Orxonox::destroySingleton()
221  {
222    if (singletonRef_s)
223      delete singletonRef_s;
224    singletonRef_s = 0;
225  }
226
227  /**
228   * initialization of Orxonox object
229   * @param argc argument counter
230   * @param argv list of argumenst
231   * @param path path to config (in home dir or something)
232   */
233  bool Orxonox::init(int argc, char **argv, std::string path)
234  {
235    //TODO: find config file (assuming executable directory)
236    //TODO: read config file
237    //TODO: give config file to Ogre
238    std::string mode;
239    std::string dataPath;
240
241    ArgReader ar(argc, argv);
242    ar.checkArgument("mode", mode, false);
243    ar.checkArgument("data", dataPath, false);
244    ar.checkArgument("ip", serverIp_, false);
245    if(ar.errorHandling())
246      return false;
247
248    COUT(3) << "*** Orxonox: Mode is " << mode << "." << std::endl;
249    if (mode == "client")
250      mode_ = CLIENT;
251    else if (mode == "server")
252      mode_ = SERVER;
253    else
254      mode_ = STANDALONE;
255
256    //if (mode_ == DEDICATED)
257      // TODO: decide what to do here
258    //else
259
260    // for playable server, client and standalone, the startup
261    // procedure until the GUI is identical
262
263    TclBind::getInstance().setDataPath(dataPath);
264    ConfigFileManager::getSingleton()->setFile(CFT_Settings, "orxonox.ini");
265    Factory::createClassHierarchy();
266
267    ogre_ = &GraphicsEngine::getSingleton();
268    if (!ogre_->setup(path))       // creates ogre root and other essentials
269      return false;
270
271    return true;
272  }
273
274  /**
275   * start modules
276   */
277  bool Orxonox::start()
278  {
279    //if (mode == DEDICATED)
280    // do something else
281    //else
282
283    if (!ogre_->loadRenderer())    // creates the render window
284      return false;
285
286    // Calls the InputManager which sets up the input devices.
287    // The render window width and height are used to set up the mouse movement.
288    if (!InputManager::initialise(ogre_->getWindowHandle(),
289          ogre_->getWindowWidth(), ogre_->getWindowHeight()))
290      return false;
291
292    // TODO: Spread this so that this call only initialises things needed for the GUI
293    if (!ogre_->initialiseResources())
294      return false;
295
296    // TOOD: load the GUI here
297    // set InputManager to GUI mode
298    InputManager::setInputState(InputManager::IS_GUI);
299    // TODO: run GUI here
300
301    // The following lines depend very much on the GUI output, so they're probably misplaced here..
302
303    InputManager::setInputState(InputManager::IS_NONE);
304
305    if (!loadPlayground())
306      return false;
307
308    switch (mode_)
309    {
310    case SERVER:
311      if (!serverLoad())
312        return false;
313      break;
314    case CLIENT:
315      if (!clientLoad())
316        return false;
317      break;
318    default:
319      if (!standaloneLoad())
320        return false;
321    }
322
323    InputManager::setInputState(InputManager::IS_NORMAL);
324
325    return startRenderLoop();
326  }
327
328  /**
329   * Loads everything in the scene except for the actual objects.
330   * This includes HUD, Console..
331   */
332  bool Orxonox::loadPlayground()
333  {
334    ogre_->createNewScene();
335
336          // Init audio
337    //auMan_ = new audio::AudioManager();
338    //auMan_->ambientAdd("a1");
339    //auMan_->ambientAdd("a2");
340    //auMan_->ambientAdd("a3");
341    //auMan->ambientAdd("ambient1");
342    //auMan_->ambientStart();
343
344    // Load the HUD
345    COUT(3) << "*** Orxonox: Loading HUD..." << std::endl;
346    Ogre::Overlay* hudOverlay = Ogre::OverlayManager::getSingleton().getByName("Orxonox/HUD1.2");
347    orxonoxHUD_ = new HUD();
348    orxonoxHUD_->setEnergyValue(20);
349    orxonoxHUD_->setEnergyDistr(20,20,60);
350    hudOverlay->show();
351
352    COUT(3) << "*** Orxonox: Loading Console..." << std::endl;
353    InputBuffer* ib = dynamic_cast<InputBuffer*>(InputManager::getKeyHandler("buffer"));
354    /*
355    Testconsole* console = new Testconsole(ib);
356    ib->registerListener(console, &Testconsole::listen, true);
357    ib->registerListener(console, &Testconsole::execute, '\r', false);
358    ib->registerListener(console, &Testconsole::hintandcomplete, '\t', true);
359    ib->registerListener(console, &Testconsole::clear, '§', true);
360    ib->registerListener(console, &Testconsole::removeLast, '\b', true);
361    ib->registerListener(console, &Testconsole::exit, (char)0x1B, true);
362    */
363    orxonoxConsole_ = new InGameConsole(ib);
364    ib->registerListener(orxonoxConsole_, &InGameConsole::listen, true);
365    ib->registerListener(orxonoxConsole_, &InGameConsole::execute, '\r', false);
366    ib->registerListener(orxonoxConsole_, &InGameConsole::hintandcomplete, '\t', true);
367    ib->registerListener(orxonoxConsole_, &InGameConsole::clear, '§', true);
368    ib->registerListener(orxonoxConsole_, &InGameConsole::removeLast, '\b', true);
369    ib->registerListener(orxonoxConsole_, &InGameConsole::exit, (char)0x1B, true);
370
371    return true;
372  }
373
374  /**
375   * Level loading method for server mode.
376   */
377  bool Orxonox::serverLoad()
378  {
379    COUT(2) << "Loading level in server mode" << std::endl;
380
381    server_g = new network::Server();
382
383    if (!loadScene())
384      return false;
385
386    server_g->open();
387
388    return true;
389  }
390
391  /**
392   * Level loading method for client mode.
393   */
394  bool Orxonox::clientLoad()
395  {
396    COUT(2) << "Loading level in client mode" << std::endl;\
397
398    if (serverIp_.compare("") == 0)
399      client_g = network::Client::createSingleton();
400    else
401      client_g = network::Client::createSingleton(serverIp_, NETWORK_PORT);
402
403    client_g->establishConnection();
404    client_g->tick(0);
405
406    return true;
407  }
408
409  /**
410   * Level loading method for standalone mode.
411   */
412  bool Orxonox::standaloneLoad()
413  {
414    COUT(2) << "Loading level in standalone mode" << std::endl;
415
416    if (!loadScene())
417      return false;
418
419    return true;
420  }
421
422  /**
423   * Helper method to load a level.
424   */
425  bool Orxonox::loadScene()
426  {
427    Level* startlevel = new Level("levels/sample.oxw");
428    Loader::open(startlevel);
429
430    return true;
431  }
432
433
434  /**
435    Main loop of the orxonox game.
436    About the loop: The design is almost exactly like the one in ogre, so that
437    if any part of ogre registers a framelisteners, it will still behave
438    correctly. Furthermore the time smoothing feature from ogre has been
439    implemented too. If turned on (see orxonox constructor), it will calculate
440    the dt_n by means of the recent most dt_n-1, dt_n-2, etc.
441  */
442  bool Orxonox::startRenderLoop()
443  {
444    // first check whether ogre root object has been created
445    if (Ogre::Root::getSingletonPtr() == 0)
446    {
447      COUT(2) << "*** Orxonox Error: Could not start rendering. No Ogre root object found" << std::endl;
448      return false;
449    }
450    Ogre::Root& ogreRoot = Ogre::Root::getSingleton();
451
452
453    // Contains the times of recently fired events
454    // eventTimes[4] is the list for the times required for the fps counter
455    std::deque<unsigned long> eventTimes[4];
456    // Clear event times
457    for (int i = 0; i < 4; ++i)
458      eventTimes[i].clear();
459    // fill the fps time list with zeros
460    for (int i = 0; i < 50; i++)
461      eventTimes[3].push_back(0);
462
463    // use the ogre timer class to measure time.
464    if (!timer_)
465      timer_ = new Ogre::Timer();
466    timer_->reset();
467
468    COUT(3) << "*** Orxonox: Starting the main loop." << std::endl;
469          while (!bAbort_)
470          {
471                  // Pump messages in all registered RenderWindows
472      // This calls the WindowEventListener objects.
473      Ogre::WindowEventUtilities::messagePump();
474
475      // get current time
476      unsigned long now = timer_->getMilliseconds();
477      eventTimes[3].push_back(now);
478      eventTimes[3].erase(eventTimes[3].begin());
479
480      // create an event to pass to the frameStarted method in ogre
481      Ogre::FrameEvent evt;
482      evt.timeSinceLastEvent = calculateEventTime(now, eventTimes[0]);
483      evt.timeSinceLastFrame = calculateEventTime(now, eventTimes[1]);
484
485      // show the current time in the HUD
486      orxonoxHUD_->setTime((int)now, 0);
487      orxonoxHUD_->setRocket2(ogreRoot.getCurrentFrameNumber());
488      if (eventTimes[3].back() - eventTimes[3].front() != 0)
489        orxonoxHUD_->setRocket1((int)(50000.0f/(eventTimes[3].back() - eventTimes[3].front())));
490
491      // Iterate through all Tickables and call their tick(dt) function
492      for (Iterator<Tickable> it = ObjectList<Tickable>::start(); it; ++it)
493        it->tick((float)evt.timeSinceLastFrame * this->timefactor_);
494      orxonoxConsole_->tick((float)evt.timeSinceLastFrame * this->timefactor_);
495
496      // don't forget to call _fireFrameStarted in ogre to make sure
497      // everything goes smoothly
498      ogreRoot._fireFrameStarted(evt);
499
500      // server still renders at the moment
501      //if (mode_ != SERVER)
502      ogreRoot._updateAllRenderTargets(); // only render in non-server mode
503
504      // get current time
505      now = timer_->getMilliseconds();
506
507      // create an event to pass to the frameEnded method in ogre
508      evt.timeSinceLastEvent = calculateEventTime(now, eventTimes[0]);
509      evt.timeSinceLastFrame = calculateEventTime(now, eventTimes[2]);
510
511      // again, just to be sure ogre works fine
512      ogreRoot._fireFrameEnded(evt);
513          }
514
515    if(mode_==CLIENT)
516      network::Client::getSingleton()->closeConnection();
517    else if(mode_==SERVER)
518      server_g->close();
519    return true;
520  }
521
522  /**
523    Method for calculating the average time between recently fired events.
524    Code directly taken from OgreRoot.cc
525    @param now The current time in ms.
526    @param type The type of event to be considered.
527  */
528  float Orxonox::calculateEventTime(unsigned long now, std::deque<unsigned long> &times)
529  {
530    // Calculate the average time passed between events of the given type
531    // during the last frameSmoothingTime_ seconds.
532
533    times.push_back(now);
534
535    if(times.size() == 1)
536      return 0;
537
538    // Times up to frameSmoothingTime_ seconds old should be kept
539    unsigned long discardThreshold = (unsigned long)(frameSmoothingTime_ * 1000.0f);
540
541    // Find the oldest time to keep
542    std::deque<unsigned long>::iterator it  = times.begin();
543    // We need at least two times
544    std::deque<unsigned long>::iterator end = times.end() - 2;
545
546    while(it != end)
547    {
548      if (now - *it > discardThreshold)
549        ++it;
550      else
551        break;
552    }
553
554    // Remove old times
555    times.erase(times.begin(), it);
556
557    return (float)(times.back() - times.front()) / ((times.size() - 1) * 1000);
558  }
559
560  /**
561   * Static function that shows the console in game mode.
562   */
563  void Orxonox::activateConsole()
564  {
565    // currently, the console shows itself when feeded with input.
566    InputManager::setInputState(InputManager::IS_CONSOLE);
567  }
568}
Note: See TracBrowser for help on using the repository browser.