22 #ifndef PRINCE_PRINCE_H 23 #define PRINCE_PRINCE_H 25 #include "common/random.h" 26 #include "common/system.h" 27 #include "common/debug.h" 28 #include "common/debug-channels.h" 29 #include "common/textconsole.h" 30 #include "common/rect.h" 31 #include "common/events.h" 32 #include "common/endian.h" 33 #include "common/savefile.h" 34 #include "common/serializer.h" 38 #include "gui/debugger.h" 40 #include "engines/engine.h" 41 #include "engines/util.h" 43 #include "audio/mixer.h" 45 #include "video/flic_decoder.h" 47 #include "prince/mob.h" 48 #include "prince/object.h" 49 #include "prince/pscr.h" 50 #include "prince/detection.h" 54 struct SavegameHeader;
60 class InterpreterFlags;
76 int16 saveYear, saveMonth, saveDay;
77 int16 saveHour, saveMinutes;
81 #define kSavegameStrSize 14 82 #define kSavegameStr "SCUMMVM_PRINCE" 127 const int kStructSizeBAS = 28;
136 const int kStructSizeBASA = 8;
159 int32 _currShadowFrame;
160 int16 _packShadowFlag;
174 int16 getAnimData(Anim::AnimOffsets offset) {
183 error(
"getAnimData() - Wrong offset type: %d", (
int)offset);
187 void setAnimData(Anim::AnimOffsets offset, int16 value) {
188 if (offset == kAnimX) {
191 error(
"setAnimData() - Wrong offset: %d, value: %d", (
int)offset, value);
202 kBackgroundAnimation,
221 return READ_LE_UINT16(_data);
225 return READ_LE_UINT16(_data + 2);
228 int16 getWidth()
const {
229 return READ_LE_UINT16(_data + 4);
232 int16 getHeight()
const {
233 return READ_LE_UINT16(_data + 6);
236 byte *getMask()
const {
237 return (byte *)(_data + 8);
278 bool scummVMSaveLoadDialog(
bool isSave);
281 void pauseEngineIntern(
bool pause)
override;
292 bool loadGame(
int slotNumber);
295 int32 _creditsDataSize;
297 void scrollCredits();
299 int getGameType()
const;
300 const char *getGameId()
const;
301 uint32 getFeatures()
const;
312 uint32 _mobTranslationSize;
313 byte *_mobTranslationData;
317 bool loadLocation(uint16 locationNr);
318 bool loadAnim(uint16 animNr,
bool loop);
319 bool loadVoice(uint32 textSlot, uint32 sampleSlot,
const Common::String &name);
321 bool loadZoom(byte *zoomBitmap, uint32 dataSize,
const char *resourceName);
322 bool loadShadow(byte *shadowBitmap, uint32 dataSize,
const char *resourceName1,
const char *resourceName2);
323 bool loadTrans(byte *transTable,
const char *resourceName);
324 bool loadMobPriority(
const char *resourceName);
326 void loadMobTranslationTexts();
327 void setMobTranslationTexts();
329 bool loadMusic(
int musNumber);
332 void playSample(uint16 sampleId, uint16 loopType);
333 void stopSample(uint16 sampleId);
334 void stopAllSamples();
335 void freeSample(uint16 sampleId);
336 void freeAllSamples();
338 void setVoice(uint16 slot, uint32 sampleSlot, uint16 flag);
340 void changeCursor(uint16 curId);
341 void printAt(uint32 slot, uint8 color,
char *s, uint16 x, uint16 y);
342 int calcTextLines(
const char *s);
343 int calcTextTime(
int numberOfLines);
344 void correctStringDEU(
char *s);
346 static const uint8 kMaxTexts = 32;
347 Text _textSlots[kMaxTexts];
379 int32 _shadScaleValue;
382 void setShadowScale(int32 shadowScale);
384 static const int16 kFPS = 15;
385 static const int32 kIntMax = 2147483647;
387 static const int16 kMaxPicWidth = 1280;
388 static const int16 kMaxPicHeight = 480;
389 static const int16 kZoomStep = 4;
390 static const int32 kZoomBitmapLen = kMaxPicHeight / kZoomStep * kMaxPicWidth / kZoomStep;
391 static const int32 kShadowBitmapSize = kMaxPicWidth * kMaxPicHeight / 8;
392 static const int16 kShadowLineArraySize = 2 * 1280 * 4;
393 static const int16 kZoomBitmapWidth = kMaxPicWidth / kZoomStep;
394 static const int16 kZoomBitmapHeight = kMaxPicHeight / kZoomStep;
395 static const int16 kNormalWidth = 640;
396 static const int16 kNormalHeight = 480;
397 static const uint32 kTransTableSize = 256 * 256;
399 static const int kMaxNormAnims = 64;
400 static const int kMaxBackAnims = 64;
401 static const int kMaxObjects = 64;
402 static const int kMaxMobs = 64;
414 void freeNormAnim(
int slot);
415 void freeAllNormAnims();
416 void removeSingleBackAnim(
int slot);
420 void checkMasks(
int x1,
int y1,
int sprWidth,
int sprHeight,
int z);
430 int _currentPointerNumber;
432 static const int16 kMaxInv = 90;
433 static const uint16 kMaxItems = 30;
448 int _invOptionsWidth;
449 int _invOptionsHeight;
453 int _invOptionsNumber;
457 bool _showInventoryFlag;
459 bool _inventoryBackgroundRemember;
481 void inventoryFlagChange(
bool inventoryState);
483 void rememberScreenInv();
484 void prepareInventoryToView();
486 void displayInventory();
487 void addInv(
int heroId,
int item,
bool addItemQuiet);
488 void remInv(
int heroId,
int item);
489 void clearInv(
int heroId);
490 void swapInv(
int heroId);
492 void makeInvCursor(
int itemNr);
493 void enableOptions(
bool checkType);
495 void checkInvOptions();
496 void openInventoryCheck();
498 void leftMouseButton();
499 void rightMouseButton();
500 void inventoryLeftMouseButton();
501 void inventoryRightMouseButton();
502 void dialogLeftMouseButton(byte *
string,
int dialogSelected);
504 uint32 _dialogDatSize;
508 byte *_dialogBoxAddr[32];
509 byte *_dialogOptAddr[32];
510 int _dialogOptLines[4 * 32];
517 int _dialogLineSpace;
522 void createDialogBox(
int dialogBoxNr);
524 void talkHero(
int slot);
525 void doTalkAnim(
int animNumber,
int slot, AnimType animType);
527 static const uint8 zoomInStep = 8;
528 void initZoomIn(
int slot);
529 void initZoomOut(
int slot);
530 void doZoomIn(
int slot);
531 void doZoomOut(
int slot);
532 void freeZoomObject(
int slot);
534 static const uint8 kFadeStep = 4;
536 void setPalette(
const byte *palette);
541 static const int16 kCurveLen = 17;
542 static const int kCelStep = 4;
549 static const uint16 kPowerBarPosX = 288;
550 static const uint16 kPowerBarPosY = 430;
551 static const uint8 kPowerBarWidth = 64;
552 static const uint8 kPowerBarHeight = 16;
553 static const uint8 kPowerBarBackgroundColor = 0;
554 static const uint16 kPowerBarGreenPosY = 434;
555 static const uint8 kPowerBarGreenColor1 = 202;
556 static const uint8 kPowerBarGreenColor2 = 235;
557 static const uint8 kPowerBarGreenHeight = 8;
561 static const int16 kPathGridStep = 2;
562 static const uint32 kPathBitmapLen = (kMaxPicHeight / kPathGridStep * kMaxPicWidth / kPathGridStep) / 8;
563 static const int32 kTracePts = 8000;
564 static const int32 kPBW = kMaxPicWidth / 16;
565 static const int kMinDistance = 2500;
567 byte *_roomPathBitmap;
568 byte *_roomPathBitmapTemp;
577 bool _traceLineFirstPointFlag;
578 bool _tracePointFirstPointFlag;
579 byte *_directionTable;
582 byte *_checkBitmapTemp;
588 byte *_rembBitmapTemp;
597 int drawLine(
int x0,
int y0,
int x1,
int y1,
int (*plotProc)(
int,
int,
void *),
void *data);
598 bool loadPath(
const char *resourceName);
599 byte *makePath(
int heroId,
int currX,
int currY,
int destX,
int destY);
600 void findPoint(
int x,
int y);
601 int getPixelAddr(byte *pathBitmap,
int x,
int y);
602 static int plotTraceLine(
int x,
int y,
void *data);
603 void specialPlotInside(
int x,
int y);
604 bool tracePath(
int x1,
int y1,
int x2,
int y2);
605 Direction makeDirection(
int x1,
int y1,
int x2,
int y2);
606 void specialPlot(
int x,
int y);
607 void specialPlot2(
int x,
int y);
611 static int plotTracePoint(
int x,
int y,
void *data);
612 void specialPlotInside2(
int x,
int y);
614 void freeDirectionTable();
615 void scanDirections();
616 int scanDirectionsFindNext(byte *coords,
int xDiff,
int yDiff);
619 void moveRunHero(
int heroId,
int x,
int y,
int dir,
bool runHeroFlag);
635 int checkLeftDownDir();
640 int checkLeftUpDir();
641 int checkRightDownDir();
642 int checkRightUpDir();
645 bool playNextFLCFrame();
652 void showAnim(
Anim &anim);
653 void showNormAnims();
654 void setBackAnim(
Anim &backAnim);
655 void showBackAnims();
656 void clearBackAnimList();
657 bool spriteCheck(
int sprWidth,
int sprHeight,
int destX,
int destY);
658 void showSprite(
Graphics::Surface *spriteSurface,
int destX,
int destY,
int destZ);
659 void showSpriteShadow(
Graphics::Surface *shadowSurface,
int destX,
int destY,
int destZ);
664 void makeShadowTable(
int brightness);
665 void pausePrinceEngine(
int fps = kFPS);
667 uint32 getTextWidth(
const char *s);
668 void debugEngine(
const char *s, ...);
680 static const int kMaxSamples = 60;
EngineFeature
Definition: engine.h:253
Definition: savefile.h:54
Definition: detection.h:42
Definition: flic_decoder.h:50
Definition: animation.h:32
Definition: animation.h:30
Definition: atari-cursor.h:38
bool skipThumbnail(Common::SeekableReadStream &in)
Definition: variatxt.h:26
void NORETURN_PRE error(MSVC_PRINTF const char *s,...) GCC_PRINTF(1
Definition: audiostream.h:109
Definition: graphics.h:33
Definition: debugger.h:33
Language
Definition: language.h:45