2009-10-03 20:49:18 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common/util.h"
|
2009-10-10 02:16:23 +00:00
|
|
|
#include "common/stack.h"
|
2009-10-06 15:20:33 +00:00
|
|
|
#include "graphics/primitives.h"
|
2009-10-03 20:49:18 +00:00
|
|
|
|
|
|
|
#include "sci/sci.h"
|
|
|
|
#include "sci/engine/state.h"
|
|
|
|
#include "sci/tools.h"
|
2009-10-12 15:41:19 +00:00
|
|
|
#include "sci/gui/gui_gfx.h"
|
2009-10-03 20:49:18 +00:00
|
|
|
#include "sci/gui/gui_font.h"
|
|
|
|
#include "sci/gui/gui_picture.h"
|
|
|
|
#include "sci/gui/gui_view.h"
|
|
|
|
#include "sci/gui/gui_screen.h"
|
2009-10-06 16:14:40 +00:00
|
|
|
#include "sci/gui/gui_palette.h"
|
2009-10-03 20:49:18 +00:00
|
|
|
|
|
|
|
namespace Sci {
|
|
|
|
|
2009-10-06 17:18:44 +00:00
|
|
|
SciGuiGfx::SciGuiGfx(EngineState *state, SciGuiScreen *screen, SciGuiPalette *palette)
|
|
|
|
: _s(state), _screen(screen), _palette(palette) {
|
2009-10-03 20:49:18 +00:00
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
SciGuiGfx::~SciGuiGfx() {
|
2009-10-08 18:34:49 +00:00
|
|
|
delete _mainPort;
|
|
|
|
delete _menuPort;
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::init() {
|
2009-10-03 20:49:18 +00:00
|
|
|
_font = NULL;
|
2009-10-04 05:22:49 +00:00
|
|
|
_textFonts = NULL; _textFontsCount = 0;
|
|
|
|
_textColors = NULL; _textColorsCount = 0;
|
2009-10-03 20:49:18 +00:00
|
|
|
|
2009-10-11 20:46:04 +00:00
|
|
|
_texteditCursorVisible = false;
|
|
|
|
|
2009-10-10 21:25:21 +00:00
|
|
|
_animateListData = NULL;
|
|
|
|
_animateListSize = 0;
|
2009-10-10 20:25:04 +00:00
|
|
|
|
2009-10-08 18:34:49 +00:00
|
|
|
// _mainPort is not known to windowmanager, that's okay according to sierra sci
|
|
|
|
// its not even used currently in our engine
|
2009-10-07 22:50:11 +00:00
|
|
|
_mainPort = new GuiPort(0);
|
2009-10-03 20:49:18 +00:00
|
|
|
SetPort(_mainPort);
|
|
|
|
OpenPort(_mainPort);
|
|
|
|
|
2009-10-08 18:34:49 +00:00
|
|
|
// _menuPort has actually hardcoded id 0xFFFF. Its not meant to be known to windowmanager according to sierra sci
|
2009-10-07 22:50:11 +00:00
|
|
|
_menuPort = new GuiPort(0);
|
2009-10-03 20:49:18 +00:00
|
|
|
OpenPort(_menuPort);
|
|
|
|
SetFont(0);
|
|
|
|
_menuPort->rect = Common::Rect(0, 0, _screen->_width, _screen->_height);
|
2009-10-06 19:47:12 +00:00
|
|
|
_menuRect = Common::Rect(0, 0, _screen->_width, 9);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
GuiPort *SciGuiGfx::SetPort(GuiPort *newPort) {
|
|
|
|
GuiPort *oldPort = _curPort;
|
2009-10-03 20:49:18 +00:00
|
|
|
_curPort = newPort;
|
|
|
|
return oldPort;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
GuiPort *SciGuiGfx::GetPort(void) {
|
2009-10-03 20:49:18 +00:00
|
|
|
return _curPort;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::SetOrigin(int16 left, int16 top) {
|
2009-10-03 20:49:18 +00:00
|
|
|
_curPort->left = left;
|
|
|
|
_curPort->top = top;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::MoveTo(int16 left, int16 top) {
|
2009-10-03 20:49:18 +00:00
|
|
|
_curPort->curTop = top;
|
|
|
|
_curPort->curLeft = left;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::Move(int16 left, int16 top) {
|
2009-10-03 20:49:18 +00:00
|
|
|
_curPort->curTop += top;
|
|
|
|
_curPort->curLeft += left;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
GuiResourceId SciGuiGfx::GetFontId() {
|
2009-10-03 20:49:18 +00:00
|
|
|
return _curPort->fontId;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
SciGuiFont *SciGuiGfx::GetFont() {
|
2009-10-04 22:32:36 +00:00
|
|
|
if ((_font == NULL) || (_font->getResourceId() != _curPort->fontId))
|
2009-10-06 17:04:56 +00:00
|
|
|
_font = new SciGuiFont(_s->resMan, _curPort->fontId);
|
2009-10-04 22:32:36 +00:00
|
|
|
|
2009-10-03 20:49:18 +00:00
|
|
|
return _font;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::SetFont(GuiResourceId fontId) {
|
2009-10-04 22:32:36 +00:00
|
|
|
if ((_font == NULL) || (_font->getResourceId() != fontId))
|
2009-10-06 17:13:57 +00:00
|
|
|
_font = new SciGuiFont(_s->resMan, fontId);
|
2009-10-04 22:32:36 +00:00
|
|
|
|
2009-10-06 17:13:57 +00:00
|
|
|
_curPort->fontId = _font->getResourceId();
|
2009-10-04 09:38:57 +00:00
|
|
|
_curPort->fontHeight = _font->getHeight();
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::OpenPort(GuiPort *port) {
|
2009-10-03 20:49:18 +00:00
|
|
|
port->fontId = 0;
|
2009-10-04 09:38:57 +00:00
|
|
|
port->fontHeight = 8;
|
2009-10-03 20:49:18 +00:00
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
GuiPort *tmp = _curPort;
|
2009-10-03 20:49:18 +00:00
|
|
|
_curPort = port;
|
|
|
|
SetFont(port->fontId);
|
|
|
|
_curPort = tmp;
|
|
|
|
|
|
|
|
port->top = 0;
|
|
|
|
port->left = 0;
|
|
|
|
port->textFace = 0;
|
|
|
|
port->penClr = 0;
|
2009-10-05 20:46:19 +00:00
|
|
|
port->backClr = 255;
|
2009-10-03 20:49:18 +00:00
|
|
|
port->penMode = 0;
|
2009-10-04 21:27:24 +00:00
|
|
|
port->rect = _bounds;
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::PenColor(int16 color) {
|
2009-10-05 21:38:51 +00:00
|
|
|
_curPort->penClr = color;
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
|
2009-10-11 15:41:52 +00:00
|
|
|
void SciGuiGfx::BackColor(int16 color) {
|
|
|
|
_curPort->backClr = color;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::PenMode(int16 mode) {
|
2009-10-03 20:49:18 +00:00
|
|
|
_curPort->penMode = mode;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::TextFace(int16 textFace) {
|
2009-10-03 20:49:18 +00:00
|
|
|
_curPort->textFace = textFace;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
int16 SciGuiGfx::GetPointSize(void) {
|
2009-10-04 09:38:57 +00:00
|
|
|
return _curPort->fontHeight;
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::ClearScreen(byte color) {
|
2009-10-03 20:49:18 +00:00
|
|
|
FillRect(_curPort->rect, SCI_SCREEN_MASK_ALL, color, 0, 0);
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::InvertRect(const Common::Rect &rect) {
|
2009-10-03 20:49:18 +00:00
|
|
|
int16 oldpenmode = _curPort->penMode;
|
|
|
|
_curPort->penMode = 2;
|
|
|
|
FillRect(rect, 1, _curPort->penClr, _curPort->backClr);
|
|
|
|
_curPort->penMode = oldpenmode;
|
|
|
|
}
|
|
|
|
//-----------------------------
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::EraseRect(const Common::Rect &rect) {
|
2009-10-03 20:49:18 +00:00
|
|
|
FillRect(rect, 1, _curPort->backClr);
|
|
|
|
}
|
|
|
|
//-----------------------------
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::PaintRect(const Common::Rect &rect) {
|
2009-10-03 20:49:18 +00:00
|
|
|
FillRect(rect, 1, _curPort->penClr);
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::FillRect(const Common::Rect &rect, int16 drawFlags, byte clrPen, byte clrBack, byte bControl) {
|
2009-10-06 17:16:27 +00:00
|
|
|
Common::Rect r = rect;
|
2009-10-03 20:49:18 +00:00
|
|
|
r.clip(_curPort->rect);
|
|
|
|
if (r.isEmpty()) // nothing to fill
|
|
|
|
return;
|
|
|
|
|
|
|
|
int16 oldPenMode = _curPort->penMode;
|
|
|
|
OffsetRect(r);
|
|
|
|
int16 x, y;
|
|
|
|
byte curVisual;
|
|
|
|
|
|
|
|
// Doing visual first
|
|
|
|
if (drawFlags & SCI_SCREEN_MASK_VISUAL) {
|
|
|
|
if (oldPenMode == 2) { // invert mode
|
|
|
|
for (y = r.top; y < r.bottom; y++) {
|
|
|
|
for (x = r.left; x < r.right; x++) {
|
2009-10-05 07:38:05 +00:00
|
|
|
curVisual = _screen->getVisual(x, y);
|
2009-10-03 20:49:18 +00:00
|
|
|
if (curVisual == clrPen) {
|
2009-10-05 07:38:05 +00:00
|
|
|
_screen->putPixel(x, y, 1, clrBack, 0, 0);
|
2009-10-03 20:49:18 +00:00
|
|
|
} else if (curVisual == clrBack) {
|
2009-10-05 07:38:05 +00:00
|
|
|
_screen->putPixel(x, y, 1, clrPen, 0, 0);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else { // just fill rect with ClrPen
|
|
|
|
for (y = r.top; y < r.bottom; y++) {
|
|
|
|
for (x = r.left; x < r.right; x++) {
|
2009-10-05 07:38:05 +00:00
|
|
|
_screen->putPixel(x, y, 1, clrPen, 0, 0);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (drawFlags < 2)
|
|
|
|
return;
|
|
|
|
drawFlags &= SCI_SCREEN_MASK_PRIORITY|SCI_SCREEN_MASK_CONTROL;
|
|
|
|
|
|
|
|
if (oldPenMode != 2) {
|
|
|
|
for (y = r.top; y < r.bottom; y++) {
|
|
|
|
for (x = r.left; x < r.right; x++) {
|
2009-10-05 07:38:05 +00:00
|
|
|
_screen->putPixel(x, y, drawFlags, 0, clrBack, bControl);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (y = r.top; y < r.bottom; y++) {
|
|
|
|
for (x = r.left; x < r.right; x++) {
|
2009-10-05 07:38:05 +00:00
|
|
|
_screen->putPixel(x, y, drawFlags, 0, !_screen->getPriority(x, y), !_screen->getControl(x, y));
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::FrameRect(const Common::Rect &rect) {
|
2009-10-03 20:49:18 +00:00
|
|
|
Common::Rect r;
|
|
|
|
// left
|
|
|
|
r = rect;
|
|
|
|
r.right = rect.left + 1;
|
|
|
|
PaintRect(r);
|
|
|
|
// right
|
|
|
|
r.right = rect.right;
|
|
|
|
r.left = rect.right - 1;
|
|
|
|
PaintRect(r);
|
|
|
|
//top
|
|
|
|
r.left = rect.left;
|
|
|
|
r.bottom = rect.top + 1;
|
|
|
|
PaintRect(r);
|
|
|
|
//bottom
|
|
|
|
r.bottom = rect.bottom;
|
|
|
|
r.top = rect.bottom - 1;
|
|
|
|
PaintRect(r);
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::OffsetRect(Common::Rect &r) {
|
2009-10-03 20:49:18 +00:00
|
|
|
r.top += _curPort->top;
|
|
|
|
r.bottom += _curPort->top;
|
|
|
|
r.left += _curPort->left;
|
|
|
|
r.right += _curPort->left;
|
|
|
|
}
|
|
|
|
|
2009-10-12 08:25:38 +00:00
|
|
|
void SciGuiGfx::OffsetLine(Common::Point &start, Common::Point &end) {
|
|
|
|
start.x += _curPort->left;
|
|
|
|
start.y += _curPort->top;
|
|
|
|
end.x += _curPort->left;
|
|
|
|
end.y += _curPort->top;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
byte SciGuiGfx::CharHeight(int16 ch) {
|
2009-10-03 20:49:18 +00:00
|
|
|
#if 0
|
|
|
|
CResFont *res = getResFont();
|
|
|
|
return res ? res->getCharH(ch) : 0;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
//-----------------------------
|
2009-10-05 07:10:01 +00:00
|
|
|
byte SciGuiGfx::CharWidth(int16 ch) {
|
|
|
|
SciGuiFont *font = GetFont();
|
2009-10-03 20:49:18 +00:00
|
|
|
return font ? font->getCharWidth(ch) : 0;
|
|
|
|
}
|
2009-10-04 05:22:49 +00:00
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::ClearChar(int16 chr) {
|
2009-10-03 20:49:18 +00:00
|
|
|
if (_curPort->penMode != 1)
|
|
|
|
return;
|
|
|
|
Common::Rect rect;
|
|
|
|
rect.top = _curPort->curTop;
|
2009-10-04 09:38:57 +00:00
|
|
|
rect.bottom = rect.top + _curPort->fontHeight;
|
2009-10-03 20:49:18 +00:00
|
|
|
rect.left = _curPort->curLeft;
|
|
|
|
rect.right = rect.left + CharWidth(chr);
|
|
|
|
EraseRect(rect);
|
|
|
|
}
|
2009-10-04 09:38:57 +00:00
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::DrawChar(int16 chr) {
|
2009-10-03 20:49:18 +00:00
|
|
|
chr = chr & 0xFF;
|
|
|
|
ClearChar(chr);
|
|
|
|
StdChar(chr);
|
|
|
|
_curPort->curLeft += CharWidth(chr);
|
|
|
|
}
|
2009-10-04 09:38:57 +00:00
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::StdChar(int16 chr) {
|
2009-10-03 20:49:18 +00:00
|
|
|
#if 0
|
|
|
|
CResFont*res = getResFont();
|
|
|
|
if (res)
|
|
|
|
res->Draw(chr, _curPort->top + _curPort->curTop, _curPort->left
|
|
|
|
+ _curPort->curLeft, _vSeg, 320, _curPort->penClr,
|
|
|
|
_curPort->textFace);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::SetTextFonts(int argc, reg_t *argv) {
|
2009-10-04 05:22:49 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (_textFonts) {
|
|
|
|
delete _textFonts;
|
|
|
|
}
|
|
|
|
_textFontsCount = argc;
|
2009-10-05 07:10:01 +00:00
|
|
|
_textFonts = new GuiResourceId[argc];
|
2009-10-04 05:22:49 +00:00
|
|
|
for (i = 0; i < argc; i++) {
|
2009-10-05 07:10:01 +00:00
|
|
|
_textFonts[i] = (GuiResourceId)argv[i].toUint16();
|
2009-10-04 05:22:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::SetTextColors(int argc, reg_t *argv) {
|
2009-10-04 05:22:49 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (_textColors) {
|
|
|
|
delete _textColors;
|
|
|
|
}
|
|
|
|
_textColorsCount = argc;
|
|
|
|
_textColors = new uint16[argc];
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
_textColors[i] = argv[i].toUint16();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-04 09:38:57 +00:00
|
|
|
// This internal function gets called as soon as a '|' is found in a text
|
|
|
|
// It will process the encountered code and set new font/set color
|
|
|
|
// We only support one-digit codes currently, don't know if multi-digit codes are possible
|
|
|
|
// Returns textcode character count
|
2009-10-05 07:10:01 +00:00
|
|
|
int16 SciGuiGfx::TextCodeProcessing(const char *&text, GuiResourceId orgFontId, int16 orgPenColor) {
|
2009-10-04 09:38:57 +00:00
|
|
|
const char *textCode = text;
|
|
|
|
int16 textCodeSize = 0;
|
|
|
|
char curCode;
|
|
|
|
unsigned char curCodeParm;
|
|
|
|
|
|
|
|
// Find the end of the textcode
|
|
|
|
while ((++textCodeSize) && (*text++ != 0x7C)) { }
|
|
|
|
|
|
|
|
// possible TextCodes:
|
|
|
|
// c -> sets textColor to current port pen color
|
|
|
|
// cX -> sets textColor to _textColors[X-1]
|
|
|
|
curCode = textCode[0];
|
|
|
|
curCodeParm = textCode[1];
|
|
|
|
if (isdigit(curCodeParm)) {
|
|
|
|
curCodeParm -= '0';
|
|
|
|
} else {
|
|
|
|
curCodeParm = 0;
|
2009-10-04 05:22:49 +00:00
|
|
|
}
|
2009-10-04 09:38:57 +00:00
|
|
|
switch (curCode) {
|
|
|
|
case 'c': // set text color
|
|
|
|
if (curCodeParm == 0) {
|
|
|
|
_curPort->penClr = orgPenColor;
|
|
|
|
} else {
|
|
|
|
if (curCodeParm < _textColorsCount) {
|
|
|
|
_curPort->penClr = _textColors[curCodeParm];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
if (curCodeParm == 0) {
|
|
|
|
SetFont(orgFontId);
|
|
|
|
} else {
|
|
|
|
if (curCodeParm < _textFontsCount) {
|
|
|
|
SetFont(_textFonts[curCodeParm]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return textCodeSize;
|
2009-10-04 05:22:49 +00:00
|
|
|
}
|
|
|
|
|
2009-10-04 09:38:57 +00:00
|
|
|
// return max # of chars to fit maxwidth with full words
|
2009-10-05 07:10:01 +00:00
|
|
|
int16 SciGuiGfx::GetLongest(const char *text, int16 maxWidth, GuiResourceId orgFontId) {
|
2009-10-04 09:38:57 +00:00
|
|
|
char curChar;
|
|
|
|
int16 maxChars = 0, curCharCount = 0;
|
|
|
|
uint16 width = 0;
|
2009-10-05 07:10:01 +00:00
|
|
|
GuiResourceId oldFontId = GetFontId();
|
2009-10-04 09:38:57 +00:00
|
|
|
int16 oldPenColor = _curPort->penClr;
|
|
|
|
|
|
|
|
GetFont();
|
|
|
|
if (!_font)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (width <= maxWidth) {
|
|
|
|
curChar = *text++;
|
|
|
|
switch (curChar) {
|
|
|
|
case 0x7C:
|
|
|
|
curCharCount++;
|
|
|
|
curCharCount += TextCodeProcessing(text, orgFontId, oldPenColor);
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case 0xD:
|
|
|
|
curCharCount++;
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case 0xA:
|
|
|
|
curCharCount++;
|
|
|
|
case 0:
|
|
|
|
SetFont(oldFontId);
|
|
|
|
PenColor(oldPenColor);
|
|
|
|
return curCharCount;
|
|
|
|
|
|
|
|
case ' ':
|
|
|
|
maxChars = curCharCount + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
width += _font->getCharWidth(curChar);
|
|
|
|
curCharCount++;
|
|
|
|
}
|
|
|
|
SetFont(oldFontId);
|
|
|
|
PenColor(oldPenColor);
|
|
|
|
return maxChars;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::TextWidth(const char *text, int16 from, int16 len, GuiResourceId orgFontId, int16 &textWidth, int16 &textHeight) {
|
2009-10-04 09:38:57 +00:00
|
|
|
unsigned char curChar;
|
2009-10-05 07:10:01 +00:00
|
|
|
GuiResourceId oldFontId = GetFontId();
|
2009-10-04 09:38:57 +00:00
|
|
|
int16 oldPenColor = _curPort->penClr;
|
|
|
|
|
|
|
|
textWidth = 0; textHeight = 0;
|
|
|
|
|
|
|
|
GetFont();
|
|
|
|
if (_font) {
|
|
|
|
text += from;
|
|
|
|
while (len--) {
|
|
|
|
curChar = *text++;
|
|
|
|
switch (curChar) {
|
|
|
|
case 0x7C:
|
|
|
|
len -= TextCodeProcessing(text, orgFontId, 0);
|
|
|
|
break;
|
|
|
|
case 0x0A:
|
|
|
|
case 0x0D:
|
|
|
|
textHeight = MAX<int16> (textHeight, _curPort->fontHeight);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
textHeight = MAX<int16> (textHeight, _curPort->fontHeight);
|
|
|
|
textWidth += _font->getCharWidth(curChar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SetFont(oldFontId);
|
|
|
|
PenColor(oldPenColor);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::StringWidth(const char *str, GuiResourceId orgFontId, int16 &textWidth, int16 &textHeight) {
|
2009-10-04 09:38:57 +00:00
|
|
|
TextWidth(str, 0, (int16)strlen(str), orgFontId, textWidth, textHeight);
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
int16 SciGuiGfx::TextSize(Common::Rect &rect, const char *str, GuiResourceId fontId, int16 maxWidth) {
|
|
|
|
GuiResourceId oldFontId = GetFontId();
|
2009-10-04 09:38:57 +00:00
|
|
|
int16 oldPenColor = _curPort->penClr;
|
|
|
|
int16 charCount;
|
|
|
|
int16 maxTextWidth = 0, textWidth;
|
|
|
|
int16 totalHeight = 0, textHeight;
|
|
|
|
|
2009-10-03 20:49:18 +00:00
|
|
|
if (fontId != -1)
|
|
|
|
SetFont(fontId);
|
|
|
|
rect.top = rect.left = 0;
|
|
|
|
|
2009-10-04 09:38:57 +00:00
|
|
|
if (maxWidth < 0) { // force output as single line
|
|
|
|
StringWidth(str, oldFontId, textWidth, textHeight);
|
|
|
|
rect.bottom = textHeight;
|
|
|
|
rect.right = textWidth;
|
2009-10-03 20:49:18 +00:00
|
|
|
} else {
|
|
|
|
// rect.right=found widest line with RTextWidth and GetLongest
|
|
|
|
// rect.bottom=num. lines * GetPointSize
|
2009-10-04 09:38:57 +00:00
|
|
|
rect.right = (maxWidth ? maxWidth : 192);
|
2009-10-03 20:49:18 +00:00
|
|
|
const char*p = str;
|
|
|
|
while (*p) {
|
2009-10-04 09:38:57 +00:00
|
|
|
//if (*p == 0xD || *p == 0xA) {
|
|
|
|
// p++;
|
|
|
|
// continue;
|
|
|
|
//}
|
|
|
|
charCount = GetLongest(p, rect.right, oldFontId);
|
|
|
|
if (charCount == 0)
|
2009-10-03 20:49:18 +00:00
|
|
|
break;
|
2009-10-04 09:38:57 +00:00
|
|
|
TextWidth(p, 0, charCount, oldFontId, textWidth, textHeight);
|
|
|
|
maxTextWidth = MAX(textWidth, maxTextWidth);
|
|
|
|
totalHeight += textHeight;
|
|
|
|
p += charCount;
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
2009-10-04 09:38:57 +00:00
|
|
|
rect.bottom = totalHeight;
|
|
|
|
rect.right = maxWidth ? maxWidth : MIN(rect.right, maxTextWidth);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
2009-10-04 09:38:57 +00:00
|
|
|
SetFont(oldFontId);
|
|
|
|
PenColor(oldPenColor);
|
2009-10-03 20:49:18 +00:00
|
|
|
return rect.right;
|
|
|
|
}
|
|
|
|
|
2009-10-04 09:38:57 +00:00
|
|
|
// returns maximum font height used
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::DrawText(const char *text, int16 from, int16 len, GuiResourceId orgFontId, int16 orgPenColor) {
|
2009-10-04 09:38:57 +00:00
|
|
|
int16 curChar, charWidth;
|
2009-10-03 20:49:18 +00:00
|
|
|
Common::Rect rect;
|
|
|
|
|
2009-10-04 09:38:57 +00:00
|
|
|
GetFont();
|
|
|
|
if (!_font)
|
2009-10-03 20:49:18 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
rect.top = _curPort->curTop;
|
2009-10-04 09:38:57 +00:00
|
|
|
rect.bottom = rect.top + _curPort->fontHeight;
|
|
|
|
text += from;
|
2009-10-03 20:49:18 +00:00
|
|
|
while (len--) {
|
2009-10-04 09:38:57 +00:00
|
|
|
curChar = (*text++);
|
|
|
|
switch (curChar) {
|
2009-10-04 05:22:49 +00:00
|
|
|
case 0x7C:
|
2009-10-04 09:38:57 +00:00
|
|
|
len -= TextCodeProcessing(text, orgFontId, orgPenColor);
|
2009-10-04 05:22:49 +00:00
|
|
|
break;
|
2009-10-04 09:38:57 +00:00
|
|
|
|
|
|
|
case 0x0A:
|
|
|
|
case 0x0D:
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
|
2009-10-04 05:22:49 +00:00
|
|
|
default:
|
2009-10-04 09:38:57 +00:00
|
|
|
charWidth = _font->getCharWidth(curChar);
|
2009-10-04 05:22:49 +00:00
|
|
|
// clear char
|
|
|
|
if (_curPort->penMode == 1) {
|
|
|
|
rect.left = _curPort->curLeft;
|
2009-10-04 09:38:57 +00:00
|
|
|
rect.right = rect.left + charWidth;
|
2009-10-04 05:22:49 +00:00
|
|
|
EraseRect(rect);
|
|
|
|
}
|
|
|
|
// CharStd
|
2009-10-04 22:32:36 +00:00
|
|
|
_font->draw(_screen, curChar, _curPort->top + _curPort->curTop, _curPort->left + _curPort->curLeft, _curPort->penClr, _curPort->textFace);
|
2009-10-04 09:38:57 +00:00
|
|
|
_curPort->curLeft += charWidth;
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-04 09:38:57 +00:00
|
|
|
// returns maximum font height used
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::ShowText(const char *text, int16 from, int16 len, GuiResourceId orgFontId, int16 orgPenColor) {
|
2009-10-03 20:49:18 +00:00
|
|
|
Common::Rect rect;
|
|
|
|
|
|
|
|
rect.top = _curPort->curTop;
|
|
|
|
rect.bottom = rect.top + GetPointSize();
|
|
|
|
rect.left = _curPort->curLeft;
|
2009-10-04 09:38:57 +00:00
|
|
|
DrawText(text, from, len, orgFontId, orgPenColor);
|
2009-10-03 20:49:18 +00:00
|
|
|
rect.right = _curPort->curLeft;
|
2009-10-12 07:11:22 +00:00
|
|
|
BitsShow(rect);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draws a text in rect.
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::TextBox(const char *text, int16 bshow, const Common::Rect &rect, int16 align, GuiResourceId fontId) {
|
2009-10-04 09:38:57 +00:00
|
|
|
int16 textWidth, textHeight, charCount, offset;
|
2009-10-03 20:49:18 +00:00
|
|
|
int16 hline = 0;
|
2009-10-05 07:10:01 +00:00
|
|
|
GuiResourceId orgFontId = GetFontId();
|
2009-10-04 09:38:57 +00:00
|
|
|
int16 orgPenColor = _curPort->penClr;
|
2009-10-03 20:49:18 +00:00
|
|
|
|
|
|
|
if (fontId != -1)
|
|
|
|
SetFont(fontId);
|
|
|
|
|
|
|
|
while (*text) {
|
2009-10-04 09:38:57 +00:00
|
|
|
// if (*text == 0xD || *text == 0xA) {
|
|
|
|
// text++;
|
|
|
|
// continue;
|
|
|
|
// }
|
|
|
|
charCount = GetLongest(text, rect.width(), orgFontId);
|
|
|
|
if (charCount == 0)
|
2009-10-03 20:49:18 +00:00
|
|
|
break;
|
2009-10-04 09:38:57 +00:00
|
|
|
TextWidth(text, 0, charCount, orgFontId, textWidth, textHeight);
|
2009-10-03 20:49:18 +00:00
|
|
|
switch (align) {
|
2009-10-04 09:38:57 +00:00
|
|
|
case -1: // right-aligned
|
|
|
|
offset = rect.width() - textWidth;
|
2009-10-03 20:49:18 +00:00
|
|
|
break;
|
2009-10-04 09:38:57 +00:00
|
|
|
case 1: // center text
|
|
|
|
offset = (rect.width() - textWidth) / 2;
|
2009-10-03 20:49:18 +00:00
|
|
|
break;
|
2009-10-04 09:38:57 +00:00
|
|
|
default: // left-aligned
|
2009-10-03 20:49:18 +00:00
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
MoveTo(rect.left + offset, rect.top + hline);
|
|
|
|
|
2009-10-04 09:38:57 +00:00
|
|
|
if (bshow) {
|
|
|
|
ShowText(text, 0, charCount, orgFontId, orgPenColor);
|
|
|
|
} else {
|
|
|
|
DrawText(text, 0, charCount, orgFontId, orgPenColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
hline += textHeight;
|
|
|
|
text += charCount;
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
2009-10-04 09:38:57 +00:00
|
|
|
SetFont(orgFontId);
|
|
|
|
PenColor(orgPenColor);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update (part of) screen
|
2009-10-12 07:11:22 +00:00
|
|
|
void SciGuiGfx::BitsShow(const Common::Rect &r) {
|
2009-10-03 20:49:18 +00:00
|
|
|
Common::Rect rect(r.left, r.top, r.right, r.bottom);
|
|
|
|
rect.clip(_curPort->rect);
|
|
|
|
if (rect.isEmpty()) // nothing to show
|
|
|
|
return;
|
|
|
|
|
|
|
|
OffsetRect(rect);
|
2009-10-11 20:20:28 +00:00
|
|
|
_screen->copyRectToScreen(rect);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
|
2009-10-11 09:47:12 +00:00
|
|
|
GuiMemoryHandle SciGuiGfx::BitsSave(const Common::Rect &rect, byte screenMask) {
|
2009-10-05 07:10:01 +00:00
|
|
|
GuiMemoryHandle memoryId;
|
2009-10-03 20:49:18 +00:00
|
|
|
byte *memoryPtr;
|
|
|
|
int size;
|
2009-10-06 06:50:31 +00:00
|
|
|
|
2009-10-03 20:49:18 +00:00
|
|
|
Common::Rect r(rect.left, rect.top, rect.right, rect.bottom);
|
|
|
|
r.clip(_curPort->rect);
|
|
|
|
if (r.isEmpty()) // nothing to save
|
|
|
|
return NULL_REG;
|
|
|
|
|
|
|
|
OffsetRect(r); //local port coords to screen coords
|
|
|
|
|
|
|
|
// now actually ask _screen how much space it will need for saving
|
2009-10-05 07:38:05 +00:00
|
|
|
size = _screen->getBitsDataSize(r, screenMask);
|
2009-10-03 20:49:18 +00:00
|
|
|
|
2009-10-04 18:38:18 +00:00
|
|
|
memoryId = kalloc(_s->_segMan, "SaveBits()", size);
|
|
|
|
memoryPtr = kmem(_s->_segMan, memoryId);
|
2009-10-05 07:38:05 +00:00
|
|
|
_screen->saveBits(r, screenMask, memoryPtr);
|
2009-10-03 20:49:18 +00:00
|
|
|
return memoryId;
|
|
|
|
}
|
|
|
|
|
2009-10-11 09:47:12 +00:00
|
|
|
void SciGuiGfx::BitsRestore(GuiMemoryHandle memoryHandle) {
|
2009-10-08 21:00:21 +00:00
|
|
|
byte *memoryPtr = NULL;
|
2009-10-03 20:49:18 +00:00
|
|
|
|
2009-10-08 21:00:21 +00:00
|
|
|
if (!memoryHandle.isNull()) {
|
|
|
|
memoryPtr = kmem(_s->_segMan, memoryHandle);;
|
|
|
|
|
|
|
|
if (memoryPtr) {
|
|
|
|
_screen->restoreBits(memoryPtr);
|
|
|
|
kfree(_s->_segMan, memoryHandle);
|
|
|
|
}
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-11 09:47:12 +00:00
|
|
|
void SciGuiGfx::BitsFree(GuiMemoryHandle memoryHandle) {
|
|
|
|
if (!memoryHandle.isNull()) {
|
|
|
|
kfree(_s->_segMan, memoryHandle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-05 19:20:52 +00:00
|
|
|
void SciGuiGfx::Draw_String(const char *text) {
|
|
|
|
GuiResourceId orgFontId = GetFontId();
|
|
|
|
int16 orgPenColor = _curPort->penClr;
|
|
|
|
|
|
|
|
DrawText(text, 0, strlen(text), orgFontId, orgPenColor);
|
|
|
|
SetFont(orgFontId);
|
|
|
|
PenColor(orgPenColor);
|
|
|
|
}
|
|
|
|
|
2009-10-07 20:58:33 +00:00
|
|
|
void SciGuiGfx::drawPicture(GuiResourceId pictureId, int16 animationNr, bool mirroredFlag, bool addToFlag, GuiResourceId paletteId) {
|
2009-10-05 07:10:01 +00:00
|
|
|
SciGuiPicture *picture;
|
2009-10-03 20:49:18 +00:00
|
|
|
|
2009-10-11 16:12:24 +00:00
|
|
|
picture = new SciGuiPicture(_s->resMan, this, _screen, _palette, pictureId);
|
2009-10-03 20:49:18 +00:00
|
|
|
// do we add to a picture? if not -> clear screen
|
|
|
|
if (!addToFlag) {
|
2009-10-06 16:14:40 +00:00
|
|
|
if (_s->resMan->isVGA())
|
|
|
|
ClearScreen(0);
|
|
|
|
else
|
|
|
|
ClearScreen(15);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
2009-10-07 20:58:33 +00:00
|
|
|
picture->draw(animationNr, mirroredFlag, addToFlag, paletteId);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 07:11:22 +00:00
|
|
|
// This one is the only one that updates screen!
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::drawCel(GuiResourceId viewId, GuiViewLoopNo loopNo, GuiViewCelNo celNo, uint16 leftPos, uint16 topPos, byte priority, uint16 paletteNo) {
|
2009-10-06 16:14:40 +00:00
|
|
|
SciGuiView *view = new SciGuiView(_s->resMan, _screen, _palette, viewId);
|
2009-10-12 07:11:22 +00:00
|
|
|
Common::Rect rect;
|
|
|
|
Common::Rect clipRect;
|
2009-10-03 20:49:18 +00:00
|
|
|
if (view) {
|
|
|
|
rect.left = leftPos;
|
|
|
|
rect.top = topPos;
|
2009-10-05 07:10:01 +00:00
|
|
|
rect.right = rect.left + view->getWidth(loopNo, celNo);
|
|
|
|
rect.bottom = rect.top + view->getHeight(loopNo, celNo);
|
2009-10-03 20:49:18 +00:00
|
|
|
clipRect = rect;
|
|
|
|
clipRect.clip(_curPort->rect);
|
|
|
|
if (clipRect.isEmpty()) // nothing to draw
|
|
|
|
return;
|
2009-10-06 14:37:25 +00:00
|
|
|
|
|
|
|
Common::Rect clipRectTranslated = clipRect;
|
|
|
|
OffsetRect(clipRectTranslated);
|
|
|
|
view->draw(rect, clipRect, clipRectTranslated, loopNo, celNo, priority, paletteNo);
|
2009-10-12 07:11:22 +00:00
|
|
|
if (!_screen->_picNotValid)
|
|
|
|
BitsShow(rect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This version of drawCel is not supposed to call BitsShow()!
|
|
|
|
void SciGuiGfx::drawCel(GuiResourceId viewId, GuiViewLoopNo loopNo, GuiViewCelNo celNo, Common::Rect celRect, byte priority, uint16 paletteNo) {
|
|
|
|
SciGuiView *view = new SciGuiView(_s->resMan, _screen, _palette, viewId);
|
|
|
|
Common::Rect clipRect;
|
|
|
|
if (view) {
|
|
|
|
clipRect = celRect;
|
|
|
|
clipRect.clip(_curPort->rect);
|
|
|
|
if (clipRect.isEmpty()) // nothing to draw
|
|
|
|
return;
|
2009-10-06 14:37:25 +00:00
|
|
|
|
2009-10-12 07:11:22 +00:00
|
|
|
Common::Rect clipRectTranslated = clipRect;
|
|
|
|
OffsetRect(clipRectTranslated);
|
|
|
|
view->draw(celRect, clipRect, clipRectTranslated, loopNo, celNo, priority, paletteNo);
|
2009-10-03 20:49:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-12 07:11:22 +00:00
|
|
|
// This version of drawCel is not supposed to call BitsShow()!
|
|
|
|
void SciGuiGfx::drawCel(SciGuiView *view, GuiViewLoopNo loopNo, GuiViewCelNo celNo, Common::Rect celRect, byte priority, uint16 paletteNo) {
|
|
|
|
Common::Rect clipRect;
|
|
|
|
clipRect = celRect;
|
|
|
|
clipRect.clip(_curPort->rect);
|
|
|
|
if (clipRect.isEmpty()) // nothing to draw
|
|
|
|
return;
|
|
|
|
|
|
|
|
Common::Rect clipRectTranslated = clipRect;
|
|
|
|
OffsetRect(clipRectTranslated);
|
|
|
|
view->draw(celRect, clipRect, clipRectTranslated, loopNo, celNo, priority, paletteNo);
|
|
|
|
}
|
|
|
|
|
2009-10-11 15:41:52 +00:00
|
|
|
const char controlListUpArrow[2] = { 0x18, 0 };
|
|
|
|
const char controlListDownArrow[2] = { 0x19, 0 };
|
|
|
|
|
|
|
|
void SciGuiGfx::drawListControl(Common::Rect rect, reg_t obj, int16 maxChars, int16 count, const char **entries, GuiResourceId fontId, int16 upperPos, int16 cursorPos, bool isAlias) {
|
2009-10-11 20:46:04 +00:00
|
|
|
SegManager *segMan = _s->_segMan;
|
2009-10-11 15:41:52 +00:00
|
|
|
Common::Rect workerRect = rect;
|
|
|
|
GuiResourceId oldFontId = GetFontId();
|
|
|
|
int16 oldPenColor = _curPort->penClr;
|
|
|
|
uint16 fontSize = 0;
|
|
|
|
int16 i;
|
|
|
|
const char *listEntry;
|
|
|
|
int16 listEntryLen;
|
|
|
|
|
|
|
|
// draw basic window
|
|
|
|
EraseRect(workerRect);
|
2009-10-11 20:46:04 +00:00
|
|
|
workerRect.grow(1);
|
|
|
|
FrameRect(workerRect);
|
|
|
|
PUT_SEL32V(obj, nsLeft, workerRect.left); PUT_SEL32V(obj, nsTop, workerRect.top);
|
|
|
|
PUT_SEL32V(obj, nsRight, workerRect.right); PUT_SEL32V(obj, nsBottom, workerRect.bottom);
|
2009-10-11 15:41:52 +00:00
|
|
|
// draw UP/DOWN arrows
|
|
|
|
workerRect = rect;
|
|
|
|
TextBox(controlListUpArrow, 0, workerRect, 1, 0);
|
|
|
|
workerRect.top = workerRect.bottom - 10;
|
|
|
|
TextBox(controlListDownArrow, 0, workerRect, 1, 0);
|
|
|
|
|
|
|
|
// Draw inner lines
|
|
|
|
workerRect = rect;
|
|
|
|
workerRect.top = rect.top + 10;
|
|
|
|
workerRect.bottom = rect.bottom - 10;
|
|
|
|
FrameRect(workerRect);
|
|
|
|
workerRect.grow(-1);
|
|
|
|
|
|
|
|
SetFont(fontId);
|
|
|
|
fontSize = _curPort->fontHeight;
|
|
|
|
PenColor(_curPort->penClr); BackColor(_curPort->backClr);
|
|
|
|
workerRect.bottom = workerRect.top + fontSize;
|
|
|
|
|
|
|
|
// Write actual text
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
EraseRect(workerRect);
|
|
|
|
listEntry = entries[i];
|
|
|
|
if (listEntry[0]) {
|
|
|
|
MoveTo(workerRect.left, workerRect.top + 1);
|
|
|
|
listEntryLen = strlen(listEntry);
|
|
|
|
DrawText(listEntry, 0, MIN(maxChars, listEntryLen), oldFontId, oldPenColor);
|
|
|
|
if ((!isAlias) && (i == cursorPos)) {
|
|
|
|
InvertRect(workerRect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
workerRect.translate(0, fontSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
SetFont(oldFontId);
|
|
|
|
}
|
|
|
|
|
2009-10-11 20:46:04 +00:00
|
|
|
void SciGuiGfx::TexteditCursorDraw (Common::Rect rect, const char *text, uint16 curPos) {
|
|
|
|
int16 textWidth, i;
|
|
|
|
if (!_texteditCursorVisible) {
|
|
|
|
textWidth = 0;
|
|
|
|
for (i = 0; i < curPos; i++) {
|
|
|
|
textWidth += _font->getCharWidth(text[i]);
|
|
|
|
}
|
|
|
|
_texteditCursorRect.left = rect.left + textWidth;
|
|
|
|
_texteditCursorRect.top = rect.top;
|
|
|
|
_texteditCursorRect.bottom = _texteditCursorRect.top + _font->getHeight();
|
|
|
|
_texteditCursorRect.right = _texteditCursorRect.left + (text[curPos] == 0 ? 1 : CharWidth(text[curPos]));
|
|
|
|
InvertRect(_texteditCursorRect);
|
2009-10-12 07:11:22 +00:00
|
|
|
BitsShow(_texteditCursorRect);
|
2009-10-11 20:46:04 +00:00
|
|
|
_texteditCursorVisible = true;
|
|
|
|
TexteditSetBlinkTime();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SciGuiGfx::TexteditCursorErase() {
|
|
|
|
if (_texteditCursorVisible) {
|
|
|
|
InvertRect(_texteditCursorRect);
|
2009-10-12 07:11:22 +00:00
|
|
|
BitsShow(_texteditCursorRect);
|
2009-10-11 20:46:04 +00:00
|
|
|
_texteditCursorVisible = false;
|
|
|
|
}
|
|
|
|
TexteditSetBlinkTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SciGuiGfx::TexteditSetBlinkTime() {
|
|
|
|
_texteditBlinkTime = g_system->getMillis() + (30 * 1000 / 60);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SciGuiGfx::TexteditChange(reg_t controlObject, reg_t eventObject) {
|
|
|
|
SegManager *segMan = _s->_segMan;
|
|
|
|
uint16 cursorPos = GET_SEL32V(controlObject, cursor);
|
|
|
|
uint16 maxChars = GET_SEL32V(controlObject, max);
|
|
|
|
reg_t textReference = GET_SEL32(controlObject, text);
|
|
|
|
Common::String text;
|
|
|
|
uint16 textSize, eventType, eventKey;
|
|
|
|
bool textChanged = false;
|
|
|
|
|
|
|
|
if (textReference.isNull())
|
|
|
|
error("kEditControl called on object that doesnt have a text reference");
|
|
|
|
text = segMan->getString(textReference);
|
|
|
|
|
|
|
|
if (!eventObject.isNull()) {
|
|
|
|
textSize = text.size();
|
|
|
|
eventType = GET_SEL32V(eventObject, type);
|
|
|
|
|
|
|
|
switch (eventType) {
|
|
|
|
case SCI_EVT_MOUSE_PRESS:
|
|
|
|
// TODO: Implement mouse support for cursor change
|
|
|
|
break;
|
|
|
|
case SCI_EVT_KEYBOARD:
|
|
|
|
eventKey = GET_SEL32V(eventObject, message);
|
|
|
|
switch (eventKey) {
|
|
|
|
case SCI_K_BACKSPACE:
|
2009-10-12 07:11:22 +00:00
|
|
|
if (cursorPos > 0) {
|
|
|
|
cursorPos--; text.deleteChar(cursorPos);
|
|
|
|
textChanged = true;
|
|
|
|
}
|
2009-10-11 20:46:04 +00:00
|
|
|
break;
|
|
|
|
case SCI_K_DELETE:
|
|
|
|
text.deleteChar(cursorPos);
|
|
|
|
textChanged = true;
|
|
|
|
break;
|
|
|
|
case SCI_K_HOME: // HOME
|
|
|
|
cursorPos = 0; textChanged = true;
|
|
|
|
break;
|
|
|
|
case SCI_K_END: // END
|
|
|
|
cursorPos = textSize; textChanged = true;
|
|
|
|
break;
|
|
|
|
case SCI_K_LEFT: // LEFT
|
|
|
|
if (cursorPos > 0) {
|
|
|
|
cursorPos--; textChanged = true;
|
|
|
|
}
|
|
|
|
case SCI_K_RIGHT: // RIGHT
|
|
|
|
if (cursorPos + 1 <= textSize) {
|
|
|
|
cursorPos++; textChanged = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (eventKey > 31 && eventKey < 256 && textSize < maxChars) {
|
|
|
|
// insert pressed character
|
|
|
|
text.insertChar(eventKey, cursorPos++);
|
|
|
|
textChanged = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (textChanged) {
|
|
|
|
GuiResourceId oldFontId = GetFontId();
|
|
|
|
GuiResourceId fontId = GET_SEL32V(controlObject, font);
|
|
|
|
Common::Rect rect;
|
|
|
|
rect = Common::Rect (GET_SEL32V(controlObject, nsLeft), GET_SEL32V(controlObject, nsTop),
|
|
|
|
GET_SEL32V(controlObject, nsRight), GET_SEL32V(controlObject, nsBottom));
|
|
|
|
rect.top++;
|
|
|
|
TexteditCursorErase();
|
|
|
|
EraseRect(rect);
|
|
|
|
TextBox(text.c_str(), 0, rect, 0, fontId);
|
2009-10-12 07:11:22 +00:00
|
|
|
BitsShow(rect);
|
2009-10-11 20:46:04 +00:00
|
|
|
SetFont(fontId);
|
|
|
|
rect.top--;
|
|
|
|
TexteditCursorDraw(rect, text.c_str(), cursorPos);
|
|
|
|
SetFont(oldFontId);
|
|
|
|
// Write back string
|
|
|
|
segMan->strcpy(textReference, text.c_str());
|
|
|
|
} else {
|
|
|
|
if (g_system->getMillis() >= _texteditBlinkTime) {
|
|
|
|
InvertRect(_texteditCursorRect);
|
2009-10-12 07:11:22 +00:00
|
|
|
BitsShow(_texteditCursorRect);
|
2009-10-11 20:46:04 +00:00
|
|
|
_texteditCursorVisible = !_texteditCursorVisible;
|
|
|
|
TexteditSetBlinkTime();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PUT_SEL32V(controlObject, cursor, cursorPos);
|
|
|
|
}
|
|
|
|
|
2009-10-09 16:51:10 +00:00
|
|
|
uint16 SciGuiGfx::onControl(uint16 screenMask, Common::Rect rect) {
|
2009-10-04 10:46:25 +00:00
|
|
|
Common::Rect outRect(rect.left, rect.top, rect.right, rect.bottom);
|
|
|
|
int16 x, y;
|
2009-10-09 16:51:10 +00:00
|
|
|
uint16 result = 0;
|
2009-10-04 10:46:25 +00:00
|
|
|
|
|
|
|
outRect.clip(_curPort->rect);
|
|
|
|
if (outRect.isEmpty()) // nothing to control
|
|
|
|
return 0;
|
|
|
|
OffsetRect(outRect);
|
|
|
|
|
|
|
|
if (screenMask & SCI_SCREEN_MASK_PRIORITY) {
|
|
|
|
for (y = outRect.top; y < outRect.bottom; y++) {
|
|
|
|
for (x = outRect.left; x < outRect.right; x++) {
|
2009-10-05 07:38:05 +00:00
|
|
|
result |= 1 << _screen->getPriority(x, y);
|
2009-10-04 10:46:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (y = outRect.top; y < outRect.bottom; y++) {
|
|
|
|
for (x = outRect.left; x < outRect.right; x++) {
|
2009-10-05 07:38:05 +00:00
|
|
|
result |= 1 << _screen->getControl(x, y);
|
2009-10-04 10:46:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-10-04 16:39:46 +00:00
|
|
|
static inline int sign_extend_byte(int value) {
|
|
|
|
if (value & 0x80)
|
|
|
|
return value - 256;
|
|
|
|
else
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2009-10-09 19:50:20 +00:00
|
|
|
void SciGuiGfx::PriorityBandsInit(int16 bandCount, int16 top, int16 bottom) {
|
2009-10-09 13:15:37 +00:00
|
|
|
int16 y;
|
2009-10-12 22:08:35 +00:00
|
|
|
int32 bandSize;
|
2009-10-09 19:50:20 +00:00
|
|
|
|
|
|
|
if (bandCount != -1)
|
|
|
|
_priorityBandCount = bandCount;
|
2009-10-09 13:15:37 +00:00
|
|
|
|
|
|
|
_priorityTop = top;
|
|
|
|
_priorityBottom = bottom;
|
|
|
|
|
2009-10-12 22:08:35 +00:00
|
|
|
// Do NOT modify this algo or optimize it anyhow, sierra sci used int32 for calculating the
|
2009-10-12 22:23:27 +00:00
|
|
|
// priority bands and by using double or anything rounding WILL destroy the result
|
|
|
|
bandSize = ((_priorityBottom - _priorityTop) * 2000) / _priorityBandCount;
|
2009-10-12 22:08:35 +00:00
|
|
|
|
|
|
|
memset(_priorityBands, 0, sizeof(byte) * _priorityTop);
|
2009-10-09 13:15:37 +00:00
|
|
|
for (y = _priorityTop; y < _priorityBottom; y++)
|
2009-10-12 22:08:35 +00:00
|
|
|
_priorityBands[y] = 1 + (((y - _priorityTop) * 2000) / bandSize);
|
2009-10-09 17:16:34 +00:00
|
|
|
for (y = _priorityBottom; y < _screen->_height; y++)
|
|
|
|
_priorityBands[y] = _priorityBandCount;
|
2009-10-09 13:15:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SciGuiGfx::PriorityBandsInit(byte *data) {
|
|
|
|
int i = 0, inx;
|
|
|
|
byte priority = 0;
|
|
|
|
|
|
|
|
for (inx = 0; inx < 14; inx++) {
|
|
|
|
priority = *data++;
|
|
|
|
while (i < priority)
|
|
|
|
_priorityBands[i++] = inx;
|
|
|
|
}
|
|
|
|
while (i < 200)
|
|
|
|
_priorityBands[i++] = inx;
|
|
|
|
}
|
|
|
|
|
|
|
|
byte SciGuiGfx::CoordinateToPriority(int16 y) {
|
|
|
|
if (y < _priorityTop)
|
|
|
|
return _priorityBands[_priorityTop];
|
|
|
|
if (y > _priorityBottom)
|
|
|
|
return _priorityBands[_priorityBottom];
|
|
|
|
return _priorityBands[y];
|
|
|
|
}
|
|
|
|
|
|
|
|
int16 SciGuiGfx::PriorityToCoordinate(byte priority) {
|
|
|
|
int16 y;
|
|
|
|
if (priority <= _priorityBandCount) {
|
|
|
|
for (y = 0; y <= _priorityBottom; y++)
|
|
|
|
if (_priorityBands[y] == priority)
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
return _priorityBottom;
|
|
|
|
}
|
|
|
|
|
2009-10-12 07:11:22 +00:00
|
|
|
void SciGuiGfx::ShowPic() {
|
|
|
|
// TODO: Implement animations
|
|
|
|
warning("ShowPic animation not implemented");
|
|
|
|
_palette->setOnScreen();
|
|
|
|
_screen->copyToScreen();
|
|
|
|
_screen->_picNotValid = 0;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::AnimateDisposeLastCast() {
|
2009-10-04 18:34:53 +00:00
|
|
|
// FIXME
|
|
|
|
//if (!_lastCast->first.isNull())
|
|
|
|
//_lastCast->DeleteList();
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::AnimateInvoke(List *list, int argc, reg_t *argv) {
|
2009-10-08 09:29:14 +00:00
|
|
|
SegManager *segMan = _s->_segMan;
|
2009-10-04 18:34:53 +00:00
|
|
|
reg_t curAddress = list->first;
|
2009-10-07 23:34:24 +00:00
|
|
|
Node *curNode = _s->_segMan->lookupNode(curAddress);
|
2009-10-04 18:34:53 +00:00
|
|
|
reg_t curObject;
|
2009-10-10 20:25:04 +00:00
|
|
|
uint16 signal;
|
2009-10-04 18:34:53 +00:00
|
|
|
|
|
|
|
while (curNode) {
|
|
|
|
curObject = curNode->value;
|
2009-10-10 20:25:04 +00:00
|
|
|
signal = GET_SEL32V(curObject, signal);
|
|
|
|
if (!(signal & SCI_ANIMATE_SIGNAL_FROZEN)) {
|
2009-10-08 10:02:26 +00:00
|
|
|
// Call .doit method of that object
|
2009-10-04 18:34:53 +00:00
|
|
|
invoke_selector(_s, curObject, _s->_kernel->_selectorCache.doit, kContinueOnInvalidSelector, argv, argc, __FILE__, __LINE__, 0);
|
|
|
|
// Lookup node again, since the nodetable it was in may have been reallocated
|
2009-10-07 23:34:24 +00:00
|
|
|
curNode = _s->_segMan->lookupNode(curAddress);
|
2009-10-08 09:29:14 +00:00
|
|
|
}
|
2009-10-04 18:34:53 +00:00
|
|
|
curAddress = curNode->succ;
|
2009-10-07 23:34:24 +00:00
|
|
|
curNode = _s->_segMan->lookupNode(curAddress);
|
2009-10-04 18:34:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-10 21:38:24 +00:00
|
|
|
bool AnimateSortHelper(const GuiAnimateEntry* entry1, const GuiAnimateEntry* entry2) {
|
|
|
|
return (entry1->y == entry2->y) ? (entry1->z < entry2->z) : (entry1->y < entry2->y);
|
|
|
|
}
|
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
void SciGuiGfx::AnimateMakeSortedList(List *list) {
|
2009-10-08 10:02:26 +00:00
|
|
|
SegManager *segMan = _s->_segMan;
|
|
|
|
reg_t curAddress = list->first;
|
|
|
|
Node *curNode = _s->_segMan->lookupNode(curAddress);
|
|
|
|
reg_t curObject;
|
2009-10-10 21:25:21 +00:00
|
|
|
GuiAnimateEntry *listEntry;
|
|
|
|
int16 listNr, listCount = 0;
|
2009-10-08 10:02:26 +00:00
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
// Count the list entries
|
2009-10-08 10:02:26 +00:00
|
|
|
while (curNode) {
|
2009-10-10 21:25:21 +00:00
|
|
|
listCount++;
|
2009-10-10 20:25:04 +00:00
|
|
|
curAddress = curNode->succ;
|
|
|
|
curNode = _s->_segMan->lookupNode(curAddress);
|
|
|
|
}
|
|
|
|
|
2009-10-10 21:25:21 +00:00
|
|
|
_animateList.clear();
|
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
// No entries -> exit immediately
|
2009-10-10 21:25:21 +00:00
|
|
|
if (listCount == 0)
|
2009-10-10 20:25:04 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Adjust list size, if needed
|
2009-10-10 21:25:21 +00:00
|
|
|
if ((_animateListData == NULL) || (_animateListSize < listCount)) {
|
|
|
|
if (_animateListData)
|
|
|
|
free(_animateListData);
|
|
|
|
_animateListData = (GuiAnimateEntry *)malloc(listCount * sizeof(GuiAnimateEntry));
|
|
|
|
if (!_animateListData)
|
2009-10-10 20:25:04 +00:00
|
|
|
error("Could not allocate memory for _animateList");
|
2009-10-10 21:25:21 +00:00
|
|
|
_animateListSize = listCount;
|
2009-10-10 20:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fill the list
|
|
|
|
curAddress = list->first;
|
|
|
|
curNode = _s->_segMan->lookupNode(curAddress);
|
2009-10-10 21:25:21 +00:00
|
|
|
listEntry = _animateListData;
|
|
|
|
for (listNr = 0; listNr < listCount; listNr++) {
|
2009-10-08 10:02:26 +00:00
|
|
|
curObject = curNode->value;
|
2009-10-10 20:25:04 +00:00
|
|
|
listEntry->object = curObject;
|
|
|
|
|
|
|
|
// Get data from current object
|
|
|
|
listEntry->viewId = GET_SEL32V(curObject, view);
|
|
|
|
listEntry->loopNo = GET_SEL32V(curObject, loop);
|
|
|
|
listEntry->celNo = GET_SEL32V(curObject, cel);
|
|
|
|
listEntry->paletteNo = GET_SEL32V(curObject, palette);
|
|
|
|
listEntry->x = GET_SEL32V(curObject, x);
|
|
|
|
listEntry->y = GET_SEL32V(curObject, y);
|
|
|
|
listEntry->z = GET_SEL32V(curObject, z);
|
|
|
|
listEntry->priority = GET_SEL32V(curObject, priority);
|
|
|
|
listEntry->signal = GET_SEL32V(curObject, signal);
|
|
|
|
// listEntry->celRect is filled in AnimateFill()
|
2009-10-10 20:30:31 +00:00
|
|
|
listEntry->showBitsFlag = false;
|
2009-10-10 20:25:04 +00:00
|
|
|
|
2009-10-10 21:25:21 +00:00
|
|
|
_animateList.push_back(listEntry);
|
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
listEntry++;
|
|
|
|
curAddress = curNode->succ;
|
|
|
|
curNode = _s->_segMan->lookupNode(curAddress);
|
|
|
|
}
|
2009-10-08 10:02:26 +00:00
|
|
|
|
2009-10-10 21:38:24 +00:00
|
|
|
// Now sort the list according y and z (descending)
|
|
|
|
GuiAnimateList::iterator listBegin = _animateList.begin();
|
|
|
|
GuiAnimateList::iterator listEnd = _animateList.end();
|
|
|
|
|
|
|
|
Common::sort(_animateList.begin(), _animateList.end(), AnimateSortHelper);
|
2009-10-10 20:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SciGuiGfx::AnimateFill(byte &old_picNotValid) {
|
|
|
|
SegManager *segMan = _s->_segMan;
|
|
|
|
reg_t curObject;
|
2009-10-10 21:25:21 +00:00
|
|
|
GuiAnimateEntry *listEntry;
|
2009-10-10 20:25:04 +00:00
|
|
|
uint16 signal;
|
|
|
|
SciGuiView *view = NULL;
|
2009-10-10 21:25:21 +00:00
|
|
|
GuiAnimateList::iterator listIterator;
|
|
|
|
GuiAnimateList::iterator listEnd = _animateList.end();
|
2009-10-10 20:25:04 +00:00
|
|
|
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator = _animateList.begin();
|
|
|
|
while (listIterator != listEnd) {
|
2009-10-11 08:07:59 +00:00
|
|
|
listEntry = *listIterator;
|
2009-10-10 20:25:04 +00:00
|
|
|
curObject = listEntry->object;
|
2009-10-08 10:02:26 +00:00
|
|
|
|
|
|
|
// Get the corresponding view
|
2009-10-10 20:25:04 +00:00
|
|
|
view = new SciGuiView(_s->resMan, _screen, _palette, listEntry->viewId);
|
2009-10-08 10:02:26 +00:00
|
|
|
|
|
|
|
// adjust loop and cel, if any of those is invalid
|
2009-10-10 20:25:04 +00:00
|
|
|
if (listEntry->loopNo >= view->getLoopCount()) {
|
|
|
|
listEntry->loopNo = 0;
|
|
|
|
PUT_SEL32V(curObject, loop, listEntry->loopNo);
|
2009-10-08 10:02:26 +00:00
|
|
|
}
|
2009-10-10 20:25:04 +00:00
|
|
|
if (listEntry->celNo >= view->getCelCount(listEntry->loopNo)) {
|
|
|
|
listEntry->celNo = 0;
|
|
|
|
PUT_SEL32V(curObject, cel, listEntry->celNo);
|
2009-10-08 10:02:26 +00:00
|
|
|
}
|
|
|
|
|
2009-10-08 11:57:17 +00:00
|
|
|
// Create rect according to coordinates and given cel
|
2009-10-10 20:25:04 +00:00
|
|
|
view->getCelRect(listEntry->loopNo, listEntry->celNo, listEntry->x, listEntry->y, listEntry->z, &listEntry->celRect);
|
|
|
|
PUT_SEL32V(curObject, nsLeft, listEntry->celRect.left);
|
|
|
|
PUT_SEL32V(curObject, nsTop, listEntry->celRect.top);
|
|
|
|
PUT_SEL32V(curObject, nsRight, listEntry->celRect.right);
|
|
|
|
PUT_SEL32V(curObject, nsBottom, listEntry->celRect.bottom);
|
|
|
|
|
|
|
|
signal = listEntry->signal;
|
2009-10-08 11:49:11 +00:00
|
|
|
|
2009-10-09 19:41:39 +00:00
|
|
|
// Calculate current priority according to y-coordinate
|
2009-10-10 20:25:04 +00:00
|
|
|
if (!(signal & SCI_ANIMATE_SIGNAL_FIXEDPRIORITY)) {
|
|
|
|
listEntry->priority = CoordinateToPriority(listEntry->y);
|
|
|
|
PUT_SEL32V(curObject, priority, listEntry->priority);
|
|
|
|
}
|
2009-10-08 10:02:26 +00:00
|
|
|
|
2009-10-08 20:13:52 +00:00
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_NOUPDATE) {
|
|
|
|
if (signal & (SCI_ANIMATE_SIGNAL_FORCEUPDATE | SCI_ANIMATE_SIGNAL_VIEWUPDATED)
|
|
|
|
|| (signal & SCI_ANIMATE_SIGNAL_HIDDEN && !(signal & SCI_ANIMATE_SIGNAL_REMOVEVIEW))
|
|
|
|
|| (!(signal & SCI_ANIMATE_SIGNAL_HIDDEN) && signal & SCI_ANIMATE_SIGNAL_REMOVEVIEW)
|
|
|
|
|| (signal & SCI_ANIMATE_SIGNAL_ALWAYSUPDATE))
|
2009-10-08 10:02:26 +00:00
|
|
|
old_picNotValid++;
|
2009-10-08 20:13:52 +00:00
|
|
|
signal &= 0xFFFF ^ SCI_ANIMATE_SIGNAL_STOPUPDATE;
|
2009-10-08 10:02:26 +00:00
|
|
|
} else {
|
2009-10-08 20:13:52 +00:00
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_STOPUPDATE || signal & SCI_ANIMATE_SIGNAL_ALWAYSUPDATE)
|
2009-10-08 10:02:26 +00:00
|
|
|
old_picNotValid++;
|
2009-10-08 20:13:52 +00:00
|
|
|
signal &= 0xFFFF ^ SCI_ANIMATE_SIGNAL_FORCEUPDATE;
|
2009-10-08 10:02:26 +00:00
|
|
|
}
|
2009-10-10 20:25:04 +00:00
|
|
|
listEntry->signal = signal;
|
2009-10-08 10:02:26 +00:00
|
|
|
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator++;
|
2009-10-08 10:02:26 +00:00
|
|
|
}
|
2009-10-04 18:34:53 +00:00
|
|
|
}
|
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
void SciGuiGfx::AnimateUpdate() {
|
2009-10-06 16:14:40 +00:00
|
|
|
SegManager *segMan = _s->_segMan;
|
|
|
|
reg_t curObject;
|
2009-10-10 21:25:21 +00:00
|
|
|
GuiAnimateEntry *listEntry;
|
|
|
|
uint16 signal;
|
2009-10-08 16:23:46 +00:00
|
|
|
reg_t bitsHandle;
|
|
|
|
Common::Rect rect;
|
2009-10-10 21:25:21 +00:00
|
|
|
GuiAnimateList::iterator listIterator;
|
|
|
|
GuiAnimateList::iterator listBegin = _animateList.begin();
|
|
|
|
GuiAnimateList::iterator listEnd = _animateList.end();
|
2009-10-08 16:23:46 +00:00
|
|
|
|
2009-10-12 15:52:50 +00:00
|
|
|
// Remove all no-update cels, if requested
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator = _animateList.reverse_begin();
|
|
|
|
while (listIterator != listEnd) {
|
2009-10-11 08:07:59 +00:00
|
|
|
listEntry = *listIterator;
|
2009-10-10 20:25:04 +00:00
|
|
|
curObject = listEntry->object;
|
|
|
|
signal = listEntry->signal;
|
|
|
|
|
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_NOUPDATE) {
|
|
|
|
if (!(signal & SCI_ANIMATE_SIGNAL_REMOVEVIEW)) {
|
2009-10-08 18:07:49 +00:00
|
|
|
bitsHandle = GET_SEL32(curObject, underBits);
|
2009-10-08 16:23:46 +00:00
|
|
|
if (_screen->_picNotValid != 1) {
|
2009-10-11 09:47:12 +00:00
|
|
|
BitsRestore(bitsHandle);
|
2009-10-10 20:30:31 +00:00
|
|
|
listEntry->showBitsFlag = true;
|
2009-10-08 16:23:46 +00:00
|
|
|
} else {
|
2009-10-11 09:47:12 +00:00
|
|
|
BitsFree(bitsHandle);
|
2009-10-08 16:23:46 +00:00
|
|
|
}
|
|
|
|
PUT_SEL32V(curObject, underBits, 0);
|
|
|
|
}
|
2009-10-10 20:25:04 +00:00
|
|
|
signal &= 0xFFFF ^ SCI_ANIMATE_SIGNAL_FORCEUPDATE;
|
|
|
|
signal &= signal & SCI_ANIMATE_SIGNAL_VIEWUPDATED ? 0xFFFF ^ (SCI_ANIMATE_SIGNAL_VIEWUPDATED | SCI_ANIMATE_SIGNAL_NOUPDATE) : 0xFFFF;
|
|
|
|
} else if (signal & SCI_ANIMATE_SIGNAL_STOPUPDATE) {
|
|
|
|
signal = (signal & (0xFFFF ^ SCI_ANIMATE_SIGNAL_STOPUPDATE)) | SCI_ANIMATE_SIGNAL_NOUPDATE;
|
2009-10-08 16:23:46 +00:00
|
|
|
}
|
2009-10-10 20:25:04 +00:00
|
|
|
listEntry->signal = signal;
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator--;
|
2009-10-08 16:23:46 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 15:52:50 +00:00
|
|
|
// Draw always-update cels
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator = listBegin;
|
|
|
|
while (listIterator != listEnd) {
|
2009-10-11 08:07:59 +00:00
|
|
|
listEntry = *listIterator;
|
2009-10-10 20:25:04 +00:00
|
|
|
curObject = listEntry->object;
|
|
|
|
signal = listEntry->signal;
|
2009-10-08 16:23:46 +00:00
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_ALWAYSUPDATE) {
|
2009-10-08 16:23:46 +00:00
|
|
|
// draw corresponding cel
|
2009-10-12 07:11:22 +00:00
|
|
|
drawCel(listEntry->viewId, listEntry->loopNo, listEntry->celNo, listEntry->celRect, listEntry->priority, listEntry->paletteNo);
|
2009-10-10 20:30:31 +00:00
|
|
|
listEntry->showBitsFlag = true;
|
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
signal &= 0xFFFF ^ (SCI_ANIMATE_SIGNAL_STOPUPDATE | SCI_ANIMATE_SIGNAL_VIEWUPDATED | SCI_ANIMATE_SIGNAL_NOUPDATE | SCI_ANIMATE_SIGNAL_FORCEUPDATE);
|
|
|
|
if ((signal & SCI_ANIMATE_SIGNAL_IGNOREACTOR) == 0) {
|
|
|
|
rect = listEntry->celRect;
|
|
|
|
rect.top = CLIP<int16>(PriorityToCoordinate(listEntry->priority) - 1, rect.top, rect.bottom - 1);
|
2009-10-08 16:23:46 +00:00
|
|
|
FillRect(rect, SCI_SCREEN_MASK_CONTROL, 0, 0, 15);
|
|
|
|
}
|
2009-10-10 20:25:04 +00:00
|
|
|
listEntry->signal = signal;
|
2009-10-08 16:23:46 +00:00
|
|
|
}
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator++;
|
2009-10-08 16:23:46 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 15:52:50 +00:00
|
|
|
// Saving background for all NoUpdate-cels
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator = listBegin;
|
|
|
|
while (listIterator != listEnd) {
|
2009-10-11 08:07:59 +00:00
|
|
|
listEntry = *listIterator;
|
2009-10-10 20:25:04 +00:00
|
|
|
curObject = listEntry->object;
|
|
|
|
signal = listEntry->signal;
|
|
|
|
|
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_NOUPDATE) {
|
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_HIDDEN) {
|
|
|
|
signal |= SCI_ANIMATE_SIGNAL_REMOVEVIEW;
|
2009-10-08 16:23:46 +00:00
|
|
|
} else {
|
2009-10-10 20:25:04 +00:00
|
|
|
signal &= 0xFFFF ^ SCI_ANIMATE_SIGNAL_REMOVEVIEW;
|
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_IGNOREACTOR)
|
2009-10-12 15:52:50 +00:00
|
|
|
bitsHandle = BitsSave(listEntry->celRect, SCI_SCREEN_MASK_VISUAL|SCI_SCREEN_MASK_PRIORITY);
|
2009-10-08 16:23:46 +00:00
|
|
|
else
|
2009-10-11 09:47:12 +00:00
|
|
|
bitsHandle = BitsSave(listEntry->celRect, SCI_SCREEN_MASK_ALL);
|
2009-10-08 18:07:49 +00:00
|
|
|
PUT_SEL32(curObject, underBits, bitsHandle);
|
2009-10-08 16:23:46 +00:00
|
|
|
}
|
2009-10-10 20:25:04 +00:00
|
|
|
listEntry->signal = signal;
|
2009-10-08 16:23:46 +00:00
|
|
|
}
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator++;
|
2009-10-08 16:23:46 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 15:52:50 +00:00
|
|
|
// Draw NoUpdate cels
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator = listBegin;
|
|
|
|
while (listIterator != listEnd) {
|
2009-10-11 08:07:59 +00:00
|
|
|
listEntry = *listIterator;
|
2009-10-10 20:25:04 +00:00
|
|
|
curObject = listEntry->object;
|
|
|
|
signal = listEntry->signal;
|
|
|
|
|
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_NOUPDATE && !(signal & SCI_ANIMATE_SIGNAL_HIDDEN)) {
|
2009-10-08 16:23:46 +00:00
|
|
|
// draw corresponding cel
|
2009-10-12 07:11:22 +00:00
|
|
|
drawCel(listEntry->viewId, listEntry->loopNo, listEntry->celNo, listEntry->celRect, listEntry->priority, listEntry->paletteNo);
|
2009-10-10 20:30:31 +00:00
|
|
|
listEntry->showBitsFlag = true;
|
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
if ((signal & SCI_ANIMATE_SIGNAL_IGNOREACTOR) == 0) {
|
|
|
|
rect = listEntry->celRect;
|
|
|
|
rect.top = CLIP<int16>(PriorityToCoordinate(listEntry->priority) - 1, rect.top, rect.bottom - 1);
|
2009-10-08 16:23:46 +00:00
|
|
|
FillRect(rect, SCI_SCREEN_MASK_CONTROL, 0, 0, 15);
|
|
|
|
}
|
|
|
|
}
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator++;
|
2009-10-08 16:23:46 +00:00
|
|
|
}
|
2009-10-04 18:34:53 +00:00
|
|
|
}
|
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
void SciGuiGfx::AnimateDrawCels() {
|
2009-10-08 10:35:12 +00:00
|
|
|
SegManager *segMan = _s->_segMan;
|
|
|
|
reg_t curObject;
|
2009-10-10 21:25:21 +00:00
|
|
|
GuiAnimateEntry *listEntry;
|
|
|
|
uint16 signal;
|
2009-10-08 16:23:46 +00:00
|
|
|
reg_t bitsHandle;
|
2009-10-10 21:25:21 +00:00
|
|
|
GuiAnimateList::iterator listIterator;
|
|
|
|
GuiAnimateList::iterator listEnd = _animateList.end();
|
2009-10-08 10:35:12 +00:00
|
|
|
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator = _animateList.begin();
|
|
|
|
while (listIterator != listEnd) {
|
2009-10-11 08:07:59 +00:00
|
|
|
listEntry = *listIterator;
|
2009-10-10 20:25:04 +00:00
|
|
|
curObject = listEntry->object;
|
|
|
|
signal = listEntry->signal;
|
2009-10-08 10:35:12 +00:00
|
|
|
|
2009-10-08 20:13:52 +00:00
|
|
|
if (!(signal & (SCI_ANIMATE_SIGNAL_NOUPDATE | SCI_ANIMATE_SIGNAL_HIDDEN | SCI_ANIMATE_SIGNAL_ALWAYSUPDATE))) {
|
2009-10-08 16:23:46 +00:00
|
|
|
// Save background
|
2009-10-11 09:47:12 +00:00
|
|
|
bitsHandle = BitsSave(listEntry->celRect, SCI_SCREEN_MASK_ALL);
|
2009-10-08 18:07:49 +00:00
|
|
|
PUT_SEL32(curObject, underBits, bitsHandle);
|
2009-10-08 10:35:12 +00:00
|
|
|
|
|
|
|
// draw corresponding cel
|
2009-10-12 07:11:22 +00:00
|
|
|
drawCel(listEntry->viewId, listEntry->loopNo, listEntry->celNo, listEntry->celRect, listEntry->priority, listEntry->paletteNo);
|
2009-10-10 20:30:31 +00:00
|
|
|
listEntry->showBitsFlag = true;
|
2009-10-08 10:35:12 +00:00
|
|
|
|
2009-10-08 20:13:52 +00:00
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_REMOVEVIEW) {
|
2009-10-08 20:51:49 +00:00
|
|
|
signal &= 0xFFFF ^ SCI_ANIMATE_SIGNAL_REMOVEVIEW;
|
2009-10-08 10:35:12 +00:00
|
|
|
}
|
2009-10-10 20:25:04 +00:00
|
|
|
listEntry->signal = signal;
|
2009-10-08 10:35:12 +00:00
|
|
|
|
|
|
|
// HEAPHANDLE hNewCast = heapNewPtr(sizeof(sciCast), kDataCast);
|
|
|
|
// sciCast *pNewCast = (sciCast *)heap2Ptr(hNewCast);
|
|
|
|
// pNewCast->view = view;
|
|
|
|
// pNewCast->loop = loop;
|
|
|
|
// pNewCast->cel = cel;
|
|
|
|
// pNewCast->z = z;
|
|
|
|
// pNewCast->pal = pal;
|
|
|
|
// pNewCast->hSaved = 0;
|
|
|
|
// pNewCast->rect = *rect;
|
|
|
|
// _lastCast->AddToEnd(hNewCast);
|
|
|
|
}
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator++;
|
2009-10-08 10:35:12 +00:00
|
|
|
}
|
2009-10-04 18:34:53 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 07:11:22 +00:00
|
|
|
void SciGuiGfx::AnimateUpdateScreen(byte oldPicNotValid) {
|
|
|
|
GuiAnimateEntry *listEntry;
|
|
|
|
uint16 signal;
|
|
|
|
GuiAnimateList::iterator listIterator;
|
|
|
|
GuiAnimateList::iterator listEnd = _animateList.end();
|
|
|
|
|
|
|
|
listIterator = _animateList.begin();
|
|
|
|
while (listIterator != listEnd) {
|
|
|
|
listEntry = *listIterator;
|
|
|
|
signal = listEntry->signal;
|
|
|
|
|
|
|
|
if (listEntry->showBitsFlag || !(signal & (SCI_ANIMATE_SIGNAL_REMOVEVIEW | SCI_ANIMATE_SIGNAL_NOUPDATE) ||
|
2009-10-12 20:46:32 +00:00
|
|
|
(!(signal & SCI_ANIMATE_SIGNAL_REMOVEVIEW) && (signal & SCI_ANIMATE_SIGNAL_NOUPDATE) && oldPicNotValid))) {
|
2009-10-12 07:11:22 +00:00
|
|
|
// TODO: code finish
|
|
|
|
// rect = (Common::Rect *)&cobj[_objOfs[7]];
|
|
|
|
// rect1 = (Common::Rect *)&cobj[_objOfs[8]];
|
|
|
|
//
|
|
|
|
// Common::Rect ro(rect->left, rect->top, rect->right, rect->bottom);
|
|
|
|
// ro.clip(*rect1);
|
|
|
|
//
|
|
|
|
// if (!ro.isEmpty()) {
|
|
|
|
// ro = *rect;
|
|
|
|
// ro.extend(*rect1);
|
|
|
|
// } else {
|
|
|
|
// _gfx->ShowBits(*rect, _showMap);
|
|
|
|
// // ro = *rect1;
|
|
|
|
// //}
|
|
|
|
// //*rect = *rect1;
|
|
|
|
// _gfx->ShowBits(ro, _showMap);
|
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_HIDDEN) {
|
|
|
|
listEntry->signal |= SCI_ANIMATE_SIGNAL_REMOVEVIEW;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
listIterator++;
|
|
|
|
}
|
|
|
|
_screen->copyToScreen();
|
|
|
|
}
|
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
void SciGuiGfx::AnimateRestoreAndDelete(int argc, reg_t *argv) {
|
2009-10-08 11:23:53 +00:00
|
|
|
SegManager *segMan = _s->_segMan;
|
|
|
|
reg_t curObject;
|
2009-10-10 21:25:21 +00:00
|
|
|
GuiAnimateEntry *listEntry;
|
|
|
|
uint16 signal;
|
|
|
|
GuiAnimateList::iterator listIterator;
|
|
|
|
GuiAnimateList::iterator listEnd = _animateList.end();
|
2009-10-08 11:23:53 +00:00
|
|
|
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator = _animateList.reverse_begin();
|
|
|
|
while (listIterator != listEnd) {
|
2009-10-11 08:07:59 +00:00
|
|
|
listEntry = *listIterator;
|
2009-10-10 20:25:04 +00:00
|
|
|
curObject = listEntry->object;
|
|
|
|
signal = listEntry->signal;
|
2009-10-08 18:07:49 +00:00
|
|
|
|
2009-10-08 20:13:52 +00:00
|
|
|
// FIXME: this is supposed to go into the loop above (same method)
|
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_HIDDEN) {
|
|
|
|
signal |= SCI_ANIMATE_SIGNAL_REMOVEVIEW;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((signal & (SCI_ANIMATE_SIGNAL_NOUPDATE | SCI_ANIMATE_SIGNAL_REMOVEVIEW)) == 0) {
|
2009-10-11 09:47:12 +00:00
|
|
|
BitsRestore(GET_SEL32(curObject, underBits));
|
2009-10-08 18:07:49 +00:00
|
|
|
PUT_SEL32V(curObject, underBits, 0);
|
|
|
|
}
|
|
|
|
|
2009-10-10 20:25:04 +00:00
|
|
|
// Finally update signal
|
|
|
|
PUT_SEL32V(curObject, signal, signal);
|
|
|
|
|
2009-10-08 20:13:52 +00:00
|
|
|
if (signal & SCI_ANIMATE_SIGNAL_DISPOSEME) {
|
2009-10-08 11:23:53 +00:00
|
|
|
// Call .delete_ method of that object
|
|
|
|
invoke_selector(_s, curObject, _s->_kernel->_selectorCache.delete_, kContinueOnInvalidSelector, argv, argc, __FILE__, __LINE__, 0);
|
|
|
|
}
|
2009-10-10 21:25:21 +00:00
|
|
|
listIterator--;
|
2009-10-08 11:23:53 +00:00
|
|
|
}
|
2009-10-04 18:34:53 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 11:36:42 +00:00
|
|
|
void SciGuiGfx::ReAnimate(Common::Rect rect) {
|
|
|
|
// TODO: implement ReAnimate
|
|
|
|
BitsShow(rect);
|
|
|
|
}
|
|
|
|
|
2009-10-09 07:50:37 +00:00
|
|
|
void SciGuiGfx::AddToPicDrawCels(List *list) {
|
|
|
|
reg_t curObject;
|
2009-10-11 07:21:59 +00:00
|
|
|
GuiAnimateEntry *listEntry;
|
2009-10-09 07:50:37 +00:00
|
|
|
SciGuiView *view = NULL;
|
2009-10-11 07:21:59 +00:00
|
|
|
GuiAnimateList::iterator listIterator;
|
|
|
|
GuiAnimateList::iterator listEnd = _animateList.end();
|
2009-10-09 07:50:37 +00:00
|
|
|
|
2009-10-11 07:21:59 +00:00
|
|
|
listIterator = _animateList.begin();
|
|
|
|
while (listIterator != listEnd) {
|
2009-10-11 08:07:59 +00:00
|
|
|
listEntry = *listIterator;
|
2009-10-11 07:21:59 +00:00
|
|
|
curObject = listEntry->object;
|
2009-10-09 07:50:37 +00:00
|
|
|
|
2009-10-11 07:21:59 +00:00
|
|
|
if (listEntry->priority == -1)
|
|
|
|
listEntry->priority = CoordinateToPriority(listEntry->y);
|
2009-10-09 07:50:37 +00:00
|
|
|
|
|
|
|
// Get the corresponding view
|
2009-10-11 07:21:59 +00:00
|
|
|
view = new SciGuiView(_s->resMan, _screen, _palette, listEntry->viewId);
|
2009-10-09 07:50:37 +00:00
|
|
|
|
|
|
|
// Create rect according to coordinates and given cel
|
2009-10-12 20:27:47 +00:00
|
|
|
view->getCelRect(listEntry->loopNo, listEntry->celNo, listEntry->x, listEntry->y, listEntry->z, &listEntry->celRect);
|
2009-10-09 07:50:37 +00:00
|
|
|
|
|
|
|
// draw corresponding cel
|
2009-10-12 07:11:22 +00:00
|
|
|
drawCel(listEntry->viewId, listEntry->loopNo, listEntry->celNo, listEntry->celRect, listEntry->priority, listEntry->paletteNo);
|
2009-10-11 07:21:59 +00:00
|
|
|
if ((listEntry->signal & SCI_ANIMATE_SIGNAL_IGNOREACTOR) == 0) {
|
|
|
|
listEntry->celRect.top = CLIP<int16>(PriorityToCoordinate(listEntry->priority) - 1, listEntry->celRect.top, listEntry->celRect.bottom - 1);
|
|
|
|
FillRect(listEntry->celRect, SCI_SCREEN_MASK_CONTROL, 0, 0, 15);
|
2009-10-09 13:15:37 +00:00
|
|
|
}
|
2009-10-09 07:50:37 +00:00
|
|
|
|
2009-10-11 07:21:59 +00:00
|
|
|
listIterator++;
|
2009-10-09 07:50:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-11 07:21:59 +00:00
|
|
|
void SciGuiGfx::AddToPicDrawView(GuiResourceId viewId, GuiViewLoopNo loopNo, GuiViewCelNo celNo, int16 leftPos, int16 topPos, int16 priority, int16 control) {
|
|
|
|
SciGuiView *view = NULL;
|
|
|
|
Common::Rect celRect;
|
|
|
|
|
|
|
|
view = new SciGuiView(_s->resMan, _screen, _palette, viewId);
|
|
|
|
|
|
|
|
// Create rect according to coordinates and given cel
|
|
|
|
view->getCelRect(loopNo, celNo, leftPos, topPos, priority, &celRect);
|
2009-10-12 07:11:22 +00:00
|
|
|
drawCel(view, loopNo, celNo, celRect, priority, 0);
|
2009-10-11 07:21:59 +00:00
|
|
|
}
|
|
|
|
|
2009-10-11 07:54:20 +00:00
|
|
|
bool SciGuiGfx::CanBeHereCheckRectList(reg_t checkObject, Common::Rect checkRect, List *list) {
|
|
|
|
SegManager *segMan = _s->_segMan;
|
|
|
|
reg_t curAddress = list->first;
|
|
|
|
Node *curNode = _s->_segMan->lookupNode(curAddress);
|
|
|
|
reg_t curObject;
|
|
|
|
uint16 signal;
|
|
|
|
Common::Rect curRect;
|
|
|
|
|
|
|
|
while (curNode) {
|
|
|
|
curObject = curNode->value;
|
|
|
|
if (curObject != checkObject) {
|
|
|
|
signal = GET_SEL32V(curObject, signal);
|
|
|
|
if ((signal & (SCI_ANIMATE_SIGNAL_IGNOREACTOR | SCI_ANIMATE_SIGNAL_REMOVEVIEW | SCI_ANIMATE_SIGNAL_NOUPDATE)) == 0) {
|
|
|
|
curRect.left = GET_SEL32V(curObject, brLeft);
|
|
|
|
curRect.top = GET_SEL32V(curObject, brTop);
|
|
|
|
curRect.right = GET_SEL32V(curObject, brRight);
|
|
|
|
curRect.bottom = GET_SEL32V(curObject, brBottom);
|
|
|
|
// Check if curRect is within checkRect
|
|
|
|
if (curRect.right > checkRect.left && curRect.left < checkRect.right && curRect.bottom > checkRect.top && curRect.top < checkRect.bottom) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
curAddress = curNode->succ;
|
|
|
|
curNode = _s->_segMan->lookupNode(curAddress);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
void SciGuiGfx::SetNowSeen(reg_t objectReference) {
|
2009-10-04 18:38:18 +00:00
|
|
|
SegManager *segMan = _s->_segMan;
|
2009-10-05 07:10:01 +00:00
|
|
|
SciGuiView *view = NULL;
|
|
|
|
Common::Rect celRect(0, 0);
|
|
|
|
GuiResourceId viewId = (GuiResourceId)GET_SEL32V(objectReference, view);
|
|
|
|
GuiViewLoopNo loopNo = sign_extend_byte((GuiViewLoopNo)GET_SEL32V(objectReference, loop));
|
|
|
|
GuiViewCelNo celNo = sign_extend_byte((GuiViewCelNo)GET_SEL32V(objectReference, cel));
|
2009-10-04 16:39:46 +00:00
|
|
|
int16 x = (int16)GET_SEL32V(objectReference, x);
|
|
|
|
int16 y = (int16)GET_SEL32V(objectReference, y);
|
|
|
|
int16 z = 0;
|
|
|
|
if (_s->_kernel->_selectorCache.z > -1) {
|
|
|
|
z = (int16)GET_SEL32V(objectReference, z);
|
|
|
|
}
|
|
|
|
|
2009-10-05 07:10:01 +00:00
|
|
|
// now get cel rectangle
|
2009-10-06 16:14:40 +00:00
|
|
|
view = new SciGuiView(_s->resMan, _screen, _palette, viewId);
|
2009-10-05 07:10:01 +00:00
|
|
|
view->getCelRect(loopNo, celNo, x, y, z, &celRect);
|
2009-10-04 16:39:46 +00:00
|
|
|
|
|
|
|
// TODO: sometimes loop is negative. Check what it means
|
2009-10-04 18:38:18 +00:00
|
|
|
if (lookup_selector(_s->_segMan, objectReference, _s->_kernel->_selectorCache.nsTop, NULL, NULL) == kSelectorVariable) {
|
2009-10-05 07:10:01 +00:00
|
|
|
PUT_SEL32V(objectReference, nsLeft, celRect.left);
|
|
|
|
PUT_SEL32V(objectReference, nsRight, celRect.right);
|
|
|
|
PUT_SEL32V(objectReference, nsTop, celRect.top);
|
|
|
|
PUT_SEL32V(objectReference, nsBottom, celRect.bottom);
|
2009-10-04 16:39:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-04 21:26:33 +00:00
|
|
|
} // End of namespace Sci
|