2011-07-19 11:26:40 +01: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.
|
|
|
|
*
|
|
|
|
*/
|
2011-12-05 15:06:58 +00:00
|
|
|
#ifndef DREAMWEB_STUBS_H
|
|
|
|
#define DREAMWEB_STUBS_H
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void screenUpdate();
|
2011-11-20 21:26:18 +01:00
|
|
|
bool quitRequested();
|
2011-11-20 19:53:58 +01:00
|
|
|
void startup();
|
|
|
|
void startup1();
|
2011-12-01 19:43:43 +00:00
|
|
|
void switchRyanOn();
|
|
|
|
void switchRyanOff();
|
|
|
|
uint16 allocateMem(uint16 paragraphs);
|
|
|
|
void deallocateMem(uint16 segment);
|
2011-07-27 14:56:02 +02:00
|
|
|
uint8 *workspace();
|
2011-11-18 06:30:12 +01:00
|
|
|
uint8 *textUnder();
|
2011-12-01 19:43:43 +00:00
|
|
|
void allocateWork();
|
|
|
|
void clearWork();
|
|
|
|
void standardLoad();
|
2011-12-04 17:53:55 +01:00
|
|
|
uint16 standardLoad(const char *fileName, uint16 *outSizeInBytes = NULL); // Returns a segment handle which needs to be freed with deallocatemem for symmetry
|
2011-12-04 18:29:34 +01:00
|
|
|
void *standardLoadCPP(const char *fileName, uint16 *outSizeInBytes = NULL); // And this one should be 'free'd
|
2011-12-01 19:43:43 +00:00
|
|
|
void loadIntoTemp();
|
|
|
|
void loadIntoTemp(const char *fileName);
|
|
|
|
void loadIntoTemp2(const char *fileName);
|
|
|
|
void loadIntoTemp3(const char *fileName);
|
|
|
|
void loadTempCharset();
|
|
|
|
void loadTempCharset(const char *fileName);
|
|
|
|
void saveLoad();
|
|
|
|
void printCurs();
|
|
|
|
void delCurs();
|
2011-12-04 19:00:04 +01:00
|
|
|
void delChar();
|
2011-12-01 19:43:43 +00:00
|
|
|
void hangOnCurs(uint16 frameCount);
|
|
|
|
void hangOnCurs();
|
|
|
|
void multiDump();
|
|
|
|
void multiDump(uint16 x, uint16 y, uint8 width, uint8 height);
|
|
|
|
void frameOutV(uint8 *dst, const uint8 *src, uint16 pitch, uint16 width, uint16 height, int16 x, int16 y);
|
|
|
|
void frameOutNm(uint8 *dst, const uint8 *src, uint16 pitch, uint16 width, uint16 height, uint16 x, uint16 y);
|
|
|
|
void frameOutBh(uint8 *dst, const uint8 *src, uint16 pitch, uint16 width, uint16 height, uint16 x, uint16 y);
|
|
|
|
void frameOutFx(uint8 *dst, const uint8 *src, uint16 pitch, uint16 width, uint16 height, uint16 x, uint16 y);
|
|
|
|
void workToScreen();
|
2011-11-18 14:58:23 +01:00
|
|
|
void workToScreenCPP();
|
2011-12-04 19:48:51 +01:00
|
|
|
uint8 *mapStore();
|
2011-12-01 19:43:43 +00:00
|
|
|
void multiGet();
|
|
|
|
void multiGet(uint8 *dst, uint16 x, uint16 y, uint8 width, uint8 height);
|
2011-06-26 15:10:18 +02:00
|
|
|
void cls();
|
2011-12-01 19:43:43 +00:00
|
|
|
void printSprites();
|
|
|
|
void quickQuit();
|
|
|
|
void readOneBlock();
|
2011-12-04 20:03:16 +01:00
|
|
|
void readCityPic();
|
2011-12-04 20:18:08 +01:00
|
|
|
void readDestIcon();
|
2011-12-01 19:43:43 +00:00
|
|
|
void printUnderMon();
|
|
|
|
void seeCommandTail();
|
|
|
|
void randomNumber();
|
|
|
|
void quickQuit2();
|
|
|
|
uint8 getNextWord(const Frame *charSet, const uint8 *string, uint8 *totalWidth, uint8 *charCount);
|
|
|
|
void printBoth(const Frame* charSet, uint16 *x, uint16 y, uint8 c, uint8 nextChar);
|
|
|
|
void printChar();
|
|
|
|
void printChar(const Frame* charSet, uint16 *x, uint16 y, uint8 c, uint8 nextChar, uint8 *width, uint8 *height);
|
|
|
|
void printChar(const Frame* charSet, uint16 x, uint16 y, uint8 c, uint8 nextChar, uint8 *width, uint8 *height);
|
|
|
|
void printDirect();
|
|
|
|
uint8 printDirect(const uint8** string, uint16 x, uint16 *y, uint8 maxWidth, bool centered);
|
|
|
|
uint8 printDirect(const uint8* string, uint16 x, uint16 y, uint8 maxWidth, bool centered);
|
|
|
|
void printMessage(uint16 x, uint16 y, uint8 index, uint8 maxWidth, bool centered);
|
|
|
|
void printMessage();
|
|
|
|
void useTimedText();
|
|
|
|
void dumpTimedText();
|
|
|
|
void setupTimedTemp(uint8 textIndex, uint8 voiceIndex, uint8 x, uint8 y, uint16 countToTimed, uint16 timeCount);
|
|
|
|
void getUnderTimed();
|
|
|
|
void putUnderTimed();
|
|
|
|
uint8 printSlow(const uint8 *string, uint16 x, uint16 y, uint8 maxWidth, bool centered);
|
|
|
|
void printSlow();
|
|
|
|
void dumpTextLine();
|
|
|
|
uint8 getNumber(const Frame *charSet, const uint8 *string, uint16 maxWidth, bool centered, uint16 *offset);
|
|
|
|
uint8 kernChars(uint8 firstChar, uint8 secondChar, uint8 width);
|
|
|
|
void oldToNames();
|
|
|
|
void namesToOld();
|
|
|
|
void loadPalFromIFF();
|
|
|
|
void fillSpace();
|
2011-12-03 14:54:00 +01:00
|
|
|
void startLoading(const Room &room);
|
2011-12-01 19:43:43 +00:00
|
|
|
Sprite *spriteTable();
|
|
|
|
void showFrame();
|
|
|
|
void showFrame(const Frame *frameData, uint16 x, uint16 y, uint16 frameNumber, uint8 effectsFlag, uint8 *width, uint8 *height);
|
|
|
|
void showFrame(const Frame *frameData, uint16 x, uint16 y, uint16 frameNumber, uint8 effectsFlag);
|
|
|
|
void printASprite(const Sprite *sprite);
|
2011-06-26 15:10:18 +02:00
|
|
|
void width160();
|
2011-12-01 19:43:43 +00:00
|
|
|
void multiPut(const uint8 *src, uint16 x, uint16 y, uint8 width, uint8 height);
|
|
|
|
void multiPut();
|
|
|
|
void eraseOldObs();
|
|
|
|
void clearSprites();
|
|
|
|
Sprite *makeSprite(uint8 x, uint8 y, uint16 updateCallback, uint16 frameData, uint16 somethingInDi);
|
|
|
|
void spriteUpdate();
|
|
|
|
void initMan();
|
|
|
|
void mainMan(Sprite *sprite);
|
2011-12-03 17:47:38 +01:00
|
|
|
void mainMan();
|
2011-12-01 19:43:43 +00:00
|
|
|
void faceRightWay();
|
2011-07-25 23:54:54 +02:00
|
|
|
void walking(Sprite *sprite);
|
2011-12-01 19:43:43 +00:00
|
|
|
void autoSetWalk();
|
|
|
|
void checkDest(const RoomPaths *roomsPaths);
|
|
|
|
void aboutTurn(Sprite *sprite);
|
|
|
|
void backObject(Sprite *sprite);
|
2011-12-03 17:47:38 +01:00
|
|
|
void backObject();
|
2011-08-23 14:41:28 +02:00
|
|
|
void constant(Sprite *sprite, SetObject *objData);
|
|
|
|
void steady(Sprite *sprite, SetObject *objData);
|
2011-12-04 15:08:17 +01:00
|
|
|
void randomSprite(Sprite *sprite, SetObject *objData);
|
2011-12-01 19:43:43 +00:00
|
|
|
void doDoor(Sprite *sprite, SetObject *objData, Common::Rect check);
|
2011-08-23 14:41:28 +02:00
|
|
|
void doorway(Sprite *sprite, SetObject *objData);
|
2011-12-01 19:43:43 +00:00
|
|
|
void wideDoor(Sprite *sprite, SetObject *objData);
|
|
|
|
void lockedDoorway(Sprite *sprite, SetObject *objData);
|
|
|
|
void liftSprite(Sprite *sprite, SetObject *objData);
|
|
|
|
Frame *findSource();
|
|
|
|
void showGameReel();
|
|
|
|
void showGameReel(ReelRoutine *routine);
|
|
|
|
void showReelFrame(Reel *reel);
|
|
|
|
const Frame *getReelFrameAX(uint16 frame);
|
|
|
|
void turnPathOn(uint8 param);
|
|
|
|
void turnPathOff(uint8 param);
|
|
|
|
void turnPathOn();
|
|
|
|
void turnPathOff();
|
|
|
|
void turnAnyPathOn(uint8 param, uint8 room);
|
|
|
|
void turnAnyPathOff(uint8 param, uint8 room);
|
|
|
|
void turnAnyPathOn();
|
|
|
|
void turnAnyPathOff();
|
|
|
|
RoomPaths *getRoomsPaths();
|
|
|
|
void makeBackOb(SetObject *objData);
|
|
|
|
void modifyChar();
|
|
|
|
void lockMon();
|
|
|
|
void cancelCh0();
|
|
|
|
void cancelCh1();
|
|
|
|
void plotReel();
|
|
|
|
Reel *getReelStart();
|
|
|
|
void dealWithSpecial(uint8 firstParam, uint8 secondParam);
|
2011-08-03 12:24:06 +02:00
|
|
|
void zoom();
|
2011-08-03 13:54:03 +02:00
|
|
|
void crosshair();
|
2011-12-01 19:43:43 +00:00
|
|
|
void showRain();
|
|
|
|
void delTextLine();
|
|
|
|
void commandOnly();
|
|
|
|
void commandOnly(uint8 command);
|
|
|
|
void doBlocks();
|
|
|
|
void checkIfPerson();
|
|
|
|
bool checkIfPerson(uint8 x, uint8 y);
|
|
|
|
void checkIfFree();
|
|
|
|
bool checkIfFree(uint8 x, uint8 y);
|
|
|
|
void checkIfEx();
|
|
|
|
bool checkIfEx(uint8 x, uint8 y);
|
|
|
|
const uint8 *findObName(uint8 type, uint8 index);
|
|
|
|
void copyName();
|
|
|
|
void copyName(uint8 type, uint8 index, uint8 *dst);
|
|
|
|
void commandWithOb();
|
|
|
|
void commandWithOb(uint8 command, uint8 type, uint8 index);
|
|
|
|
void showPanel();
|
|
|
|
void updatePeople();
|
2011-12-03 18:53:20 +01:00
|
|
|
void madman(ReelRoutine &routine);
|
2011-12-01 19:43:43 +00:00
|
|
|
void madmanText();
|
|
|
|
void madMode();
|
|
|
|
void moveMap(uint8 param);
|
|
|
|
bool addAlong(const uint8 *mapFlags);
|
|
|
|
bool addLength(const uint8 *mapFlags);
|
|
|
|
void getDimension();
|
|
|
|
void getDimension(uint8 *mapXstart, uint8 *mapYstart, uint8 *mapXsize, uint8 *mapYsize);
|
|
|
|
void getMapAd();
|
|
|
|
void calcMapAd();
|
|
|
|
uint8 getMapAd(const uint8 *setData);
|
|
|
|
uint8 getXAd(const uint8 *setData, uint8 *result);
|
|
|
|
uint8 getYAd(const uint8 *setData, uint8 *result);
|
|
|
|
void calcFrFrame();
|
|
|
|
void calcFrFrame(uint8* width, uint8* height);
|
|
|
|
void finalFrame();
|
|
|
|
void finalFrame(uint16 *x, uint16 *y);
|
|
|
|
void showAllObs();
|
|
|
|
void blockNameText();
|
|
|
|
void walkToText();
|
|
|
|
void personNameText();
|
|
|
|
void findXYFromPath();
|
|
|
|
void findOrMake();
|
|
|
|
void findOrMake(uint8 index, uint8 value, uint8 type);
|
|
|
|
DynObject *getFreeAd(uint8 index);
|
|
|
|
DynObject *getExAd(uint8 index);
|
|
|
|
DynObject *getEitherAdCPP();
|
|
|
|
SetObject *getSetAd(uint8 index);
|
|
|
|
void *getAnyAd(uint8 *value1, uint8 *value2);
|
|
|
|
void *getAnyAdDir(uint8 index, uint8 flag);
|
|
|
|
void setAllChanges();
|
|
|
|
void doChange(uint8 index, uint8 value, uint8 type);
|
|
|
|
void deleteTaken();
|
2011-08-16 03:15:43 +02:00
|
|
|
bool isCD();
|
2011-12-01 19:43:43 +00:00
|
|
|
void placeSetObject();
|
|
|
|
void placeSetObject(uint8 index);
|
|
|
|
void removeSetObject();
|
|
|
|
void removeSetObject(uint8 index);
|
|
|
|
void showAllFree();
|
|
|
|
void showAllEx();
|
|
|
|
bool finishedWalkingCPP();
|
|
|
|
void finishedWalking();
|
|
|
|
void checkOne();
|
|
|
|
void checkOne(uint8 x, uint8 y, uint8 *flag, uint8 *flagEx, uint8 *type, uint8 *flagX, uint8 *flagY);
|
|
|
|
void getFlagUnderP();
|
|
|
|
void getFlagUnderP(uint8 *flag, uint8 *flagEx);
|
|
|
|
void walkAndExamine();
|
|
|
|
void obName();
|
|
|
|
void obName(uint8 command, uint8 commandType);
|
|
|
|
void delPointer();
|
|
|
|
void showBlink();
|
|
|
|
void dumpBlink();
|
|
|
|
void dumpPointer();
|
|
|
|
void showPointer();
|
|
|
|
void animPointer();
|
|
|
|
void checkCoords();
|
|
|
|
void checkCoords(const RectWithCallback *rectWithCallbacks);
|
|
|
|
void readMouse();
|
2011-11-20 19:54:19 +01:00
|
|
|
uint16 readMouseState();
|
2011-12-01 19:43:43 +00:00
|
|
|
uint16 waitFrames();
|
|
|
|
void drawFlags();
|
|
|
|
void addToPeopleList();
|
|
|
|
void addToPeopleList(ReelRoutine *routine);
|
|
|
|
void getExPos();
|
|
|
|
void panelToMap();
|
|
|
|
void mapToPanel();
|
|
|
|
void dumpMap();
|
|
|
|
void obPicture();
|
|
|
|
void transferInv();
|
|
|
|
void obIcons();
|
2011-09-01 00:06:30 +02:00
|
|
|
void compare();
|
|
|
|
bool compare(uint8 index, uint8 flag, const char id[4]);
|
2011-12-01 19:43:43 +00:00
|
|
|
bool pixelCheckSet(const ObjPos *pos, uint8 x, uint8 y);
|
|
|
|
bool isItDescribed(const ObjPos *objPos);
|
|
|
|
void checkIfSet();
|
|
|
|
bool checkIfSet(uint8 x, uint8 y);
|
|
|
|
void checkIfPathIsOn();
|
|
|
|
bool checkIfPathIsOn(uint8 index);
|
|
|
|
void isItWorn();
|
|
|
|
bool isItWorn(const DynObject *object);
|
|
|
|
void wornError();
|
|
|
|
void makeWorn();
|
|
|
|
void makeWorn(DynObject *object);
|
|
|
|
void obToInv();
|
|
|
|
void obToInv(uint8 index, uint8 flag, uint16 x, uint16 y);
|
|
|
|
void showRyanPage();
|
|
|
|
void findAllRyan();
|
|
|
|
void findAllRyan(uint8 *inv);
|
|
|
|
void fillRyan();
|
|
|
|
void useRoutine();
|
|
|
|
void hangOn();
|
|
|
|
void hangOn(uint16 frameCount);
|
|
|
|
void hangOnW();
|
|
|
|
void hangOnW(uint16 frameCount);
|
|
|
|
void hangOnP();
|
|
|
|
void hangOnP(uint16 count);
|
|
|
|
void showIcon();
|
|
|
|
uint8 findNextColon(uint8 **string);
|
|
|
|
void findNextColon();
|
|
|
|
uint8 *getObTextStartCPP();
|
|
|
|
void useText(const uint8 *string);
|
|
|
|
void useText();
|
|
|
|
void getBlockOfPixel();
|
|
|
|
uint8 getBlockOfPixel(uint8 x, uint8 y);
|
2011-09-18 15:33:24 +02:00
|
|
|
void bresenhams();
|
2011-12-01 19:43:43 +00:00
|
|
|
void examineObText();
|
|
|
|
void sortOutMap();
|
|
|
|
void showCity();
|
|
|
|
uint16 getPersFrame(uint8 index);
|
|
|
|
void convIcons();
|
|
|
|
void examineOb(bool examineAgain = true);
|
|
|
|
void showWatch();
|
|
|
|
void dumpWatch();
|
|
|
|
void showTime();
|
|
|
|
void roomName();
|
|
|
|
void transferText();
|
|
|
|
void initRain();
|
|
|
|
Rain *splitIntoLines(uint8 x, uint8 y, Rain *rain);
|
2011-11-16 13:26:15 +01:00
|
|
|
uint8 *mainPalette();
|
|
|
|
uint8 *startPalette();
|
|
|
|
uint8 *endPalette();
|
2011-12-01 19:43:43 +00:00
|
|
|
void clearStartPal();
|
|
|
|
void clearEndPal();
|
|
|
|
void palToStartPal();
|
|
|
|
void endPalToStart();
|
|
|
|
void startPalToEnd();
|
|
|
|
void palToEndPal();
|
|
|
|
void fadeCalculation();
|
|
|
|
void watchCount();
|
|
|
|
void zoomIcon();
|
|
|
|
void loadRoom();
|
|
|
|
void getUnderMenu();
|
|
|
|
void putUnderMenu();
|
|
|
|
void textForMonk();
|
2011-12-06 12:35:47 +02:00
|
|
|
void textForMonkHelper(uint8 textIndex, uint8 voiceIndex, uint8 x, uint8 y, uint16 countToTimed, uint16 timeCount);
|
2011-12-01 19:43:43 +00:00
|
|
|
void textForEnd();
|
2011-12-06 12:35:47 +02:00
|
|
|
void monks2text();
|
|
|
|
void intro1Text();
|
|
|
|
void intro2Text();
|
|
|
|
void intro3Text();
|
2011-12-01 19:43:43 +00:00
|
|
|
void readSetData();
|
|
|
|
void loadRoomsSample();
|
|
|
|
void fadeupYellows();
|
|
|
|
void fadeupMonFirst();
|
|
|
|
void printLogo();
|
2011-12-03 15:44:29 +01:00
|
|
|
void loadMenu();
|
2011-12-03 15:46:43 +01:00
|
|
|
void showMenu();
|
2011-12-03 15:57:47 +01:00
|
|
|
void dumpMenu();
|
2011-12-03 15:31:29 +01:00
|
|
|
void useMenu();
|
2011-12-01 19:43:43 +00:00
|
|
|
void useMon();
|
|
|
|
void scrollMonitor();
|
|
|
|
void showCurrentFile();
|
2011-11-18 07:48:07 +01:00
|
|
|
void input();
|
2011-12-01 19:43:43 +00:00
|
|
|
void monPrint();
|
|
|
|
const char *monPrint(const char *string);
|
2011-11-20 14:06:48 +01:00
|
|
|
Frame *tempGraphics();
|
|
|
|
Frame *tempGraphics2();
|
|
|
|
Frame *tempGraphics3();
|
2011-12-01 19:43:43 +00:00
|
|
|
void accessLightOn();
|
|
|
|
void accessLightOff();
|
|
|
|
void randomAccess(uint16 count);
|
|
|
|
void randomAccess();
|
|
|
|
void monMessage(uint8 index);
|
|
|
|
void monMessage();
|
|
|
|
void netError();
|
|
|
|
void turnOnPower();
|
|
|
|
void powerLightOn();
|
|
|
|
void powerLightOff();
|
|
|
|
void playChannel0();
|
|
|
|
void playChannel0(uint8 index, uint8 repeat);
|
|
|
|
void playChannel1();
|
|
|
|
void playChannel1(uint8 index);
|
|
|
|
void showMainOps();
|
|
|
|
void showDiscOps();
|
|
|
|
void createPanel();
|
|
|
|
void createPanel2();
|
|
|
|
void findRoomInLoc();
|
|
|
|
void reelsOnScreen();
|
2011-11-23 10:23:18 +01:00
|
|
|
void reconstruct();
|
2011-11-23 15:49:49 +01:00
|
|
|
void look();
|
2011-12-01 19:43:43 +00:00
|
|
|
void autoLook();
|
|
|
|
void doLook();
|
|
|
|
void useTempCharset();
|
|
|
|
void useCharset1();
|
|
|
|
void getBackFromOb();
|
2011-12-04 17:37:22 +01:00
|
|
|
void getRidOfAll();
|
2011-12-03 18:41:20 +01:00
|
|
|
void getRidOfTemp();
|
|
|
|
void getRidOfTempText();
|
|
|
|
void getRidOfTemp2();
|
|
|
|
void getRidOfTemp3();
|
|
|
|
void getRidOfTempCharset();
|
|
|
|
void getRidOfTempsP();
|
2011-12-01 19:43:43 +00:00
|
|
|
void showFirstUse();
|
|
|
|
void showSecondUse();
|
|
|
|
void actualSave();
|
|
|
|
void actualLoad();
|
|
|
|
void loadPosition(unsigned int slot);
|
|
|
|
void savePosition(unsigned int slot, const uint8 *descbuf);
|
|
|
|
void openForSave(unsigned int slot);
|
2011-12-03 15:18:45 +01:00
|
|
|
bool openForLoad(unsigned int slot);
|
2011-11-26 20:36:56 +01:00
|
|
|
uint16 allocateAndLoad(unsigned int size);
|
|
|
|
void clearAndLoad(uint16 seg, uint8 c, unsigned int size, unsigned int maxSize);
|
2011-12-03 14:54:00 +01:00
|
|
|
void loadRoomData(const Room &room, bool skipDat);
|
2011-12-01 19:43:43 +00:00
|
|
|
void restoreAll();
|
|
|
|
void restoreReels();
|
2011-12-03 20:10:15 +01:00
|
|
|
void enterSymbol();
|
2011-12-01 19:43:43 +00:00
|
|
|
void viewFolder();
|
2011-12-05 22:40:25 +02:00
|
|
|
void edensCDPlayer();
|
|
|
|
void hotelBell();
|
|
|
|
void playGuitar();
|
DREAMWEB: 'calledensdlift', 'calledenslift', 'sitdowninbar', 'trapdoor', 'usebalcony', 'usechurchhole', 'usecoveredbox', 'useelevator2', 'useelevator5', 'usedryer', 'userailing', 'usewindow', 'wearwatch', 'wearshades' ported to C++
2011-12-06 03:20:30 +02:00
|
|
|
void callEdensDLift();
|
|
|
|
void callEdensLift();
|
|
|
|
void sitDownInBar();
|
|
|
|
void trapDoor();
|
|
|
|
void useBalcony();
|
|
|
|
void useChurchHole();
|
|
|
|
void useCoveredBox();
|
2011-12-05 22:40:25 +02:00
|
|
|
void useElevator1();
|
DREAMWEB: 'calledensdlift', 'calledenslift', 'sitdowninbar', 'trapdoor', 'usebalcony', 'usechurchhole', 'usecoveredbox', 'useelevator2', 'useelevator5', 'usedryer', 'userailing', 'usewindow', 'wearwatch', 'wearshades' ported to C++
2011-12-06 03:20:30 +02:00
|
|
|
void useElevator2();
|
2011-12-05 22:40:25 +02:00
|
|
|
void useElevator3();
|
|
|
|
void useElevator4();
|
DREAMWEB: 'calledensdlift', 'calledenslift', 'sitdowninbar', 'trapdoor', 'usebalcony', 'usechurchhole', 'usecoveredbox', 'useelevator2', 'useelevator5', 'usedryer', 'userailing', 'usewindow', 'wearwatch', 'wearshades' ported to C++
2011-12-06 03:20:30 +02:00
|
|
|
void useElevator5();
|
|
|
|
void useDryer();
|
|
|
|
void useRailing();
|
|
|
|
void useWindow();
|
2011-12-05 22:40:25 +02:00
|
|
|
void useHatch();
|
|
|
|
void wheelSound();
|
2011-12-06 01:16:38 +02:00
|
|
|
void callHotelLift();
|
|
|
|
void useShield();
|
2011-12-06 04:54:59 +02:00
|
|
|
void useWall();
|
2011-12-06 13:17:28 +02:00
|
|
|
void useChurchGate();
|
|
|
|
void useFullCart();
|
2011-12-06 14:13:54 +02:00
|
|
|
void useClearBox();
|
|
|
|
void openTVDoor();
|
DREAMWEB: 'calledensdlift', 'calledenslift', 'sitdowninbar', 'trapdoor', 'usebalcony', 'usechurchhole', 'usecoveredbox', 'useelevator2', 'useelevator5', 'usedryer', 'userailing', 'usewindow', 'wearwatch', 'wearshades' ported to C++
2011-12-06 03:20:30 +02:00
|
|
|
void wearWatch();
|
|
|
|
void wearShades();
|
2011-11-29 10:27:02 +01:00
|
|
|
void checkFolderCoords();
|
2011-12-01 19:43:43 +00:00
|
|
|
void loadFolder();
|
|
|
|
void showFolder();
|
|
|
|
void showLeftPage();
|
|
|
|
void showRightPage();
|
|
|
|
void nextFolder();
|
|
|
|
void lastFolder();
|
|
|
|
void folderHints();
|
|
|
|
void folderExit();
|
|
|
|
uint8 getLocation(uint8 index);
|
|
|
|
void getLocation();
|
|
|
|
void setLocation(uint8 index);
|
|
|
|
void setLocation();
|
2011-11-28 18:28:09 +01:00
|
|
|
const uint8 *getTextInFile1(uint16 index);
|
2011-12-01 19:43:43 +00:00
|
|
|
void loadTempText();
|
|
|
|
void loadTempText(const char *fileName);
|
|
|
|
void loadTravelText();
|
|
|
|
void drawFloor();
|
|
|
|
void allocateBuffers();
|
|
|
|
void workToScreenM();
|
2011-12-04 14:48:29 +01:00
|
|
|
bool checkSpeed(ReelRoutine &routine);
|
2011-12-01 19:43:43 +00:00
|
|
|
void checkSpeed();
|
|
|
|
void sparkyDrip(ReelRoutine &routine);
|
2011-12-05 21:50:57 +02:00
|
|
|
void genericPerson(ReelRoutine &routine);
|
2011-12-01 14:55:38 +01:00
|
|
|
void gamer(ReelRoutine &routine);
|
2011-12-01 15:55:50 +01:00
|
|
|
void eden(ReelRoutine &routine);
|
2011-12-01 16:21:16 +01:00
|
|
|
void sparky(ReelRoutine &routine);
|
2011-12-03 17:31:29 +01:00
|
|
|
void rockstar(ReelRoutine &routine);
|
2011-12-03 20:01:51 +01:00
|
|
|
void madmansTelly(ReelRoutine &routine);
|
2011-12-04 14:22:13 +01:00
|
|
|
void smokeBloke(ReelRoutine &routine);
|
2011-12-04 14:45:07 +01:00
|
|
|
void manAsleep(ReelRoutine &routine);
|
2011-12-04 15:44:03 +01:00
|
|
|
void drunk(ReelRoutine &routine);
|
2011-12-06 00:31:38 +01:00
|
|
|
void introMagic1(ReelRoutine &routine);
|
2011-12-06 00:51:10 +01:00
|
|
|
void introMusic(ReelRoutine &routine);
|
2011-12-06 00:54:50 +01:00
|
|
|
void candles(ReelRoutine &routine);
|
2011-12-06 01:38:40 +01:00
|
|
|
void gates(ReelRoutine &routine);
|
2011-12-04 15:50:12 +01:00
|
|
|
void security(ReelRoutine &routine);
|
2011-12-05 23:51:36 +02:00
|
|
|
void edenInBath(ReelRoutine &routine);
|
|
|
|
void louis(ReelRoutine &routine);
|
2011-12-06 00:06:04 +02:00
|
|
|
void handClap(ReelRoutine &routine);
|
2011-12-06 01:16:38 +02:00
|
|
|
void carParkDrip(ReelRoutine &routine);
|
2011-12-06 02:34:01 +02:00
|
|
|
void foghornSound(ReelRoutine &routine);
|
2011-12-06 15:58:20 +02:00
|
|
|
void train(ReelRoutine &routine);
|
2011-12-02 12:07:53 +01:00
|
|
|
void singleKey(uint8 key, uint16 x, uint16 y);
|
2011-12-05 00:45:42 +01:00
|
|
|
void loadSaveBox();
|
2011-12-04 23:58:53 +01:00
|
|
|
void loadKeypad();
|
2011-12-02 12:42:03 +01:00
|
|
|
void showKeypad();
|
2011-12-03 15:22:11 +01:00
|
|
|
void showOuterPad();
|
2011-12-05 01:17:21 +01:00
|
|
|
uint8 nextSymbol(uint8 symbol);
|
2011-12-05 00:50:51 +01:00
|
|
|
void showSymbol();
|
2011-12-04 16:31:11 +01:00
|
|
|
void showExit();
|
2011-12-04 16:40:03 +01:00
|
|
|
void showMan();
|
2011-12-04 16:47:43 +01:00
|
|
|
void panelIcons1();
|
2011-12-04 17:04:51 +01:00
|
|
|
void examIcon();
|
2011-12-02 16:05:44 +01:00
|
|
|
void buttonOne();
|
|
|
|
void buttonTwo();
|
|
|
|
void buttonThree();
|
|
|
|
void buttonFour();
|
|
|
|
void buttonFive();
|
|
|
|
void buttonSix();
|
|
|
|
void buttonSeven();
|
|
|
|
void buttonEight();
|
|
|
|
void buttonNine();
|
|
|
|
void buttonNought();
|
|
|
|
void buttonEnter();
|
2011-12-02 16:50:58 +01:00
|
|
|
void buttonPress(uint8 buttonId);
|
2011-12-02 18:18:31 +01:00
|
|
|
void addToPressList();
|
2011-12-02 18:05:10 +01:00
|
|
|
bool isItRight(uint8 digit0, uint8 digit1, uint8 digit2, uint8 digit3);
|
2011-12-02 17:49:55 +01:00
|
|
|
void enterCode(uint8 digit0, uint8 digit1, uint8 digit2, uint8 digit3);
|
2011-12-03 15:18:45 +01:00
|
|
|
unsigned int scanForNames();
|
2011-12-03 16:54:39 +01:00
|
|
|
void doLoad(int slot);
|
2011-12-03 16:46:44 +01:00
|
|
|
void loadOld();
|
2011-12-03 17:47:38 +01:00
|
|
|
void inventory();
|
|
|
|
void mainScreen();
|
|
|
|
void loadGame();
|
|
|
|
void saveGame();
|
|
|
|
void zoomOnOff();
|
2011-12-03 18:46:03 +01:00
|
|
|
void doShake();
|
2011-12-03 19:50:25 +01:00
|
|
|
void atmospheres();
|
2011-12-03 20:47:12 +01:00
|
|
|
void loadPersonal();
|
|
|
|
void loadNews();
|
|
|
|
void loadCart();
|
2011-12-03 21:43:32 +01:00
|
|
|
void soundOnReels();
|
2011-12-04 10:11:28 +01:00
|
|
|
void readKey();
|
2011-12-05 13:07:47 +00:00
|
|
|
void hangOne(uint16 delay);
|
|
|
|
void hangOne();
|
2011-12-05 19:26:08 +01:00
|
|
|
void showPCX(const Common::String &name);
|
2011-12-05 15:06:58 +00:00
|
|
|
void showPCX();
|
2011-12-05 16:02:46 +00:00
|
|
|
void bibleQuote();
|
2011-12-05 17:16:43 +00:00
|
|
|
void realCredits();
|
2011-12-05 18:50:34 +00:00
|
|
|
void intro();
|
2011-12-05 21:38:31 +00:00
|
|
|
Common::String getFilename(Context &context);
|
2011-12-06 00:22:46 +02:00
|
|
|
void fadeScreenUp();
|
|
|
|
void fadeScreenUps();
|
|
|
|
void fadeScreenUpHalf();
|
|
|
|
void fadeScreenDown();
|
|
|
|
void fadeScreenDowns();
|
2011-12-06 00:46:06 +02:00
|
|
|
void clearBeforeLoad();
|
|
|
|
void clearReels();
|
|
|
|
void getRidOfReels();
|
2011-12-06 00:03:32 +00:00
|
|
|
void setMode();
|
2011-12-06 02:34:01 +02:00
|
|
|
void liftNoise(uint8 index);
|
2011-12-06 03:34:36 +02:00
|
|
|
void setTopLeft();
|
|
|
|
void setTopRight();
|
|
|
|
void setBotLeft();
|
|
|
|
void setBotRight();
|
2011-12-06 03:49:32 +02:00
|
|
|
void newGame();
|
|
|
|
void getBackFromOps();
|
|
|
|
void getBackToOps();
|
2011-12-06 03:59:45 +02:00
|
|
|
void pickupOb(uint8 command, uint8 pos);
|
|
|
|
void initialInv();
|
2011-12-06 04:19:57 +02:00
|
|
|
void walkIntoRoom();
|
|
|
|
void loadIntroRoom();
|
|
|
|
void afterIntroRoom();
|
|
|
|
void gettingShot();
|
|
|
|
void redrawMainScrn();
|
|
|
|
void selectSlot2();
|
2011-12-06 04:33:36 +02:00
|
|
|
void blank();
|
|
|
|
void allPointer();
|
2011-12-06 04:44:54 +02:00
|
|
|
void openYourNeighbour();
|
|
|
|
void openRyan();
|
|
|
|
void openPoolBoss();
|
|
|
|
void openEden();
|
|
|
|
void openSarters();
|
|
|
|
void openLouis();
|
2011-12-06 04:55:59 +02:00
|
|
|
void DOSReturn();
|
2011-12-06 05:25:39 +02:00
|
|
|
void setWalk();
|
2011-12-06 05:45:36 +02:00
|
|
|
void useLadder();
|
|
|
|
void useLadderB();
|
|
|
|
void sLabDoorA();
|
|
|
|
void sLabDoorC();
|
|
|
|
void sLabDoorE();
|
|
|
|
void sLabDoorD();
|
|
|
|
void sLabDoorF();
|
2011-12-06 12:59:18 +02:00
|
|
|
void obsThatDoThings();
|
|
|
|
void makeMainScreen();
|
|
|
|
void openInv();
|
2011-12-06 15:58:20 +02:00
|
|
|
void delEverything();
|
|
|
|
void clearPalette();
|
|
|
|
void errorMessage1();
|
|
|
|
void errorMessage2();
|
|
|
|
void errorMessage3();
|
2011-09-18 15:33:24 +02:00
|
|
|
|
2011-12-05 15:06:58 +00:00
|
|
|
#endif
|