scummvm/engines/sci/engine/kgraphics.cpp

1145 lines
33 KiB
C++
Raw Normal View History

2009-02-17 15:02:16 +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/system.h"
#include "common/events.h"
#include "graphics/cursorman.h"
#include "graphics/video/avi_player.h"
#include "graphics/surface.h"
#include "sci/sci.h"
#include "sci/debug.h" // for g_debug_sleeptime_factor
#include "sci/resource.h"
#include "sci/engine/state.h"
#include "sci/engine/kernel.h"
#include "sci/gfx/gfx_gui.h"
#include "sci/gfx/gfx_widgets.h"
#include "sci/gfx/gfx_state_internal.h" // required for GfxContainer, GfxPort, GfxVisual
#include "sci/gfx/seq_decoder.h"
#include "sci/gui/gui.h"
#include "sci/gui/gui_cursor.h"
#include "sci/gui/gui_screen.h"
namespace Sci {
2009-02-19 20:50:55 +00:00
// Graph subfunctions
enum {
K_GRAPH_GET_COLORS_NR = 2,
// 3 - SET PALETTE VIA RESOURCE
K_GRAPH_DRAW_LINE = 4,
// 5 - NOP
// 6 - DRAW PATTERN
K_GRAPH_SAVE_BOX = 7,
K_GRAPH_RESTORE_BOX = 8,
K_GRAPH_FILL_BOX_BACKGROUND = 9,
K_GRAPH_FILL_BOX_FOREGROUND = 10,
K_GRAPH_FILL_BOX_ANY = 11,
K_GRAPH_UPDATE_BOX = 12,
K_GRAPH_REDRAW_BOX = 13,
K_GRAPH_ADJUST_PRIORITY = 14
};
void _k_dirloop(reg_t obj, uint16 angle, EngineState *s, int argc, reg_t *argv) {
SegManager *segMan = s->_segMan;
int view = GET_SEL32V(obj, view);
int signal = GET_SEL32V(obj, signal);
int loop;
int maxloops;
bool oldScriptHeader = (getSciVersion() == SCI_VERSION_0_EARLY);
if (signal & _K_VIEW_SIG_FLAG_DOESNT_TURN)
return;
angle %= 360;
if (!oldScriptHeader) {
if (angle < 45)
loop = 3;
else if (angle < 136)
loop = 0;
else if (angle < 225)
loop = 2;
else if (angle < 316)
loop = 1;
else
loop = 3;
} else {
if (angle >= 330 || angle <= 30)
loop = 3;
else if (angle <= 150)
loop = 0;
else if (angle <= 210)
loop = 2;
else if (angle < 330)
loop = 1;
else loop = 0xffff;
}
maxloops = gfxop_lookup_view_get_loops(s->gfx_state, view);
if ((loop > 1) && (maxloops < 4))
return;
PUT_SEL32V(obj, loop, loop);
}
static reg_t kSetCursorSci0(EngineState *s, int argc, reg_t *argv) {
Common::Point pos;
GuiResourceId cursorId = argv[0].toSint16();
// Set pointer position, if requested
if (argc >= 4) {
pos.y = argv[3].toSint16();
pos.x = argv[2].toSint16();
s->_gui->setCursorPos(pos);
}
if ((argc >= 2) && (argv[1].toSint16() == 0)) {
cursorId = -1;
}
s->_gui->setCursorShape(cursorId);
return s->r_acc;
}
static reg_t kSetCursorSci11(EngineState *s, int argc, reg_t *argv) {
Common::Point pos;
Common::Point *hotspot = NULL;
switch (argc) {
case 1:
if (argv[0].isNull())
s->_gui->hideCursor();
else
s->_gui->showCursor();
break;
case 2:
pos.y = argv[1].toSint16();
pos.x = argv[0].toSint16();
s->_gui->setCursorPos(pos);
break;
case 4: {
int16 top = argv[0].toSint16();
int16 left = argv[1].toSint16();
int16 bottom = argv[2].toSint16();
int16 right = argv[3].toSint16();
if ((right >= left) && (bottom >= top)) {
Common::Rect rect = Common::Rect(left, top, right, bottom);
s->_cursor->setMoveZone(rect);
} else {
warning("kSetCursor: Ignoring invalid mouse zone (%i, %i)-(%i, %i)", left, top, right, bottom);
}
break;
}
case 5:
case 9:
hotspot = new Common::Point(argv[3].toSint16(), argv[4].toSint16());
// Fallthrough
case 3:
s->_gui->setCursorView(argv[0].toUint16(), argv[1].toUint16(), argv[2].toUint16(), hotspot);
break;
default :
warning("kSetCursor: Unhandled case: %d arguments given", argc);
break;
}
return s->r_acc;
}
reg_t kSetCursor(EngineState *s, int argc, reg_t *argv) {
switch (s->detectSetCursorType()) {
case SCI_VERSION_0_EARLY:
return kSetCursorSci0(s, argc, argv);
case SCI_VERSION_1_1:
return kSetCursorSci11(s, argc, argv);
default:
warning("Unknown SetCursor type");
return NULL_REG;
}
}
reg_t kMoveCursor(EngineState *s, int argc, reg_t *argv) {
Common::Point pos;
if (argc == 2) {
pos.y = argv[1].toSint16();
pos.x = argv[0].toSint16();
s->_gui->setCursorPos(pos);
}
return s->r_acc;
}
reg_t kShow(EngineState *s, int argc, reg_t *argv) {
int old_map = s->pic_visible_map;
s->pic_visible_map = (argc > 0) ? (gfx_map_mask_t) argv[0].toUint16() : GFX_MASK_VISUAL;
switch (s->pic_visible_map) {
case GFX_MASK_VISUAL:
case GFX_MASK_PRIORITY:
case GFX_MASK_CONTROL:
gfxop_set_visible_map(s->gfx_state, s->pic_visible_map);
if (old_map != s->pic_visible_map) {
2009-02-19 20:50:55 +00:00
if (s->pic_visible_map == GFX_MASK_VISUAL) // Full widget redraw
s->visual->draw(Common::Point(0, 0));
gfxop_update(s->gfx_state);
debugC(2, kDebugLevelGraphics, "Switching visible map to %x\n", s->pic_visible_map);
}
break;
default:
warning("Show(%x) selects unknown map", s->pic_visible_map);
}
s->pic_not_valid = 2;
return s->r_acc;
}
reg_t kPicNotValid(EngineState *s, int argc, reg_t *argv) {
int16 newPicNotValid = (argc > 0) ? argv[0].toUint16() : -1;
return make_reg(0, s->_gui->picNotValid(newPicNotValid));
}
void kGraphCreateRect(int16 x, int16 y, int16 x1, int16 y1, Common::Rect *destRect) {
if (x > x1) SWAP(x, x1);
if (y > y1) SWAP(y, y1);
*destRect = Common::Rect(x, y, x1, y1);
}
reg_t kGraph(EngineState *s, int argc, reg_t *argv) {
int16 x = 0, y = 0, x1 = 0, y1 = 0;
uint16 flags;
int16 priority, control, color, colorMask;
Common::Rect rect;
if (argc >= 5) {
x = argv[2].toSint16();
y = argv[1].toSint16();
x1 = argv[4].toSint16();
y1 = argv[3].toSint16();
}
switch (argv[0].toSint16()) {
case K_GRAPH_GET_COLORS_NR:
return make_reg(0, !s->resMan->isVGA() ? 0x10 : 0x100);
break;
case K_GRAPH_DRAW_LINE:
priority = (argc > 6) ? argv[6].toSint16() : -1;
control = (argc > 7) ? argv[7].toSint16() : -1;
color = argv[5].toSint16();
s->_gui->graphDrawLine(Common::Point(x, y), Common::Point(x1, y1), color, priority, control);
break;
case K_GRAPH_SAVE_BOX:
kGraphCreateRect(x, y, x1, y1, &rect);
flags = (argc > 5) ? argv[5].toUint16() : 0;
return s->_gui->graphSaveBox(rect, flags);
case K_GRAPH_RESTORE_BOX:
s->_gui->graphRestoreBox(argv[1]);
break;
case K_GRAPH_FILL_BOX_BACKGROUND:
kGraphCreateRect(x, y, x1, y1, &rect);
s->_gui->graphFillBoxBackground(rect);
break;
case K_GRAPH_FILL_BOX_FOREGROUND:
kGraphCreateRect(x, y, x1, y1, &rect);
s->_gui->graphFillBoxForeground(rect);
break;
case K_GRAPH_FILL_BOX_ANY:
priority = (argc > 7) ? argv[7].toSint16() : -1;
control = (argc > 8) ? argv[8].toSint16() : -1;
color = argv[6].toSint16();
colorMask = argv[5].toUint16();
rect = Common::Rect(x, y, x1, y1);
s->_gui->graphFillBox(rect, colorMask, color, priority, control);
break;
2009-10-12 12:42:50 +00:00
case K_GRAPH_UPDATE_BOX:
kGraphCreateRect(x, y, x1, y1, &rect);
s->_gui->graphUpdateBox(rect);
break;
2009-10-12 12:42:50 +00:00
case K_GRAPH_REDRAW_BOX:
kGraphCreateRect(x, y, x1, y1, &rect);
s->_gui->graphRedrawBox(rect);
break;
case K_GRAPH_ADJUST_PRIORITY:
debugC(2, kDebugLevelGraphics, "adjust_priority(%d, %d)\n", argv[1].toSint16(), argv[2].toSint16());
s->priority_first = argv[1].toSint16() - 10;
s->priority_last = argv[2].toSint16() - 10;
break;
default:
2009-10-12 12:42:50 +00:00
error("Unsupported kGraph() operation %04x", argv[0].toSint16());
}
gfxop_update(s->gfx_state);
return s->r_acc;
}
reg_t kTextSize(EngineState *s, int argc, reg_t *argv) {
int16 textWidth, textHeight;
Common::String text = s->_segMan->getString(argv[1]);
reg_t *dest = s->_segMan->derefRegPtr(argv[0], 4);
int maxwidth = (argc > 3) ? argv[3].toUint16() : 0;
int font_nr = argv[2].toUint16();
Common::String sep_str;
const char *sep = NULL;
if ((argc > 4) && (argv[4].segment)) {
sep_str = s->_segMan->getString(argv[4]);
sep = sep_str.c_str();
}
dest[0] = dest[1] = NULL_REG;
if (text.empty() || !dest) { // Empty text
dest[2] = dest[3] = make_reg(0, 0);
debugC(2, kDebugLevelStrings, "GetTextSize: Empty string\n");
return s->r_acc;
}
textWidth = dest[3].toUint16(); textHeight = dest[2].toUint16();
s->_gui->textSize(s->strSplit(text.c_str(), sep).c_str(), font_nr, maxwidth, &textWidth, &textHeight);
debugC(2, kDebugLevelStrings, "GetTextSize '%s' -> %dx%d\n", text.c_str(), textWidth, textHeight);
dest[2] = make_reg(0, textHeight);
dest[3] = make_reg(0, textWidth);
return s->r_acc;
}
reg_t kWait(EngineState *s, int argc, reg_t *argv) {
int sleep_time = argv[0].toUint16();
#if 0
uint32 time;
time = g_system->getMillis();
s->r_acc = make_reg(0, ((long)time - (long)s->last_wait_time) * 60 / 1000);
s->last_wait_time = time;
sleep_time *= g_debug_sleeptime_factor;
gfxop_sleep(s->gfx_state, sleep_time * 1000 / 60);
#endif
// FIXME: we should not be asking from the GUI to wait. The kernel sounds
// like a better place
s->_gui->wait(sleep_time);
return s->r_acc;
}
reg_t kCoordPri(EngineState *s, int argc, reg_t *argv) {
int16 y = argv[0].toSint16();
if ((argc < 2) || (y != 1)) {
return make_reg(0, s->_gui->coordinateToPriority(y));
} else {
int16 priority = argv[1].toSint16();
return make_reg(0, s->_gui->priorityToCoordinate(priority));
}
}
reg_t kPriCoord(EngineState *s, int argc, reg_t *argv) {
int16 priority = argv[0].toSint16();
return make_reg(0, s->_gui->priorityToCoordinate(priority));
}
reg_t kDirLoop(EngineState *s, int argc, reg_t *argv) {
_k_dirloop(argv[0], argv[1].toUint16(), s, argc, argv);
return s->r_acc;
}
reg_t kCanBeHere(EngineState *s, int argc, reg_t *argv) {
reg_t curObject = argv[0];
reg_t listReference = (argc > 1) ? argv[1] : NULL_REG;
bool canBeHere = s->_gui->canBeHere(curObject, listReference);
return make_reg(0, canBeHere);
}
// kCantBeHere does the same thing as kCanBeHere, except that it returns the opposite result.
reg_t kCantBeHere(EngineState *s, int argc, reg_t *argv) {
reg_t curObject = argv[0];
reg_t listReference = (argc > 1) ? argv[1] : NULL_REG;
bool canBeHere = s->_gui->canBeHere(curObject, listReference);
return make_reg(0, !canBeHere);
}
reg_t kIsItSkip(EngineState *s, int argc, reg_t *argv) {
int view = argv[0].toSint16();
int loop = argv[1].toSint16();
int cel = argv[2].toSint16();
int y = argv[3].toUint16();
int x = argv[4].toUint16();
gfxr_view_t *res = NULL;
gfx_pixmap_t *pxm = NULL;
res = s->gfx_state->gfxResMan->getView(view, &loop, &cel, 0);
if (!res) {
warning("[GFX] Attempt to get cel parameters for invalid view %d", view);
return SIGNAL_REG;
}
pxm = res->loops[loop].cels[cel];
if (x > pxm->index_width)
x = pxm->index_width - 1;
if (y > pxm->index_height)
y = pxm->index_height - 1;
return make_reg(0, pxm->index_data[y * pxm->index_width + x] == pxm->color_key);
}
reg_t kCelHigh(EngineState *s, int argc, reg_t *argv) {
int view = argv[0].toSint16();
int loop = argv[1].toSint16();
int cel = (argc >= 3) ? argv[2].toSint16() : 0;
return make_reg(0, s->_gui->getCelHeight(view, loop, cel));
}
reg_t kCelWide(EngineState *s, int argc, reg_t *argv) {
int view = argv[0].toSint16();
int loop = argv[1].toSint16();
int cel = (argc >= 3) ? argv[2].toSint16() : 0;
return make_reg(0, s->_gui->getCelWidth(view, loop, cel));
}
reg_t kNumLoops(EngineState *s, int argc, reg_t *argv) {
SegManager *segMan = s->_segMan;
reg_t obj = argv[0];
int view = GET_SEL32V(obj, view);
int loops_nr = gfxop_lookup_view_get_loops(s->gfx_state, view);
if (loops_nr < 0) {
error("view.%d (0x%x) not found", view, view);
return NULL_REG;
}
debugC(2, kDebugLevelGraphics, "NumLoops(view.%d) = %d\n", view, loops_nr);
return make_reg(0, loops_nr);
}
reg_t kNumCels(EngineState *s, int argc, reg_t *argv) {
SegManager *segMan = s->_segMan;
reg_t obj = argv[0];
int loop = GET_SEL32V(obj, loop);
int view = GET_SEL32V(obj, view);
int cel = 0xffff;
gfxop_check_cel(s->gfx_state, view, &loop, &cel);
debugC(2, kDebugLevelGraphics, "NumCels(view.%d, %d) = %d\n", view, loop, cel + 1);
return make_reg(0, cel + 1);
}
reg_t kOnControl(EngineState *s, int argc, reg_t *argv) {
Common::Rect rect;
byte screenMask;
int argBase = 0;
if ((argc == 2) || (argc == 4)) {
screenMask = GFX_MASK_CONTROL;
} else {
screenMask = argv[0].toUint16();
argBase = 1;
}
rect.left = argv[argBase].toSint16();
rect.top = argv[argBase + 1].toSint16();
if (argc > 3) {
rect.right = argv[argBase + 2].toSint16();
rect.bottom = argv[argBase + 3].toSint16();
} else {
rect.right = rect.left + 1;
rect.bottom = rect.top + 1;
}
return make_reg(0, s->_gui->onControl(screenMask, rect));
}
void _k_view_list_free_backgrounds(EngineState *s, ViewObject *list, int list_nr);
#define K_DRAWPIC_FLAGS_MIRRORED (1 << 14)
#define K_DRAWPIC_FLAGS_ANIMATIONBLACKOUT (1 << 15)
reg_t kDrawPic(EngineState *s, int argc, reg_t *argv) {
GuiResourceId pictureId = argv[0].toUint16();
uint16 flags = 0;
int16 animationNr = -1;
bool animationBlackoutFlag = false;
bool mirroredFlag = false;
bool addToFlag = false;
int16 EGApaletteNo = 0; // default needs to be 0
if (argc >= 2) {
flags = argv[1].toUint16();
if (flags & K_DRAWPIC_FLAGS_ANIMATIONBLACKOUT)
animationBlackoutFlag = true;
animationNr = flags & 0xFF;
if (flags & K_DRAWPIC_FLAGS_MIRRORED)
mirroredFlag = true;
}
if (argc >= 3) {
if (!argv[2].isNull())
addToFlag = true;
if (!s->usesOldGfxFunctions())
addToFlag = !addToFlag;
}
if (argc >= 4)
EGApaletteNo = argv[3].toUint16();
s->_gui->drawPicture(pictureId, animationNr, animationBlackoutFlag, mirroredFlag, addToFlag, EGApaletteNo);
return s->r_acc;
}
reg_t kBaseSetter(EngineState *s, int argc, reg_t *argv) {
reg_t object = argv[0];
if (lookup_selector(s->_segMan, object, s->_kernel->_selectorCache.brLeft, NULL, NULL) == kSelectorVariable) {
// Note: there was a check here for a very old version of SCI, which supposedly needed
// to subtract 1 from absrect.top. The original check was for version 0.000.256, which
// does not exist (earliest one was KQ4 SCI, version 0.000.274). This code is left here
// for reference only
#if 0
if (getSciVersion() <= SCI_VERSION_0)
--absrect.top; // Compensate for early SCI OB1 'bug'
#endif
Common::Rect absrect = set_base(s, object);
SegManager *segMan = s->_segMan;
PUT_SEL32V(object, brLeft, absrect.left);
PUT_SEL32V(object, brRight, absrect.right);
PUT_SEL32V(object, brTop, absrect.top);
PUT_SEL32V(object, brBottom, absrect.bottom);
}
return s->r_acc;
2009-02-19 20:50:55 +00:00
} // kBaseSetter
reg_t kSetNowSeen(EngineState *s, int argc, reg_t *argv) {
s->_gui->setNowSeen(argv[0]);
return s->r_acc;
2009-02-26 02:21:55 +00:00
}
reg_t kPalette(EngineState *s, int argc, reg_t *argv) {
// warning("kPalette %d", argv[0].toUint16());
switch (argv[0].toUint16()) {
case 1:
if (argc==3) {
int resourceNo = argv[1].toUint16();
int flags = argv[2].toUint16();
s->_gui->paletteSet(resourceNo, flags);
}
break;
case 2:
debug(5, "STUB: kPalette() effect 2, set flag to colors");
break;
case 3:
debug(5, "STUB: kPalette() effect 3, clear flag to colors");
break;
case 4: { // Set palette intensity
if (argc >= 4) {
int16 fromColor = CLIP<int>(argv[1].toUint16(), 1, 255);
int16 toColor = CLIP<int>(argv[2].toUint16(), 1, 255);
int16 intensity = argv[3].toUint16();
bool setPalette = (argc < 5) ? true : (argv[4].isNull()) ? true : false;
s->_gui->paletteSetIntensity(fromColor, toColor, intensity, setPalette);
}
break;
}
case 5: { // Find closest color
int r = argv[1].toUint16();
int g = argv[2].toUint16();
int b = argv[3].toUint16();
return make_reg(0, s->_gui->paletteFind(r, g, b));
}
case 6:
if (argc==4) {
int fromColor = argv[1].toUint16();
int toColor = argv[2].toUint16();
int speed = argv[3].toSint16();
s->_gui->paletteAnimate(fromColor, toColor, speed);
}
break;
case 7:
debug(5, "STUB: kPalette() effect 7, save palette to heap");
break;
case 8:
debug(5, "STUB: kPalette() effect 8, set stored palette");
break;
default:
warning("kPalette(): Unimplemented subfunction: %d", argv[0].toUint16());
}
2009-02-19 20:50:55 +00:00
return s->r_acc;
}
static void disableCertainButtons(SegManager *segMan, Common::String gameName, reg_t obj) {
reg_t text_pos = GET_SEL32(obj, text);
Common::String text;
if (!text_pos.isNull())
text = segMan->getString(text_pos);
int type = GET_SEL32V(obj, type);
int state = GET_SEL32V(obj, state);
/*
* WORKAROUND: The function is a "prevent the user from doing something
* nasty" type of thing, and goes back to the ugly way in which savegame
* deletion is implemented in SCI (and even worse in SQ4/Floppy, for
* which the workaround is intended). The result is basically that you
* can't implement savegame deletion for SQ4/Floppy unless you duplicate
* the exact naming scheme of savefiles (i.e. savefiles must be named
* SQ4SG.<number>) and the exact file format of the savegame index
* (SQ4SG.DIR). From the earlier discussions on file I/O handling -
* before as well as after the merge - I gather that this is not an
* option.
*
* SQ4/Floppy is special, being the first game to implement savegame
* deletion at all. For later games, we manage to implement deletion by
* using gross hacks in kDeviceInfo() (essentially repurposing a few
* subfunctions). I decided at the time that SQ4/Floppy was not worth the
* effort (see above), and to simply disable the delete functionality for
* that game - bringing the save/load dialog on a par with SCI0.
*/
// NOTE: This _only_ works with the English version
if (type == SCI_CONTROLS_TYPE_BUTTON && (gameName == "sq4") &&
getSciVersion() < SCI_VERSION_1_1 && text == " Delete ") {
PUT_SEL32V(obj, state, (state | kControlStateDisabled) & ~kControlStateEnabled);
}
// Disable the "Change Directory" button, as we don't allow the game engine to
// change the directory where saved games are placed
// NOTE: This _only_ works with the English version
if (type == SCI_CONTROLS_TYPE_BUTTON && text == "Change\r\nDirectory") {
PUT_SEL32V(obj, state, (state | kControlStateDisabled) & ~kControlStateEnabled);
2009-02-19 20:50:55 +00:00
}
}
void _k_GenericDrawControl(EngineState *s, reg_t controlObject, bool hilite) {
SegManager *segMan = s->_segMan;
int16 type = GET_SEL32V(controlObject, type);
int16 style = GET_SEL32V(controlObject, state);
int16 x = GET_SEL32V(controlObject, nsLeft);
int16 y = GET_SEL32V(controlObject, nsTop);
GuiResourceId fontId = GET_SEL32V(controlObject, font);
reg_t textReference = GET_SEL32(controlObject, text);
Common::String text;
Common::Rect rect;
int16 mode, maxChars, cursorPos, upperPos, listCount, i;
int16 upperOffset, cursorOffset;
GuiResourceId viewId;
GuiViewLoopNo loopNo;
GuiViewCelNo celNo;
reg_t listSeeker;
Common::String *listStrings = NULL;
const char **listEntries = NULL;
bool isAlias = false;
kGraphCreateRect(x, y, GET_SEL32V(controlObject, nsRight), GET_SEL32V(controlObject, nsBottom), &rect);
if (!textReference.isNull())
text = segMan->getString(textReference);
switch (type) {
case SCI_CONTROLS_TYPE_BUTTON:
debugC(2, kDebugLevelGraphics, "drawing button %04x:%04x to %d,%d\n", PRINT_REG(controlObject), x, y);
s->_gui->drawControlButton(rect, controlObject, s->strSplit(text.c_str(), NULL).c_str(), fontId, style, hilite);
return;
case SCI_CONTROLS_TYPE_TEXT:
mode = GET_SEL32V(controlObject, mode);
debugC(2, kDebugLevelGraphics, "drawing text %04x:%04x ('%s') to %d,%d, mode=%d\n", PRINT_REG(controlObject), text.c_str(), x, y, mode);
s->_gui->drawControlText(rect, controlObject, s->strSplit(text.c_str(), NULL).c_str(), fontId, mode, style, hilite);
return;
case SCI_CONTROLS_TYPE_TEXTEDIT:
mode = GET_SEL32V(controlObject, mode);
maxChars = GET_SEL32V(controlObject, max);
cursorPos = GET_SEL32V(controlObject, cursor);
debugC(2, kDebugLevelGraphics, "drawing edit control %04x:%04x (text %04x:%04x, '%s') to %d,%d\n", PRINT_REG(controlObject), PRINT_REG(textReference), text.c_str(), x, y);
s->_gui->drawControlTextEdit(rect, controlObject, s->strSplit(text.c_str(), NULL).c_str(), fontId, mode, style, cursorPos, maxChars, hilite);
return;
case SCI_CONTROLS_TYPE_ICON:
viewId = GET_SEL32V(controlObject, view);
{
int l = GET_SEL32V(controlObject, loop);
loopNo = (l & 0x80) ? l - 256 : l;
int c = GET_SEL32V(controlObject, cel);
celNo = (c & 0x80) ? c - 256 : c;
}
debugC(2, kDebugLevelGraphics, "drawing icon control %04x:%04x to %d,%d\n", PRINT_REG(controlObject), x, y - 1);
s->_gui->drawControlIcon(rect, controlObject, viewId, loopNo, celNo, style, hilite);
return;
case SCI_CONTROLS_TYPE_LIST:
case SCI_CONTROLS_TYPE_LIST_ALIAS:
if (type == SCI_CONTROLS_TYPE_LIST_ALIAS)
isAlias = true;
maxChars = GET_SEL32V(controlObject, x); // max chars per entry
// NOTE: most types of pointer dereferencing don't like odd offsets
if (maxChars & 1) {
warning("List control with odd maxChars %d. This is not yet implemented for all types of segments", maxChars);
}
cursorOffset = GET_SEL32V(controlObject, cursor);
if (s->_kernel->_selectorCache.topString != -1) {
// Games from early SCI1 onwards use topString
upperOffset = GET_SEL32V(controlObject, topString);
} else {
// Earlier games use lsTop
upperOffset = GET_SEL32V(controlObject, lsTop);
}
// Count string entries in NULL terminated string list
listCount = 0; listSeeker = textReference;
while (s->_segMan->strlen(listSeeker) > 0) {
listCount++;
listSeeker.offset += maxChars;
}
// TODO: This is rather convoluted... It would be a lot cleaner
// if sciw_new_list_control would take a list of Common::String
cursorPos = 0; upperPos = 0;
if (listCount) {
// We create a pointer-list to the different strings, we also find out whats upper and cursor position
listSeeker = textReference;
listEntries = (const char**)malloc(sizeof(char *) * listCount);
listStrings = new Common::String[listCount];
for (i = 0; i < listCount; i++) {
listStrings[i] = s->_segMan->getString(listSeeker);
listEntries[i] = listStrings[i].c_str();
if (listSeeker.offset == upperOffset)
upperPos = i;
if (listSeeker.offset == cursorOffset)
cursorPos = i;
listSeeker.offset += maxChars;
}
}
debugC(2, kDebugLevelGraphics, "drawing list control %04x:%04x to %d,%d, diff %d\n", PRINT_REG(controlObject), x, y, SCI_MAX_SAVENAME_LENGTH);
s->_gui->drawControlList(rect, controlObject, maxChars, listCount, listEntries, fontId, style, upperPos, cursorPos, isAlias, hilite);
free(listEntries);
delete[] listStrings;
return;
case SCI_CONTROLS_TYPE_DUMMY:
// Actually this here does nothing at all, its required by at least QfG1/EGA that we accept this type
return;
default:
error("unsupported control type %d", type);
}
}
reg_t kDrawControl(EngineState *s, int argc, reg_t *argv) {
reg_t controlObject = argv[0];
disableCertainButtons(s->_segMan, s->_gameName, controlObject);
_k_GenericDrawControl(s, controlObject, false);
return NULL_REG;
}
reg_t kHiliteControl(EngineState *s, int argc, reg_t *argv) {
reg_t controlObject = argv[0];
2009-02-19 20:50:55 +00:00
_k_GenericDrawControl(s, controlObject, true);
return s->r_acc;
}
reg_t kEditControl(EngineState *s, int argc, reg_t *argv) {
reg_t controlObject = argv[0];
reg_t eventObject = argv[1];
if (!controlObject.isNull())
s->_gui->editControl(controlObject, eventObject);
return s->r_acc;
}
void _k_view_list_mark_free(EngineState *s, reg_t off) {
if (s->dyn_views) {
GfxDynView *w = (GfxDynView *)s->dyn_views->_contents;
while (w) {
if (w->_ID == off.segment
&& w->_subID == off.offset) {
w->under_bitsp.obj = NULL_REG;
}
w = (GfxDynView *)w->_next;
}
}
}
reg_t kAddToPic(EngineState *s, int argc, reg_t *argv) {
GuiResourceId viewId;
GuiViewLoopNo loopNo;
GuiViewCelNo celNo;
int16 leftPos, topPos, priority, control;
switch (argc) {
case 0:
break;
case 1:
s->_gui->addToPicList(argv[0], argc, argv);
break;
case 7:
viewId = argv[0].toUint16();
2009-10-04 16:35:02 +00:00
loopNo = argv[1].toSint16();
celNo = argv[2].toSint16();
leftPos = argv[3].toSint16();
topPos = argv[4].toSint16();
priority = argv[5].toSint16();
control = argv[6].toSint16();
s->_gui->addToPicView(viewId, loopNo, celNo, leftPos, topPos, priority, control);
break;
default:
error("kAddToPic with unsupported parameter count %d", argc);
}
return s->r_acc;
}
reg_t kGetPort(EngineState *s, int argc, reg_t *argv) {
return s->_gui->getPort();
}
reg_t kSetPort(EngineState *s, int argc, reg_t *argv) {
uint16 portPtr;
Common::Rect picRect;
int16 picTop, picLeft;
bool initPriorityBandsFlag = false;
switch (argc) {
case 1:
portPtr = argv[0].toSint16();
s->_gui->setPort(portPtr);
break;
case 7:
initPriorityBandsFlag = true;
case 4:
case 6:
picRect.top = argv[0].toSint16();
picRect.left = argv[1].toSint16();
picRect.bottom = argv[2].toSint16();
picRect.right = argv[3].toSint16();
picTop = (argc >= 6) ? argv[4].toSint16() : 0;
picLeft = (argc >= 6) ? argv[5].toSint16() : 0;
s->_gui->setPortPic(picRect, picTop, picLeft, initPriorityBandsFlag);
break;
default:
error("SetPort was called with %d parameters", argc);
break;
}
return NULL_REG;
}
reg_t kDrawCel(EngineState *s, int argc, reg_t *argv) {
GuiResourceId viewId = argv[0].toSint16();
GuiViewLoopNo loopNo = argv[1].toSint16();
GuiViewCelNo celNo = argv[2].toSint16();
int x = argv[3].toSint16();
int y = argv[4].toSint16();
int priority = (argc > 5) ? argv[5].toUint16() : -1;
int paletteNo = (argc > 6) ? argv[6].toSint16() : 0;
s->_gui->drawCel(viewId, loopNo, celNo, x, y, priority, paletteNo);
return s->r_acc;
}
reg_t kDisposeWindow(EngineState *s, int argc, reg_t *argv) {
int goner_nr = argv[0].toSint16();
int arg2 = (argc != 2 || argv[2].toUint16() == 0 ? 0 : 1);
2009-02-19 20:50:55 +00:00
s->_gui->disposeWindow(goner_nr, arg2);
return s->r_acc;
}
reg_t kNewWindow(EngineState *s, int argc, reg_t *argv) {
Common::Rect rect1 (argv[1].toSint16(), argv[0].toSint16(), argv[3].toSint16(), argv[2].toSint16());
Common::Rect rect2;
int argextra = argc == 13 ? 4 : 0; // Triggers in PQ3 and SCI1.1 games
int style = argv[5 + argextra].toSint16();
int priority = (argc > 6 + argextra) ? argv[6 + argextra].toSint16() : -1;
int colorPen = (argc > 7 + argextra) ? argv[7 + argextra].toSint16() : 0;
int colorBack = (argc > 8 + argextra) ? argv[8 + argextra].toSint16() : 255;
// const char *title = argv[4 + argextra].segment ? kernel_dereference_char_pointer(s, argv[4 + argextra], 0) : NULL;
if (argc==13) {
rect2 = Common::Rect (argv[5].toSint16(), argv[4].toSint16(), argv[7].toSint16(), argv[6].toSint16());
}
Common::String title;
if (argv[4 + argextra].segment) {
title = s->_segMan->getString(argv[4 + argextra]);
title = s->strSplit(title.c_str(), NULL);
}
return s->_gui->newWindow(rect1, rect2, style, priority, colorPen, colorBack, title.c_str());
}
reg_t kAnimate(EngineState *s, int argc, reg_t *argv) {
reg_t castListReference = (argc > 0) ? argv[0] : NULL_REG;
bool cycle = (argc > 1) ? ((argv[1].toUint16()) ? true : false) : false;
// Take care of incoming events (kAnimate is called semi-regularly)
process_sound_events(s);
s->_gui->animate(castListReference, cycle, argc, argv);
// Do some speed throttling to calm down games that rely on counting cycles
uint32 curTime = g_system->getMillis();
uint32 duration = curTime - s->_lastAnimateTime;
if (duration < 50) {
g_system->delayMillis(50-duration);
}
s->_lastAnimateTime = curTime;
return s->r_acc;
}
reg_t kShakeScreen(EngineState *s, int argc, reg_t *argv) {
int16 shakeCount = (argc > 0) ? argv[0].toUint16() : 1;
int16 directions = (argc > 1) ? argv[1].toUint16() : 1;
s->_gui->shakeScreen(shakeCount, directions);
return s->r_acc;
}
reg_t kDisplay(EngineState *s, int argc, reg_t *argv) {
reg_t textp = argv[0];
int index = (argc > 1) ? argv[1].toUint16() : 0;
Common::String text;
if (textp.segment) {
argc--; argv++;
text = s->_segMan->getString(textp);
} else {
argc--; argc--; argv++; argv++;
text = kernel_lookup_text(s, textp, index);
}
s->_gui->display(s->strSplit(text.c_str()).c_str(), argc, argv);
return s->r_acc;
}
static reg_t kShowMovie_Windows(EngineState *s, int argc, reg_t *argv) {
Common::String filename = s->_segMan->getString(argv[1]);
Graphics::AVIPlayer *player = new Graphics::AVIPlayer(g_system);
if (!player->open(filename)) {
warning("Failed to open movie file %s", filename.c_str());
return s->r_acc;
}
uint32 startTime = g_system->getMillis();
bool play = true;
while (play && player->getCurFrame() < player->getFrameCount()) {
uint32 elapsed = g_system->getMillis() - startTime;
if (elapsed >= player->getCurFrame() * 1000 / player->getFrameRate()) {
Graphics::Surface *surface = player->getNextFrame();
Palette *palette = NULL;
if (player->dirtyPalette()) {
byte *rawPalette = player->getPalette();
Palette *colors = new Palette(256);
byte r, g, b;
for (uint16 i = 0; i < 256; i++) {
r = rawPalette[i * 4];
g = rawPalette[i * 4 + 1];
b = rawPalette[i * 4 + 2];
colors->setColor(i, r, g, b);
}
palette->forceInto(s->gfx_state->driver->getMode()->palette);
}
if (surface) {
// Allocate a pixmap
gfx_pixmap_t *pixmap = gfx_new_pixmap(surface->w, surface->h, 0, 0, 0);
assert(pixmap);
gfx_pixmap_alloc_index_data(pixmap);
// Copy data from the surface
memcpy(pixmap->index_data, surface->pixels, surface->w * surface->h);
pixmap->xoffset = (g_system->getWidth() - surface->w) / 2;
pixmap->yoffset = (g_system->getHeight() - surface->h) / 2;
pixmap->palette = palette;
// Copy the frame to the screen
gfx_xlate_pixmap(pixmap, s->gfx_state->driver->getMode());
gfxop_draw_pixmap(s->gfx_state, pixmap, gfx_rect(0, 0, 320, 200), Common::Point(pixmap->xoffset, pixmap->yoffset));
gfxop_update_box(s->gfx_state, gfx_rect(0, 0, 320, 200));
gfx_free_pixmap(pixmap);
// Surface is freed when the codec in the video is deleted
}
}
Common::Event event;
while (g_system->getEventManager()->pollEvent(event)) {
switch (event.type) {
case Common::EVENT_QUIT:
play = false;
quit_vm();
break;
default:
break;
}
}
g_system->delayMillis(10);
}
delete player;
return s->r_acc;
}
static reg_t kShowMovie_DOS(EngineState *s, int argc, reg_t *argv) {
Common::String filename = s->_segMan->getString(argv[0]);
int delay = argv[1].toUint16(); // Time between frames in ticks
SeqDecoder seq;
if (!seq.loadFile(filename, s->resMan) &&
!seq.loadFile(Common::String("SEQ/") + filename, s->resMan)) {
warning("Failed to open movie file %s", filename.c_str());
return s->r_acc;
}
bool play = true;
while (play) {
uint32 startTime = g_system->getMillis();
SeqFrame *frame = seq.getFrame(play);
Common::Rect frameRect = frame->frameRect;
byte *scr = (byte *)g_system->lockScreen()->pixels;
int cur = 0;
for (int y = frameRect.top; y < frameRect.bottom; y++) {
for (int x = frameRect.left; x < frameRect.right; x++) {
if (frame->data[cur] != frame->colorKey)
scr[y * 320 + x] = frame->data[cur];
cur++;
}
}
g_system->unlockScreen();
g_system->updateScreen();
delete frame->data;
delete frame;
// Wait before showing the next frame
while (play && (g_system->getMillis() < startTime + (delay * 1000 / 60))) {
// FIXME: we should probably make a function that handles quitting in these kinds of situations
Common::Event curEvent;
Common::EventManager *eventMan = g_system->getEventManager();
// Process quit events
while (eventMan->pollEvent(curEvent)) {
if (curEvent.type == Common::EVENT_QUIT) {
play = false;
quit_vm();
}
}
g_system->delayMillis(10);
}
}
return s->r_acc;
}
reg_t kShowMovie(EngineState *s, int argc, reg_t *argv) {
// KQ6 Windows calls this with one argument. It doesn't seem
// to have a purpose...
if (argc == 1)
return NULL_REG;
// The Windows and DOS versions use different video format as well
// as a different argument set.
if (argv[0].toUint16() == 0)
return kShowMovie_Windows(s, argc, argv);
return kShowMovie_DOS(s, argc, argv);
}
reg_t kSetVideoMode(EngineState *s, int argc, reg_t *argv) {
// This call is used for KQ6's intro. It has one parameter, which is
// 1 when the intro begins, and 0 when it ends. It is suspected that
// this is actually a flag to enable video planar memory access, as
// the video decoder in KQ6 is specifically written for the planar
// memory model. Planar memory mode access was used for VGA "Mode X"
// (320x240 resolution, although the intro in KQ6 is 320x200).
// Refer to http://en.wikipedia.org/wiki/Mode_X
warning("STUB: SetVideoMode %d", argv[0].toUint16());
return s->r_acc;
}
// New calls for SCI11. Using those is only needed when using text-codes so that one is able to change
// font and/or color multiple times during kDisplay and kDrawControl
reg_t kTextFonts(EngineState *s, int argc, reg_t *argv) {
s->_gui->textFonts(argc, argv);
return s->r_acc;
}
reg_t kTextColors(EngineState *s, int argc, reg_t *argv) {
s->_gui->textColors(argc, argv);
return s->r_acc;
}
} // End of namespace Sci