tibia-client/src/main.cpp

137 lines
4.0 KiB
C++
Raw Normal View History

2010-11-19 16:55:55 +01:00
/* The MIT License
*
* Copyright (c) 2010 OTClient, https://github.com/edubart/otclient
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
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>
2011-07-17 02:13:53 +02:00
#include <script/scriptcontext.h>
#include <ui/uicontainer.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
2011-07-13 23:12:36 +02:00
info("OTClient 0.2.0");
// install exit signal handler
signal(SIGTERM, signal_handler);
signal(SIGINT, signal_handler);
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());
// load configurations
loadDefaultConfigs();
2011-07-17 02:13:53 +02:00
if(!g_configs.load("config.otml"))
2011-07-13 23:12:36 +02:00
info("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
2011-07-17 08:56:57 +02:00
g_uiSkins.load("tibiaskin");
2011-04-09 01:20:44 +02:00
// load script modules
g_lua.loadAllModules();
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();
return 0;
}