2011-12-29 18:45:59 +01:00
|
|
|
/*
|
2012-01-02 17:58:37 +01:00
|
|
|
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
|
2011-12-29 18:45:59 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "statictext.h"
|
|
|
|
#include "map.h"
|
|
|
|
#include <framework/core/clock.h>
|
|
|
|
#include <framework/core/eventdispatcher.h>
|
|
|
|
#include <framework/graphics/graphics.h>
|
|
|
|
|
|
|
|
StaticText::StaticText()
|
|
|
|
{
|
|
|
|
m_font = g_fonts.getFont("verdana-11px-rounded");
|
|
|
|
}
|
|
|
|
|
|
|
|
void StaticText::draw(const Point& p)
|
|
|
|
{
|
|
|
|
if(m_font)
|
|
|
|
m_font->renderText(m_text, Rect(p - Point(m_textSize.width() / 2, m_textSize.height()) + Point(20, 5), m_textSize), Fw::AlignCenter, m_color);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StaticText::addMessage(const std::string& name, int type, const std::string& message)
|
|
|
|
{
|
|
|
|
// First message
|
|
|
|
if(m_messages.size() == 0) {
|
|
|
|
m_name = name;
|
|
|
|
m_type = type;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// we can only add another message if it follows these conditions
|
|
|
|
if(m_name != name || m_type != type)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_messages.push_back(message);
|
|
|
|
compose();
|
|
|
|
|
|
|
|
auto self = asStaticText();
|
|
|
|
g_dispatcher.scheduleEvent([self]() {
|
|
|
|
self->removeMessage();
|
|
|
|
}, DURATION);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void StaticText::removeMessage()
|
|
|
|
{
|
|
|
|
m_messages.erase(m_messages.begin());
|
|
|
|
|
|
|
|
if(m_messages.empty()) {
|
|
|
|
// schedule removal
|
|
|
|
auto self = asStaticText();
|
|
|
|
g_dispatcher.scheduleEvent([self]() {
|
|
|
|
g_map.removeThing(self);
|
|
|
|
}, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
compose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void StaticText::compose()
|
|
|
|
{
|
|
|
|
m_text.clear();
|
|
|
|
|
|
|
|
if(m_type == Otc::SpeakSay) {
|
|
|
|
m_text += m_name;
|
|
|
|
m_text += " says:\n";
|
2011-12-30 09:19:43 +01:00
|
|
|
m_color = Color(239, 239, 0);
|
2011-12-29 18:45:59 +01:00
|
|
|
}
|
|
|
|
else if(m_type == Otc::SpeakWhisper) {
|
|
|
|
m_text += m_name;
|
|
|
|
m_text += " whispers:\n";
|
2011-12-30 09:19:43 +01:00
|
|
|
m_color = Color(239, 239, 0);
|
2011-12-29 18:45:59 +01:00
|
|
|
}
|
|
|
|
else if(m_type == Otc::SpeakYell) {
|
|
|
|
m_text += m_name;
|
|
|
|
m_text += " yells:\n";
|
2011-12-30 09:19:43 +01:00
|
|
|
m_color = Color(239, 239, 0);
|
2011-12-29 18:45:59 +01:00
|
|
|
}
|
|
|
|
else if(m_type == Otc::SpeakMonsterSay || m_type == Otc::SpeakMonsterYell) {
|
2011-12-30 09:19:43 +01:00
|
|
|
m_color = Color(254, 101, 0);
|
2011-12-29 18:45:59 +01:00
|
|
|
}
|
|
|
|
else if(m_type == Otc::SpeakPrivateNpcToPlayer) {
|
|
|
|
m_text += m_name;
|
|
|
|
m_text += " says:\n";
|
2011-12-30 09:19:43 +01:00
|
|
|
m_color = Color(95, 247, 247);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
logWarning("unknown message type: ", m_type);
|
2011-12-29 18:45:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Todo: add break lines
|
|
|
|
for(uint i = 0; i < m_messages.size(); ++i) {
|
|
|
|
m_text += m_messages[i];
|
|
|
|
|
|
|
|
if(i < m_messages.size() - 1)
|
|
|
|
m_text += "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
if(m_font)
|
|
|
|
m_textSize = m_font->calculateTextRectSize(m_text);
|
|
|
|
}
|