From 8a4aa60b830467d81f8029c194bec5b2e74ceb17 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Mon, 22 Oct 2007 17:44:54 +0000 Subject: basic system console (new files) --- src/client/client.cc | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/client/client.cc (limited to 'src/client/client.cc') diff --git a/src/client/client.cc b/src/client/client.cc new file mode 100644 index 0000000..14e6bb5 --- /dev/null +++ b/src/client/client.cc @@ -0,0 +1,80 @@ +/* + client/client.cc + This file is part of the Osirion project and is distributed under + the terms and conditions of the GNU General Public License version 2 +*/ + +#include "camera.h" +#include "view.h" +#include "video.h" +#include "input.h" +#include "console.h" + +#include "game/game.h" +#include "osirion.h" + +#include + +namespace client { + +Camera camera; +View view; +Video video; +Input input; + +void quit(int status) +{ + SDL_Quit(); + exit(status); +} + +void init() +{ + // initialize console + Console clientconsole; + common::Console::instance = &clientconsole; + + conmesg << "Project::OSiRiON " << OSIRION_VERSION << std::endl; + + // Initialize the video subsystem + video.init(); + if (!video.initialized) { + quit(1); + } + + // initialize input + input.init(); + + // initialize game + game::init(); +} + +void run() +{ + Uint32 startup = SDL_GetTicks(); + while(game::initialized) { + Uint32 chrono = SDL_GetTicks(); + + // overflow protection ~49 days + if (chrono < startup) { + startup = chrono; + } + + // update the game chronometers + float elapsed = (float) ( chrono - startup) / 1000.0f; + game::update(elapsed); + + // update the video chronometers and draw + video.draw(elapsed); + startup = chrono; + + // process input + input.process(); + } + + input.shutdown(); + video.shutdown(); + quit(0); +} + +} // namespace client -- cgit v1.2.3