/* * ORXONOX - the hottest 3D action shooter ever to exist * * * License notice: * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Benjamin Knecht , (C) 2007 * Co-authors: * ... * */ /** @file orxonox.cc @brief Orxonox Main Class */ #include "orxonox.h" #include "graphicsEngine.h" //#include // 40% speed up: (instead of Ogre.h) #include #include #include #include #include #include #include #include #include //#include //#include #include #include #include "objects/Tickable.h" #include "objects/Timer.h" #include "core/ArgReader.h" #include "core/Factory.h" #include "core/Debug.h" #include "../loader/LevelLoader.h" #include "../audio/AudioManager.h" #include "spaceship_steering.h" #include "particle/ParticleInterface.h" //network stuff #include "../network/Server.h" #include "../network/Client.h" #include "../network/NetworkFrameListener.h" #ifdef WIN32 #include #define usleep(x) Sleep((x)/1000) #else #include #endif namespace orxonox { using namespace Ogre; // put this in seperate Class or solve the problem in another fashion class OrxListener : public FrameListener, public OIS::MouseListener { public: OrxListener(OIS::Keyboard *keyboard, OIS::Mouse *mouse, audio::AudioManager* auMan, SpaceshipSteering* steering) : mKeyboard(keyboard), mMouse(mouse) { speed = 250; loop = 100; rotate = 10; mouseX = 0; mouseY = 0; maxMouseX = 0; minMouseX = 0; moved = false; steering_ = steering; steering_->brakeRotate(rotate*10); steering_->brakeLoop(loop); mMouse->setEventCallback(this); auMan_ = auMan; } bool frameStarted(const FrameEvent& evt) { auMan_->update(); mKeyboard->capture(); mMouse->capture(); if (mKeyboard->isKeyDown(OIS::KC_UP) || mKeyboard->isKeyDown(OIS::KC_W)) steering_->moveForward(speed); else steering_->moveForward(0); if(mKeyboard->isKeyDown(OIS::KC_DOWN) || mKeyboard->isKeyDown(OIS::KC_S)) steering_->brakeForward(speed); else steering_->brakeForward(speed/10); if (mKeyboard->isKeyDown(OIS::KC_RIGHT) || mKeyboard->isKeyDown(OIS::KC_D)) steering_->loopRight(loop); else steering_->loopRight(0); if (mKeyboard->isKeyDown(OIS::KC_LEFT) || mKeyboard->isKeyDown(OIS::KC_A)) steering_->loopLeft(loop); else steering_->loopLeft(0); if(moved) { if (mouseY<=0) steering_->rotateUp(-mouseY*rotate); if (mouseY>0) steering_->rotateDown(mouseY*rotate); if (mouseX>0) steering_->rotateRight(mouseX*rotate); if (mouseX<=0) steering_->rotateLeft(-mouseX*rotate); mouseY = 0; mouseX = 0; moved = false; } else { steering_->rotateUp(0); steering_->rotateDown(0); steering_->rotateRight(0); steering_->rotateLeft(0); } steering_->tick(evt.timeSinceLastFrame); // scenemanager->spacehip->tick(evt.timesincelastframe); //if(mKeyboard->isKeyDown(OIS::KC_ESCAPE)) //cout << "maximal MouseX: " << maxMouseX << "\tminMouseX: " << minMouseX << endl; usleep(10); return !mKeyboard->isKeyDown(OIS::KC_ESCAPE); } bool mouseMoved(const OIS::MouseEvent &e) { mouseX += e.state.X.rel; mouseY += e.state.Y.rel; if(mouseX>maxMouseX) maxMouseX = mouseX; if(mouseX=2) mode = std::string(argv[1]); else mode = ""; ArgReader ar = ArgReader(argc, argv); ar.checkArgument("mode", mode, false); ar.checkArgument("data", this->dataPath_, false); if(ar.errorHandling()) die(); if(mode == std::string("server")) { serverInit(path); mode = SERVER; } else if(mode == std::string("client")) { clientInit(path); mode = CLIENT; } else if(mode == std::string("presentation")) { serverInit(path); mode = PRESENTATION; } else{ standaloneInit(path); mode = STANDALONE; } } /** * start modules */ void Orxonox::start() { //TODO: start modules ogre_->startRender(); //TODO: run engine createScene(); setupScene(); setupInputSystem(); createFrameListener(); Factory::createClassHierarchy(); switch(mode_){ case PRESENTATION: server_g->open(); break; case SERVER: case CLIENT: case STANDALONE: default: break; } startRenderLoop(); } /** * @return singleton object */ Orxonox* Orxonox::getSingleton() { if (!singletonRef_) singletonRef_ = new Orxonox(); return singletonRef_; } /** * error kills orxonox */ void Orxonox::die(/* some error code */) { //TODO: destroy and destruct everything and print nice error msg delete this; } void Orxonox::standaloneInit(std::string path) { ogre_->setConfigPath(path); ogre_->setup(); root_ = ogre_->getRoot(); if(!ogre_->load()) die(/* unable to load */); //defineResources(); //setupRenderSystem(); //createRenderWindow(); //initializeResourceGroups(); /*createScene(); setupScene(); setupInputSystem(); createFrameListener(); Factory::createClassHierarchy(); startRenderLoop();*/ } void Orxonox::playableServer(std::string path) { ogre_->setConfigPath(path); ogre_->setup(); root_ = ogre_->getRoot(); defineResources(); setupRenderSystem(); createRenderWindow(); initializeResourceGroups(); createScene(); setupScene(); setupInputSystem(); Factory::createClassHierarchy(); createFrameListener(); try{ server_g = new network::Server(); // add port and bindadress server_g->open(); // open server and create listener thread if(ogre_ && ogre_->getRoot()) ogre_->getRoot()->addFrameListener(new network::ServerFrameListener()); // adds a framelistener for the server COUT(3) << "Info: network framelistener added" << std::endl; } catch(exception &e) { COUT(1) << "Error: There was a problem initialising the server :(" << std::endl; } startRenderLoop(); } void Orxonox::standalone(){ } void Orxonox::serverInit(std::string path) { ogre_->setConfigPath(path); ogre_->setup(); server_g = new network::Server(); // add some settings if wanted if(!ogre_->load()) die(/* unable to load */); // add network framelistener ogre_->getRoot()->addFrameListener(new network::ServerFrameListener()); } void Orxonox::clientInit(std::string path) { ogre_->setConfigPath(path); ogre_->setup(); client_g = new network::Client(); // address here if(!ogre_->load()) die(/* unable to load */); ogre_->getRoot()->addFrameListener(new network::ClientFrameListener()); } void Orxonox::defineResources() { Ogre::String secName, typeName, archName; Ogre::ConfigFile cf; #if OGRE_PLATFORM == OGRE_PLATFORM_APPLE cf.load(macBundlePath() + "/Contents/Resources/resources.cfg"); #else cf.load(dataPath_ + "resources.cfg"); #endif Ogre::ConfigFile::SectionIterator seci = cf.getSectionIterator(); while (seci.hasMoreElements()) { secName = seci.peekNextKey(); Ogre::ConfigFile::SettingsMultiMap *settings = seci.getNext(); Ogre::ConfigFile::SettingsMultiMap::iterator i; for (i = settings->begin(); i != settings->end(); ++i) { typeName = i->first; archName = i->second; #if OGRE_PLATFORM == OGRE_PLATFORM_APPLE Ogre::ResourceGroupManager::getSingleton().addResourceLocation( String(macBundlePath() + "/" + archName), typeName, secName); #else Ogre::ResourceGroupManager::getSingleton().addResourceLocation( archName, typeName, secName); #endif } } } void Orxonox::setupRenderSystem() { if (/*!root_->restoreConfig() &&*/ !root_->showConfigDialog()) throw Exception(52, "User canceled the config dialog!", "OrxApplication::setupRenderSystem()"); } void Orxonox::createRenderWindow() { root_->initialise(true, "OrxonoxV2"); } void Orxonox::initializeResourceGroups() { TextureManager::getSingleton().setDefaultNumMipmaps(5); ResourceGroupManager::getSingleton().initialiseAllResourceGroups(); } /** * * @param */ void Orxonox::createScene(void) { // Init audio auMan_ = new audio::AudioManager(); // load this file from config loader_ = new loader::LevelLoader("sample.oxw"); loader_->loadLevel(); auMan_->ambientStart(); } /** * */ void Orxonox::setupScene() { SceneManager *mgr = ogre_->getSceneManager(); SceneNode* node = (SceneNode*)mgr->getRootSceneNode()->getChild("OgreHeadNode"); // SceneNode *node = mgr->getRootSceneNode()->createChildSceneNode("OgreHeadNode", Vector3(0,0,0)); steering_ = new SpaceshipSteering(500, 200, 200, 200); steering_->addNode(node); /* particle::ParticleInterface *e = new particle::ParticleInterface(mgr,"engine","Orxonox/strahl"); e->particleSystem_->setParameter("local_space","true"); e->setPositionOfEmitter(0, Vector3(0,-10,200)); e->setDirection(Vector3(0,0,-1)); e->addToSceneNode(node); */ particle::ParticleInterface *w = new particle::ParticleInterface(mgr,"schuss","Orxonox/schuss"); w->particleSystem_->setParameter("local_space","true"); w->newEmitter(); w->setDirection(Vector3(0,0,1)); w->setPositionOfEmitter(0, Vector3(10,10,0)); w->setPositionOfEmitter(1, Vector3(-10,10,0)); w->addToSceneNode(node); particle::ParticleInterface *tt = new particle::ParticleInterface(mgr,"thrusters","Orxonox/treibwerk"); tt->particleSystem_->setParameter("local_space","true"); tt->newEmitter(); tt->setDirection(Vector3(0,0,1)); tt->setPositionOfEmitter(0, Vector3(15,0,-60)); tt->setPositionOfEmitter(1, Vector3(-15,0,-60)); tt->addToSceneNode(node); } void Orxonox::setupInputSystem() { size_t windowHnd = 0; std::ostringstream windowHndStr; OIS::ParamList pl; Ogre::RenderWindow *win = ogre_->getRoot()->getAutoCreatedWindow(); win->getCustomAttribute("WINDOW", &windowHnd); windowHndStr << windowHnd; pl.insert(std::make_pair(std::string("WINDOW"), windowHndStr.str())); inputManager_ = OIS::InputManager::createInputSystem(pl); try { keyboard_ = static_cast(inputManager_->createInputObject(OIS::OISKeyboard, false)); mouse_ = static_cast(inputManager_->createInputObject(OIS::OISMouse, true)); } catch (const OIS::Exception &e) { throw new Ogre::Exception(42, e.eText, "OrxApplication::setupInputSystem"); } } // we actually want to do this differently... void Orxonox::createFrameListener() { TickFrameListener* TickFL = new TickFrameListener(); ogre_->getRoot()->addFrameListener(TickFL); TimerFrameListener* TimerFL = new TimerFrameListener(); ogre_->getRoot()->addFrameListener(TimerFL); frameListener_ = new OrxListener(keyboard_, mouse_, auMan_, steering_); ogre_->getRoot()->addFrameListener(frameListener_); } void Orxonox::startRenderLoop() { // this is a hack!!! // the call to reset the mouse clipping size should probably be somewhere // else, however this works for the moment. unsigned int width, height, depth; int left, top; ogre_->getRoot()->getAutoCreatedWindow()->getMetrics(width, height, depth, left, top); const OIS::MouseState &ms = mouse_->getMouseState(); ms.width = width; ms.height = height; ogre_->getRoot()->startRendering(); } }