Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/Orxonox.cc @ 1564

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