[1850] | 1 | /* |
---|
| 2 | orxonox - the future of 3D-vertical-scrollers |
---|
| 3 | |
---|
| 4 | Copyright (C) 2004 orx |
---|
| 5 | |
---|
| 6 | This program is free software; you can redistribute it and/or modify |
---|
| 7 | it under the terms of the GNU General Public License as published by |
---|
| 8 | the Free Software Foundation; either version 2, or (at your option) |
---|
| 9 | any later version. |
---|
| 10 | |
---|
| 11 | This program is distributed in the hope that it will be useful, |
---|
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 14 | GNU General Public License for more details. |
---|
| 15 | |
---|
| 16 | You should have received a copy of the GNU General Public License |
---|
| 17 | along with this program; if not, write to the Free Software Foundation, |
---|
| 18 | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
---|
| 19 | |
---|
[1855] | 20 | |
---|
| 21 | ### File Specific: |
---|
| 22 | main-programmer: Patrick Boenzli |
---|
[2190] | 23 | co-programmer: Christian Meyer |
---|
[1850] | 24 | */ |
---|
| 25 | |
---|
[2190] | 26 | #include "orxonox.h" |
---|
[2036] | 27 | #include "world.h" |
---|
[2190] | 28 | #include "camera.h" |
---|
[2036] | 29 | #include "data_tank.h" |
---|
[2190] | 30 | #include "command_node.h" |
---|
[2636] | 31 | #include "game_loader.h" |
---|
[2190] | 32 | #include <string.h> |
---|
[2036] | 33 | |
---|
[1803] | 34 | using namespace std; |
---|
| 35 | |
---|
[2190] | 36 | /** |
---|
[2636] | 37 | \brief create a new Orxonox |
---|
[2190] | 38 | */ |
---|
| 39 | Orxonox::Orxonox () |
---|
[1872] | 40 | { |
---|
| 41 | pause = false; |
---|
| 42 | } |
---|
[1803] | 43 | |
---|
[2190] | 44 | /** |
---|
[2636] | 45 | \brief remove Orxonox from memory |
---|
[2190] | 46 | */ |
---|
[1875] | 47 | Orxonox::~Orxonox () |
---|
[2190] | 48 | { |
---|
[3226] | 49 | Orxonox::singletonRef = NULL; |
---|
[2636] | 50 | if( world != NULL) delete world; |
---|
| 51 | if( localinput != NULL) delete world; |
---|
| 52 | if( localcamera != NULL) delete localcamera; |
---|
| 53 | if( resources != NULL) delete resources; |
---|
[2190] | 54 | } |
---|
[1850] | 55 | |
---|
| 56 | |
---|
[2190] | 57 | /* this is a singleton class to prevent duplicates */ |
---|
[3226] | 58 | Orxonox* Orxonox::singletonRef = 0; |
---|
[1872] | 59 | |
---|
[1850] | 60 | Orxonox* Orxonox::getInstance (void) |
---|
[1803] | 61 | { |
---|
[3226] | 62 | if (singletonRef == NULL) |
---|
| 63 | singletonRef = new Orxonox(); |
---|
| 64 | return singletonRef; |
---|
[1850] | 65 | } |
---|
| 66 | |
---|
[2190] | 67 | /** |
---|
[2636] | 68 | \brief this finds the config file |
---|
| 69 | |
---|
| 70 | Since the config file varies from user to user and since one may want to specify different config files |
---|
| 71 | for certain occasions or platforms this function finds the right config file for every occasion and stores |
---|
| 72 | it's path and name into configfilename |
---|
[2190] | 73 | */ |
---|
[3226] | 74 | void Orxonox::getConfigFile (int argc, char** argv) |
---|
[1850] | 75 | { |
---|
[2636] | 76 | strcpy (configfilename, "orxonox.conf"); |
---|
[1803] | 77 | } |
---|
| 78 | |
---|
[2190] | 79 | /** |
---|
[2636] | 80 | \brief initialize Orxonox with command line |
---|
[2190] | 81 | */ |
---|
| 82 | int Orxonox::init (int argc, char** argv) |
---|
[1803] | 83 | { |
---|
[2636] | 84 | // parse command line |
---|
| 85 | // config file |
---|
| 86 | |
---|
[3226] | 87 | getConfigFile (argc, argv); |
---|
[3174] | 88 | SDL_Init (SDL_INIT_TIMER); |
---|
[2636] | 89 | // initialize everything |
---|
[3226] | 90 | if( initVideo() == -1) return -1; |
---|
| 91 | if( initSound() == -1) return -1; |
---|
[2190] | 92 | printf("> Initializing input\n"); |
---|
[3226] | 93 | if( initInput() == -1) return -1; |
---|
[2190] | 94 | printf("> Initializing networking\n"); |
---|
[3226] | 95 | if( initNetworking () == -1) return -1; |
---|
[2190] | 96 | printf("> Initializing resources\n"); |
---|
[3226] | 97 | if( initResources () == -1) return -1; |
---|
[2636] | 98 | //printf("> Initializing world\n"); |
---|
| 99 | //if( init_world () == -1) return -1; PB: world will be initialized when started |
---|
| 100 | |
---|
| 101 | return 0; |
---|
[1850] | 102 | } |
---|
[1849] | 103 | |
---|
[2190] | 104 | /** |
---|
[2636] | 105 | \brief initializes SDL and OpenGL |
---|
[2190] | 106 | */ |
---|
[3226] | 107 | int Orxonox::initVideo() |
---|
[2190] | 108 | { |
---|
[3174] | 109 | printf("> Initializing video\n"); |
---|
[3226] | 110 | if (SDL_Init(SDL_INIT_VIDEO) == -1) |
---|
[3174] | 111 | { |
---|
| 112 | printf ("could not initialize SDL Video\n"); |
---|
| 113 | return -1; |
---|
| 114 | } |
---|
[2190] | 115 | // Set video mode |
---|
| 116 | // TO DO: parse arguments for settings |
---|
[3365] | 117 | //SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 5); |
---|
| 118 | //SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 5); |
---|
| 119 | //SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 5); |
---|
| 120 | //SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16); |
---|
[2190] | 121 | |
---|
[3365] | 122 | |
---|
| 123 | SDL_GL_SetAttribute( SDL_GL_DOUBLEBUFFER, 1 ); |
---|
| 124 | SDL_GL_SetAttribute( SDL_GL_DEPTH_SIZE, 16); |
---|
| 125 | SDL_GL_SetAttribute( SDL_GL_STENCIL_SIZE, 0); |
---|
| 126 | SDL_GL_SetAttribute( SDL_GL_ACCUM_RED_SIZE, 0); |
---|
| 127 | SDL_GL_SetAttribute( SDL_GL_ACCUM_GREEN_SIZE, 0); |
---|
| 128 | SDL_GL_SetAttribute( SDL_GL_ACCUM_BLUE_SIZE, 0); |
---|
| 129 | SDL_GL_SetAttribute( SDL_GL_ACCUM_ALPHA_SIZE, 0); |
---|
| 130 | |
---|
| 131 | |
---|
| 132 | |
---|
[2190] | 133 | int bpp = 16; |
---|
[3679] | 134 | int width = 1024; |
---|
| 135 | int height = 768; |
---|
[3365] | 136 | //Uint32 flags = SDL_HWSURFACE | SDL_OPENGL | SDL_GL_DOUBLEBUFFER; /* \todo: SDL_OPENGL doen't permit to load images*/ |
---|
| 137 | //Uint32 flags = SDL_HWSURFACE | SDL_GL_DOUBLEBUFFER; |
---|
| 138 | |
---|
| 139 | Uint32 videoFlags = SDL_OPENGL | SDL_HWPALETTE | SDL_RESIZABLE; |
---|
| 140 | |
---|
| 141 | /* query SDL for information about our video hardware */ |
---|
| 142 | const SDL_VideoInfo* videoInfo = SDL_GetVideoInfo (); |
---|
[2190] | 143 | |
---|
[3365] | 144 | if( videoInfo == NULL) |
---|
| 145 | { |
---|
| 146 | printf ("Orxonox::initVideo() - Failed getting Video Info :%s\n", SDL_GetError()); |
---|
| 147 | SDL_Quit (); |
---|
| 148 | } |
---|
| 149 | if( videoInfo->hw_available) |
---|
| 150 | videoFlags |= SDL_HWSURFACE; |
---|
| 151 | else |
---|
| 152 | videoFlags |= SDL_SWSURFACE; |
---|
| 153 | /* |
---|
| 154 | if(VideoInfo -> blit_hw) |
---|
| 155 | VideoFlags |= SDL_HWACCEL; |
---|
| 156 | */ |
---|
| 157 | |
---|
| 158 | if((this->screen = SDL_SetVideoMode (width, height, bpp, videoFlags)) == NULL) |
---|
[2190] | 159 | { |
---|
[3365] | 160 | printf("Could not SDL_SetVideoMode(%d, %d, %d, %d): %s\n", width, height, bpp, videoFlags, SDL_GetError()); |
---|
[2190] | 161 | SDL_Quit(); |
---|
| 162 | return -1; |
---|
| 163 | } |
---|
| 164 | |
---|
| 165 | // Set window labeling |
---|
[3365] | 166 | SDL_WM_SetCaption ("Orxonox " PACKAGE_VERSION, "Orxonox " PACKAGE_VERSION); |
---|
[2190] | 167 | |
---|
| 168 | // TO DO: Create a cool icon and use it here |
---|
| 169 | // SDL_WM_SetIcon(SDL_Surface *icon, Uint8 *mask); |
---|
[1850] | 170 | |
---|
[2190] | 171 | // OpenGL stuff |
---|
[3365] | 172 | glClearColor (0.0, 0.0, 0.0, 0.0); |
---|
| 173 | glEnable (GL_DEPTH_TEST); |
---|
[2817] | 174 | |
---|
| 175 | // LIGHTING |
---|
| 176 | GLfloat lmodelAmbient[] = {.1, .1, .1, 1.0}; |
---|
| 177 | GLfloat whiteLight[] = {1.0, 1.0, 1.0,1.0}; |
---|
[3410] | 178 | GLfloat brightLight[]={2.0,2.0,2.0,1.0}; |
---|
[3679] | 179 | GLfloat lightPosition[] = {0.0, 4, 4, 0.0}; |
---|
[3410] | 180 | GLfloat lightPosition2[]={ 180.0,-20.0,-30.0,0.0}; |
---|
[2817] | 181 | |
---|
[3365] | 182 | glLightfv (GL_LIGHT0, GL_DIFFUSE, whiteLight); |
---|
| 183 | glLightfv (GL_LIGHT0, GL_SPECULAR, whiteLight); |
---|
[3410] | 184 | glLightfv (GL_LIGHT1, GL_DIFFUSE, brightLight); |
---|
| 185 | glLightfv (GL_LIGHT1, GL_SPECULAR, brightLight); |
---|
[3365] | 186 | glEnable (GL_LIGHTING); |
---|
| 187 | glEnable (GL_LIGHT0); |
---|
[3410] | 188 | glEnable (GL_LIGHT1); |
---|
[3365] | 189 | glEnable (GL_DEPTH_TEST); |
---|
| 190 | glLightfv (GL_LIGHT0, GL_POSITION, lightPosition); |
---|
[3410] | 191 | glLightfv (GL_LIGHT1, GL_POSITION, lightPosition2); |
---|
| 192 | //glLightfv (GL_LIGHT0, GL_DIFFUSE, whiteLight); |
---|
| 193 | //glLightfv (GL_LIGHT1, GL_D, brightLight); |
---|
[3365] | 194 | //glEnable (GL_TEXTURE_2D); |
---|
[2792] | 195 | // glEnable(GL_COLOR); |
---|
| 196 | // glShadeModel(GL_SMOOTH); |
---|
[1899] | 197 | |
---|
[2190] | 198 | // create camera |
---|
[3213] | 199 | //localcamera = new Camera(world); /* \todo camera/input node not used anymore*/ |
---|
[2190] | 200 | |
---|
| 201 | return 0; |
---|
| 202 | } |
---|
[1850] | 203 | |
---|
[3214] | 204 | |
---|
[2190] | 205 | /** |
---|
[2636] | 206 | \brief initializes the sound engine |
---|
[2190] | 207 | */ |
---|
[3226] | 208 | int Orxonox::initSound() |
---|
[2190] | 209 | { |
---|
[3174] | 210 | printf("> Initializing sound\n"); |
---|
[3226] | 211 | // SDL_Init(SDL_INIT_AUDIO); |
---|
[2636] | 212 | printf("Not yet implemented\n"); |
---|
| 213 | return 0; |
---|
[2190] | 214 | } |
---|
[1900] | 215 | |
---|
[3214] | 216 | |
---|
[2190] | 217 | /** |
---|
[2636] | 218 | \brief initializes input functions |
---|
[2190] | 219 | */ |
---|
[3226] | 220 | int Orxonox::initInput() |
---|
[2190] | 221 | { |
---|
[2636] | 222 | // create localinput |
---|
| 223 | localinput = new CommandNode( configfilename); |
---|
| 224 | |
---|
| 225 | return 0; |
---|
[1803] | 226 | } |
---|
| 227 | |
---|
[3214] | 228 | |
---|
[2190] | 229 | /** |
---|
[2636] | 230 | \brief initializes network system |
---|
[2190] | 231 | */ |
---|
[3226] | 232 | int Orxonox::initNetworking() |
---|
[1897] | 233 | { |
---|
[2636] | 234 | printf("Not yet implemented\n"); |
---|
| 235 | return 0; |
---|
[1897] | 236 | } |
---|
| 237 | |
---|
[3214] | 238 | |
---|
[2190] | 239 | /** |
---|
[2636] | 240 | \brief initializes and loads resource files |
---|
[2190] | 241 | */ |
---|
[3226] | 242 | int Orxonox::initResources() |
---|
[1858] | 243 | { |
---|
[2636] | 244 | printf("Not yet implemented\n"); |
---|
| 245 | return 0; |
---|
[1858] | 246 | } |
---|
[1849] | 247 | |
---|
[3214] | 248 | |
---|
[2190] | 249 | /** |
---|
[2636] | 250 | \brief initializes the world |
---|
[2190] | 251 | */ |
---|
[3226] | 252 | int Orxonox::initWorld() |
---|
[1896] | 253 | { |
---|
[2636] | 254 | //world = new World(); |
---|
| 255 | |
---|
| 256 | // TO DO: replace this with a menu/intro |
---|
| 257 | //world->load_debug_level(); |
---|
| 258 | |
---|
| 259 | return 0; |
---|
[1896] | 260 | } |
---|
| 261 | |
---|
[2636] | 262 | |
---|
[2190] | 263 | /** |
---|
[2636] | 264 | \brief starts the orxonox game or menu |
---|
| 265 | |
---|
| 266 | here is the central orxonox state manager. There are currently two states |
---|
| 267 | - menu |
---|
| 268 | - game-play |
---|
| 269 | both states manage their states themselfs again. |
---|
[2190] | 270 | */ |
---|
[2636] | 271 | void Orxonox::start() |
---|
| 272 | { |
---|
| 273 | |
---|
| 274 | this->gameLoader = GameLoader::getInstance(); |
---|
| 275 | this->gameLoader->loadDebugCampaign(DEBUG_CAMPAIGN_0); |
---|
| 276 | this->gameLoader->init(); |
---|
| 277 | this->gameLoader->start(); |
---|
| 278 | } |
---|
| 279 | |
---|
[3214] | 280 | |
---|
[2636] | 281 | /** |
---|
| 282 | \brief exits Orxonox |
---|
| 283 | */ |
---|
[1875] | 284 | void Orxonox::quitGame() |
---|
| 285 | { |
---|
[2636] | 286 | bQuitOrxonox = true; |
---|
[1875] | 287 | } |
---|
| 288 | |
---|
| 289 | |
---|
[3214] | 290 | |
---|
[2190] | 291 | /** |
---|
[2636] | 292 | \brief handles sprecial events from localinput |
---|
| 293 | \param event: an event not handled by the CommandNode |
---|
[2190] | 294 | */ |
---|
[3226] | 295 | void Orxonox::eventHandler(SDL_Event* event) |
---|
[2190] | 296 | { |
---|
[2636] | 297 | // Handle special events such as reshape, quit, focus changes |
---|
[2190] | 298 | } |
---|
[3214] | 299 | |
---|
[1875] | 300 | |
---|
[2190] | 301 | /** |
---|
[2636] | 302 | \brief handle keyboard commands that are not meant for WorldEntities |
---|
| 303 | \param cmd: the command to handle |
---|
| 304 | \return true if the command was handled by the system or false if it may be passed to the WorldEntities |
---|
[2190] | 305 | */ |
---|
[3226] | 306 | bool Orxonox::systemCommand(Command* cmd) |
---|
[2190] | 307 | { |
---|
[3220] | 308 | /* |
---|
[2636] | 309 | if( !strcmp( cmd->cmd, "quit")) |
---|
| 310 | { |
---|
| 311 | if( !cmd->bUp) this->gameLoader->stop(); |
---|
| 312 | return true; |
---|
| 313 | } |
---|
| 314 | return false; |
---|
[3220] | 315 | */ |
---|
| 316 | return false; |
---|
[2190] | 317 | } |
---|
[1803] | 318 | |
---|
[1850] | 319 | |
---|
[2190] | 320 | /** |
---|
[2636] | 321 | \brief retrieve a pointer to the local Camera |
---|
| 322 | \return a pointer to localcamera |
---|
[2190] | 323 | */ |
---|
[3226] | 324 | Camera* Orxonox::getCamera() |
---|
[1872] | 325 | { |
---|
[2636] | 326 | return localcamera; |
---|
[1872] | 327 | } |
---|
[1850] | 328 | |
---|
[3214] | 329 | |
---|
[2190] | 330 | /** |
---|
[2636] | 331 | \brief retrieve a pointer to the local CommandNode |
---|
| 332 | \return a pointer to localinput |
---|
[2190] | 333 | */ |
---|
[3226] | 334 | CommandNode* Orxonox::getLocalInput() |
---|
[1850] | 335 | { |
---|
[2636] | 336 | return localinput; |
---|
[1803] | 337 | } |
---|
| 338 | |
---|
[3214] | 339 | |
---|
[2190] | 340 | /** |
---|
[2636] | 341 | \brief retrieve a pointer to the local World |
---|
| 342 | \return a pointer to world |
---|
[2190] | 343 | */ |
---|
[3226] | 344 | World* Orxonox::getWorld() |
---|
[1872] | 345 | { |
---|
[2636] | 346 | return world; |
---|
[1872] | 347 | } |
---|
[1850] | 348 | |
---|
[3214] | 349 | |
---|
[3365] | 350 | SDL_Surface* Orxonox::getScreen () |
---|
| 351 | { |
---|
| 352 | return this->screen; |
---|
| 353 | } |
---|
[3214] | 354 | |
---|
| 355 | |
---|
[3226] | 356 | int main(int argc, char** argv) |
---|
[1803] | 357 | { |
---|
[2636] | 358 | printf(">>> Starting Orxonox <<<\n"); |
---|
[1850] | 359 | Orxonox *orx = Orxonox::getInstance(); |
---|
[2190] | 360 | |
---|
[3226] | 361 | if((*orx).init(argc, argv) == -1) |
---|
[2636] | 362 | { |
---|
| 363 | printf("! Orxonox initialization failed\n"); |
---|
| 364 | return -1; |
---|
| 365 | } |
---|
| 366 | |
---|
| 367 | orx->start(); |
---|
| 368 | |
---|
[2190] | 369 | //delete orx; |
---|
| 370 | |
---|
[1803] | 371 | return 0; |
---|
| 372 | } |
---|