Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 1564 was 1564, checked in by landauf, 16 years ago
  • several small changes in most of the HUD classes (code cleanup): removed obsolete variables, privatized all member variables, removed resizing functioncalls from tick, destroying overlayelements, added some const qualifiers.
  • moved calculation functions for RadarObject-position to Math.h and changed the phi/right/radius format to Vector2. the functions are used too by SpaceShipAI.
  • cycleNavigationFocus takes the nearest object if focus was NULL
  • BarOverlayElement works in both directions (left to right and right to left)
  • fixed bug causing SpaceShipAI to not stop shooting when losing target - this also speeds up orxonox a lot, because there are less projectiles

####################################

!! UPDATE YOUR MEDIA REPOSITORY !!

####################################
…or the BarOverlayElement will look strange

  • 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, Felix Schulthess
26 *
27 */
28
29 /**
30    @file orxonox.cc
31    @brief Orxonox class
32  */
33
34#include "OrxonoxStableHeaders.h"
35#include "GraphicsEngine.h"
36
37#include <fstream>
38
39#include <OgreConfigFile.h>
40#include <OgreException.h>
41#include <OgreLogManager.h>
42#include <OgreRoot.h>
43#include <OgreSceneManager.h>
44#include <OgreTextureManager.h>
45#include <OgreViewport.h>
46
47#include "core/CoreIncludes.h"
48#include "core/ConfigValueIncludes.h"
49#include "core/Debug.h"
50#include "core/CommandExecutor.h"
51#include "core/ConsoleCommand.h"
52#include "core/input/InputManager.h"
53
54#include "console/InGameConsole.h"
55#include "hud/HUD.h"
56#include "tools/ParticleInterface.h"
57#include "Settings.h"
58
59
60namespace orxonox {
61  /**
62    @brief Returns the singleton instance and creates it the first time.
63    @return The only instance of GraphicsEngine.
64  */
65  /*static*/ GraphicsEngine& GraphicsEngine::getSingleton()
66  {
67    static GraphicsEngine theOnlyInstance;
68    return theOnlyInstance;
69  }
70
71  /**
72    @brief Only use constructor to initialise variables and pointers!
73  */
74  GraphicsEngine::GraphicsEngine() :
75    root_(0),
76    scene_(0),
77    renderWindow_(0)
78  {
79    RegisterObject(GraphicsEngine);
80
81    this->detailLevelParticle_ = 0;
82
83    this->setConfigValues();
84    CCOUT(4) << "Constructed" << std::endl;
85  }
86
87  void GraphicsEngine::setConfigValues()
88  {
89    SetConfigValue(resourceFile_,    "resources.cfg").description("Location of the resources file in the data path.");
90    SetConfigValue(ogreConfigFile_,  "ogre.cfg").description("Location of the Ogre config file");
91    SetConfigValue(ogrePluginsFile_, "plugins.cfg").description("Location of the Ogre plugins file");
92    SetConfigValue(ogreLogFile_,     "ogre.log").description("Logfile for messages from Ogre. \
93                                                             Use \"\" to suppress log file creation.");
94    SetConfigValue(ogreLogLevelTrivial_ , 5).description("Corresponding orxonox debug level for ogre Trivial");
95    SetConfigValue(ogreLogLevelNormal_  , 4).description("Corresponding orxonox debug level for ogre Normal");
96    SetConfigValue(ogreLogLevelCritical_, 2).description("Corresponding orxonox debug level for ogre Critical");
97
98    unsigned int old = this->detailLevelParticle_;
99    SetConfigValue(detailLevelParticle_, 2).description("O: off, 1: low, 2: normal, 3: high");
100
101    if (this->detailLevelParticle_ != old)
102      for (Iterator<ParticleInterface> it = ObjectList<ParticleInterface>::begin(); it; ++it)
103        it->detailLevelChanged(this->detailLevelParticle_);
104  }
105
106  /**
107    @brief Called after main() --> call destroyObjects()!
108  */
109  GraphicsEngine::~GraphicsEngine()
110  {
111    this->destroy();
112  }
113
114  /**
115    @brief Destroys all the internal objects. Call this method when you
116           normally would call the destructor.
117  */
118  void GraphicsEngine::destroy()
119  {
120    CCOUT(4) << "Destroying objects..." << std::endl;
121    Ogre::WindowEventUtilities::removeWindowEventListener(this->renderWindow_, this);
122    if (this->root_)
123      delete this->root_;
124    this->root_ = 0;
125    this->scene_ = 0;
126    this->renderWindow_ = 0;
127    // delete the ogre log and the logManager (since we have created it).
128    if (Ogre::LogManager::getSingletonPtr() != 0)
129    {
130      Ogre::LogManager::getSingleton().getDefaultLog()->removeListener(this);
131      Ogre::LogManager::getSingleton().destroyLog(Ogre::LogManager::getSingleton().getDefaultLog());
132      delete Ogre::LogManager::getSingletonPtr();
133    }
134    CCOUT(4) << "Destroying objects done" << std::endl;
135  }
136
137  /**
138    @brief Creates the Ogre Root object and sets up the ogre log.
139  */
140  bool GraphicsEngine::setup()
141  {
142    CCOUT(3) << "Setting up..." << std::endl;
143    // temporary overwrite of dataPath, change ini file for permanent change
144
145// TODO: LogManager doesn't work on specific systems. The why is unknown yet.
146#if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32
147    // create a logManager
148    // note: If there's already a logManager, Ogre will complain by a failed assertation.
149    // but that shouldn't happen, since this is the first time to create a logManager..
150    Ogre::LogManager* logger = new Ogre::LogManager();
151    CCOUT(4) << "Ogre LogManager created" << std::endl;
152
153    // create our own log that we can listen to
154    Ogre::Log *myLog;
155    if (this->ogreLogFile_ == "")
156      myLog = logger->createLog("ogre.log", true, false, true);
157    else
158      myLog = logger->createLog(this->ogreLogFile_, true, false, false);
159    CCOUT(4) << "Ogre Log created" << std::endl;
160
161    myLog->setLogDetail(Ogre::LL_BOREME);
162    myLog->addListener(this);
163#endif
164
165    // Root will detect that we've already created a Log
166    CCOUT(4) << "Creating Ogre Root..." << std::endl;
167
168    if (ogrePluginsFile_ == "")
169    {
170      COUT(1) << "Error: Ogre plugins file set to \"\". Cannot load." << std::endl;
171      return false;
172    }
173    if (ogreConfigFile_ == "")
174    {
175      COUT(1) << "Error: Ogre config file set to \"\". Cannot load." << std::endl;
176      return false;
177    }
178    if (ogreLogFile_ == "")
179    {
180      COUT(1) << "Error: Ogre log file set to \"\". Cannot load." << std::endl;
181      return false;
182    }
183
184    try
185    {
186      root_ = new Ogre::Root(ogrePluginsFile_, ogreConfigFile_, ogreLogFile_);
187    }
188    catch (Ogre::Exception ex)
189    {
190      COUT(2) << "Error: There was an exception when creating Ogre Root." << std::endl;
191      return false;
192    }
193
194    if (!root_->getInstalledPlugins().size())
195    {
196      COUT(1) << "Error: No plugins declared. Cannot load Ogre." << std::endl;
197      COUT(0) << "Is the plugins file correctly declared?" << std::endl;
198      return false;
199    }
200
201#if 0
202    // tame the ogre ouput so we don't get all the mess in the console
203    Ogre::Log* defaultLog = Ogre::LogManager::getSingleton().getDefaultLog();
204    defaultLog->setDebugOutputEnabled(false);
205    defaultLog->setLogDetail(Ogre::LL_BOREME);
206    defaultLog->addListener(this);
207#endif
208
209    CCOUT(4) << "Creating Ogre Root done" << std::endl;
210
211    // specify where Ogre has to look for resources. This call doesn't parse anything yet!
212    if (!declareRessourceLocations())
213      return false;
214
215    CCOUT(3) << "Set up done." << std::endl;
216    return true;
217  }
218
219  bool GraphicsEngine::declareRessourceLocations()
220  {
221    CCOUT(4) << "Declaring Resources" << std::endl;
222    //TODO: Specify layout of data file and maybe use xml-loader
223    //TODO: Work with ressource groups (should be generated by a special loader)
224
225    if (resourceFile_ == "")
226    {
227      COUT(1) << "Error: Resource file set to \"\". Cannot load." << std::endl;
228      return false;
229    }
230
231    // Load resource paths from data file using configfile ressource type
232    Ogre::ConfigFile cf;
233    try
234    {
235      cf.load(Settings::getDataPath() + resourceFile_);
236    }
237    catch (Ogre::Exception ex)
238    {
239      COUT(1) << "Error: Could not load resources.cfg in path " << Settings::getDataPath() << std::endl;
240      COUT(0) << "Have you forgotten to set the data path in orxnox.ini?" << std::endl;
241      return false;
242    }
243
244    // Go through all sections & settings in the file
245    Ogre::ConfigFile::SectionIterator seci = cf.getSectionIterator();
246
247    std::string secName, typeName, archName;
248    while (seci.hasMoreElements())
249    {
250      try
251      {
252        secName = seci.peekNextKey();
253        Ogre::ConfigFile::SettingsMultiMap *settings = seci.getNext();
254        Ogre::ConfigFile::SettingsMultiMap::iterator i;
255        for (i = settings->begin(); i != settings->end(); ++i)
256        {
257          typeName = i->first; // for instance "FileSystem" or "Zip"
258          archName = i->second; // name (and location) of archive
259
260          Ogre::ResourceGroupManager::getSingleton().addResourceLocation(
261              std::string(Settings::getDataPath() + archName), typeName, secName);
262        }
263      }
264      catch (Ogre::Exception ex)
265      {
266        COUT(2) << "Exception while reading resources.cfg. Proceeding.." << ex.getDescription() << std::endl;
267      }
268    }
269    return true;
270  }
271
272  bool GraphicsEngine::loadRenderer()
273  {
274    CCOUT(4) << "Configuring Renderer" << std::endl;
275
276    // check for file existence because Ogre displays exceptions if not
277    std::ifstream probe;
278    probe.open(ogreConfigFile_.c_str());
279    if (!probe)
280    {
281      // create a zero sized file
282      std::ofstream creator;
283      creator.open(ogreConfigFile_.c_str());
284      creator.close();
285    }
286    else
287      probe.close();
288
289    if (!root_->restoreConfig())
290      if (!root_->showConfigDialog())
291        return false;
292
293    CCOUT(4) << "Creating render window" << std::endl;
294    try
295    {
296      this->renderWindow_ = root_->initialise(true, "OrxonoxV2");
297    }
298    catch (Ogre::Exception ex)
299    {
300      COUT(2) << "Error: There was an exception when initialising Ogre Root." << std::endl;
301      return false;
302    }
303
304    if (!root_->isInitialised())
305    {
306      CCOUT(2) << "Error: Initialising Ogre root object failed." << std::endl;
307      return false;
308    }
309    Ogre::WindowEventUtilities::addWindowEventListener(this->renderWindow_, this);
310    Ogre::TextureManager::getSingleton().setDefaultNumMipmaps(5);
311    return true;
312  }
313
314  bool GraphicsEngine::initialiseResources()
315  {
316    CCOUT(4) << "Initialising resources" << std::endl;
317    //TODO: Do NOT load all the groups, why are we doing that? And do we really do that? initialise != load...
318    try
319    {
320      Ogre::ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
321      /*Ogre::StringVector str = Ogre::ResourceGroupManager::getSingleton().getResourceGroups();
322      for (unsigned int i = 0; i < str.size(); i++)
323      {
324        Ogre::ResourceGroupManager::getSingleton().loadResourceGroup(str[i]);
325      }*/
326    }
327    catch (Ogre::Exception e)
328    {
329      CCOUT(2) << "Error: There was an Error when initialising the resources." << std::endl;
330      CCOUT(2) << "ErrorMessage: " << e.getFullDescription() << std::endl;
331      return false;
332    }
333    return true;
334  }
335
336  /**
337   * @brief Creates the SceneManager
338   */
339  bool GraphicsEngine::createNewScene()
340  {
341    CCOUT(4) << "Creating new SceneManager..." << std::endl;
342    if (scene_)
343    {
344      CCOUT(2) << "SceneManager already exists! Skipping." << std::endl;
345      return false;
346    }
347    scene_ = root_->createSceneManager(Ogre::ST_GENERIC, "Default SceneManager");
348    CCOUT(3) << "Created SceneManager: " << scene_ << std::endl;
349    return true;
350  }
351
352  /**
353    Returns the window handle of the render window.
354    At least the InputHandler uses this to create the OIS::InputManager
355    @return The window handle of the render window
356  */
357  size_t GraphicsEngine::getWindowHandle()
358  {
359    if (this->renderWindow_)
360    {
361      size_t windowHnd = 0;
362      this->renderWindow_->getCustomAttribute("WINDOW", &windowHnd);
363      return windowHnd;
364    }
365    else
366      return 0;
367  }
368
369  /**
370    Get the width of the current render window
371    @return The width of the current render window
372  */
373  int GraphicsEngine::getWindowWidth() const
374  {
375    if (this->renderWindow_)
376      return this->renderWindow_->getWidth();
377    else
378      return 0;
379  }
380
381  /**
382    Get the height of the current render window
383    @return The height of the current render window
384  */
385  int GraphicsEngine::getWindowHeight() const
386  {
387    if (this->renderWindow_)
388      return this->renderWindow_->getHeight();
389    else
390      return 0;
391  }
392
393  /**
394    @brief Returns the window aspect ratio height/width.
395    @return The ratio
396  */
397  float GraphicsEngine::getWindowAspectRatio() const
398  {
399    if (this->renderWindow_)
400        return (float)this->renderWindow_->getHeight() / (float)this->renderWindow_->getWidth();
401    else
402        return 1.0f;
403  }
404
405  /**
406    @brief Method called by the LogListener interface from Ogre.
407    We use it to capture Ogre log messages and handle it ourselves.
408    @param message The message to be logged
409    @param lml The message level the log is using
410    @param maskDebug If we are printing to the console or not
411    @param logName the name of this log (so you can have several listeners
412                   for different logs, and identify them)
413  */
414  void GraphicsEngine::messageLogged(const std::string& message,
415    Ogre::LogMessageLevel lml, bool maskDebug, const std::string &logName)
416  {
417    int orxonoxLevel;
418    switch (lml)
419    {
420      case Ogre::LML_TRIVIAL:
421        orxonoxLevel = this->ogreLogLevelTrivial_;
422        break;
423      case Ogre::LML_NORMAL:
424        orxonoxLevel = this->ogreLogLevelNormal_;
425        break;
426      case Ogre::LML_CRITICAL:
427        orxonoxLevel = this->ogreLogLevelCritical_;
428        break;
429      default:
430        orxonoxLevel = 0;
431    }
432    OutputHandler::getOutStream().setOutputLevel(orxonoxLevel)
433        << "Ogre: " << message << std::endl;
434  }
435
436  /**
437  * Window has resized.
438  * @param rw The render window it occured in
439  */
440  void GraphicsEngine::windowMoved(Ogre::RenderWindow *rw)
441  {
442    // note: this doesn't change the window extents
443  }
444
445  /**
446  * Window has resized.
447  * @param rw The render window it occured in
448  * @note GraphicsEngine has a render window stored itself. This is the same
449  *       as rw. But we have to be careful when using multiple render windows!
450  */
451  void GraphicsEngine::windowResized(Ogre::RenderWindow *rw)
452  {
453    // change the mouse clipping size for absolute mouse movements
454    int w = rw->getWidth();
455    int h = rw->getHeight();
456    InputManager::setWindowExtents(w, h);
457    InGameConsole::getInstance().resize();
458    HUD::getSingleton().resize();
459  }
460
461  /**
462  * Window has resized.
463  * @param rw The render window it occured in
464  */
465  void GraphicsEngine::windowFocusChanged(Ogre::RenderWindow *rw)
466  {
467    // note: this doesn't change the window extents
468  }
469
470  /**
471  * Window has resized.
472  * @param rw The render window it occured in
473  */
474  void GraphicsEngine::windowClosed(Ogre::RenderWindow *rw)
475  {
476    // using CommandExecutor in order to avoid depending on Orxonox class.
477    CommandExecutor::execute("exit", false);
478  }
479
480}
Note: See TracBrowser for help on using the repository browser.