[74] | 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 modify |
---|
| 8 | * it under the terms of the GNU General Public License as published by |
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or |
---|
| 10 | * (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, see <http://www.gnu.org/licenses/>. |
---|
| 19 | * |
---|
| 20 | * |
---|
| 21 | * Author: |
---|
| 22 | * Benjamin Knecht <beni_at_orxonox.net>, (C) 2007 |
---|
| 23 | * Co-authors: |
---|
| 24 | * ... |
---|
| 25 | * |
---|
| 26 | */ |
---|
| 27 | |
---|
[142] | 28 | /** |
---|
| 29 | @file orxonox.cc |
---|
| 30 | @brief Orxonox Main File |
---|
| 31 | */ |
---|
| 32 | |
---|
[137] | 33 | #include <Ogre.h> |
---|
| 34 | #include <OIS/OIS.h> |
---|
| 35 | #include <CEGUI/CEGUI.h> |
---|
| 36 | #include <OgreCEGUIRenderer.h> |
---|
[74] | 37 | |
---|
[164] | 38 | #include <string> |
---|
| 39 | #include <iostream> |
---|
| 40 | |
---|
| 41 | #include "xml/xmlParser.h" |
---|
| 42 | #include "loader/LevelLoader.h" |
---|
| 43 | |
---|
[209] | 44 | #include "spaceship_steering.h" |
---|
| 45 | SpaceshipSteering* steering; |
---|
[164] | 46 | |
---|
[209] | 47 | |
---|
[151] | 48 | // some tests to see if enet works without includsion |
---|
| 49 | //#include <enet/enet.h> |
---|
| 50 | //#include <enet/protocol.h> |
---|
[142] | 51 | |
---|
[137] | 52 | #if OGRE_PLATFORM == OGRE_PLATFORM_APPLE |
---|
| 53 | #include <CoreFoundation/CoreFoundation.h> |
---|
[74] | 54 | |
---|
[137] | 55 | // This function will locate the path to our application on OS X, |
---|
| 56 | // unlike windows you can not rely on the curent working directory |
---|
| 57 | // for locating your configuration files and resources. |
---|
| 58 | std::string macBundlePath() |
---|
[74] | 59 | { |
---|
[137] | 60 | char path[1024]; |
---|
| 61 | CFBundleRef mainBundle = CFBundleGetMainBundle(); |
---|
| 62 | assert(mainBundle); |
---|
| 63 | |
---|
| 64 | CFURLRef mainBundleURL = CFBundleCopyBundleURL(mainBundle); |
---|
| 65 | assert(mainBundleURL); |
---|
| 66 | |
---|
| 67 | CFStringRef cfStringRef = CFURLCopyFileSystemPath( mainBundleURL, kCFURLPOSIXPathStyle); |
---|
| 68 | assert(cfStringRef); |
---|
| 69 | |
---|
| 70 | CFStringGetCString(cfStringRef, path, 1024, kCFStringEncodingASCII); |
---|
| 71 | |
---|
| 72 | CFRelease(mainBundleURL); |
---|
| 73 | CFRelease(cfStringRef); |
---|
| 74 | |
---|
| 75 | return std::string(path); |
---|
| 76 | } |
---|
| 77 | #endif |
---|
| 78 | |
---|
| 79 | using namespace Ogre; |
---|
| 80 | |
---|
[317] | 81 | class OrxExitListener : public FrameListener, public OIS::MouseListener |
---|
[137] | 82 | { |
---|
[74] | 83 | public: |
---|
[317] | 84 | OrxExitListener(OIS::Keyboard *keyboard, OIS::Mouse *mouse) |
---|
| 85 | : mKeyboard(keyboard), mMouse(mouse) |
---|
[74] | 86 | { |
---|
[317] | 87 | speed = 250; |
---|
| 88 | loop = 100; |
---|
| 89 | rotate = 10; |
---|
| 90 | mouseX = 0; |
---|
| 91 | mouseY = 0; |
---|
| 92 | maxMouseX = 0; |
---|
| 93 | minMouseX = 0; |
---|
| 94 | moved = false; |
---|
| 95 | steering->brakeRotate(rotate*10); |
---|
| 96 | steering->brakeLoop(loop); |
---|
| 97 | mMouse->setEventCallback(this); |
---|
[74] | 98 | } |
---|
[137] | 99 | bool frameStarted(const FrameEvent& evt) |
---|
[74] | 100 | { |
---|
[137] | 101 | mKeyboard->capture(); |
---|
[317] | 102 | mMouse->capture(); |
---|
| 103 | if (mKeyboard->isKeyDown(OIS::KC_UP) || mKeyboard->isKeyDown(OIS::KC_W)) |
---|
[209] | 104 | steering->moveForward(speed); |
---|
| 105 | else |
---|
| 106 | steering->moveForward(0); |
---|
[317] | 107 | if(mKeyboard->isKeyDown(OIS::KC_DOWN) || mKeyboard->isKeyDown(OIS::KC_S)) |
---|
| 108 | steering->brakeForward(speed); |
---|
[209] | 109 | else |
---|
[317] | 110 | steering->brakeForward(speed/10); |
---|
| 111 | if (mKeyboard->isKeyDown(OIS::KC_RIGHT) || mKeyboard->isKeyDown(OIS::KC_D)) |
---|
| 112 | steering->loopRight(loop); |
---|
[209] | 113 | else |
---|
[317] | 114 | steering->loopRight(0); |
---|
| 115 | if (mKeyboard->isKeyDown(OIS::KC_LEFT) || mKeyboard->isKeyDown(OIS::KC_A)) |
---|
| 116 | steering->loopLeft(loop); |
---|
| 117 | else |
---|
| 118 | steering->loopLeft(0); |
---|
| 119 | |
---|
| 120 | if(moved) { |
---|
| 121 | if (mouseY<0) |
---|
| 122 | steering->rotateUp(-mouseY*rotate); |
---|
| 123 | if (mouseY>0) |
---|
| 124 | steering->rotateDown(mouseY*rotate); |
---|
| 125 | if (mouseX>0) |
---|
| 126 | steering->rotateRight(mouseX*rotate); |
---|
| 127 | if (mouseX<0) |
---|
| 128 | steering->rotateLeft(-mouseX*rotate); |
---|
| 129 | moved = false; |
---|
| 130 | } |
---|
| 131 | else { |
---|
[209] | 132 | steering->rotateUp(0); |
---|
| 133 | steering->rotateDown(0); |
---|
| 134 | steering->rotateRight(0); |
---|
| 135 | steering->rotateLeft(0); |
---|
[317] | 136 | } |
---|
| 137 | |
---|
[209] | 138 | steering->tick(evt.timeSinceLastFrame); |
---|
| 139 | // scenemanager->spacehip->tick(evt.timesincelastframe); |
---|
[317] | 140 | if(mKeyboard->isKeyDown(OIS::KC_ESCAPE)) |
---|
| 141 | cout << "maximal MouseX: " << maxMouseX << "\tminMouseX: " << minMouseX << endl; |
---|
[137] | 142 | return !mKeyboard->isKeyDown(OIS::KC_ESCAPE); |
---|
| 143 | } |
---|
[135] | 144 | |
---|
[317] | 145 | bool mouseMoved(const OIS::MouseEvent &e) |
---|
| 146 | { |
---|
| 147 | mouseX = e.state.X.rel; |
---|
| 148 | mouseY = e.state.Y.rel; |
---|
| 149 | if(mouseX>maxMouseX) maxMouseX = mouseX; |
---|
| 150 | if(mouseX<minMouseX) minMouseX = mouseX; |
---|
| 151 | cout << "mouseX: " << mouseX << "\tmouseY: " << mouseY << endl; |
---|
| 152 | moved = true; |
---|
| 153 | return true; |
---|
| 154 | } |
---|
| 155 | |
---|
| 156 | bool mousePressed(const OIS::MouseEvent &e, OIS::MouseButtonID id) { return true; } |
---|
| 157 | bool mouseReleased(const OIS::MouseEvent &e, OIS::MouseButtonID id) { return true; } |
---|
| 158 | |
---|
[74] | 159 | private: |
---|
[317] | 160 | float speed; |
---|
| 161 | float rotate; |
---|
| 162 | float loop; |
---|
| 163 | float mouseY; |
---|
| 164 | float mouseX; |
---|
| 165 | float maxMouseX; |
---|
| 166 | float minMouseX; |
---|
| 167 | bool moved; |
---|
[137] | 168 | OIS::Keyboard *mKeyboard; |
---|
[317] | 169 | OIS::Mouse *mMouse; |
---|
[74] | 170 | }; |
---|
| 171 | |
---|
[137] | 172 | class OrxApplication |
---|
[74] | 173 | { |
---|
| 174 | public: |
---|
[137] | 175 | void go() |
---|
[74] | 176 | { |
---|
[137] | 177 | createRoot(); |
---|
| 178 | defineResources(); |
---|
| 179 | setupRenderSystem(); |
---|
| 180 | createRenderWindow(); |
---|
| 181 | initializeResourceGroups(); |
---|
[164] | 182 | createScene(); |
---|
[137] | 183 | setupScene(); |
---|
| 184 | setupInputSystem(); |
---|
| 185 | setupCEGUI(); |
---|
| 186 | createFrameListener(); |
---|
| 187 | startRenderLoop(); |
---|
[74] | 188 | } |
---|
| 189 | |
---|
[137] | 190 | ~OrxApplication() |
---|
[74] | 191 | { |
---|
[137] | 192 | mInputManager->destroyInputObject(mKeyboard); |
---|
| 193 | OIS::InputManager::destroyInputSystem(mInputManager); |
---|
| 194 | |
---|
[148] | 195 | // delete mRenderer; |
---|
| 196 | // delete mSystem; |
---|
[137] | 197 | |
---|
| 198 | delete mListener; |
---|
| 199 | delete mRoot; |
---|
[74] | 200 | } |
---|
[137] | 201 | |
---|
| 202 | private: |
---|
| 203 | Root *mRoot; |
---|
| 204 | OIS::Keyboard *mKeyboard; |
---|
| 205 | OIS::Mouse *mMouse; |
---|
| 206 | OIS::InputManager *mInputManager; |
---|
| 207 | CEGUI::OgreCEGUIRenderer *mRenderer; |
---|
| 208 | CEGUI::System *mSystem; |
---|
| 209 | OrxExitListener *mListener; |
---|
| 210 | |
---|
| 211 | void createRoot() |
---|
[74] | 212 | { |
---|
[137] | 213 | #if OGRE_PLATFORM == OGRE_PLATFORM_APPLE |
---|
| 214 | mRoot = new Root(macBundlePath() + "/Contents/Resources/plugins.cfg"); |
---|
| 215 | #else |
---|
| 216 | mRoot = new Root(); |
---|
| 217 | #endif |
---|
[74] | 218 | } |
---|
| 219 | |
---|
[137] | 220 | void defineResources() |
---|
[74] | 221 | { |
---|
[137] | 222 | String secName, typeName, archName; |
---|
| 223 | ConfigFile cf; |
---|
| 224 | #if OGRE_PLATFORM == OGRE_PLATFORM_APPLE |
---|
| 225 | cf.load(macBundlePath() + "/Contents/Resources/resources.cfg"); |
---|
| 226 | #else |
---|
| 227 | cf.load("resources.cfg"); |
---|
| 228 | #endif |
---|
[74] | 229 | |
---|
[137] | 230 | ConfigFile::SectionIterator seci = cf.getSectionIterator(); |
---|
| 231 | while (seci.hasMoreElements()) |
---|
| 232 | { |
---|
| 233 | secName = seci.peekNextKey(); |
---|
| 234 | ConfigFile::SettingsMultiMap *settings = seci.getNext(); |
---|
| 235 | ConfigFile::SettingsMultiMap::iterator i; |
---|
| 236 | for (i = settings->begin(); i != settings->end(); ++i) |
---|
| 237 | { |
---|
| 238 | typeName = i->first; |
---|
| 239 | archName = i->second; |
---|
| 240 | #if OGRE_PLATFORM == OGRE_PLATFORM_APPLE |
---|
| 241 | ResourceGroupManager::getSingleton().addResourceLocation( String(macBundlePath() + "/" + archName), typeName, secName); |
---|
| 242 | #else |
---|
| 243 | ResourceGroupManager::getSingleton().addResourceLocation( archName, typeName, secName); |
---|
| 244 | #endif |
---|
| 245 | } |
---|
| 246 | } |
---|
| 247 | } |
---|
[74] | 248 | |
---|
[137] | 249 | void setupRenderSystem() |
---|
| 250 | { |
---|
| 251 | if (!mRoot->restoreConfig() && !mRoot->showConfigDialog()) |
---|
| 252 | throw Exception(52, "User canceled the config dialog!", "OrxApplication::setupRenderSystem()"); |
---|
| 253 | } |
---|
[74] | 254 | |
---|
[137] | 255 | void createRenderWindow() |
---|
| 256 | { |
---|
| 257 | mRoot->initialise(true, "Ogre Render Window"); |
---|
| 258 | } |
---|
[74] | 259 | |
---|
[137] | 260 | void initializeResourceGroups() |
---|
| 261 | { |
---|
| 262 | TextureManager::getSingleton().setDefaultNumMipmaps(5); |
---|
| 263 | ResourceGroupManager::getSingleton().initialiseAllResourceGroups(); |
---|
| 264 | } |
---|
[74] | 265 | |
---|
[164] | 266 | void createScene(void) |
---|
| 267 | { |
---|
| 268 | |
---|
| 269 | string levelFile = "sp_level_moonstation.oxw"; |
---|
| 270 | loader::LevelLoader* loader = new loader::LevelLoader(levelFile); |
---|
| 271 | } |
---|
| 272 | |
---|
[137] | 273 | void setupScene() |
---|
| 274 | { |
---|
| 275 | SceneManager *mgr = mRoot->createSceneManager(ST_GENERIC, "Default SceneManager"); |
---|
| 276 | Camera *cam = mgr->createCamera("Camera"); |
---|
[209] | 277 | cam->setPosition(Vector3(0,0,-250)); |
---|
| 278 | cam->lookAt(Vector3(0,0,0)); |
---|
[137] | 279 | Viewport *vp = mRoot->getAutoCreatedWindow()->addViewport(cam); |
---|
[209] | 280 | |
---|
| 281 | |
---|
| 282 | mgr->setAmbientLight(ColourValue(1,1,1)); |
---|
| 283 | Entity* head = mgr->createEntity("head", "ogrehead.mesh"); |
---|
| 284 | SceneNode *node = mgr->getRootSceneNode()->createChildSceneNode("OgreHeadNode", Vector3(0,0,0)); |
---|
| 285 | node->attachObject(head); |
---|
| 286 | node->attachObject(cam); |
---|
| 287 | mgr->setSkyBox(true, "Examples/SceneSkyBox2"); |
---|
| 288 | |
---|
| 289 | Entity* head1 = mgr->createEntity("head1", "ogrehead.mesh"); |
---|
| 290 | SceneNode *node1 = mgr->getRootSceneNode()->createChildSceneNode("OgreHeadNode1", Vector3(200,0,0)); |
---|
| 291 | node1->attachObject(head1); |
---|
| 292 | Entity* head2 = mgr->createEntity("head2", "ogrehead.mesh"); |
---|
| 293 | SceneNode *node2 = mgr->getRootSceneNode()->createChildSceneNode("OgreHeadNode2", Vector3(200,400,-100)); |
---|
| 294 | node2->attachObject(head2); |
---|
| 295 | Entity* head3 = mgr->createEntity("head3", "ogrehead.mesh"); |
---|
| 296 | SceneNode *node3 = mgr->getRootSceneNode()->createChildSceneNode("OgreHeadNode3", Vector3(0,400,200)); |
---|
| 297 | node3->attachObject(head3); |
---|
| 298 | Entity* head4 = mgr->createEntity("head4", "ogrehead.mesh"); |
---|
| 299 | SceneNode *node4 = mgr->getRootSceneNode()->createChildSceneNode("OgreHeadNode4", Vector3(-400,-200,600)); |
---|
| 300 | node4->attachObject(head4); |
---|
| 301 | Entity* head5 = mgr->createEntity("head5", "ogrehead.mesh"); |
---|
| 302 | SceneNode *node5 = mgr->getRootSceneNode()->createChildSceneNode("OgreHeadNode5", Vector3(0,0,-400)); |
---|
| 303 | node5->attachObject(head5); |
---|
| 304 | |
---|
| 305 | steering = new SpaceshipSteering(500, 200, 200, 200); |
---|
| 306 | steering->addNode(node); |
---|
| 307 | |
---|
[137] | 308 | } |
---|
[74] | 309 | |
---|
[137] | 310 | void setupInputSystem() |
---|
| 311 | { |
---|
| 312 | size_t windowHnd = 0; |
---|
| 313 | std::ostringstream windowHndStr; |
---|
| 314 | OIS::ParamList pl; |
---|
| 315 | RenderWindow *win = mRoot->getAutoCreatedWindow(); |
---|
[74] | 316 | |
---|
[137] | 317 | win->getCustomAttribute("WINDOW", &windowHnd); |
---|
| 318 | windowHndStr << windowHnd; |
---|
| 319 | pl.insert(std::make_pair(std::string("WINDOW"), windowHndStr.str())); |
---|
| 320 | mInputManager = OIS::InputManager::createInputSystem(pl); |
---|
[74] | 321 | |
---|
[137] | 322 | try |
---|
| 323 | { |
---|
| 324 | mKeyboard = static_cast<OIS::Keyboard*>(mInputManager->createInputObject(OIS::OISKeyboard, false)); |
---|
[317] | 325 | mMouse = static_cast<OIS::Mouse*>(mInputManager->createInputObject(OIS::OISMouse, true)); |
---|
[137] | 326 | } |
---|
| 327 | catch (const OIS::Exception &e) |
---|
| 328 | { |
---|
| 329 | throw new Exception(42, e.eText, "OrxApplication::setupInputSystem"); |
---|
| 330 | } |
---|
[74] | 331 | } |
---|
| 332 | |
---|
[137] | 333 | void setupCEGUI() |
---|
[74] | 334 | { |
---|
[137] | 335 | SceneManager *mgr = mRoot->getSceneManager("Default SceneManager"); |
---|
| 336 | RenderWindow *win = mRoot->getAutoCreatedWindow(); |
---|
| 337 | |
---|
| 338 | // CEGUI setup |
---|
| 339 | // mRenderer = new CEGUI::OgreCEGUIRenderer(win, Ogre::RENDER_QUEUE_OVERLAY, false, 3000, mgr); |
---|
| 340 | // mSystem = new CEGUI::System(mRenderer); |
---|
| 341 | |
---|
| 342 | // Other CEGUI setup here. |
---|
[74] | 343 | } |
---|
[137] | 344 | |
---|
| 345 | void createFrameListener() |
---|
| 346 | { |
---|
[317] | 347 | mListener = new OrxExitListener(mKeyboard, mMouse); |
---|
[209] | 348 | mRoot->addFrameListener(mListener); |
---|
[137] | 349 | } |
---|
| 350 | |
---|
| 351 | void startRenderLoop() |
---|
| 352 | { |
---|
| 353 | mRoot->startRendering(); |
---|
| 354 | } |
---|
[74] | 355 | }; |
---|
| 356 | |
---|
[137] | 357 | #if OGRE_PLATFORM == PLATFORM_WIN32 || OGRE_PLATFORM == OGRE_PLATFORM_WIN32 |
---|
[74] | 358 | #define WIN32_LEAN_AND_MEAN |
---|
| 359 | #include "windows.h" |
---|
| 360 | |
---|
[137] | 361 | INT WINAPI WinMain(HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT) |
---|
[74] | 362 | #else |
---|
[137] | 363 | int main(int argc, char **argv) |
---|
[74] | 364 | #endif |
---|
| 365 | { |
---|
[137] | 366 | try |
---|
| 367 | { |
---|
| 368 | OrxApplication orxonox; |
---|
[74] | 369 | orxonox.go(); |
---|
[137] | 370 | } |
---|
| 371 | catch(Exception& e) |
---|
| 372 | { |
---|
| 373 | #if OGRE_PLATFORM == PLATFORM_WIN32 || OGRE_PLATFORM == OGRE_PLATFORM_WIN32 |
---|
| 374 | MessageBoxA(NULL, e.getFullDescription().c_str(), "An exception has occurred!", MB_OK | MB_ICONERROR | MB_TASKMODAL); |
---|
[74] | 375 | #else |
---|
| 376 | fprintf(stderr, "An exception has occurred: %s\n", |
---|
| 377 | e.getFullDescription().c_str()); |
---|
| 378 | #endif |
---|
| 379 | } |
---|
| 380 | |
---|
| 381 | return 0; |
---|
| 382 | } |
---|
[137] | 383 | |
---|