scummvm/engines/agi/agi.cpp

803 lines
19 KiB
C++
Raw Normal View History

/* ScummVM - Graphic Adventure Engine
2006-05-23 23:43:52 +00:00
*
* 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.
2006-05-23 23:43:52 +00:00
*
* 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/stdafx.h"
#include "common/events.h"
2006-05-23 23:43:52 +00:00
#include "common/file.h"
#include "common/savefile.h"
#include "common/config-manager.h"
#include "base/plugins.h"
#include "base/version.h"
2006-05-23 23:43:52 +00:00
#include "graphics/cursorman.h"
2006-05-23 23:43:52 +00:00
#include "sound/mididrv.h"
#include "sound/mixer.h"
#include "agi/agi.h"
#include "agi/graphics.h"
#include "agi/sprite.h"
#include "agi/opcodes.h"
#include "agi/keyboard.h"
#include "agi/menu.h"
#include "agi/sound.h"
2006-05-23 23:43:52 +00:00
2006-05-23 23:43:52 +00:00
namespace Agi {
static uint32 g_tickTimer;
struct Mouse g_mouse;
2006-05-23 23:43:52 +00:00
void AgiEngine::allowSynthetic(bool allow) {
_allowSynthetic = allow;
}
void AgiEngine::processEvents() {
Common::Event event;
2006-05-23 23:43:52 +00:00
int key = 0;
while (_eventMan->pollEvent(event)) {
2006-05-23 23:43:52 +00:00
switch (event.type) {
case Common::EVENT_QUIT:
_gfx->deinitVideo();
_gfx->deinitMachine();
_system->quit();
2006-05-23 23:43:52 +00:00
break;
case Common::EVENT_PREDICTIVE_DIALOG:
if (_predictiveDialogRunning)
break;
if (_game.playerControl && predictiveDialog()) {
if (_game.inputMode == INPUT_NORMAL) {
strcpy((char *)_game.inputBuffer, _predictiveResult);
handleKeys(KEY_ENTER);
} else if (_game.inputMode == INPUT_GETSTRING) {
strcpy(_game.strings[_stringdata.str], _predictiveResult);
newInputMode(INPUT_NORMAL);
_gfx->printCharacter(_stringdata.x + strlen(_game.strings[_stringdata.str]) + 1,
_stringdata.y, ' ', _game.colorFg, _game.colorBg);
}
}
break;
case Common::EVENT_LBUTTONDOWN:
2006-05-23 23:43:52 +00:00
key = BUTTON_LEFT;
g_mouse.button = 1;
keyEnqueue(key);
g_mouse.x = event.mouse.x;
g_mouse.y = event.mouse.y;
2006-05-23 23:43:52 +00:00
break;
case Common::EVENT_RBUTTONDOWN:
2006-05-23 23:43:52 +00:00
key = BUTTON_RIGHT;
g_mouse.button = 2;
keyEnqueue(key);
g_mouse.x = event.mouse.x;
g_mouse.y = event.mouse.y;
2006-05-23 23:43:52 +00:00
break;
case Common::EVENT_WHEELUP:
key = WHEEL_UP;
keyEnqueue(key);
break;
case Common::EVENT_WHEELDOWN:
key = WHEEL_DOWN;
keyEnqueue(key);
break;
case Common::EVENT_MOUSEMOVE:
g_mouse.x = event.mouse.x;
g_mouse.y = event.mouse.y;
2006-05-23 23:43:52 +00:00
break;
case Common::EVENT_LBUTTONUP:
case Common::EVENT_RBUTTONUP:
g_mouse.button = 0;
2006-05-23 23:43:52 +00:00
break;
case Common::EVENT_KEYDOWN:
_keyControl = 0;
_keyAlt = 0;
2007-06-21 20:04:10 +00:00
if (event.kbd.flags == Common::KBD_CTRL && event.kbd.keycode == Common::KEYCODE_d) {
_console->attach();
break;
}
if (event.kbd.flags & Common::KBD_CTRL)
_keyControl = 1;
if (event.kbd.flags & Common::KBD_ALT)
_keyAlt = 1;
2006-05-23 23:43:52 +00:00
switch (key = event.kbd.keycode) {
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_LEFT:
case Common::KEYCODE_KP4:
if (_allowSynthetic || !event.synthetic)
key = KEY_LEFT;
2006-05-23 23:43:52 +00:00
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_RIGHT:
case Common::KEYCODE_KP6:
if (_allowSynthetic || !event.synthetic)
key = KEY_RIGHT;
2006-05-23 23:43:52 +00:00
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_UP:
case Common::KEYCODE_KP8:
if (_allowSynthetic || !event.synthetic)
key = KEY_UP;
2006-05-23 23:43:52 +00:00
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_DOWN:
case Common::KEYCODE_KP2:
if (_allowSynthetic || !event.synthetic)
key = KEY_DOWN;
2006-05-23 23:43:52 +00:00
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_PAGEUP:
case Common::KEYCODE_KP9:
if (_allowSynthetic || !event.synthetic)
key = KEY_UP_RIGHT;
2006-05-23 23:43:52 +00:00
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_PAGEDOWN:
case Common::KEYCODE_KP3:
if (_allowSynthetic || !event.synthetic)
key = KEY_DOWN_RIGHT;
2006-05-23 23:43:52 +00:00
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_HOME:
case Common::KEYCODE_KP7:
if (_allowSynthetic || !event.synthetic)
key = KEY_UP_LEFT;
2006-05-23 23:43:52 +00:00
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_END:
case Common::KEYCODE_KP1:
if (_allowSynthetic || !event.synthetic)
key = KEY_DOWN_LEFT;
2006-05-23 23:43:52 +00:00
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_KP5:
key = KEY_STATIONARY;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_PLUS:
2006-05-23 23:43:52 +00:00
key = '+';
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_MINUS:
2006-05-23 23:43:52 +00:00
key = '-';
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_9:
2006-05-23 23:43:52 +00:00
key = 0x0009;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F1:
2006-05-23 23:43:52 +00:00
key = 0x3b00;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F2:
2006-05-23 23:43:52 +00:00
key = 0x3c00;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F3:
2006-05-23 23:43:52 +00:00
key = 0x3d00;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F4:
2006-05-23 23:43:52 +00:00
key = 0x3e00;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F5:
2006-05-23 23:43:52 +00:00
key = 0x3f00;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F6:
2006-05-23 23:43:52 +00:00
key = 0x4000;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F7:
2006-05-23 23:43:52 +00:00
key = 0x4100;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F8:
2006-05-23 23:43:52 +00:00
key = 0x4200;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F9:
2006-05-23 23:43:52 +00:00
key = 0x4300;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F10:
key = 0x4400;
2006-05-23 23:43:52 +00:00
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F11:
2006-05-23 23:43:52 +00:00
key = KEY_STATUSLN;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_F12:
2006-05-23 23:43:52 +00:00
key = KEY_PRIORITY;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_ESCAPE:
2006-05-23 23:43:52 +00:00
key = 0x1b;
break;
2007-06-21 20:04:10 +00:00
case Common::KEYCODE_RETURN:
case Common::KEYCODE_KP_ENTER:
2006-05-23 23:43:52 +00:00
key = KEY_ENTER;
break;
case Common::KEYCODE_BACKSPACE:
key = KEY_BACKSPACE;
break;
2006-05-23 23:43:52 +00:00
default:
if (key < 256 && !isalpha(key)) {
key = event.kbd.ascii;
2006-05-23 23:43:52 +00:00
break;
}
if (_keyControl)
2006-05-23 23:43:52 +00:00
key = (key & ~0x20) - 0x40;
else if (_keyAlt)
key = scancodeTable[(key & ~0x20) - 0x41] << 8;
else if (event.kbd.flags & Common::KBD_SHIFT)
key = event.kbd.ascii;
2006-05-23 23:43:52 +00:00
break;
}
if (key)
keyEnqueue(key);
2006-05-23 23:43:52 +00:00
break;
default:
break;
}
}
}
int AgiEngine::agiIsKeypressLow() {
processEvents();
return _keyQueueStart != _keyQueueEnd;
2006-05-23 23:43:52 +00:00
}
void AgiEngine::agiTimerLow() {
2006-05-23 23:43:52 +00:00
static uint32 m = 0;
uint32 dm;
if (g_tickTimer < m)
2006-05-23 23:43:52 +00:00
m = 0;
while ((dm = g_tickTimer - m) < 5) {
processEvents();
if (_console->isAttached())
_console->onFrame();
_system->delayMillis(10);
_system->updateScreen();
2006-05-23 23:43:52 +00:00
}
m = g_tickTimer;
2006-05-23 23:43:52 +00:00
}
int AgiEngine::agiGetKeypressLow() {
2006-05-23 23:43:52 +00:00
int k;
while (_keyQueueStart == _keyQueueEnd) /* block */
agiTimerLow();
keyDequeue(k);
2006-05-23 23:43:52 +00:00
return k;
}
void AgiEngine::agiTimerFunctionLow(void *refCon) {
g_tickTimer++;
}
void AgiEngine::clearImageStack(void) {
_imageStackPointer = 0;
}
void AgiEngine::releaseImageStack(void) {
if (_imageStack)
free(_imageStack);
_imageStack = NULL;
_stackSize = 0;
_imageStackPointer = 0;
}
void AgiEngine::recordImageStackCall(uint8 type, int16 p1, int16 p2, int16 p3,
int16 p4, int16 p5, int16 p6, int16 p7) {
struct ImageStackElement *pnew;
if (_imageStackPointer == _stackSize) {
if (_stackSize == 0) { /* first call */
_imageStack = (ImageStackElement *)malloc(INITIAL_IMAGE_STACK_SIZE * sizeof(ImageStackElement));
_stackSize = INITIAL_IMAGE_STACK_SIZE;
} else { /* has to grow */
struct ImageStackElement *newStack;
newStack = (ImageStackElement *)malloc(2 * _stackSize * sizeof(ImageStackElement));
memcpy(newStack, _imageStack, _stackSize * sizeof(ImageStackElement));
free(_imageStack);
_imageStack = newStack;
_stackSize *= 2;
}
}
pnew = &_imageStack[_imageStackPointer];
_imageStackPointer++;
pnew->type = type;
pnew->parm1 = p1;
pnew->parm2 = p2;
pnew->parm3 = p3;
pnew->parm4 = p4;
pnew->parm5 = p5;
pnew->parm6 = p6;
pnew->parm7 = p7;
}
void AgiEngine::replayImageStackCall(uint8 type, int16 p1, int16 p2, int16 p3,
int16 p4, int16 p5, int16 p6, int16 p7) {
switch (type) {
case ADD_PIC:
debugC(8, kDebugLevelMain, "--- decoding picture %d ---", p1);
agiLoadResource(rPICTURE, p1);
_picture->decodePicture(p1, p2, p3 != 0);
break;
case ADD_VIEW:
agiLoadResource(rVIEW, p1);
_sprites->addToPic(p1, p2, p3, p4, p5, p6, p7);
break;
}
2006-05-23 23:43:52 +00:00
}
void AgiEngine::initPriTable() {
2006-05-23 23:43:52 +00:00
int i, p, y = 0;
for (p = 1; p < 15; p++) {
for (i = 0; i < 12; i++) {
_game.priTable[y++] = p < 4 ? 4 : p;
2006-05-23 23:43:52 +00:00
}
}
}
int AgiEngine::agiInit() {
2006-05-23 23:43:52 +00:00
int ec, i;
debug(2, "initializing");
debug(2, "game.ver = 0x%x", _game.ver);
2006-05-23 23:43:52 +00:00
/* reset all flags to false and all variables to 0 */
for (i = 0; i < MAX_FLAGS; i++)
_game.flags[i] = 0;
2006-05-23 23:43:52 +00:00
for (i = 0; i < MAX_VARS; i++)
_game.vars[i] = 0;
2006-05-23 23:43:52 +00:00
/* clear all resources and events */
for (i = 0; i < MAX_DIRS; i++) {
memset(&_game.views[i], 0, sizeof(struct AgiView));
memset(&_game.pictures[i], 0, sizeof(struct AgiPicture));
memset(&_game.logics[i], 0, sizeof(struct AgiLogic));
memset(&_game.sounds[i], 0, sizeof(struct AgiSound));
memset(&_game.dirView[i], 0, sizeof(struct AgiDir));
memset(&_game.dirPic[i], 0, sizeof(struct AgiDir));
memset(&_game.dirLogic[i], 0, sizeof(struct AgiDir));
memset(&_game.dirSound[i], 0, sizeof(struct AgiDir));
2006-05-23 23:43:52 +00:00
}
/* clear view table */
for (i = 0; i < MAX_VIEWTABLE; i++)
memset(&_game.viewTable[i], 0, sizeof(VtEntry));
2006-05-23 23:43:52 +00:00
initWords();
2006-05-23 23:43:52 +00:00
if (!_menu)
_menu = new Menu(this, _gfx, _picture);
initPriTable();
2006-05-23 23:43:52 +00:00
/* clear string buffer */
for (i = 0; i < MAX_STRINGS; i++)
_game.strings[i][0] = 0;
2006-05-23 23:43:52 +00:00
/* setup emulation */
switch (_loader->getIntVersion() >> 12) {
2006-05-23 23:43:52 +00:00
case 2:
report("Emulating Sierra AGI v%x.%03x\n",
(int)(agiGetRelease() >> 12) & 0xF,
(int)(agiGetRelease()) & 0xFFF);
2006-05-23 23:43:52 +00:00
break;
case 3:
report("Emulating Sierra AGI v%x.002.%03x\n",
(int)(agiGetRelease() >> 12) & 0xF,
(int)(agiGetRelease()) & 0xFFF);
2006-05-23 23:43:52 +00:00
break;
}
if (getPlatform() == Common::kPlatformAmiga)
_game.gameFlags |= ID_AMIGA;
if (getFeatures() & GF_AGDS)
_game.gameFlags |= ID_AGDS;
2006-05-23 23:43:52 +00:00
// Make the 256 color AGI screen the default AGI screen when AGI256 or AGI256-2 is used
if (getFeatures() & (GF_AGI256 | GF_AGI256_2))
_game.sbuf = _game.sbuf256c;
if (_game.gameFlags & ID_AMIGA)
2006-05-23 23:43:52 +00:00
report("Amiga padded game detected.\n");
if (_game.gameFlags & ID_AGDS)
2006-05-23 23:43:52 +00:00
report("AGDS mode enabled.\n");
ec = _loader->init(); /* load vol files, etc */
2006-05-23 23:43:52 +00:00
if (ec == errOK)
ec = _loader->loadObjects(OBJECTS);
2006-05-23 23:43:52 +00:00
/* note: demogs has no words.tok */
if (ec == errOK)
ec = _loader->loadWords(WORDS);
2006-05-23 23:43:52 +00:00
/* FIXME: load IIgs instruments and samples */
/* load_instruments("kq.sys16"); */
/* Load logic 0 into memory */
if (ec == errOK)
ec = _loader->loadResource(rLOGIC, 0);
2006-05-23 23:43:52 +00:00
if (ConfMan.hasKey("save_slot")) {
char saveNameBuffer[256];
snprintf (saveNameBuffer, 256, "%s.%03d", _targetName.c_str(), ConfMan.getInt("save_slot"));
loadGame(saveNameBuffer, false); // Do not check game id
}
2006-05-23 23:43:52 +00:00
return ec;
}
/*
* Public functions
*/
void AgiEngine::agiUnloadResources() {
2006-05-23 23:43:52 +00:00
int i;
/* Make sure logic 0 is always loaded */
for (i = 1; i < MAX_DIRS; i++) {
_loader->unloadResource(rLOGIC, i);
2006-05-23 23:43:52 +00:00
}
for (i = 0; i < MAX_DIRS; i++) {
_loader->unloadResource(rVIEW, i);
_loader->unloadResource(rPICTURE, i);
_loader->unloadResource(rSOUND, i);
2006-05-23 23:43:52 +00:00
}
}
int AgiEngine::agiDeinit() {
2006-05-23 23:43:52 +00:00
int ec;
cleanInput(); /* remove all words from memory */
agiUnloadResources(); /* unload resources in memory */
_loader->unloadResource(rLOGIC, 0);
ec = _loader->deinit();
unloadObjects();
unloadWords();
2006-05-23 23:43:52 +00:00
clearImageStack();
2006-05-23 23:43:52 +00:00
return ec;
}
int AgiEngine::agiDetectGame() {
int ec = errOK;
2006-05-23 23:43:52 +00:00
assert(_gameDescription != NULL);
2006-05-23 23:43:52 +00:00
if(getVersion() <= 0x2999) {
_loader = new AgiLoader_v2(this);
} else {
_loader = new AgiLoader_v3(this);
2006-05-23 23:43:52 +00:00
}
ec = _loader->detectGame();
2006-05-23 23:43:52 +00:00
return ec;
}
int AgiEngine::agiVersion() {
return _loader->version();
2006-05-23 23:43:52 +00:00
}
int AgiEngine::agiGetRelease() {
return _loader->getIntVersion();
2006-05-23 23:43:52 +00:00
}
void AgiEngine::agiSetRelease(int n) {
_loader->setIntVersion(n);
2006-05-23 23:43:52 +00:00
}
int AgiEngine::agiLoadResource(int r, int n) {
2006-05-23 23:43:52 +00:00
int i;
i = _loader->loadResource(r, n);
2006-05-23 23:43:52 +00:00
return i;
}
int AgiEngine::agiUnloadResource(int r, int n) {
return _loader->unloadResource(r, n);
2006-05-23 23:43:52 +00:00
}
struct GameSettings {
const char *gameid;
const char *description;
byte id;
uint32 features;
const char *detectname;
};
static const GameSettings agiSettings[] = {
{"agi", "AGI game", GID_AGI, MDT_ADLIB, "OBJECT"},
2006-05-23 23:43:52 +00:00
{NULL, NULL, 0, 0, NULL}
};
AgiTextColor AgiButtonStyle::getColor(bool hasFocus, bool pressed, bool positive) const {
if (_amigaStyle) {
if (positive) {
if (pressed) { // Positive pressed Amiga-style button
if (_olderAgi) {
return AgiTextColor(amigaBlack, amigaOrange);
} else {
return AgiTextColor(amigaBlack, amigaPurple);
}
} else { // Positive unpressed Amiga-style button
return AgiTextColor(amigaWhite, amigaGreen);
}
} else { // _amigaStyle && !positive
if (pressed) { // Negative pressed Amiga-style button
return AgiTextColor(amigaBlack, amigaCyan);
} else { // Negative unpressed Amiga-style button
return AgiTextColor(amigaWhite, amigaRed);
}
}
} else { // PC-style button
if (hasFocus || pressed) { // A pressed or in focus PC-style button
return AgiTextColor(pcWhite, pcBlack);
} else { // An unpressed PC-style button without focus
return AgiTextColor(pcBlack, pcWhite);
}
}
}
AgiTextColor AgiButtonStyle::getColor(bool hasFocus, bool pressed, int baseFgColor, int baseBgColor) const {
return getColor(hasFocus, pressed, AgiTextColor(baseFgColor, baseBgColor));
}
AgiTextColor AgiButtonStyle::getColor(bool hasFocus, bool pressed, const AgiTextColor &baseColor) const {
if (hasFocus || pressed)
return baseColor.swap();
else
return baseColor;
}
int AgiButtonStyle::getTextOffset(bool hasFocus, bool pressed) const {
return (pressed && !_amigaStyle) ? 1 : 0;
}
bool AgiButtonStyle::getBorder(bool hasFocus, bool pressed) const {
return _amigaStyle && !_authenticAmiga && (hasFocus || pressed);
}
void AgiButtonStyle::setAmigaStyle(bool amigaStyle, bool olderAgi, bool authenticAmiga) {
_amigaStyle = amigaStyle;
_olderAgi = olderAgi;
_authenticAmiga = authenticAmiga;
}
void AgiButtonStyle::setPcStyle(bool pcStyle) {
setAmigaStyle(!pcStyle);
}
AgiButtonStyle::AgiButtonStyle(Common::RenderMode renderMode) {
setAmigaStyle(renderMode == Common::kRenderAmiga);
}
AgiEngine::AgiEngine(OSystem *syst) : Engine(syst) {
2006-05-23 23:43:52 +00:00
// Setup mixer
if (!_mixer->isReady()) {
warning("Sound initialization failed.");
}
_mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, ConfMan.getInt("sfx_volume"));
_mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, ConfMan.getInt("music_volume"));
const GameSettings *g;
const char *gameid = ConfMan.get("gameid").c_str();
for (g = agiSettings; g->gameid; ++g)
2006-05-23 23:43:52 +00:00
if (!scumm_stricmp(g->gameid, gameid))
_gameId = g->id;
_rnd = new Common::RandomSource();
2006-05-23 23:43:52 +00:00
Common::addSpecialDebugLevel(kDebugLevelMain, "Main", "Generic debug level");
Common::addSpecialDebugLevel(kDebugLevelResources, "Resources", "Resources debugging");
Common::addSpecialDebugLevel(kDebugLevelSprites, "Sprites", "Sprites debugging");
Common::addSpecialDebugLevel(kDebugLevelInventory, "Inventory", "Inventory debugging");
Common::addSpecialDebugLevel(kDebugLevelInput, "Input", "Input events debugging");
Common::addSpecialDebugLevel(kDebugLevelMenu, "Menu", "Menu debugging");
Common::addSpecialDebugLevel(kDebugLevelScripts, "Scripts", "Scripts debugging");
Common::addSpecialDebugLevel(kDebugLevelSound, "Sound", "Sound debugging");
Common::addSpecialDebugLevel(kDebugLevelText, "Text", "Text output debugging");
Common::addSpecialDebugLevel(kDebugLevelSavegame, "Savegame", "Saving & restoring game debugging");
memset(&_game, 0, sizeof(struct AgiGame));
memset(&_debug, 0, sizeof(struct AgiDebug));
memset(&g_mouse, 0, sizeof(struct Mouse));
_game.clockEnabled = false;
_game.state = STATE_INIT;
_keyQueueStart = 0;
_keyQueueEnd = 0;
_keyControl = 0;
_keyAlt = 0;
_allowSynthetic = false;
g_tickTimer = 0;
_intobj = NULL;
_stackSize = 0;
_imageStack = NULL;
_imageStackPointer = 0;
_menu = NULL;
_lastSentence[0] = 0;
memset(&_stringdata, 0, sizeof(struct StringData));
_objects = NULL;
_oldMode = -1;
_predictiveDialogRunning = false;
_predictiveDictText = NULL;
_predictiveDictLine = NULL;
_predictiveDictLineCount = 0;
_firstSlot = 0;
2006-05-23 23:43:52 +00:00
}
void AgiEngine::initialize() {
// TODO: Some sound emulation modes do not fit our current music
// drivers, and I'm not sure what they are. For now, they might
// as well be called "PC Speaker" and "Not PC Speaker".
switch (MidiDriver::detectMusicDriver(MDT_PCSPK)) {
case MD_PCSPK:
_soundemu = SOUND_EMU_PC;
break;
default:
_soundemu = SOUND_EMU_NONE;
break;
}
2006-05-23 23:43:52 +00:00
if (ConfMan.hasKey("render_mode")) {
_renderMode = Common::parseRenderMode(ConfMan.get("render_mode").c_str());
} else if (ConfMan.hasKey("platform")) {
switch (Common::parsePlatform(ConfMan.get("platform"))) {
case Common::kPlatformAmiga:
_renderMode = Common::kRenderAmiga;
break;
case Common::kPlatformPC:
_renderMode = Common::kRenderEGA;
break;
default:
_renderMode = Common::kRenderEGA;
break;
}
}
_buttonStyle = AgiButtonStyle(_renderMode);
_defaultButtonStyle = AgiButtonStyle();
_console = new Console(this);
_gfx = new GfxMgr(this);
_sound = new SoundMgr(this, _mixer);
_picture = new PictureMgr(this, _gfx);
_sprites = new SpritesMgr(this, _gfx);
_gfx->initMachine();
_game.gameFlags = 0;
2006-05-23 23:43:52 +00:00
_game.colorFg = 15;
_game.colorBg = 0;
2006-05-23 23:43:52 +00:00
_game.name[0] = '\0';
2006-05-23 23:43:52 +00:00
_game.sbufOrig = (uint8 *)calloc(_WIDTH, _HEIGHT * 2); // Allocate space for two AGI screens vertically
_game.sbuf16c = _game.sbufOrig + SBUF16_OFFSET; // Make sbuf16c point to the 16 color (+control line & priority info) AGI screen
_game.sbuf256c = _game.sbufOrig + SBUF256_OFFSET; // Make sbuf256c point to the 256 color AGI screen
_game.sbuf = _game.sbuf16c; // Make sbuf point to the 16 color (+control line & priority info) AGI screen by default
2006-05-23 23:43:52 +00:00
_gfx->initVideo();
_sound->initSound();
2006-05-23 23:43:52 +00:00
_timer->installTimerProc(agiTimerFunctionLow, 10 * 1000, NULL);
2006-05-23 23:43:52 +00:00
_game.ver = -1; /* Don't display the conf file warning */
2006-05-23 23:43:52 +00:00
debugC(2, kDebugLevelMain, "Detect game");
if (agiDetectGame() == errOK) {
_game.state = STATE_LOADED;
2006-05-23 23:43:52 +00:00
debugC(2, kDebugLevelMain, "game loaded");
} else {
report("Could not open AGI game");
}
debugC(2, kDebugLevelMain, "Init sound");
}
AgiEngine::~AgiEngine() {
// If the engine hasn't been initialized yet via AgiEngine::initialize(), don't attempt to free any resources,
// as they haven't been allocated. Fixes bug #1742432 - AGI: Engine crashes if no game is detected
if (_game.state == STATE_INIT) {
delete _rnd; // delete _rnd, as it is allocated in the constructor, not in initialize()
return;
}
agiDeinit();
_sound->deinitSound();
delete _sound;
_gfx->deinitVideo();
delete _sprites;
free(_game.sbufOrig);
_gfx->deinitMachine();
delete _rnd;
delete _console;
free(_predictiveDictLine);
free(_predictiveDictText);
2006-05-23 23:43:52 +00:00
}
int AgiEngine::init() {
// Detect game
if (!initGame()) {
GUIErrorMessage("No valid games were found in the specified directory.");
return -1;
}
2006-05-23 23:43:52 +00:00
// Initialize backend
_system->beginGFXTransaction();
initCommonGFX(false);
_system->initSize(320, 200);
_system->endGFXTransaction();
initialize();
_gfx->gfxSetPalette();
2006-05-23 23:43:52 +00:00
return 0;
}
int AgiEngine::go() {
CursorMan.showMouse(true);
2006-05-23 23:43:52 +00:00
report(" \nAGI engine %s is ready.\n", gScummVMVersion);
if (_game.state < STATE_LOADED) {
2006-05-23 23:43:52 +00:00
do {
mainCycle();
} while (_game.state < STATE_RUNNING);
if (_game.ver < 0)
_game.ver = 0; /* Enable conf file warning */
2006-05-23 23:43:52 +00:00
}
runGame();
2006-05-23 23:43:52 +00:00
return 0;
}
} // End of namespace Agi