1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
/***************************************************************************
main.cpp - description
-------------------
begin : Wed Aug 15 2001
copyright : (C) 2001 by Giuseppe "Quobod" D'Aqu
email : kumber@tiscalinet.it
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "dephine.h"
#include "game.h"
class Epiphany_App : public CL_ClanApplication
{
//class Epiphany_App: contiene tutti i membri necessari all'applicazione
//come main() e get_title()
char* get_title()
{
return "Epiphany 0.5.0 ";
}
void init_modules()
{
CL_SetupCore::init();
CL_SetupDisplay::init();
CL_SetupSound::init();
}
int main(int, char**)
{
init_modules();
// DEBOUT("Calling CL_Display::set_videomode\n");
try
{
Game game;
game.go();
DEBOUT("Exiting game::go().\n");
}
catch(Common_Ex ex)
{
std::cout<<ex.get_message();
}
deinit_modules();
DEBOUT("\tExiting.\n");
return 0;
}
void deinit_modules()
{
CL_SetupSound::deinit();
CL_SetupDisplay::deinit();
CL_SetupCore::deinit();
}
}app;
|