2011-08-28 15:17:58 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2011 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-08-15 16:11:24 +02:00
|
|
|
#include "otclient.h"
|
|
|
|
|
|
|
|
#include <framework/core/modulemanager.h>
|
2011-08-16 14:47:30 +02:00
|
|
|
#include <framework/core/configs.h>
|
2011-08-15 16:11:24 +02:00
|
|
|
#include <framework/core/resourcemanager.h>
|
|
|
|
#include <framework/core/eventdispatcher.h>
|
|
|
|
#include <framework/luascript/luainterface.h>
|
|
|
|
#include <framework/platform/platform.h>
|
|
|
|
#include <framework/graphics/graphics.h>
|
|
|
|
#include <framework/graphics/fontmanager.h>
|
|
|
|
#include <framework/ui/uimanager.h>
|
|
|
|
#include <framework/ui/uiwidget.h>
|
|
|
|
#include <framework/net/connection.h>
|
|
|
|
|
|
|
|
#include <otclient/net/protocolgame.h>
|
|
|
|
#include <otclient/core/game.h>
|
|
|
|
#include <otclient/core/map.h>
|
|
|
|
|
|
|
|
OTClient g_client;
|
|
|
|
|
|
|
|
void OTClient::init(std::vector<std::string> args)
|
|
|
|
{
|
|
|
|
m_running = false;
|
|
|
|
m_stopping = false;
|
|
|
|
|
|
|
|
// print client information
|
2011-08-28 20:26:57 +02:00
|
|
|
logInfo(Otc::AppName, " ", Otc::AppVersion);
|
2011-08-15 16:11:24 +02:00
|
|
|
|
|
|
|
// initialize platform related stuff
|
2011-08-28 20:26:57 +02:00
|
|
|
g_platform.init(this, Otc::AppName);
|
2011-08-15 16:11:24 +02:00
|
|
|
|
|
|
|
// initialize script environment
|
|
|
|
g_lua.init();
|
|
|
|
|
|
|
|
// register otclient lua functions
|
|
|
|
registerLuaFunctions();
|
|
|
|
|
|
|
|
// initialize resources
|
|
|
|
g_resources.init(args[0].c_str());
|
|
|
|
|
|
|
|
// load configurations
|
|
|
|
loadConfigurations();
|
|
|
|
|
|
|
|
// create the client window
|
2011-08-16 14:47:30 +02:00
|
|
|
int minWidth = 550;
|
|
|
|
int minHeight = 450;
|
2011-08-28 18:02:26 +02:00
|
|
|
int windowX = Fw::fromstring(g_configs.get("window x"), 0);
|
|
|
|
int windowY = Fw::fromstring(g_configs.get("window y"), 0);
|
|
|
|
int windowWidth = Fw::fromstring(g_configs.get("window width"), minWidth);
|
|
|
|
int windowHeight = Fw::fromstring(g_configs.get("window height"), minHeight);
|
|
|
|
bool maximized = Fw::fromstring(g_configs.get("window maximized"), false);
|
2011-08-16 14:47:30 +02:00
|
|
|
g_platform.createWindow(windowX, windowY, windowWidth, windowHeight, minWidth, minHeight, maximized);
|
2011-08-28 20:26:57 +02:00
|
|
|
g_platform.setWindowTitle(Otc::AppName);
|
2011-08-15 16:11:24 +02:00
|
|
|
|
|
|
|
// initialize graphics
|
|
|
|
g_graphics.init();
|
|
|
|
|
|
|
|
// initialize event dispatcher
|
|
|
|
g_dispatcher.init();
|
|
|
|
|
|
|
|
// initialize network
|
|
|
|
//g_network.init();
|
|
|
|
|
|
|
|
// initialize the ui
|
|
|
|
g_ui.init();
|
|
|
|
|
2011-08-16 02:30:31 +02:00
|
|
|
g_game.init();
|
|
|
|
|
2011-08-15 16:11:24 +02:00
|
|
|
// discover and load modules
|
|
|
|
g_modules.discoverAndLoadModules();
|
|
|
|
|
|
|
|
// now that everything is initialized, setup configurations
|
|
|
|
setupConfigurations();
|
|
|
|
|
|
|
|
// now that everything is loaded, show the window
|
|
|
|
g_platform.showWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OTClient::run()
|
|
|
|
{
|
|
|
|
std::string fpsText;
|
|
|
|
Size fpsTextSize;
|
|
|
|
FontPtr defaultFont = g_fonts.getDefaultFont();
|
|
|
|
int frameTicks = g_platform.getTicks();
|
|
|
|
int lastFpsTicks = frameTicks;
|
|
|
|
int lastPollTicks = frameTicks;
|
|
|
|
int frameCount = 0;
|
|
|
|
|
|
|
|
m_stopping = false;
|
|
|
|
m_running = true;
|
|
|
|
|
|
|
|
if(g_ui.getRootWidget()->getChildCount() == 0) {
|
2011-08-20 22:30:41 +02:00
|
|
|
logError("there is no root widgets to display, the app will close");
|
2011-08-15 16:11:24 +02:00
|
|
|
m_stopping = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// run the first poll
|
|
|
|
poll();
|
|
|
|
|
|
|
|
while(!m_stopping) {
|
2011-08-16 14:47:30 +02:00
|
|
|
g_platform.updateTicks();
|
2011-08-15 16:11:24 +02:00
|
|
|
frameTicks = g_platform.getTicks();
|
|
|
|
|
|
|
|
// calculate fps
|
|
|
|
frameCount++;
|
|
|
|
if(frameTicks - lastFpsTicks >= 1000) {
|
2011-08-28 18:02:26 +02:00
|
|
|
fpsText = Fw::mkstr("FPS: ", frameCount);
|
2011-08-15 16:11:24 +02:00
|
|
|
fpsTextSize = defaultFont->calculateTextRectSize(fpsText);
|
|
|
|
frameCount = 0;
|
|
|
|
lastFpsTicks = frameTicks;
|
|
|
|
}
|
|
|
|
|
|
|
|
// poll events every POLL_CYCLE_DELAY
|
|
|
|
// this delay exists to avoid massive polling thus increasing framerate
|
|
|
|
if(frameTicks - lastPollTicks >= POLL_CYCLE_DELAY) {
|
|
|
|
poll();
|
|
|
|
lastPollTicks = frameTicks;
|
|
|
|
}
|
|
|
|
|
|
|
|
// only render when the windows is visible
|
|
|
|
if(g_platform.isWindowVisible()) {
|
|
|
|
// render begin
|
|
|
|
g_graphics.beginRender();
|
|
|
|
|
|
|
|
// render everything
|
|
|
|
render();
|
|
|
|
|
|
|
|
// render fps
|
|
|
|
defaultFont->renderText(fpsText, Point(g_graphics.getScreenSize().width() - fpsTextSize.width() - 10, 10));
|
|
|
|
|
|
|
|
// render end
|
|
|
|
g_graphics.endRender();
|
|
|
|
|
|
|
|
// swap the old buffer with the new rendered
|
|
|
|
g_platform.swapBuffers();
|
|
|
|
} else {
|
|
|
|
// sleeps until next poll to avoid massive cpu usage
|
|
|
|
g_platform.sleep(POLL_CYCLE_DELAY+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_stopping = false;
|
|
|
|
m_running = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OTClient::terminate()
|
|
|
|
{
|
|
|
|
// hide the window because there is no render anymore
|
|
|
|
g_platform.hideWindow();
|
|
|
|
|
|
|
|
// run modules unload event
|
|
|
|
g_modules.unloadModules();
|
|
|
|
|
2011-08-16 02:30:31 +02:00
|
|
|
g_game.terminate();
|
|
|
|
|
2011-08-15 16:11:24 +02:00
|
|
|
// terminate ui
|
|
|
|
g_ui.terminate();
|
|
|
|
|
|
|
|
// release remaining lua object references
|
|
|
|
g_lua.collectGarbage();
|
|
|
|
|
|
|
|
// poll remaining events
|
|
|
|
poll();
|
|
|
|
|
|
|
|
// terminate network
|
2011-08-16 02:30:31 +02:00
|
|
|
Connection::terminate();
|
2011-08-15 16:11:24 +02:00
|
|
|
|
|
|
|
// terminate dispatcher
|
|
|
|
g_dispatcher.terminate();
|
|
|
|
|
|
|
|
// terminate graphics
|
|
|
|
g_graphics.terminate();
|
|
|
|
|
|
|
|
// save configurations
|
|
|
|
saveConfigurations();
|
|
|
|
|
|
|
|
// release resources
|
|
|
|
g_resources.terminate();
|
|
|
|
|
|
|
|
// terminate script environment
|
|
|
|
g_lua.terminate();
|
|
|
|
|
|
|
|
// end platform related stuff
|
|
|
|
g_platform.terminate();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void OTClient::exit()
|
|
|
|
{
|
|
|
|
// stops the main loop
|
|
|
|
m_stopping = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OTClient::poll()
|
|
|
|
{
|
|
|
|
// poll platform events
|
|
|
|
g_platform.poll();
|
|
|
|
|
|
|
|
// poll network events
|
|
|
|
Connection::poll();
|
|
|
|
|
|
|
|
// poll dispatcher events
|
|
|
|
g_dispatcher.poll();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OTClient::render()
|
|
|
|
{
|
|
|
|
// everything is rendered by UI components
|
|
|
|
g_ui.render();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OTClient::loadConfigurations()
|
|
|
|
{
|
|
|
|
// default window size
|
|
|
|
int defWidth = 550;
|
|
|
|
int defHeight = 450;
|
|
|
|
|
|
|
|
// sets default window configuration
|
2011-08-28 18:02:26 +02:00
|
|
|
g_configs.set("window x", Fw::tostring((g_platform.getDisplayWidth() - defWidth)/2));
|
|
|
|
g_configs.set("window y", Fw::tostring((g_platform.getDisplayHeight() - defHeight)/2));
|
|
|
|
g_configs.set("window width", Fw::tostring(defWidth));
|
|
|
|
g_configs.set("window height", Fw::tostring(defHeight));
|
|
|
|
g_configs.set("window maximized", Fw::tostring(false));
|
|
|
|
g_configs.set("vsync", Fw::tostring(true));
|
2011-08-15 16:11:24 +02:00
|
|
|
|
|
|
|
// loads user configuration
|
|
|
|
if(!g_configs.load("config.otml"))
|
|
|
|
logInfo("Using default configurations.");
|
|
|
|
}
|
|
|
|
|
|
|
|
void OTClient::setupConfigurations()
|
|
|
|
{
|
|
|
|
// activate vertical synchronization?
|
2011-08-28 18:02:26 +02:00
|
|
|
bool vsync = Fw::fromstring(g_configs.get("vsync"), true);
|
2011-08-16 14:47:30 +02:00
|
|
|
g_platform.setVerticalSync(vsync);
|
2011-08-15 16:11:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void OTClient::saveConfigurations()
|
|
|
|
{
|
2011-08-28 18:02:26 +02:00
|
|
|
g_configs.set("window x", Fw::tostring(g_platform.getWindowX()));
|
|
|
|
g_configs.set("window y", Fw::tostring(g_platform.getWindowY()));
|
|
|
|
g_configs.set("window width", Fw::tostring(g_platform.getWindowWidth()));
|
|
|
|
g_configs.set("window height", Fw::tostring(g_platform.getWindowHeight()));
|
|
|
|
g_configs.set("window maximized", Fw::tostring(g_platform.isWindowMaximized()));
|
2011-08-15 16:11:24 +02:00
|
|
|
|
|
|
|
// saves user configuration
|
|
|
|
if(!g_configs.save())
|
2011-08-20 22:30:41 +02:00
|
|
|
logError("configurations are lost because it couldn't be saved");
|
2011-08-15 16:11:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void OTClient::onClose()
|
|
|
|
{
|
2011-08-29 05:04:23 +02:00
|
|
|
//TODO: make and use g_lua.callGlobalField
|
2011-08-15 16:11:24 +02:00
|
|
|
if(m_onCloseCallback)
|
|
|
|
m_onCloseCallback();
|
|
|
|
else
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OTClient::onResize(const Size& size)
|
|
|
|
{
|
|
|
|
g_graphics.resize(size);
|
|
|
|
g_ui.resize(size);
|
|
|
|
}
|
|
|
|
|
2011-08-15 21:15:49 +02:00
|
|
|
void OTClient::onPlatformEvent(const PlatformEvent& event)
|
2011-08-15 16:11:24 +02:00
|
|
|
{
|
2011-08-20 22:30:41 +02:00
|
|
|
bool fireUi = true;
|
2011-08-15 16:11:24 +02:00
|
|
|
|
2011-08-29 05:04:23 +02:00
|
|
|
if(event.type == EventKeyDown && event.ctrl && !event.alt && !event.shift && event.keycode == Fw::KeyApostrophe) {
|
|
|
|
// TODO: move this events to lua
|
|
|
|
UIWidgetPtr console = g_ui.getRootWidget()->getChildById("consolePanel");
|
|
|
|
if(!console->isExplicitlyVisible()) {
|
|
|
|
g_ui.getRootWidget()->lockChild(console);
|
|
|
|
console->setVisible(true);
|
|
|
|
} else {
|
|
|
|
g_ui.getRootWidget()->unlockChild(console);
|
|
|
|
console->setVisible(false);
|
2011-08-15 16:11:24 +02:00
|
|
|
}
|
2011-08-29 05:04:23 +02:00
|
|
|
fireUi = false;
|
2011-08-15 16:11:24 +02:00
|
|
|
}
|
2011-08-20 22:30:41 +02:00
|
|
|
|
|
|
|
if(fireUi)
|
|
|
|
g_ui.inputEvent(event);
|
2011-08-15 16:11:24 +02:00
|
|
|
}
|