tibia-client/src/main.cpp

123 lines
3.1 KiB
C++
Raw Normal View History

2011-07-13 23:12:36 +02:00
#include <global.h>
2011-04-17 21:14:24 +02:00
#include <core/engine.h>
#include <core/configs.h>
#include <core/resources.h>
#include <core/platform.h>
#include <core/dispatcher.h>
#include <ui/uiskins.h>
#include <core/packages.h>
#include <ui/uicontainer.h>
#include <script/luainterface.h>
2011-08-02 04:07:19 +02:00
#include "tibiadat.h"
2011-07-13 23:12:36 +02:00
#include <csignal>
void signal_handler(int sig)
{
static bool stopping = false;
switch(sig) {
case SIGTERM:
case SIGINT:
if(!stopping) {
stopping = true;
g_engine.onClose();
}
break;
}
}
void loadDefaultConfigs()
{
2011-03-20 23:10:02 +01:00
// default size
2011-04-10 00:55:58 +02:00
int defWidth = 550;
int defHeight = 450;
2011-03-20 23:10:02 +01:00
g_configs.set("window x", (Platform::getDisplayWidth() - defWidth)/2);
g_configs.set("window y", (Platform::getDisplayHeight() - defHeight)/2);
g_configs.set("window width", defWidth);
g_configs.set("window height", defHeight);
g_configs.set("window maximized", false);
2011-07-17 02:13:53 +02:00
g_configs.set("skin", "tibia");
}
2011-03-20 20:10:40 +01:00
void saveConfigs()
{
g_configs.set("window x", Platform::getWindowX());
g_configs.set("window y", Platform::getWindowY());
g_configs.set("window width", Platform::getWindowWidth());
g_configs.set("window height", Platform::getWindowHeight());
g_configs.set("window maximized", Platform::isWindowMaximized());
2011-04-06 22:53:00 +02:00
g_configs.save();
2011-03-20 20:10:40 +01:00
}
2011-05-17 01:56:57 +02:00
#ifdef WIN32_NO_CONSOLE
#include <windows.h>
2011-05-17 06:32:18 +02:00
int WINAPI WinMain(HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPSTR lpszArgument, int nCmdShow)
2011-05-17 01:56:57 +02:00
{
std::vector<std::string> args;
2011-05-17 06:32:18 +02:00
boost::split(args, lpszArgument, boost::is_any_of(std::string(" ")));
2011-05-17 01:56:57 +02:00
#else
int main(int argc, const char *argv[])
{
2011-05-17 01:56:57 +02:00
std::vector<std::string> args;
for(int i=0;i<argc;++i)
args.push_back(argv[i]);
#endif
logInfo("OTClient 0.2.0");
// install exit signal handler
signal(SIGTERM, signal_handler);
signal(SIGINT, signal_handler);
// init script stuff
g_lua.init();
2011-03-20 21:23:13 +01:00
// init platform stuff
Platform::init("OTClient");
// load resources paths
2011-05-17 01:56:57 +02:00
g_resources.init(args[0].c_str());
2011-08-02 04:07:19 +02:00
// load Tibia.dat TODO this is temporary
if(!g_tibiaDat.load("Tibia.dat"))
return -1;
// load configurations
loadDefaultConfigs();
2011-07-17 02:13:53 +02:00
if(!g_configs.load("config.otml"))
logInfo("Could not read configuration file, default configurations will be used.");
2011-03-20 20:10:40 +01:00
// create the window
2011-05-20 01:56:27 +02:00
Platform::createWindow(g_configs.get("window x"), g_configs.get("window y"),
g_configs.get("window width"), g_configs.get("window height"),
2011-04-10 00:55:58 +02:00
550, 450,
2011-05-20 01:56:27 +02:00
g_configs.get("window maximized"));
2011-03-20 20:10:40 +01:00
Platform::setWindowTitle("OTClient");
2011-04-07 22:36:40 +02:00
//Platform::setVsync();
2011-03-20 20:10:40 +01:00
// init engine
g_engine.init();
g_engine.enableFpsCounter();
// load ui skins
g_uiSkins.load("default");
2011-04-09 01:20:44 +02:00
// load script modules
g_packages.loadPackages();
2011-03-20 20:10:40 +01:00
Platform::showWindow();
2011-04-02 21:59:49 +02:00
// main loop, run everything
g_engine.run();
2011-04-10 03:13:12 +02:00
// terminate stuff
g_engine.terminate();
g_uiSkins.terminate();
2011-03-20 20:10:40 +01:00
saveConfigs();
2011-03-20 22:41:32 +01:00
Platform::terminate();
g_resources.terminate();
g_lua.terminate();
return 0;
}