diff options
author | Stijn Buys <ingar@osirion.org> | 2008-02-05 00:10:02 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-02-05 00:10:02 +0000 |
commit | 95ca0e469ef856c0182bb0da411e4417391e3780 (patch) | |
tree | a07db9b9d726d175d8305dc3cc5520b8a70f7a73 /src/server/application.cc | |
parent | cf61370df80de6dc659dbd9b803c973b300c1b4c (diff) |
renamed client and server application objects
cleaned up namespaces
Diffstat (limited to 'src/server/application.cc')
-rw-r--r-- | src/server/application.cc | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/src/server/application.cc b/src/server/application.cc deleted file mode 100644 index 8ea0808..0000000 --- a/src/server/application.cc +++ /dev/null @@ -1,66 +0,0 @@ -/* - server/application.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 -*/ - -// project headers -#include "server/server.h" -#include "server/application.h" -#include "server/timer.h" -#include "core/core.h" -#include "game/game.h" - -namespace server { - -void Application::init() -{ - // FIXME core should be able to load game.so - // force initialization of the game object - server::game = new game::Game(); - - con_print << "Initializing server..." << std::endl; - - // initialize core - core::ApplicationInterface::init(); - - // connect to the game module - core::ApplicationInterface::connect(); -} - -void Application::run() -{ - const float server_framerate = 1.0f / 20.0f; - server::Timer timer; - - timer.mark(); - - while(true) { - float elapsed = timer.elapsed(); - - frame(elapsed); - - sys::sleep(server_framerate - elapsed); - timer.mark(); - } - -} - -void Application::shutdown() -{ - con_debug << "Shutting down server..." << std::endl; - - core::ApplicationInterface::shutdown(); - - quit(0); -} - -void Application::quit(int status) -{ - // FIXME core should be able to unload game.so - delete server::game; - - core::ApplicationInterface::quit(status); -} - -} |