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-14 04:09:11 +02:00
|
|
|
#include "uimanager.h"
|
|
|
|
#include "ui.h"
|
|
|
|
|
2011-08-15 16:06:15 +02:00
|
|
|
#include <framework/otml/otml.h>
|
|
|
|
#include <framework/graphics/graphics.h>
|
2011-08-14 04:09:11 +02:00
|
|
|
|
|
|
|
UIManager g_ui;
|
|
|
|
|
|
|
|
void UIManager::init()
|
|
|
|
{
|
|
|
|
// creates root widget
|
2011-08-26 17:06:52 +02:00
|
|
|
m_rootWidget = UIWidget::create<UIWidget>();
|
|
|
|
m_rootWidget->setup();
|
2011-08-14 04:09:11 +02:00
|
|
|
m_rootWidget->setId("root");
|
|
|
|
m_rootWidget->resize(g_graphics.getScreenSize());
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIManager::terminate()
|
|
|
|
{
|
|
|
|
// destroy root widget and its children'
|
|
|
|
m_rootWidget->destroy();
|
|
|
|
m_rootWidget.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIManager::render()
|
|
|
|
{
|
2011-08-14 16:09:26 +02:00
|
|
|
m_rootWidget->render();
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIManager::resize(const Size& size)
|
|
|
|
{
|
|
|
|
if(m_rootWidget)
|
2011-08-23 17:09:50 +02:00
|
|
|
m_rootWidget->resize(g_graphics.getScreenSize());
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
2011-08-15 21:15:49 +02:00
|
|
|
void UIManager::inputEvent(const PlatformEvent& event)
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
|
|
|
// translate input event to ui events
|
|
|
|
if(m_rootWidget) {
|
2011-08-14 16:09:26 +02:00
|
|
|
if(event.type & EventKeyboardAction) {
|
2011-08-28 18:02:26 +02:00
|
|
|
int keyboardModifiers = Fw::KeyboardNoModifier;
|
2011-08-14 04:09:11 +02:00
|
|
|
if(event.ctrl)
|
2011-08-28 18:02:26 +02:00
|
|
|
keyboardModifiers |= Fw::KeyboardCtrlModifier;
|
2011-08-14 04:09:11 +02:00
|
|
|
if(event.shift)
|
2011-08-28 18:02:26 +02:00
|
|
|
keyboardModifiers |= Fw::KeyboardShiftModifier;
|
2011-08-14 04:09:11 +02:00
|
|
|
if(event.alt)
|
2011-08-28 18:02:26 +02:00
|
|
|
keyboardModifiers |= Fw::KeyboardAltModifier;
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2011-08-14 16:09:26 +02:00
|
|
|
if(event.type == EventKeyDown)
|
2011-08-22 14:44:26 +02:00
|
|
|
m_rootWidget->onKeyPress(event.keycode, event.keychar, keyboardModifiers);
|
2011-08-14 04:09:11 +02:00
|
|
|
else
|
2011-08-22 14:44:26 +02:00
|
|
|
m_rootWidget->onKeyRelease(event.keycode, event.keychar, keyboardModifiers);
|
2011-08-14 04:09:11 +02:00
|
|
|
} else if(event.type & EventMouseAction) {
|
|
|
|
if(event.type == EventMouseMove) {
|
2011-08-28 18:02:26 +02:00
|
|
|
m_rootWidget->updateState(Fw::HoverState);
|
2011-08-22 14:44:26 +02:00
|
|
|
m_rootWidget->onMouseMove(event.mousePos, event.mouseMoved);
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
else if(event.type & EventMouseWheel) {
|
2011-08-28 18:02:26 +02:00
|
|
|
Fw::MouseWheelDirection dir = Fw::MouseNoWheel;
|
2011-08-14 04:09:11 +02:00
|
|
|
if(event.type & EventDown)
|
2011-08-28 18:02:26 +02:00
|
|
|
dir = Fw::MouseWheelDown;
|
2011-08-14 04:09:11 +02:00
|
|
|
else if(event.type & EventUp)
|
2011-08-28 18:02:26 +02:00
|
|
|
dir = Fw::MouseWheelUp;
|
2011-08-14 16:09:26 +02:00
|
|
|
|
2011-08-22 14:44:26 +02:00
|
|
|
m_rootWidget->onMouseWheel(event.mousePos, dir);
|
2011-08-14 04:09:11 +02:00
|
|
|
} else {
|
2011-08-28 18:02:26 +02:00
|
|
|
Fw::MouseButton button = Fw::MouseNoButton;
|
2011-08-14 04:09:11 +02:00
|
|
|
if(event.type & EventMouseLeftButton)
|
2011-08-28 18:02:26 +02:00
|
|
|
button = Fw::MouseLeftButton;
|
2011-08-14 04:09:11 +02:00
|
|
|
else if(event.type & EventMouseMidButton)
|
2011-08-28 18:02:26 +02:00
|
|
|
button = Fw::MouseMidButton;
|
2011-08-14 04:09:11 +02:00
|
|
|
else if(event.type & EventMouseRightButton)
|
2011-08-28 18:02:26 +02:00
|
|
|
button = Fw::MouseRightButton;
|
2011-08-14 04:09:11 +02:00
|
|
|
|
|
|
|
if(event.type & EventDown)
|
2011-08-22 14:44:26 +02:00
|
|
|
m_rootWidget->onMousePress(event.mousePos, button);
|
2011-08-14 04:09:11 +02:00
|
|
|
else if(event.type & EventUp)
|
2011-08-22 14:44:26 +02:00
|
|
|
m_rootWidget->onMouseRelease(event.mousePos, button);
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UIManager::importStyles(const std::string& file)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
OTMLDocumentPtr doc = OTMLDocument::parse(file);
|
|
|
|
|
2011-08-19 20:53:23 +02:00
|
|
|
for(const OTMLNodePtr& styleNode : doc->children())
|
2011-08-14 04:09:11 +02:00
|
|
|
importStyleFromOTML(styleNode);
|
|
|
|
return true;
|
|
|
|
} catch(std::exception& e) {
|
2011-08-20 22:30:41 +02:00
|
|
|
logError("failed to import ui styles from '", file, "':\n", e.what());
|
2011-08-14 04:09:11 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIManager::importStyleFromOTML(const OTMLNodePtr& styleNode)
|
|
|
|
{
|
|
|
|
std::string tag = styleNode->tag();
|
|
|
|
std::vector<std::string> split;
|
|
|
|
boost::split(split, tag, boost::is_any_of(std::string("<")));
|
|
|
|
if(split.size() != 2)
|
|
|
|
throw OTMLException(styleNode, "not a valid style declaration");
|
|
|
|
|
|
|
|
std::string name = split[0];
|
|
|
|
std::string base = split[1];
|
|
|
|
|
|
|
|
boost::trim(name);
|
|
|
|
boost::trim(base);
|
|
|
|
|
|
|
|
auto it = m_styles.find(name);
|
|
|
|
if(it != m_styles.end())
|
2011-08-20 22:30:41 +02:00
|
|
|
logWarning("style '", name, "' is being redefined");
|
2011-08-14 04:09:11 +02:00
|
|
|
|
|
|
|
OTMLNodePtr style = getStyle(base)->clone();
|
|
|
|
style->merge(styleNode);
|
|
|
|
style->setTag(name);
|
|
|
|
m_styles[name] = style;
|
|
|
|
}
|
|
|
|
|
|
|
|
OTMLNodePtr UIManager::getStyle(const std::string& styleName)
|
|
|
|
{
|
|
|
|
if(boost::starts_with(styleName, "UI")) {
|
2011-08-19 20:53:23 +02:00
|
|
|
OTMLNodePtr node = OTMLNode::create();
|
2011-08-14 04:09:11 +02:00
|
|
|
node->writeAt("__widgetType", styleName);
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto it = m_styles.find(styleName);
|
|
|
|
if(it == m_styles.end())
|
2011-08-28 18:02:26 +02:00
|
|
|
throw std::runtime_error(Fw::mkstr("style '", styleName, "' is not a defined style"));
|
2011-08-14 04:09:11 +02:00
|
|
|
return m_styles[styleName];
|
|
|
|
}
|
|
|
|
|
2011-08-26 17:06:52 +02:00
|
|
|
UIWidgetPtr UIManager::loadUI(const std::string& file, const UIWidgetPtr& parent)
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
OTMLDocumentPtr doc = OTMLDocument::parse(file);
|
|
|
|
UIWidgetPtr widget;
|
2011-08-19 20:53:23 +02:00
|
|
|
for(const OTMLNodePtr& node : doc->children()) {
|
2011-08-14 04:09:11 +02:00
|
|
|
std::string tag = node->tag();
|
|
|
|
|
|
|
|
// import styles in these files too
|
|
|
|
if(tag.find("<") != std::string::npos)
|
|
|
|
importStyleFromOTML(node);
|
|
|
|
else {
|
|
|
|
if(widget)
|
2011-08-19 20:53:23 +02:00
|
|
|
throw std::runtime_error("cannot have multiple main widgets in .otui files");
|
2011-08-26 17:06:52 +02:00
|
|
|
widget = loadWidgetFromOTML(node, parent);
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
}
|
2011-08-14 16:09:26 +02:00
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
return widget;
|
|
|
|
} catch(std::exception& e) {
|
2011-08-20 22:30:41 +02:00
|
|
|
logError("failed to load ui from '", file, "':\n", e.what());
|
2011-08-14 04:09:11 +02:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-26 17:06:52 +02:00
|
|
|
UIWidgetPtr UIManager::loadWidgetFromOTML(const OTMLNodePtr& widgetNode, const UIWidgetPtr& parent)
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
|
|
|
OTMLNodePtr styleNode = getStyle(widgetNode->tag())->clone();
|
|
|
|
styleNode->merge(widgetNode);
|
|
|
|
|
2011-08-19 20:53:23 +02:00
|
|
|
std::string widgetType = styleNode->valueAt("__widgetType");
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2011-08-22 21:13:52 +02:00
|
|
|
// call widget creation from lua
|
2011-08-29 16:14:21 +02:00
|
|
|
UIWidgetPtr widget = g_lua.callGlobalField<UIWidgetPtr>(widgetType, "create");
|
2011-08-26 17:06:52 +02:00
|
|
|
if(parent)
|
|
|
|
parent->addChild(widget);
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2011-08-26 17:06:52 +02:00
|
|
|
widget->setStyleFromNode(styleNode);
|
2011-08-14 04:09:11 +02:00
|
|
|
|
2011-08-19 20:53:23 +02:00
|
|
|
for(const OTMLNodePtr& childNode : widgetNode->children()) {
|
2011-08-14 04:09:11 +02:00
|
|
|
if(!childNode->isUnique())
|
2011-08-26 17:06:52 +02:00
|
|
|
loadWidgetFromOTML(childNode, widget);
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
|