Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/Orxonox.cc @ 715

Last change on this file since 715 was 715, checked in by rgrieder, 16 years ago
  • the master has spoken…
  • misc/String.h is not anymore..
File size: 12.3 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *
4 *
5 *   License notice:
6 *
7 *   This program is free software; you can redistribute it and/or
8 *   modify it under the terms of the GNU General Public License
9 *   as published by the Free Software Foundation; either version 2
10 *   of the License, or (at your option) any later version.
11 *
12 *   This program is distributed in the hope that it will be useful,
13 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 *   GNU General Public License for more details.
16 *
17 *   You should have received a copy of the GNU General Public License
18 *   along with this program; if not, write to the Free Software
19 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 *
21 *   Author:
22 *      Benjamin Knecht <beni_at_orxonox.net>, (C) 2007
23 *   Co-authors:
24 *      ...
25 *
26 */
27
28/**
29 @file  Orxonox.cc
30 @brief Orxonox Main Class
31 */
32
33//****** OGRE ******
34#include <OgreException.h>
35#include <OgreRoot.h>
36#include <OgreFrameListener.h>
37#include <OgreRenderWindow.h>
38#include <OgreTextureManager.h>
39#include <OgreResourceGroupManager.h>
40#include <OgreConfigFile.h>
41#include <OgreOverlay.h>
42#include <OgreOverlayManager.h>
43
44//****** OIS *******
45#include <OIS/OIS.h>
46
47//****** STD *******
48#include <iostream>
49#include <exception>
50
51//***** ORXONOX ****
52//misc
53#include "misc/Sleep.h"
54
55// loader and audio
56#include "loader/LevelLoader.h"
57#include "audio/AudioManager.h"
58
59// network
60#include "network/Server.h"
61#include "network/Client.h"
62#include "network/NetworkFrameListener.h"
63
64// objects
65#include "objects/Tickable.h"
66#include "objects/Timer.h"
67#include "objects/NPC.h"
68#include "core/ArgReader.h"
69#include "core/Factory.h"
70#include "core/Debug.h"
71#include "hud/HUD.h"
72#include "objects/weapon_system/BulletManager.h"
73
74#include "GraphicsEngine.h"
75#include "Orxonox.h"
76
77
78namespace orxonox
79{
80   // put this in a seperate Class or solve the problem in another fashion
81  class OrxListener : public Ogre::FrameListener
82  {
83    public:
84      OrxListener(OIS::Keyboard *keyboard, audio::AudioManager*  auMan, gameMode mode)
85      {
86        mKeyboard = keyboard;
87        mode_=mode;
88        auMan_ = auMan;
89      }
90
91      bool frameStarted(const Ogre::FrameEvent& evt)
92      {
93        auMan_->update();
94        updateAI();
95
96        if(mode_ == PRESENTATION)
97          server_g->tick(evt.timeSinceLastFrame);
98        else if(mode_ == CLIENT)
99          client_g->tick(evt.timeSinceLastFrame);
100
101        usleep(10);
102
103        mKeyboard->capture();
104        return !mKeyboard->isKeyDown(OIS::KC_ESCAPE);
105      }
106
107      void updateAI()
108      {
109        for(Iterator<NPC> it = ObjectList<NPC>::start(); it; ++it)
110        {
111          it->update();
112        }
113      }
114
115    private:
116      gameMode mode_;
117      OIS::Keyboard *mKeyboard;
118      audio::AudioManager*  auMan_;
119  };
120
121  // init static singleton reference of Orxonox
122  Orxonox* Orxonox::singletonRef_ = NULL;
123
124  /**
125   * create a new instance of Orxonox
126   */
127  Orxonox::Orxonox()
128  {
129    this->ogre_ = new GraphicsEngine();
130    this->dataPath_ = "";
131    this->loader_ = 0;
132    this->auMan_ = 0;
133    this->singletonRef_ = 0;
134    this->keyboard_ = 0;
135    this->mouse_ = 0;
136    this->inputManager_ = 0;
137    this->frameListener_ = 0;
138    this->root_ = 0;
139  }
140
141  /**
142   * destruct Orxonox
143   */
144  Orxonox::~Orxonox()
145  {
146    // nothing to delete as for now
147  }
148
149  /**
150   * initialization of Orxonox object
151   * @param argc argument counter
152   * @param argv list of arguments
153   * @param path path to config (in home dir or something)
154   */
155  void Orxonox::init(int argc, char **argv, std::string path)
156  {
157    //TODO: find config file (assuming executable directory)
158    //TODO: read config file
159    //TODO: give config file to Ogre
160    std::string mode;
161//     if(argc>=2)
162//       mode = std::string(argv[1]);
163//     else
164//       mode = "";
165    ArgReader ar = ArgReader(argc, argv);
166    ar.checkArgument("mode", mode, false);
167    ar.checkArgument("data", this->dataPath_, false);
168    ar.checkArgument("ip", serverIp_, false);
169    //mode = "presentation";
170    if(ar.errorHandling()) die();
171    if(mode == std::string("server"))
172    {
173      serverInit(path);
174      mode_ = SERVER;
175    }
176    else if(mode == std::string("client"))
177    {
178      clientInit(path);
179      mode_ = CLIENT;
180    }
181    else if(mode == std::string("presentation"))
182    {
183      serverInit(path);
184      mode_ = PRESENTATION;
185    }
186    else{
187      standaloneInit(path);
188      mode_ = STANDALONE;
189    }
190  }
191
192  /**
193   * start modules
194   */
195  void Orxonox::start()
196  {
197    //TODO: start modules
198    ogre_->startRender();
199    //TODO: run engine
200    Factory::createClassHierarchy();
201    createScene();
202    setupScene();
203    setupInputSystem();
204    if(mode_!=CLIENT){ // remove this in future ---- presentation hack
205    }
206    else
207      std::cout << "client here" << std::endl;
208    createFrameListener();
209    switch(mode_){
210    case PRESENTATION:
211      //ogre_->getRoot()->addFrameListener(new network::ServerFrameListener());
212      //std::cout << "could not add framelistener" << std::endl;
213      server_g->open();
214      break;
215    case CLIENT:
216      client_g->establishConnection();
217      break;
218    case SERVER:
219    case STANDALONE:
220    default:
221      break;
222    }
223    startRenderLoop();
224  }
225
226  /**
227   * @return singleton object
228   */
229  Orxonox* Orxonox::getSingleton()
230  {
231    if (!singletonRef_)
232      singletonRef_ = new Orxonox();
233    return singletonRef_;
234  }
235
236  /**
237   * error kills orxonox
238   */
239  void Orxonox::die(/* some error code */)
240  {
241    //TODO: destroy and destruct everything and print nice error msg
242    delete this;
243  }
244
245  void Orxonox::standaloneInit(std::string path)
246  {
247    ogre_->setConfigPath(path);
248    ogre_->setup();
249    root_ = ogre_->getRoot();
250    if(!ogre_->load()) die(/* unable to load */);
251
252    //defineResources();
253    //setupRenderSystem();
254    //createRenderWindow();
255    //initializeResourceGroups();
256    /*createScene();
257    setupScene();
258    setupInputSystem();
259    createFrameListener();
260    Factory::createClassHierarchy();
261    startRenderLoop();*/
262  }
263
264  void Orxonox::playableServer(std::string path)
265  {
266    ogre_->setConfigPath(path);
267    ogre_->setup();
268    root_ = ogre_->getRoot();
269    defineResources();
270    setupRenderSystem();
271    createRenderWindow();
272    initializeResourceGroups();
273    setupInputSystem();
274    Factory::createClassHierarchy();
275    createScene();
276    setupScene();
277    createFrameListener();
278    try{
279      server_g = new network::Server(); //!< add port and bindadress
280      server_g->open(); //!< open server and create listener thread
281      if(ogre_ && ogre_->getRoot())
282        ogre_->getRoot()->addFrameListener(new network::ServerFrameListener()); // adds a framelistener for the server
283      COUT(3) << "Info: network framelistener added" << std::endl;
284    }
285    catch(std::exception &e)
286    {
287      COUT(1) << "Error: There was a problem initialising the server :(" << std::endl;
288    }
289    startRenderLoop();
290  }
291
292  void Orxonox::standalone(){
293
294
295
296  }
297
298  void Orxonox::serverInit(std::string path)
299  {
300    COUT(2) << "initialising server" << std::endl;
301    ogre_->setConfigPath(path);
302    ogre_->setup();
303    server_g = new network::Server(); // FIXME add some settings if wanted
304    if(!ogre_->load()) die(/* unable to load */);
305    // FIXME add network framelistener
306  }
307
308  void Orxonox::clientInit(std::string path)
309  {
310    COUT(2) << "initialising client" << std::endl;
311    ogre_->setConfigPath(path);
312    ogre_->setup();
313    if(serverIp_.compare("")==0)
314      client_g = new network::Client();
315    else
316      client_g = new network::Client(serverIp_, 55556);
317    if(!ogre_->load()) die(/* unable to load */);
318    ogre_->getRoot()->addFrameListener(new network::ClientFrameListener());
319  }
320
321  void Orxonox::defineResources()
322  {
323    std::string secName, typeName, archName;
324    Ogre::ConfigFile cf;
325#if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
326    cf.load(macBundlePath() + "/Contents/Resources/resources.cfg");
327#else
328    cf.load(dataPath_ + "resources.cfg");
329#endif
330
331    Ogre::ConfigFile::SectionIterator seci = cf.getSectionIterator();
332    while (seci.hasMoreElements())
333    {
334      secName = seci.peekNextKey();
335      Ogre::ConfigFile::SettingsMultiMap *settings = seci.getNext();
336      Ogre::ConfigFile::SettingsMultiMap::iterator i;
337      for (i = settings->begin(); i != settings->end(); ++i)
338      {
339        typeName = i->first;
340        archName = i->second;
341#if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
342        Ogre::ResourceGroupManager::getSingleton().addResourceLocation( std::string(macBundlePath() + "/" + archName), typeName, secName);
343#else
344        Ogre::ResourceGroupManager::getSingleton().addResourceLocation( archName, typeName, secName);
345#endif
346      }
347    }
348  }
349
350  void Orxonox::setupRenderSystem()
351  {
352    if (!root_->restoreConfig() && !root_->showConfigDialog())
353      throw Ogre::Exception(52, "User canceled the config dialog!", "OrxApplication::setupRenderSystem()");
354  }
355
356  void Orxonox::createRenderWindow()
357  {
358    root_->initialise(true, "OrxonoxV2");
359  }
360
361  void Orxonox::initializeResourceGroups()
362  {
363    Ogre::TextureManager::getSingleton().setDefaultNumMipmaps(5);
364    Ogre::ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
365  }
366
367  /**
368   *
369   * @param
370   */
371  void Orxonox::createScene(void)
372  {
373        // Init audio
374    auMan_ = new audio::AudioManager();
375
376    bulletMgr_ = new BulletManager();
377
378    // load this file from config
379    loader_ = new loader::LevelLoader("sample.oxw");
380    loader_->loadLevel();
381
382    Ogre::Overlay* hudOverlay = Ogre::OverlayManager::getSingleton().getByName("Orxonox/HUD1.2");
383    HUD* orxonoxHud;
384    orxonoxHud = new HUD();
385    orxonoxHud->setEnergyValue(20);
386    orxonoxHud->setEnergyDistr(20,20,60);
387    hudOverlay->show();
388
389        /*
390    auMan_->ambientAdd("a1");
391    auMan_->ambientAdd("a2");
392    auMan_->ambientAdd("a3");
393                                //auMan->ambientAdd("ambient1");
394    auMan_->ambientStart();*/
395  }
396
397
398  /**
399   *
400   */
401  void Orxonox::setupScene()
402  {
403//    SceneManager *mgr = ogre_->getSceneManager();
404
405
406//    SceneNode* node = (SceneNode*)mgr->getRootSceneNode()->getChild("OgreHeadNode");
407//     SceneNode *node = mgr->getRootSceneNode()->createChildSceneNode("OgreHeadNode", Vector3(0,0,0));
408
409
410/*
411    particle::ParticleInterface *e = new particle::ParticleInterface(mgr,"engine","Orxonox/strahl");
412    e->particleSystem_->setParameter("local_space","true");
413    e->setPositionOfEmitter(0, Vector3(0,-10,0));
414    e->setDirection(Vector3(0,0,-1));
415    e->addToSceneNode(node);
416*/
417  }
418
419
420  void Orxonox::setupInputSystem()
421  {
422    size_t windowHnd = 0;
423    std::ostringstream windowHndStr;
424    OIS::ParamList pl;
425
426    // fixes auto repeat problem
427    #if defined OIS_LINUX_PLATFORM
428      pl.insert(std::make_pair(std::string("XAutoRepeatOn"), std::string("true")));
429    #endif
430
431      Ogre::RenderWindow *win = ogre_->getRoot()->getAutoCreatedWindow();
432    win->getCustomAttribute("WINDOW", &windowHnd);
433    windowHndStr << windowHnd;
434    pl.insert(std::make_pair(std::string("WINDOW"), windowHndStr.str()));
435    inputManager_ = OIS::InputManager::createInputSystem(pl);
436
437    try
438    {
439      keyboard_ = static_cast<OIS::Keyboard*>(inputManager_->createInputObject(OIS::OISKeyboard, false));
440      mouse_ = static_cast<OIS::Mouse*>(inputManager_->createInputObject(OIS::OISMouse, true));
441    }
442    catch (const OIS::Exception &e)
443    {
444      throw new Ogre::Exception(42, e.eText, "OrxApplication::setupInputSystem");
445    }
446  }
447
448  // FIXME we actually want to do this differently...
449  void Orxonox::createFrameListener()
450  {
451    TickFrameListener* TickFL = new TickFrameListener();
452    ogre_->getRoot()->addFrameListener(TickFL);
453
454    TimerFrameListener* TimerFL = new TimerFrameListener();
455    ogre_->getRoot()->addFrameListener(TimerFL);
456
457    //if(mode_!=CLIENT) // FIXME just a hack ------- remove this in future
458      frameListener_ = new OrxListener(keyboard_, auMan_, mode_);
459    ogre_->getRoot()->addFrameListener(frameListener_);
460  }
461
462  void Orxonox::startRenderLoop()
463  {
464    // FIXME
465    // this is a hack!!!
466    // the call to reset the mouse clipping size should probably be somewhere
467    // else, however this works for the moment.
468    unsigned int width, height, depth;
469    int left, top;
470    ogre_->getRoot()->getAutoCreatedWindow()->getMetrics(width, height, depth, left, top);
471
472    if(mode_!=CLIENT){
473      const OIS::MouseState &ms = mouse_->getMouseState();
474      ms.width = width;
475      ms.height = height;
476    }
477    ogre_->getRoot()->startRendering();
478  }
479}
Note: See TracBrowser for help on using the repository browser.