mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:49:56 +00:00
139 lines
3.8 KiB
C++
139 lines
3.8 KiB
C++
#include "messagebox.hpp"
|
|
|
|
using namespace MWGui;
|
|
|
|
MessageBoxManager::MessageBoxManager (WindowManager *windowManager)
|
|
{
|
|
mWindowManager = windowManager;
|
|
// defines
|
|
mMessageBoxSpeed = 0.1;
|
|
}
|
|
|
|
void MessageBoxManager::onFrame (float frameDuration)
|
|
{
|
|
std::vector<MessageBoxManagerTimer>::iterator it;
|
|
for(it = mTimers.begin(); it != mTimers.end(); it++)
|
|
{
|
|
it->current += frameDuration;
|
|
if(it->current >= it->max)
|
|
{
|
|
// FIXME: delete the messagebox and erase it from the vector
|
|
}
|
|
}
|
|
}
|
|
|
|
void MessageBoxManager::createMessageBox (const std::string& message)
|
|
{
|
|
std::cout << "create non-interactive message box" << std::endl;
|
|
MessageBox *box = new MessageBox(*this, message);
|
|
|
|
removeMessageBox(message.length()*mMessageBoxSpeed, box);
|
|
|
|
mMessageBoxes.insert(mMessageBoxes.begin(), box);
|
|
int height = box->getHeight();
|
|
std::vector<MessageBox*>::const_iterator it;
|
|
|
|
int i = 0;
|
|
for(it = mMessageBoxes.begin()+1; it != mMessageBoxes.end(); ++it)
|
|
{
|
|
if(i == 2) {
|
|
delete (*it);
|
|
// FIXME: erase it from the vector without segfault :/
|
|
break;
|
|
}
|
|
else {
|
|
(*it)->update(height);
|
|
height += (*it)->getHeight();
|
|
i++;
|
|
}
|
|
}
|
|
std::cout << "mMessageBoxes.size() is " << mMessageBoxes.size() << std::endl;
|
|
}
|
|
|
|
void MessageBoxManager::createInteractiveMessageBox (const std::string& message, const std::vector<std::string>& buttons)
|
|
{
|
|
std::cout << "create interactive message box" << std::endl;
|
|
std::copy (buttons.begin(), buttons.end(), std::ostream_iterator<std::string> (std::cout, ", "));
|
|
|
|
// FIXME: erase it from the vector without segfault :/
|
|
std::vector<MessageBox*>::const_iterator it;
|
|
for(it = mMessageBoxes.begin(); it != mMessageBoxes.end(); it++)
|
|
{
|
|
delete (*it);
|
|
}
|
|
mMessageBoxes.clear();
|
|
}
|
|
|
|
void MessageBoxManager::removeMessageBox (float time, MessageBox *msgbox)
|
|
{
|
|
MessageBoxManagerTimer timer;
|
|
timer.current = 0;
|
|
timer.max = time;
|
|
timer.messageBox = msgbox;
|
|
|
|
mTimers.insert(mTimers.end(), timer);
|
|
}
|
|
|
|
void MessageBoxManager::setMessageBoxSpeed (int speed)
|
|
{
|
|
mMessageBoxSpeed = speed;
|
|
}
|
|
|
|
|
|
|
|
|
|
MessageBox::MessageBox(MessageBoxManager& parMessageBoxManager, const std::string& message)
|
|
: Layout("openmw_messagebox_layout.xml")
|
|
, mMessageBoxManager(parMessageBoxManager)
|
|
, cMessage(message)
|
|
{
|
|
// defines
|
|
mFixedWidth = 300;
|
|
mBottomPadding = 20;
|
|
mNextBoxPadding = 20;
|
|
|
|
getWidget(mMessageWidget, "message");
|
|
|
|
mMessageWidget->setOverflowToTheLeft(true);
|
|
mMessageWidget->addText(cMessage);
|
|
|
|
MyGUI::IntSize size;
|
|
size.width = mFixedWidth;
|
|
size.height = 100; // dummy
|
|
|
|
MyGUI::IntCoord coord;
|
|
coord.left = 10; // dummy
|
|
coord.top = 10; // dummy
|
|
|
|
mMessageWidget->setSize(size);
|
|
|
|
MyGUI::IntSize textSize = mMessageWidget->_getTextSize();
|
|
size.height = mHeight = textSize.height + 20; // this is the padding between the text and the box
|
|
|
|
mMainWidget->setSize(size);
|
|
size.width -= 5; // this is to center the text (see messagebox_layout.xml, Widget type="Edit" position="-2 -3 0 0")
|
|
mMessageWidget->setSize(size);
|
|
|
|
update(0);
|
|
}
|
|
|
|
void MessageBox::update (int height)
|
|
{
|
|
MyGUI::IntSize gameWindowSize = mMessageBoxManager.mWindowManager->getGui()->getViewSize();
|
|
MyGUI::IntCoord coord;
|
|
coord.left = (gameWindowSize.width - mFixedWidth)/2;
|
|
coord.top = (gameWindowSize.height - mHeight - height - mBottomPadding);
|
|
|
|
MyGUI::IntSize size;
|
|
size.width = mFixedWidth;
|
|
size.height = mHeight;
|
|
|
|
mMainWidget->setCoord(coord);
|
|
mMainWidget->setSize(size);
|
|
mMainWidget->setVisible(true);
|
|
}
|
|
|
|
int MessageBox::getHeight ()
|
|
{
|
|
return mHeight+mNextBoxPadding; // 20 is the padding between this and the next MessageBox
|
|
}
|