123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- /*!
- * \file src/main.cpp
- * \brief Main Entry Point
- *
- * \author xythobuz
- */
-
- #include <iostream>
- #include <memory>
-
- #include "global.h"
- #include "Camera.h"
- #include "Log.h"
- #include "Menu.h"
- #include "Render.h"
- #include "RunTime.h"
- #include "SoundManager.h"
- #include "TextureManager.h"
- #include "UI.h"
- #include "World.h"
- #include "commander/commander.h"
- #include "commands/Command.h"
- #include "system/Font.h"
- #include "system/Shader.h"
- #include "system/Sound.h"
- #include "system/Window.h"
- #include "utils/time.h"
-
- static std::string configFileToUse;
- static std::shared_ptr<World> gWorld;
-
- World& getWorld() {
- return *gWorld;
- }
-
- int main(int argc, char* argv[]) {
- command_t cmd;
- command_init(&cmd, argv[0], VERSION);
- command_option(&cmd, "-c", "--config <file>", "select config file to use",
- [](command_t* self) {
- configFileToUse = self->arg;
- });
- command_parse(&cmd, argc, argv);
- command_free(&cmd);
-
- glbinding::Binding::initialize();
- Log::initialize();
- RunTime::initialize(); // RunTime is required by other constructors
-
- gWorld.reset(new World());
-
- Command::fillCommandList();
-
- Log::get(LOG_INFO) << "Initializing " << VERSION << Log::endl;
-
- // Initialize Windowing
- int error = Window::initialize();
- if (error != 0) {
- std::cout << "Could not initialize Window (" << error << ")!" << std::endl;
- return -1;
- }
-
- error = Shader::initialize();
- if (error != 0) {
- std::cout << "Could not initialize OpenGL (" << error << ")!" << std::endl;
- return -2;
- }
-
- // Initialize Texture Manager
- error = TextureManager::initialize();
- if (error != 0) {
- std::cout << "Could not initialize TextureManager (" << error << ")!" << std::endl;
- return -3;
- }
-
- if (configFileToUse == "") {
- if (Command::executeFile(DEFAULT_CONFIG_FILE) != 0) {
- if (Command::executeFile(std::string(DEFAULT_CONFIG_PATH) + "/" + DEFAULT_CONFIG_FILE) != 0) {
- std::string p = INSTALL_PREFIX;
- if (p != "/")
- p += "/";
- p += "share/OpenRaider/";
- Command::executeFile(p + DEFAULT_CONFIG_FILE);
- }
- }
- } else {
- Command::executeFile(configFileToUse);
- }
-
- error = TextureManager::initializeSplash();
- if (error != 0) {
- std::cout << "Coult not load Splash Texture (" << error << ")!" << std::endl;
- return -4;
- }
-
- // Initialize Sound
- error = Sound::initialize();
- if (error != 0) {
- std::cout << "Could not initialize Sound (" << error << ")!" << std::endl;
- return -5;
- }
-
- // Initialize Debug UI
- error = UI::initialize();
- if (error != 0) {
- std::cout << "Could not initialize Debug UI (" << error << ")!" << std::endl;
- return -6;
- }
-
- // Initialize Menu
- error = Menu::initialize();
- if (error != 0) {
- std::cout << "Could not initialize Menu (" << error << ")!" << std::endl;
- return -7;
- }
-
- Log::get(LOG_INFO) << "Starting " << VERSION << Log::endl;
- Camera::setSize(Window::getSize());
- Menu::setVisible(true);
- systemTimerReset();
- RunTime::setRunning(true);
- Render::setMode(RenderMode::LoadScreen);
-
- while (RunTime::isRunning()) {
- Window::eventHandling();
- renderFrame();
- }
-
- Menu::shutdown();
- UI::shutdown();
- Font::shutdown();
- Sound::shutdown();
- Shader::shutdown();
- Window::shutdown();
-
- #ifdef DEBUG
- std::cout << std::endl;
- std::cout << "Thanks for testing " << VERSION << std::endl;
- std::cout << "Build date: " << __DATE__ << " @ " << __TIME__ << std::endl;
- std::cout << "Build host: " << BUILD_HOST << std::endl;
- std::cout << "Web site : http://github.com/xythobuz/OpenRaider" << std::endl;
- std::cout << "Contact : xythobuz@xythobuz.de" << std::endl;
- #endif
-
- return 0;
- }
-
- void renderFrame() {
- Render::display();
- UI::display();
- Window::swapBuffers();
- RunTime::updateFPS();
- }
-
- #if defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE) && defined(HAVE_BACKTRACE_SYMBOLS)
- #ifndef NODEBUG
-
- #include <exception>
- #include <execinfo.h>
-
- [[noreturn]] static void terminateHandler();
- static std::terminate_handler oldTerminateHandler = std::set_terminate(terminateHandler);
-
- [[noreturn]] static void terminateHandler() {
- const unsigned int maxSize = 128;
- void* callstack[maxSize];
- int frames = backtrace(callstack, maxSize);
- char** strs = backtrace_symbols(callstack, frames);
-
- std::cout << std::endl;
- for (int i = frames; i > 0; i++)
- std::cout << strs[i - 1] << std::endl;
-
- delete [] strs;
-
- oldTerminateHandler();
- abort();
- }
-
- #endif // NODEBUG
- #endif // HAVE_EXECINFO_H && HAVE_BACKTRACE && HAVE_BACKTRACE_SYMBOLS
|