25 #include "engines/engine.h" 27 #include "common/endian.h" 28 #include "common/events.h" 29 #include "common/file.h" 30 #include "common/savefile.h" 31 #include "common/keyboard.h" 32 #include "common/mutex.h" 33 #include "common/random.h" 34 #include "common/rect.h" 35 #include "common/rendermode.h" 36 #include "common/serializer.h" 37 #include "common/str.h" 38 #include "common/textconsole.h" 39 #include "graphics/surface.h" 40 #include "graphics/sjis.h" 41 #include "graphics/palette.h" 43 #include "scumm/file.h" 44 #include "scumm/gfx.h" 45 #include "scumm/detection.h" 46 #include "scumm/script.h" 57 #define DISABLE_TOWNS_DUAL_LAYER_MODE 65 class SeekableReadStream;
67 class SeekableWriteStream;
88 class BaseCostumeLoader;
89 class BaseCostumeRenderer;
91 class CharsetRenderer;
101 class GlyphRenderer_v7;
105 struct FindObjectInRoom;
108 extern ScummEngine *g_scumm;
113 NUM_SHADOW_PALETTE = 8
156 MBS_LEFT_CLICK = 0x8000,
157 MBS_RIGHT_CLICK = 0x4000,
158 MBS_MOUSE_MASK = (MBS_LEFT_CLICK | MBS_RIGHT_CLICK),
202 uint _objectRedrawCount;
203 uint _objectStripRedrawCount;
204 uint _actorRedrawCount;
205 uint _actorLimbRedrawDrawCount;
225 USERSTATE_SET_FREEZE = 0x01,
226 USERSTATE_SET_CURSOR = 0x02,
227 USERSTATE_SET_IFACE = 0x04,
228 USERSTATE_FREEZE_ON = 0x08,
229 USERSTATE_CURSOR_ON = 0x10,
230 USERSTATE_IFACE_SENTENCE = 0x20,
231 USERSTATE_IFACE_INVENTORY = 0x40,
232 USERSTATE_IFACE_VERBS = 0x80
235 #define USERSTATE_IFACE_ALL (USERSTATE_IFACE_SENTENCE | USERSTATE_IFACE_INVENTORY | USERSTATE_IFACE_VERBS) 269 typedef uint16 ResId;
313 #define PIT_BASE_FREQUENCY 1193182.0 // In Hz 314 #define PIT_V1_DIVISOR 65536.0 315 #define PIT_V2_4_DIVISOR 5041.0 316 #define PIT_V5_6_ORCHESTRATOR_DIVISOR 4096.0 317 #define PIT_V5_6_SUBTIMER_INC 3433.0 318 #define PIT_V5_SUBTIMER_THRESH 4167.0 319 #define PIT_V6_SAMNMAX_SUBTIMER_THRESH 4167.0 320 #define PIT_V6_DOTT_SUBTIMER_THRESH 4237.0 321 #define PIT_V7_ORCHESTRATOR_DIVISOR 3977.0 322 #define PIT_V7_SUBTIMER_INC 3977.0 323 #define PIT_V7_SUBTIMER_THRESH 4971.0 325 #define LOOM_STEAM_CDDA_RATE 240.0 340 #define AMIGA_NTSC_VBLANK_RATE 240.0 341 #define AMIGA_PAL_VBLANK_RATE 200.0 347 #define GAME_PROPER_SAVE 201 348 #define GAME_FAILED_SAVE 202 349 #define GAME_PROPER_LOAD 203 350 #define GAME_FAILED_LOAD 204 356 #define GUI_PAGE_MAIN 0 357 #define GUI_PAGE_SAVE 1 358 #define GUI_PAGE_LOAD 2 359 #define GUI_PAGE_RESTART 3 // Sega CD 360 #define GUI_PAGE_CODE_CONFIRM 4 // Sega CD 361 #define GUI_PAGE_INVALID_CODE 5 // Sega CD 363 #define GUI_CTRL_FIRST_SG 1 364 #define GUI_CTRL_LAST_SG 9 365 #define GUI_CTRL_SAVE_BUTTON 10 366 #define GUI_CTRL_LOAD_BUTTON 11 367 #define GUI_CTRL_PLAY_BUTTON 12 368 #define GUI_CTRL_QUIT_BUTTON 13 369 #define GUI_CTRL_OK_BUTTON 14 370 #define GUI_CTRL_CANCEL_BUTTON 15 371 #define GUI_CTRL_ARROW_UP_BUTTON 16 372 #define GUI_CTRL_ARROW_DOWN_BUTTON 17 373 #define GUI_CTRL_PATH_BUTTON 18 374 #define GUI_CTRL_MUSIC_SLIDER 19 375 #define GUI_CTRL_SPEECH_SLIDER 20 376 #define GUI_CTRL_SFX_SLIDER 21 377 #define GUI_CTRL_TEXT_SPEED_SLIDER 22 378 #define GUI_CTRL_DISPLAY_TEXT_CHECKBOX 23 379 #define GUI_CTRL_SPOOLED_MUSIC_CHECKBOX 24 380 #define GUI_CTRL_OUTER_BOX 26 381 #define GUI_CTRL_INNER_BOX 27 384 #define GUI_CTRL_NUMPAD_1 1 385 #define GUI_CTRL_NUMPAD_2 2 386 #define GUI_CTRL_NUMPAD_3 3 387 #define GUI_CTRL_NUMPAD_4 4 388 #define GUI_CTRL_NUMPAD_5 5 389 #define GUI_CTRL_NUMPAD_6 6 390 #define GUI_CTRL_NUMPAD_7 7 391 #define GUI_CTRL_NUMPAD_8 8 392 #define GUI_CTRL_NUMPAD_9 9 393 #define GUI_CTRL_NUMPAD_0 10 394 #define GUI_CTRL_RESTART_BUTTON 13 395 #define GUI_CTRL_ARROW_LEFT_BUTTON 16 396 #define GUI_CTRL_ARROW_RIGHT_BUTTON 17 397 #define GUI_CTRL_NUMPAD_BACK 23 402 gsTextSpeedSlider = 2,
413 gsGameNotLoaded = 13,
417 gsSelectLoadPrompt = 17,
418 gsReplacePrompt = 18,
423 gsTextDisplayOnly = 24,
426 gsMusicVolumeSlider = 27,
427 gsVoiceVolumeSlider = 28,
428 gsSfxVolumeSlider = 29,
439 gsInsertSaveDisk = 40,
442 gsRecalJoystick = 43,
455 gsCurrentPasscode = 56,
456 gsEnterPasscode = 57,
457 gsConfirmPasscode = 58,
458 gsInvalidPasscode = 59,
475 int highlightedTextColor;
476 int highlightedFillColor;
479 bool doubleLinesFlag;
484 kScummActionInsaneDownLeft,
485 kScummActionInsaneDown,
486 kScummActionInsaneDownRight,
487 kScummActionInsaneLeft,
488 kScummActionInsaneRight,
489 kScummActionInsaneUpLeft,
490 kScummActionInsaneUp,
491 kScummActionInsaneUpRight,
492 kScummActionInsaneAttack,
493 kScummActionInsaneSwitch,
494 kScummActionInsaneCheat,
499 extern const char *
const insaneKeymapId;
508 friend class CharsetRendererTownsClassic;
515 friend class LogicHEBasketball;
521 IMuse *_imuse =
nullptr;
522 IMuseDigital *_imuseDigital =
nullptr;
525 Sound *_sound =
nullptr;
542 int _insideCreateResource = 0;
544 bool _useOriginalGUI =
true;
545 bool _enableAudioOverride =
false;
546 bool _enableCOMISong =
false;
547 bool _isAmigaPALSystem =
false;
548 bool _quitFromScriptCmd =
false;
549 bool _isHE995 =
false;
550 bool _enableHECompetitiveOnlineMods =
false;
557 bool _needsSoundUnpause =
false;
575 void errorString(
const char *buf_input,
char *buf_output,
int buf_output_size)
override;
577 bool gameSupportsQuitDialogOverride()
const;
578 void syncSoundSettings()
override;
585 void pauseEngineIntern(
bool pause)
override;
588 virtual void setupScumm(
const Common::Path &macResourceFile);
589 virtual void resetScumm();
591 virtual void setupScummVars();
592 virtual void resetScummVars();
593 void setVideoModeVarToCurrentConfig();
594 void setSoundCardVarToCurrentConfig();
596 void setupCharsetRenderer(
const Common::Path &macFontFile);
597 void setupCostumeRenderer();
599 virtual void loadLanguageBundle();
602 void setupMusic(
int midi);
603 void setTalkSpeed(
int talkspeed);
607 virtual void scummLoop(
int delta);
608 virtual void scummLoop_updateScummVars();
609 virtual void scummLoop_handleSaveLoad();
610 virtual void scummLoop_handleDrawing();
611 virtual void scummLoop_handleActors() = 0;
612 virtual void scummLoop_handleEffects();
613 virtual void scummLoop_handleSound();
615 virtual void runBootscript();
617 virtual void terminateSaveMenuScript() {};
621 void beginTextInput();
628 void waitForTimer(
int quarterFrames,
bool freezeMacGui =
false);
629 uint32 _lastWaitTime;
631 void setTimerAndShakeFrequency();
638 uint32 getIntegralTime(
double fMsecs);
639 double _msecFractParts = 0.0;
641 virtual void processInput();
643 virtual void clearClickedStatus();
646 virtual void updateCursor();
647 virtual void animateCursor() {}
648 virtual void updatePalette();
649 virtual void setDefaultCursor() {};
650 virtual void setCursorTransparency(
int a) {};
651 virtual void resetCursors() {}
652 virtual void setCursorHotspot(
int x,
int y) {}
653 virtual void setCursorFromBuffer(
const byte *ptr,
int width,
int height,
int pitch,
bool preventScale =
false) {}
658 bool isUsingOriginalGUI()
const;
659 bool isMessageBannerActive();
661 bool _isIndy4Jap =
false;
664 Dialog *_pauseDialog =
nullptr;
665 Dialog *_messageDialog =
nullptr;
666 Dialog *_versionDialog =
nullptr;
668 void confirmExitDialog();
669 void confirmRestartDialog();
672 void versionDialog();
675 int32 _bannerColors[50];
676 byte *_bannerMem =
nullptr;
677 uint32 _bannerMemSize = 0;
678 int _bannerSaveYStart = 0;
680 bool _messageBannerActive =
false;
681 bool _comiQuitMenuIsOpen =
false;
682 bool _closeBannerAndQueryQuitFlag =
false;
685 byte *_textSurfBannerMem =
nullptr;
686 uint32 _textSurfBannerMemSize = 0;
691 const char _emptyMsg[1] = {
'\0'};
692 const char _uncheckedBox[2] = {
' ',
'\0'};
693 const char _checkedBox[2] = {
'x',
'\0'};
694 const char _arrowUp[2] = {
'\x18',
'\0'};
695 const char _arrowDown[2] = {
'\x19',
'\0'};
696 const char _arrowLeft[2] = {
'\x3c',
'\0'};
697 const char _arrowRight[2] = {
'\x3d',
'\0'};
701 int _mainMenuSavegameLabel = 1;
702 int _curDisplayedSaveSlotPage = 0;
703 int _firstSaveStateOfList = 0;
704 bool _mainMenuIsActive =
false;
705 bool _quitByGUIPrompt =
false;
706 char _mainMenuMusicSlider[17];
707 char _mainMenuSpeechSlider[17];
708 char _mainMenuSfxSlider[17];
709 char _mainMenuTextSpeedSlider[17];
710 char _mainMenuSegaCDPasscode[5];
711 int _spooledMusicIsToBeEnabled = 1;
712 int _saveScriptParam = 0;
713 int _guiCursorAnimCounter = 0;
714 int _v5VoiceMode = 0;
717 int _internalSpeakerSoundsAreOn = 1;
718 int _guiMouseFlag = 1;
719 int _guiJoystickFlag = 1;
721 bool _mixerMutedByGUI =
false;
724 byte *_tempTextSurface =
nullptr;
725 byte *_tempMainSurface =
nullptr;
726 byte *_tempVerbSurface =
nullptr;
727 bool _postGUICharMask =
false;
730 byte *_curGrabbedCursor =
nullptr;
731 int8 _oldCursorState = 0;
732 int _curCursorState = 0;
733 int _curCursorWidth = 0;
734 int _curCursorHeight = 0;
735 int _curCursorHotspotX = 0;
736 int _curCursorHotspotY = 0;
738 virtual void setSnailCursor() {}
741 Common::KeyState showBannerAndPause(
int bannerId, int32 waitTime,
const char *msg, ...);
742 Common::KeyState showOldStyleBannerAndPause(
const char *msg,
int color, int32 waitTime);
743 Common::KeyState printMessageAndPause(
const char *msg,
int color, int32 waitTime,
bool drawOnSentenceLine);
746 void setBannerColors(
int bannerId, byte r, byte g, byte b);
747 virtual int getBannerColor(
int bannerId);
748 void setUpInternalGUIControl(
int id,
int normalFillColor,
int normalTextColor,
749 int topLineColor,
int bottomLineColor,
int leftLineColor,
int rightLineColor,
750 int highlightedTextColor,
int highlightedFillColor,
751 int anchorPointX,
int anchorPointY,
int x,
int y,
const char *label,
bool centerFlag,
bool unknownFlag);
752 void drawInternalGUIControl(
int id,
bool highlightColor);
753 int getInternalGUIControlFromCoordinates(
int x,
int y);
754 virtual bool isSmushActive() {
return false; }
755 virtual bool isInsaneActive() {
return false; }
757 virtual void queryQuit(
bool returnToLauncher);
758 virtual void queryRestart();
759 virtual const char *getGUIString(
int stringId);
760 void waitForBannerInput(int32 waitTime,
Common::KeyState &ks,
bool &leftBtnClicked,
bool &rightBtnClicked,
bool handleMouseWheel =
false);
761 virtual int getGUIStringHeight(
const char *str);
762 virtual int getGUIStringWidth(
const char *str);
763 virtual void drawGUIText(
const char *buttonString,
Common::Rect *clipRect,
int textXPos,
int textYPos,
int textColor,
bool centerFlag);
764 void getSliderString(
int stringId,
int value,
char *sliderString,
int size);
765 virtual int getMusicVolume();
766 virtual int getSpeechVolume();
767 virtual int getSFXVolume();
768 virtual void setMusicVolume(
int volume);
769 virtual void setSpeechVolume(
int volume);
770 virtual void setSFXVolume(
int volume);
771 virtual void toggleVoiceMode();
772 virtual void handleLoadDuringSmush() {}
773 virtual void setSkipVideo(
int value) {}
776 virtual void setUpMainMenuControls();
777 void setUpMainMenuControlsSegaCD();
778 void setUpMainMenuControlsIndy4Jap();
779 void drawMainMenuControls();
780 void drawMainMenuControlsSegaCD();
781 void updateMainMenuControls();
782 void updateMainMenuControlsSegaCD();
783 void drawMainMenuTitle(
const char *title);
784 bool executeMainMenuOperation(
int op,
int mouseX,
int mouseY,
bool &hasLoadedState);
785 bool executeMainMenuOperationSegaCD(
int op,
int mouseX,
int mouseY,
bool &hasLoadedState);
786 bool shouldHighlightLabelAndWait(
int clickedControl);
787 void fillSavegameLabels();
788 bool canWriteGame(
int slotId);
789 bool userWriteLabelRoutine(
Common::KeyState &ks,
bool &leftMsClicked,
bool &rightMsClicked);
790 void saveCursorPreMenu();
791 void restoreCursorPostMenu();
792 void saveSurfacesPreGUI();
793 void restoreSurfacesPostGUI();
794 void showDraftsInventory();
795 void setUpDraftsInventory();
796 void drawDraftsInventory();
799 char displayMessage(
const char *altButton, MSVC_PRINTF
const char *message, ...)
GCC_PRINTF(3, 4);
800 bool displayMessageYesNo(MSVC_PRINTF
const char *message, ...)
GCC_PRINTF(2, 3);
806 Actor **_actors =
nullptr;
807 Actor **_sortedActors =
nullptr;
809 byte *_arraySlot =
nullptr;
810 uint16 *_inventory =
nullptr;
811 uint16 *_newNames =
nullptr;
815 #define VAR(x) scummVar(x, #x, __FILE__, __LINE__) 816 int32& scummVar(byte var,
const char *varName,
const char *file,
int line) {
818 error(
"Illegal access to variable %s in file %s, line %d", varName, file, line);
820 return _scummVars[var];
822 int32 scummVar(byte var,
const char *varName,
const char *file,
int line)
const {
824 error(
"Illegal access to variable %s in file %s, line %d", varName, file, line);
826 return _scummVars[var];
831 int32 *_roomVars =
nullptr;
832 int32 *_scummVars =
nullptr;
833 byte *_bitVars =
nullptr;
836 int _numVariables = 0;
837 int _numBitVariables = 0;
838 int _numLocalObjects = 0;
839 int _numGlobalObjects = 0;
842 int _numFlObject = 0;
843 int _numInventory = 0;
844 int _numNewNames = 0;
845 int _numGlobalScripts = 0;
846 int _numRoomVariables = 0;
847 int _numPalettes = 0;
854 int _numLocalScripts = 60, _numImages = 0, _numRooms = 0, _numScripts = 0, _numSounds = 0;
855 int _numCostumes = 0;
856 int32 _numCharsets = 0;
861 int _NESCostumeSet = 0;
862 void NES_loadCostumeSet(
int n);
863 byte *_NEScostdesc =
nullptr, *_NEScostlens =
nullptr, *_NEScostoffs =
nullptr, *_NEScostdata =
nullptr;
864 byte _NESPatTable[2][4096];
865 byte _NESPalette[2][16];
866 byte _NESBaseTiles = 0;
868 int _NESStartStrip = 0;
871 int _curPalIndex = 0;
874 byte _currentRoom = 0;
875 int _roomResource = 0;
876 bool _egoPositioned =
false;
880 virtual Common::Path generateFilename(
const int room)
const;
884 bool _keyDownMap[512];
885 bool _actionMap[kScummActionCount];
890 uint16 _mouseAndKeyboardStat = 0;
891 byte _leftBtnPressed = 0, _rightBtnPressed = 0;
893 int _mouseWheelFlag = 0;
895 bool _setupIsComplete =
false;
901 uint32 _lastInputScriptTime = 0;
907 bool _dumpScripts =
false;
908 bool _hexdumpScripts =
false;
909 bool _showStack =
false;
910 bool _debugMode =
false;
913 byte _saveLoadFlag = 0, _saveLoadSlot = 0;
914 uint32 _lastSaveTime = 0;
915 bool _saveTemporaryState =
false;
916 bool _pauseSoundsDuringSave =
true;
917 bool _loadFromLauncher =
false;
918 bool _videoModeChanged =
false;
924 bool loadState(
int slot,
bool compat);
931 void copyHeapSaveGameToFile(
int slot,
const char *saveName);
932 bool changeSavegameName(
int slot,
char *newName);
937 return makeSavegameName(_targetName, slot, temporary);
940 int getKeyState(
int key);
941 int getActionState(ScummAction action);
947 void listSavegames(
bool *marks,
int num);
950 void requestLoad(
int slot);
953 bool canPauseSoundsDuringSave()
const {
return _pauseSoundsDuringSave; }
964 uint32 _localScriptOffsets[1024];
965 const byte *_scriptPointer =
nullptr;
966 const byte *_scriptOrgPointer =
nullptr;
967 const byte *
const *_lastCodePtr =
nullptr;
970 byte _currentScript = 0xFF;
971 int _scummStackPos = 0;
974 char _engineVersionString[50];
975 char _dataFileVersionString[50];
979 virtual void setupOpcodes() = 0;
980 void executeOpcode(byte i);
981 const char *getOpcodeDesc(byte i);
983 void initializeLocals(
int slot,
int *vars);
986 void startScene(
int room,
Actor *a,
int b);
990 void runScript(
int script,
bool freezeResistant,
bool recursive,
int *lvarptr,
int cycle = 0);
991 void stopScript(
int script);
992 void nukeArrays(byte scriptSlot);
995 void runObjectScript(
int script,
int entry,
bool freezeResistant,
bool recursive,
int *vars,
int slot = -1,
int cycle = 0);
996 void runScriptNested(
int script);
997 void executeScript();
998 void updateScriptPtr();
999 virtual void runInventoryScript(
int i);
1000 virtual void runInventoryScriptEx(
int i);
1001 virtual void checkAndRunSentenceScript();
1002 void runExitScript();
1003 void runEntryScript();
1004 void runQuitScript();
1005 void runAllScripts();
1006 void freezeScripts(
int scr);
1007 void unfreezeScripts();
1009 bool isScriptInUse(
int script)
const;
1010 bool isRoomScriptRunning(
int script)
const;
1011 bool isScriptRunning(
int script)
const;
1013 void killAllScriptsExceptCurrent();
1014 void killScriptsAndResources();
1015 void decreaseScriptDelay(
int amount);
1017 void stopObjectCode();
1018 void stopObjectScript(
int script);
1020 void getScriptBaseAddress();
1021 void resetScriptPointer();
1022 int getVerbEntrypoint(
int obj,
int entry);
1024 void refreshScriptPointer();
1025 byte fetchScriptByte();
1026 virtual uint fetchScriptWord();
1027 virtual int fetchScriptWordSigned();
1028 uint fetchScriptDWord();
1029 int fetchScriptDWordSigned();
1030 void ignoreScriptWord() { fetchScriptWord(); }
1031 void ignoreScriptByte() { fetchScriptByte(); }
1034 virtual int readVar(uint var);
1035 virtual void writeVar(uint var,
int value);
1037 virtual void resetSentence() {}
1040 virtual void beginCutscene(
int *args);
1041 virtual void endCutscene();
1042 void abortCutscene();
1043 void beginOverride();
1046 void copyScriptString(byte *dst);
1047 int resStrLen(
const byte *src);
1048 void doSentence(
int c,
int b,
int a);
1052 uint32 _fileOffset = 0;
1059 ScummFile *instantiateScummFile(
bool indexPAKFiles =
true);
1062 int _resourceHeaderSize = 8;
1063 byte _resourceMapper[128];
1064 const byte *_resourceLastSearchBuf;
1065 uint32 _resourceLastSearchSize;
1067 virtual void allocateArrays();
1068 void openRoom(
int room);
1070 void deleteRoomOffsets();
1071 virtual void readRoomsOffsets();
1072 void askForDisk(
const Common::Path &filename,
int disknum);
1073 bool openResourceFile(
const Common::Path &filename, byte encByte);
1075 void loadPtrToResource(
ResType type, ResId idx,
const byte *ptr);
1076 virtual int readResTypeList(
ResType type);
1079 int loadResource(
ResType type, ResId idx);
1081 int getResourceRoomNr(
ResType type, ResId idx);
1082 virtual uint32 getResourceRoomOffset(
ResType type, ResId idx);
1085 int getResourceSize(
ResType type, ResId idx);
1086 byte *getResourceAddress(
ResType type, ResId idx);
1087 virtual byte *getStringAddress(ResId idx);
1088 byte *getStringAddressVar(
int i);
1089 void ensureResourceLoaded(
ResType type, ResId idx);
1096 int readSoundResource(ResId idx);
1097 int readSoundResourceSmallHeader(ResId idx);
1098 bool isResourceInUse(
ResType type, ResId idx)
const;
1100 virtual void setupRoomSubBlocks();
1101 virtual void resetRoomSubBlocks();
1103 virtual void clearRoomObjects();
1104 virtual void resetRoomObjects();
1105 virtual void resetRoomObject(
ObjectData *od,
const byte *room,
const byte *searchptr = NULL);
1107 virtual void readArrayFromIndexFile();
1108 virtual void readMAXS(
int blockSize) = 0;
1109 virtual void readGlobalObjects();
1110 virtual void readIndexFile();
1111 virtual void readIndexBlock(uint32 block, uint32 itemsize);
1112 virtual void loadCharset(
int i);
1113 void nukeCharset(
int i);
1115 int _lastLoadedRoom = 0;
1117 const byte *findResourceData(uint32 tag,
const byte *ptr);
1118 const byte *findResource(uint32 tag,
const byte *ptr);
1119 void applyWorkaroundIfNeeded(
ResType type,
int idx);
1120 bool verifyMI2MacBootScript();
1121 bool verifyMI2MacBootScript(byte *buf,
int size);
1122 bool tryPatchMI1CannibalScript(byte *buf,
int size);
1124 int getResourceDataSize(
const byte *ptr)
const;
1125 void dumpResource(
const char *tag,
int index,
const byte *ptr,
int length = -1);
1129 byte OF_OWNER_ROOM = 0;
1130 int getInventorySlot();
1131 int findInventory(
int owner,
int index);
1132 int getInventoryCount(
int owner);
1135 byte *_objectOwnerTable =
nullptr, *_objectRoomTable =
nullptr, *_objectStateTable =
nullptr;
1136 int _numObjectsInRoom = 0;
1139 uint32 *_classData =
nullptr;
1142 void markObjectRectAsDirty(
int obj);
1143 virtual void loadFlObject(uint
object, uint room);
1144 void nukeFlObjects(
int min,
int max);
1145 int findFlObjectSlot();
1146 int findLocalObjectSlot();
1147 void addObjectToInventory(uint obj, uint room);
1148 void updateObjectStates();
1150 bool getClass(
int obj,
int cls)
const;
1152 void putClass(
int obj,
int cls,
bool set);
1153 int getState(
int obj);
1154 void putState(
int obj,
int state);
1155 void setObjectState(
int obj,
int state,
int x,
int y);
1156 int getOwner(
int obj)
const;
1157 void putOwner(
int obj,
int owner);
1158 void setOwnerOf(
int obj,
int owner);
1159 void clearOwnerOf(
int obj);
1160 int getObjectRoom(
int obj)
const;
1161 virtual bool objIsActor(
int obj);
1162 virtual int objToActor(
int obj);
1163 virtual int actorToObj(
int actor);
1164 int getObjX(
int obj);
1165 int getObjY(
int obj);
1166 void getObjectWidth(
int object,
int &width) {
int x, y, dir; getObjectXYPos(
object, x, y, dir, width); }
1167 void getObjectXYPos(
int object,
int &x,
int &y) {
int dir, width; getObjectXYPos(
object, x, y, dir, width); }
1168 void getObjectXYPos(
int object,
int &x,
int &y,
int &dir) {
int width; getObjectXYPos(
object, x, y, dir, width); }
1169 void getObjectXYPos(
int object,
int &x,
int &y,
int &dir,
int &width);
1170 int getObjOldDir(
int obj);
1171 int getObjNewDir(
int obj);
1172 int getObjectIndex(
int object)
const;
1173 int getObjectImageCount(
int object);
1174 int whereIsObject(
int object)
const;
1175 int findObject(
int x,
int y);
1176 void findObjectInRoom(
FindObjectInRoom *fo, byte findWhat, uint
object, uint room);
1178 int getObjectOrActorWidth(
int object,
int &width);
1179 int getObjectOrActorXY(
int object,
int &x,
int &y);
1180 int getDist(
int x,
int y,
int x2,
int y2);
1183 int getObjActToObjActDist(
int a,
int b);
1184 const byte *getObjOrActorName(
int obj);
1185 void setObjectName(
int obj);
1187 void addObjectToDrawQue(
int object);
1188 void removeObjectFromDrawQue(
int object);
1189 void clearDrawObjectQueue();
1190 void processDrawQue();
1192 virtual void clearDrawQueues();
1194 uint32 getOBCDOffs(
int object)
const;
1195 byte *getOBCDFromObject(
int obj,
bool v0CheckInventory =
true);
1196 const byte *getOBIMFromObjectData(
const ObjectData &od);
1197 const byte *getObjectImage(
const byte *ptr,
int state);
1198 virtual int getObjectIdFromOBIM(
const byte *obim);
1202 uint16 _verbMouseOver = 0;
1204 uint16 _userState = 0;
1206 virtual void handleMouseOver(
bool updateInventory);
1207 virtual void redrawVerbs();
1208 virtual void checkExecVerbs();
1210 void verbMouseOver(
int verb);
1211 int findVerbAtPos(
int x,
int y)
const;
1212 virtual void drawVerb(
int verb,
int mode);
1213 virtual void runInputScript(
int clickArea,
int val,
int mode);
1214 void restoreVerbBG(
int verb);
1215 void drawVerbBitmap(
int verb,
int x,
int y);
1216 int getVerbSlot(
int id,
int mode)
const;
1217 void killVerb(
int slot);
1218 void setVerbObject(uint room, uint
object, uint verb);
1221 bool isValidActor(
int id)
const;
1224 Actor *derefActor(
int id,
const char *errmsg = 0)
const;
1225 Actor *derefActorSafe(
int id,
const char *errmsg)
const;
1229 void playActorSounds();
1230 void redrawAllActors();
1231 virtual void setActorRedrawFlags();
1234 void resetV1ActorTalkColor();
1235 virtual void resetActorBgs();
1236 virtual void processActors();
1237 void processUpperActors();
1238 virtual int getActorFromPos(
int x,
int y);
1242 byte _actorToPrintStrFor = 0, _V1TalkingActor = 0;
1243 int _sentenceNum = 0;
1247 int16 _talkDelay = 0;
1248 int _NES_lastTalkingActor = 0;
1249 int _NES_talkColor = 0;
1251 virtual void actorTalk(
const byte *msg);
1253 int getTalkingActor();
1254 void setTalkingActor(
int variable);
1257 bool isCostumeInUse(
int i)
const;
1261 uint16 _screenB = 0, _screenH = 0;
1263 int _roomHeight = 0, _roomWidth = 0;
1264 int _screenHeight = 0, _screenWidth = 0;
1267 bool _cameraIsFrozen =
false;
1269 int _screenStartStrip = 0, _screenEndStrip = 0;
1271 bool _forceBannerVirtScreen =
false;
1282 bool _useMacScreenCorrectHeight =
true;
1283 int _macScreenDrawOffset = 20;
1286 uint8 _bytesPerPixel = 1;
1291 uint8 _colorUsedByCycle[256];
1294 uint32 _ENCD_offs = 0, _EXCD_offs = 0;
1295 uint32 _CLUT_offs = 0, _EPAL_offs = 0;
1296 uint32 _IM00_offs = 0, _PALS_offs = 0;
1299 bool _fullRedraw =
false, _bgNeedsRedraw =
false;
1300 bool _screenEffectFlag =
false, _completeScreenRedraw =
false;
1301 bool _disableFadeInEffect =
false;
1304 int hotspotX, hotspotY, width, height;
1305 byte animate, animateIndex;
1311 byte _grabbedCursor[16384];
1312 byte _macGrabbedCursor[16384 * 4];
1313 byte _currentCursor = 0;
1315 byte _newEffect = 0, _switchRoomEffect2 = 0, _switchRoomEffect = 0;
1316 bool _doEffect =
false;
1318 bool _snapScroll =
false;
1320 virtual void setBuiltinCursor(
int index) {}
1322 bool isLightOn()
const;
1324 virtual int getCurrentLights()
const;
1327 void initScreens(
int b,
int h);
1328 void initVirtScreen(
VirtScreenNumber slot,
int top,
int width,
int height,
bool twobufs,
bool scrollable);
1329 void initBGBuffers(
int height);
1330 void initCycl(
const byte *ptr);
1332 void decodeNESBaseTiles();
1334 void drawObject(
int obj,
int scrollType);
1335 void drawRoomObjects(
int arg);
1336 void drawRoomObject(
int i,
int arg);
1337 void drawBox(
int x,
int y,
int x2,
int y2,
int color);
1338 void drawLine(
int x1,
int y1,
int x2,
int y2,
int color);
1339 void drawPixel(
VirtScreen *vs,
int x,
int y, int16 color,
bool useBackbuffer =
false);
1341 void moveScreen(
int dx,
int dy,
int height);
1343 void restoreBackground(
Common::Rect rect, byte backcolor = 0);
1344 void redrawBGStrip(
int start,
int num);
1345 virtual void redrawBGAreas();
1348 void setCameraAtEx(
int at);
1349 virtual void setCameraAt(
int pos_x,
int pos_y);
1350 virtual void setCameraFollows(
Actor *a,
bool setCamera =
false);
1351 virtual void moveCamera();
1352 virtual void panCameraTo(
int x,
int y);
1354 void actorFollowCamera(
int act);
1356 const byte *getPalettePtr(
int palindex,
int room);
1358 void setPaletteFromTable(
const byte *ptr,
int numcolor,
int firstIndex = 0);
1359 void resetPalette();
1361 void setCurrentPalette(
int pal);
1362 void setRoomPalette(
int pal,
int room);
1363 void setPCEPaletteFromPtr(
const byte *ptr);
1364 void setAmigaPaletteFromPtr(
const byte *ptr);
1365 virtual void setPaletteFromPtr(
const byte *ptr,
int numcolor = -1);
1366 void setV1ColorTable(
int renderMode);
1368 virtual void setPalColor(
int index,
int r,
int g,
int b);
1369 void setDirtyColors(
int min,
int max);
1370 const byte *findPalInPals(
const byte *pal,
int index);
1371 void swapPalColors(
int a,
int b);
1372 virtual void copyPalColor(
int dst,
int src);
1373 void cyclePalette();
1374 void stopCycle(
int i);
1375 virtual void palManipulateInit(
int resID,
int start,
int end,
int time);
1376 void palManipulate();
1377 uint32 findClosestPaletteColor(byte *palette,
int paletteLength, byte r, byte g, byte b);
1378 void applyGrayscaleToPaletteRange(
int min,
int max);
1379 bool haveToApplyMonkey1PaletteFix();
1382 uint8 *getHEPaletteSlot(uint16 palSlot);
1383 uint16 get16BitColor(uint8 r, uint8 g, uint8 b);
1384 uint32 getPaletteColorFromRGB(byte *palette, byte r, byte g, byte b);
1385 uint32 getPackedRGBColorFromPalette(byte *palette, uint32 color);
1386 void fetchBlackAndWhite(uint32 &black, uint32 &white, byte *palette,
int paletteEntries);
1387 int remapPaletteColor(
int r,
int g,
int b,
int threshold);
1388 void readPCEPalette(
const byte **ptr, byte **dest,
int numEntries);
1389 void colorPCEToRGB(uint16 color, byte *r, byte *g, byte *b);
1390 void setPCETextPalette(uint8 color);
1392 void moveMemInPalRes(
int start,
int end, byte direction);
1393 void setShadowPalette(
int slot,
int redScale,
int greenScale,
int blueScale,
int startColor,
int endColor);
1394 void setShadowPalette(
int redScale,
int greenScale,
int blueScale,
int startColor,
int endColor,
int start,
int end);
1395 virtual void darkenPalette(
int redScale,
int greenScale,
int blueScale,
int startColor,
int endColor);
1398 void markRectAsDirty(
VirtScreenNumber virt,
int left,
int right,
int top,
int bottom,
int dirtybit = 0);
1400 markRectAsDirty(virt, rect.
left, rect.
right, rect.top, rect.bottom, dirtybit);
1404 byte *_compositeBuf;
1405 byte *_hercCGAScaleBuf =
nullptr;
1406 bool _enableEGADithering =
false;
1407 bool _supportsEGADithering =
false;
1408 bool _enableSegaShadowMode =
false;
1410 virtual void drawDirtyScreenParts();
1412 void drawStripToScreen(
VirtScreen *vs,
int x,
int width,
int top,
int bottom);
1414 void mac_markScreenAsDirty(
int x,
int y,
int w,
int h);
1415 void mac_drawStripToScreen(
VirtScreen *vs,
int top,
int x,
int y,
int width,
int height);
1416 void mac_drawIndy3TextBox();
1417 void mac_undrawIndy3TextBox();
1418 void mac_undrawIndy3CreditsText();
1419 void mac_drawBufferToScreen(
const byte *buffer,
int pitch,
int x,
int y,
int width,
int height,
bool epxRectangleExpansion =
true);
1420 void mac_updateCompositeBuffer(
const byte *buffer,
int pitch,
int x,
int y,
int width,
int height);
1421 void mac_blitDoubleResImage(
const byte *buffer,
int pitch,
int x,
int y,
int width,
int height);
1422 void mac_applyDoubleResToBuffer(
const byte *inputBuffer, byte *outputBuffer,
int width,
int height,
int inputPitch,
int outputPitch);
1423 void mac_blitEPXImage(
const byte *buffer,
int pitch,
int x,
int y,
int width,
int height,
bool epxRectangleExpansion =
true);
1424 void mac_applyEPXToBuffer(
const byte *inputBuffer, byte *outputBuffer,
int width,
int height,
int inputPitch,
int outputPitch,
int xOffset,
int yOffset,
int bufferWidth,
int bufferHeight);
1425 void mac_scaleCursor(byte *&outCursor,
int &outHotspotX,
int &outHotspotY,
int &outWidth,
int &outHeight);
1426 void mac_toggleSmoothing();
1428 Common::KeyState mac_showOldStyleBannerAndPause(
const char *msg, int32 waitTime);
1430 const byte *postProcessDOSGraphics(
VirtScreen *vs,
int &pitch,
int &x,
int &y,
int &width,
int &height)
const;
1431 const byte *ditherVGAtoEGA(
int &pitch,
int &x,
int &y,
int &width,
int &height)
const;
1435 byte *getMaskBuffer(
int x,
int y,
int z);
1438 void fadeIn(
int effect);
1439 void fadeOut(
int effect);
1441 void dissolveEffectSelector();
1442 void transitionEffect(
int a);
1443 void dissolveEffect(
int width,
int height);
1444 void scrollEffect(
int dir);
1446 void updateScreenShakeEffect();
1449 double getTimerFrequency();
1450 double getAmigaMusicTimerFrequency();
1453 bool _shakeEnabled =
false;
1454 bool _shakeTempSavedState =
false;
1455 uint _shakeFrame = 0;
1456 uint32 _shakeNextTick = 0;
1457 uint32 _shakeTickCounter = 0;
1458 double _shakeTimerRate;
1459 double _timerFrequency;
1461 void setShake(
int mode);
1463 int _drawObjectQueNr = 0;
1464 byte _drawObjectQue[200];
1477 uint32 gfxUsageBits[410 * 3];
1479 void upgradeGfxUsageBits();
1480 void setGfxUsageBit(
int strip,
int bit);
1481 void clearGfxUsageBit(
int strip,
int bit);
1484 bool testGfxUsageBit(
int strip,
int bit) {
1485 assert(strip >= 0 && strip <
ARRAYSIZE(gfxUsageBits) / 3);
1486 assert(1 <= bit && bit <= 96);
1488 return (gfxUsageBits[3 * strip + bit / 32] & (1 << (bit % 32))) != 0;
1491 bool testGfxAnyUsageBits(
int strip);
1492 bool testGfxObjectUsageBits(
int strip);
1493 bool testGfxOtherUsageBits(
int strip,
int bit);
1496 byte _roomPalette[256];
1497 byte *_shadowPalette =
nullptr;
1498 bool _skipDrawObject = 0;
1500 int _soundEnabled = 0;
1503 byte _HEV7ActorPalette[256];
1504 uint8 *_hePalettes =
nullptr;
1505 uint16 _hePaletteSlot = 0;
1506 uint16 *_16BitPalette =
nullptr;
1509 byte *_verbPalette =
nullptr;
1514 int _shadowPaletteSize = 0;
1515 byte _currentPalette[3 * 256];
1516 byte _darkenPalette[3 * 256];
1517 int _paletteChangedCounter = 1;
1519 int _palDirtyMin = 0, _palDirtyMax = 0;
1521 byte _palManipStart = 0, _palManipEnd = 0;
1522 uint16 _palManipCounter = 0;
1523 byte *_palManipPalette =
nullptr;
1524 byte *_palManipIntermediatePal =
nullptr;
1526 bool _haveActorSpeechMsg =
false;
1527 bool _useTalkAnims =
false;
1528 uint16 _defaultTextSpeed = 0;
1530 bool _native_mt32 =
false;
1531 bool _copyProtection =
false;
1532 bool _shadowPalRemap =
false;
1535 uint16 _amigaFirstUsedColor = 0;
1536 byte _amigaPalette[3 * 64];
1537 void amigaPaletteFindFirstUsedColor();
1538 void mapRoomPalette(
int idx);
1539 int remapRoomPaletteColor(
int r,
int g,
int b);
1540 void mapVerbPalette(
int idx);
1541 int remapVerbPaletteColor(
int r,
int g,
int b);
1544 byte *_egaColorMap[2];
1547 uint16 _extraBoxFlags[65];
1550 byte *getBoxMatrixBaseAddr();
1551 byte *getBoxConnectionBase(
int box);
1553 int getNextBox(byte from, byte to);
1555 void setBoxFlags(
int box,
int val);
1556 void setBoxScale(
int box,
int b);
1558 bool checkXYInBoxBounds(
int box,
int x,
int y);
1560 BoxCoords getBoxCoordinates(
int boxnum);
1562 byte getMaskFromBox(
int box);
1563 Box *getBoxBaseAddr(
int box);
1564 byte getBoxFlags(
int box);
1565 int getBoxScale(
int box);
1567 int getScale(
int box,
int x,
int y);
1568 int getScaleFromSlot(
int slot,
int x,
int y);
1578 void setScaleSlot(
int slot,
int x1,
int y1,
int scale1,
int x2,
int y2,
int scale2);
1579 void setBoxScaleSlot(
int box,
int slot);
1580 void convertScaleTableToScaleSlot(
int slot);
1582 void calcItineraryMatrix(byte *itineraryMatrix,
int num);
1583 void createBoxMatrix();
1584 virtual bool areBoxesNeighbors(
int i,
int j);
1589 byte _charsetColorMap[16];
1596 int _textSurfaceMultiplier = 0;
1598 bool _useGammaCorrection =
true;
1601 MacGui *_macGui =
nullptr;
1602 bool _useMacGraphicsSmoothing =
true;
1603 byte _completeScreenBuffer[320 * 200];
1606 byte _charsetColor = 0;
1607 byte _charsetData[23][16];
1609 int _charsetBufPos = 0;
1610 byte _charsetBuffer[512];
1612 bool _keepText =
false;
1615 int _nextLeft = 0, _nextTop = 0;
1619 void restoreCharsetBg();
1620 void clearCharsetMask();
1621 void clearTextSurface();
1623 virtual void initCharset(
int charset);
1625 virtual void printString(
int m,
const byte *msg);
1627 virtual bool handleNextCharsetCode(
Actor *a,
int *c);
1628 virtual void drawSentence() {}
1629 virtual void displayDialog();
1630 int countNumberOfWaits();
1632 void drawString(
int a,
const byte *msg);
1633 virtual void fakeBidiString(byte *ltext,
bool ignoreVerb,
int ltextSize)
const;
1634 void wrapSegaCDText();
1635 void debugMessage(
const byte *msg);
1636 virtual void showMessageDialog(
const byte *msg);
1638 virtual int convertMessageToString(
const byte *msg, byte *dst,
int dstSize);
1639 int convertIntMessage(byte *dst,
int dstSize,
int var);
1640 int convertVerbMessage(byte *dst,
int dstSize,
int var);
1641 int convertNameMessage(byte *dst,
int dstSize,
int var);
1642 int convertStringMessage(byte *dst,
int dstSize,
int var);
1648 virtual void translateText(
const byte *text, byte *trans_buff,
int transBufferSize);
1650 bool reverseIfNeeded(
const byte *text, byte *reverseBuf,
int reverseBufSize)
const;
1652 Common::CodePage getDialogCodePage()
const;
1655 bool _useCJKMode =
false;
1656 bool _useMultiFont =
false;
1657 int _numLoadedFont = 0;
1658 int _2byteShadow = 0;
1659 bool _force2ByteCharHeight =
false;
1661 int _2byteHeight = 0;
1662 int _2byteWidth = 0;
1664 byte _newLineCharacter = 0;
1665 byte *get2byteCharPtr(
int idx);
1667 bool isScummvmKorTarget();
1668 bool hasLocalizer();
1671 byte *_2byteFontPtr =
nullptr;
1672 byte *_2byteMultiFontPtr[20];
1673 int _2byteMultiHeight[20];
1674 int _2byteMultiWidth[20];
1675 int _2byteMultiShadow[20];
1678 struct TranslatedLine {
1679 uint32 originalTextOffset;
1680 uint32 translatedTextOffset;
1683 struct TranslationRange {
1687 TranslationRange(uint32 left_, uint32 right_) : left(left_), right(right_) {}
1688 TranslationRange() : left(0), right(0) {}
1691 struct TranslationRoom {
1695 bool _existLanguageFile =
false;
1696 bool _isRTL =
false;
1697 byte *_languageBuffer =
nullptr;
1698 int _numTranslatedLines = 0;
1699 TranslatedLine *_translatedLines =
nullptr;
1700 uint16 *_languageLineIndex =
nullptr;
1703 const byte *searchTranslatedLine(
const byte *text,
const TranslationRange &range,
bool useIndex);
1705 virtual void createTextRenderer(GlyphRenderer_v7 *gr) {}
1710 byte VAR_KEYPRESS = 0xFF;
1711 byte VAR_SYNC = 0xFF;
1712 byte VAR_EGO = 0xFF;
1713 byte VAR_CAMERA_POS_X = 0xFF;
1714 byte VAR_HAVE_MSG = 0xFF;
1715 byte VAR_ROOM = 0xFF;
1716 byte VAR_OVERRIDE = 0xFF;
1717 byte VAR_MACHINE_SPEED = 0xFF;
1719 byte VAR_NUM_ACTOR = 0xFF;
1720 byte VAR_CURRENT_LIGHTS = 0xFF;
1721 byte VAR_CURRENTDRIVE = 0xFF;
1722 byte VAR_CURRENTDISK = 0xFF;
1723 byte VAR_TMR_1 = 0xFF;
1724 byte VAR_TMR_2 = 0xFF;
1725 byte VAR_TMR_3 = 0xFF;
1726 byte VAR_MUSIC_TIMER = 0xFF;
1727 byte VAR_ACTOR_RANGE_MIN = 0xFF;
1728 byte VAR_ACTOR_RANGE_MAX = 0xFF;
1729 byte VAR_CAMERA_MIN_X = 0xFF;
1730 byte VAR_CAMERA_MAX_X = 0xFF;
1731 byte VAR_TIMER_NEXT = 0xFF;
1732 byte VAR_VIRT_MOUSE_X = 0xFF;
1733 byte VAR_VIRT_MOUSE_Y = 0xFF;
1734 byte VAR_ROOM_RESOURCE = 0xFF;
1735 byte VAR_LAST_SOUND = 0xFF;
1736 byte VAR_CUTSCENEEXIT_KEY = 0xFF;
1737 byte VAR_OPTIONS_KEY = 0xFF;
1738 byte VAR_TALK_ACTOR = 0xFF;
1739 byte VAR_CAMERA_FAST_X = 0xFF;
1740 byte VAR_SCROLL_SCRIPT = 0xFF;
1741 byte VAR_ENTRY_SCRIPT = 0xFF;
1742 byte VAR_ENTRY_SCRIPT2 = 0xFF;
1743 byte VAR_EXIT_SCRIPT = 0xFF;
1744 byte VAR_EXIT_SCRIPT2 = 0xFF;
1745 byte VAR_VERB_SCRIPT = 0xFF;
1746 byte VAR_SENTENCE_SCRIPT = 0xFF;
1747 byte VAR_INVENTORY_SCRIPT = 0xFF;
1748 byte VAR_CUTSCENE_START_SCRIPT = 0xFF;
1749 byte VAR_CUTSCENE_END_SCRIPT = 0xFF;
1750 byte VAR_CHARINC = 0xFF;
1751 byte VAR_WALKTO_OBJ = 0xFF;
1752 byte VAR_DEBUGMODE = 0xFF;
1753 byte VAR_HEAPSPACE = 0xFF;
1754 byte VAR_RESTART_KEY = 0xFF;
1755 byte VAR_PAUSE_KEY = 0xFF;
1756 byte VAR_MOUSE_X = 0xFF;
1757 byte VAR_MOUSE_Y = 0xFF;
1758 byte VAR_TIMER = 0xFF;
1759 byte VAR_TIMER_TOTAL = 0xFF;
1760 byte VAR_SOUNDCARD = 0xFF;
1761 byte VAR_VIDEOMODE = 0xFF;
1762 byte VAR_MAINMENU_KEY = 0xFF;
1763 byte VAR_FIXEDDISK = 0xFF;
1764 byte VAR_CURSORSTATE = 0xFF;
1765 byte VAR_USERPUT = 0xFF;
1766 byte VAR_SOUNDRESULT = 0xFF;
1767 byte VAR_TALKSTOP_KEY = 0xFF;
1768 byte VAR_FADE_DELAY = 0xFF;
1769 byte VAR_NOSUBTITLES = 0xFF;
1772 byte VAR_SOUNDPARAM = 0xFF;
1773 byte VAR_SOUNDPARAM2 = 0xFF;
1774 byte VAR_SOUNDPARAM3 = 0xFF;
1775 byte VAR_INPUTMODE = 0xFF;
1776 byte VAR_MEMORY_PERFORMANCE = 0xFF;
1777 byte VAR_VIDEO_PERFORMANCE = 0xFF;
1778 byte VAR_ROOM_FLAG = 0xFF;
1779 byte VAR_GAME_LOADED = 0xFF;
1780 byte VAR_NEW_ROOM = 0xFF;
1783 byte VAR_V5_TALK_STRING_Y = 0xFF;
1786 byte VAR_ROOM_WIDTH = 0xFF;
1787 byte VAR_ROOM_HEIGHT = 0xFF;
1788 byte VAR_SUBTITLES = 0xFF;
1789 byte VAR_V6_EMSSPACE = 0xFF;
1792 byte VAR_CAMERA_POS_Y = 0xFF;
1793 byte VAR_CAMERA_MIN_Y = 0xFF;
1794 byte VAR_CAMERA_MAX_Y = 0xFF;
1795 byte VAR_CAMERA_THRESHOLD_X = 0xFF;
1796 byte VAR_CAMERA_THRESHOLD_Y = 0xFF;
1797 byte VAR_CAMERA_SPEED_X = 0xFF;
1798 byte VAR_CAMERA_SPEED_Y = 0xFF;
1799 byte VAR_CAMERA_ACCEL_X = 0xFF;
1800 byte VAR_CAMERA_ACCEL_Y = 0xFF;
1801 byte VAR_CAMERA_DEST_X = 0xFF;
1802 byte VAR_CAMERA_DEST_Y = 0xFF;
1803 byte VAR_CAMERA_FOLLOWED_ACTOR = 0xFF;
1806 byte VAR_VERSION_KEY = 0xFF;
1807 byte VAR_DEFAULT_TALK_DELAY = 0xFF;
1808 byte VAR_CUSTOMSCALETABLE = 0xFF;
1809 byte VAR_BLAST_ABOVE_TEXT = 0xFF;
1810 byte VAR_VOICE_MODE = 0xFF;
1811 byte VAR_MUSIC_BUNDLE_LOADED = 0xFF;
1812 byte VAR_VOICE_BUNDLE_LOADED = 0xFF;
1814 byte VAR_LEFTBTN_DOWN = 0xFF;
1815 byte VAR_RIGHTBTN_DOWN = 0xFF;
1816 byte VAR_LEFTBTN_HOLD = 0xFF;
1817 byte VAR_RIGHTBTN_HOLD = 0xFF;
1818 byte VAR_PRE_SAVELOAD_SCRIPT = 0xFF;
1819 byte VAR_POST_SAVELOAD_SCRIPT = 0xFF;
1820 byte VAR_SAVELOAD_PAGE = 0xFF;
1821 byte VAR_OBJECT_LABEL_FLAG = 0xFF;
1824 byte VAR_CHARSET_MASK = 0xFF;
1827 byte VAR_V6_SOUNDMODE = 0xFF;
1830 byte VAR_CHARCOUNT = 0xFF;
1831 byte VAR_VERB_ALLOWED = 0xFF;
1832 byte VAR_ACTIVE_VERB = 0xFF;
1833 byte VAR_ACTIVE_OBJECT1 = 0xFF;
1834 byte VAR_ACTIVE_OBJECT2 = 0xFF;
1837 byte VAR_ALWAYS_REDRAW_ACTORS = 0xFF;
1838 byte VAR_SKIP_RESET_TALK_ACTOR = 0xFF;
1840 byte VAR_SOUND_CHANNEL = 0xFF;
1841 byte VAR_TALK_CHANNEL = 0xFF;
1842 byte VAR_SOUND_TOKEN_OFFSET = 0xFF;
1843 byte VAR_START_DYN_SOUND_CHANNELS = 0xFF;
1844 byte VAR_SOUND_CALLBACK_SCRIPT = 0xFF;
1846 byte VAR_EARLY_TALKIE_CALLBACK = 0xFF;
1847 byte VAR_EARLY_CHAN_0_CALLBACK = 0xFF;
1848 byte VAR_EARLY_CHAN_1_CALLBACK = 0xFF;
1849 byte VAR_EARLY_CHAN_2_CALLBACK = 0xFF;
1850 byte VAR_EARLY_CHAN_3_CALLBACK = 0xFF;
1852 byte VAR_MAIN_SCRIPT = 0xFF;
1854 byte VAR_DEFAULT_SCRIPT_PRIORITY = 0xFF;
1855 byte VAR_LAST_SCRIPT_PRIORITY = 0xFF;
1857 byte VAR_QUIT_SCRIPT = 0xFF;
1858 byte VAR_ERROR_FLAG = 0xFF;
1859 byte VAR_OPERATION_FAILURE = 0xFF;
1861 byte VAR_COLOR_BLACK = 0xFF;
1864 byte VAR_NUM_GLOBAL_OBJS = 0xFF;
1866 #ifdef USE_RGB_COLOR 1868 Graphics::FontSJIS *_cjkFont =
nullptr;
1872 #ifndef DISABLE_TOWNS_DUAL_LAYER_MODE 1874 bool towns_isRectInStringBox(
int x1,
int y1,
int x2,
int y2);
1875 byte _townsPaletteFlags = 0;
1876 byte _townsCharsetColorMap[16];
1879 void towns_drawStripToScreen(
VirtScreen *vs,
int dstX,
int dstY,
int srcX,
int srcY,
int w,
int h);
1880 void towns_fillTopLayerRect(
int x1,
int y1,
int x2,
int y2,
int col);
1881 void towns_swapVirtScreenArea(
VirtScreen *vs,
int x,
int y,
int w,
int h);
1882 void towns_clearStrip(
int strip);
1883 #ifdef USE_RGB_COLOR 1884 void towns_setPaletteFromPtr(
const byte *ptr,
int numcolor = -1);
1885 void towns_setTextPaletteFromPtr(
const byte *ptr);
1887 void towns_setupPalCycleField(
int x1,
int y1,
int x2,
int y2);
1888 void towns_processPalCycleField();
1889 void towns_resetPalCycleFields();
1890 void towns_restoreCharsetBg();
1891 void towns_scriptScrollEffect(
int dir);
1893 void requestScroll(
int dir);
1894 void scrollLeft() { requestScroll(-1); }
1895 void scrollRight() { requestScroll(1); }
1896 void towns_waitForScroll(
int waitForDirection,
int threshold = 0);
1897 void towns_updateGfx();
1900 int _numCyclRects = 0;
1901 int _scrollRequest = 0;
1902 int _scrollDeltaAdjust = 0;
1903 bool _scrollNeedDeltaAdjust = 0;
1904 int _refreshDuration[20];
1905 int _refreshArrayPos = 0;
1906 bool _refreshNeedCatchUp =
false;
1907 bool _enableSmoothScrolling =
false;
1908 bool _forceFMTownsHiResMode =
false;
1909 uint32 _scrollTimer = 0;
1910 uint32 _scrollDestOffset = 0;
1911 uint16 _scrollFeedStrips[3];
1915 byte _townsOverrideShadowColor = 0;
1916 byte _textPalette[48];
1917 byte _townsClearLayerFlag = 1;
1918 byte _townsActiveLayerFlags = 3;
1919 static const uint8 _townsLayer2Mask[];
1923 void scrollLeft() { redrawBGStrip(_gdi->_numStrips - 1, 1); }
1924 void scrollRight() { redrawBGStrip(0, 1); }
1925 void towns_updateGfx() {}
1926 void towns_waitForScroll(
int waitForDirection,
int threshold = 0) {}
1927 void towns_fillTopLayerRect(
int x1,
int y1,
int x2,
int y2,
int col) {}
1928 void towns_swapVirtScreenArea(
VirtScreen *vs,
int x,
int y,
int w,
int h) {}
1929 #endif // DISABLE_TOWNS_DUAL_LAYER_MODE #define ARRAYSIZE(x)
Definition: util.h:93
Definition: macgui_impl.h:52
VirtScreenNumber
Definition: gfx.h:161
EngineFeature
Definition: engine.h:253
ErrorCode getCode() const
Definition: error.h:115
Definition: detection.h:118
Definition: macgui_v6.h:33
int16 right
Definition: rect.h:146
Definition: palette.h:170
RenderMode
Definition: rendermode.h:48
No error occurred.
Definition: error.h:48
Common::Path _containerFile
Definition: scumm.h:1055
Definition: resource.h:75
ResType
Definition: scumm.h:242
Definition: macgui_indy3.h:37
void void void void void debugC(int level, uint32 debugChannel, MSVC_PRINTF const char *s,...) GCC_PRINTF(3
Definition: serializer.h:79
Graphics::Surface _textSurface
Definition: scumm.h:1595
int FORCEINLINE GCC_PRINTF(2, 0) int vsprintf_s(T(&dst)[N]
Definition: detection.h:45
Definition: player_towns.h:32
Definition: debugger.h:33
Definition: algorithm.h:29
Definition: formatinfo.h:28
Definition: macgui_v5.h:33
int16 left
Definition: rect.h:145
Definition: serializer.h:308
Definition: charset.h:155
void NORETURN_PRE error(MSVC_PRINTF const char *s,...) GCC_PRINTF(1
Definition: localizer.h:31
Definition: base-costume.h:68
Definition: keyboard.h:294
Common::Error run() override
Definition: scumm.h:567
Common::RandomSource _rnd
Definition: scumm.h:535
Definition: macgui_loom.h:33
Definition: base-costume.h:49
Definition: detection.h:132
Language
Definition: language.h:45