scummvm/gui/message.cpp
Paweł Kołodziejski aa3766018f updated copyrights headers
svn-id: r6726
2003-03-06 21:46:56 +00:00

160 lines
4.3 KiB
C++

/* ScummVM - Scumm Interpreter
* Copyright (C) 2002-2003 The ScummVM project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header$
*/
#include "stdafx.h"
#include "message.h"
#include "newgui.h"
enum {
kOkCmd = 'OK ',
kCancelCmd = 'CNCL'
};
MessageDialog::MessageDialog(NewGui *gui, const String &message, uint32 timer, bool showOkButton, bool showCancelButton)
: Dialog(gui, 30, 20, 260, 124) {
// First, determine the size the dialog needs. For this we have to break
// down the string into lines, and taking the maximum of their widths.
// Using this, and accounting for the space the button(s) need, we can set
// the real size of the dialog
StringList lines;
const char *str = message.c_str();
const char *start = str;
int lineWidth, maxlineWidth = 0;
int lineCount, okButtonPos, cancelButtonPos;
while (*str) {
if (*str == '\n') {
lineWidth = addLine(lines, start, str - start);
if (maxlineWidth < lineWidth)
maxlineWidth = lineWidth;
start = str + 1;
}
++str;
}
// Add the last line
lineWidth = addLine(lines, start, str - start);
if (maxlineWidth < lineWidth)
maxlineWidth = lineWidth;
// Calculate the desired dialog size (maxing out at 300*180 for now)
_w = maxlineWidth + 20;
lineCount = lines.size();
_h = lineCount * kLineHeight + 16;
if (showOkButton || showCancelButton)
_h += 24;
if (_h > 180) {
lineCount = (180 - 34) / kLineHeight;
_h = lineCount * kLineHeight + 34;
}
_x = (320 - _w) / 2;
_y = (200 - _h) / 2;
for (int i = 0; i < lineCount; i++) {
new StaticTextWidget(this, 10, 10+i*kLineHeight, maxlineWidth, kLineHeight,
lines[i], kTextAlignCenter);
}
// FIXME - allow for multiple buttons, and return in runModal() which one
// was selected.
if (showOkButton && showCancelButton) {
okButtonPos = (_w - (kButtonWidth * 2))/2;
cancelButtonPos = ((_w - (kButtonWidth * 2))/2) + kButtonWidth + 10;
} else {
okButtonPos = cancelButtonPos = (_w-kButtonWidth)/2;
}
if (showOkButton)
addButton(okButtonPos, _h - 24, "OK", kOkCmd, '\n'); // Confirm dialog
if (showCancelButton)
addButton(cancelButtonPos, _h - 24, "CANCEL", kCancelCmd, '\27'); // Cancel dialog
if (timer)
_timer = _gui->get_time() + timer;
else
_timer = 0;
}
void MessageDialog::handleTickle() {
Dialog::handleTickle();
if (_timer && _gui->get_time() > _timer)
close();
}
int MessageDialog::addLine(StringList &lines, const char *line, int size) {
int width = 0, maxWidth = 0;
const char *start = line, *pos = line, *end = start + size;
String tmp;
while (pos < end) {
int w = _gui->getCharWidth(*pos);
// Check if we exceed the maximum line width, if so, split the line.
// If possible we split at whitespaces.
if (width + w > 280) {
// Scan backward till we find a space or we get back to the start
const char *newPos = pos;
while (newPos > start && !isspace(*newPos))
newPos--;
if (newPos > start)
pos = newPos;
// Add the substring from intervall [start, i-1]
tmp = String(start, pos - start);
lines.push_back(tmp);
// Determine the width of the string, and adjust maxWidth accordingly
width = _gui->getStringWidth(tmp);
if (maxWidth < width)
maxWidth = width;
start = pos;
width = 0;
} else {
width += w;
pos++;
}
}
if (maxWidth < width)
maxWidth = width;
if (start < pos) {
tmp = String(start, pos - start);
lines.push_back(tmp);
}
return maxWidth;
}
void MessageDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) {
if (cmd == kOkCmd) {
setResult(1);
close();
} else if (cmd == kCancelCmd) {
setResult(2);
close();
} else {
Dialog::handleCommand(sender, cmd, data);
}
}