229 lines
5.1 KiB
C
229 lines
5.1 KiB
C
|
|
/*
|
|
* REminiscence - Flashback interpreter
|
|
* Copyright (C) 2005-2015 Gregory Montoir (cyx@users.sourceforge.net)
|
|
*/
|
|
|
|
#ifndef RESOURCE_H__
|
|
#define RESOURCE_H__
|
|
|
|
#include "intern.h"
|
|
#include "resource_aba.h"
|
|
|
|
struct File;
|
|
struct FileSystem;
|
|
|
|
struct LocaleData {
|
|
enum Id {
|
|
LI_01_CONTINUE_OR_ABORT = 0,
|
|
LI_02_TIME,
|
|
LI_03_CONTINUE,
|
|
LI_04_ABORT,
|
|
LI_05_COMPLETED,
|
|
LI_06_LEVEL,
|
|
LI_07_START,
|
|
LI_08_SKILL,
|
|
LI_09_PASSWORD,
|
|
LI_10_INFO,
|
|
LI_11_QUIT,
|
|
LI_12_SKILL_LEVEL,
|
|
LI_13_EASY,
|
|
LI_14_NORMAL,
|
|
LI_15_EXPERT,
|
|
LI_16_ENTER_PASSWORD1,
|
|
LI_17_ENTER_PASSWORD2,
|
|
LI_18_RESUME_GAME,
|
|
LI_19_ABORT_GAME,
|
|
LI_20_LOAD_GAME,
|
|
LI_21_SAVE_GAME,
|
|
LI_22_SAVE_SLOT,
|
|
|
|
LI_NUM
|
|
};
|
|
|
|
static const char *_textsTableFR[];
|
|
static const char *_textsTableEN[];
|
|
static const char *_textsTableDE[];
|
|
static const char *_textsTableSP[];
|
|
static const char *_textsTableIT[];
|
|
static const uint8_t _stringsTableFR[];
|
|
static const uint8_t _stringsTableEN[];
|
|
static const uint8_t _stringsTableDE[];
|
|
static const uint8_t _stringsTableSP[];
|
|
static const uint8_t _stringsTableIT[];
|
|
};
|
|
|
|
struct Resource {
|
|
typedef void (Resource::*LoadStub)(File *);
|
|
|
|
enum ObjectType {
|
|
OT_MBK,
|
|
OT_PGE,
|
|
OT_PAL,
|
|
OT_CT,
|
|
OT_MAP,
|
|
OT_SPC,
|
|
OT_RP,
|
|
OT_RPC,
|
|
OT_DEMO,
|
|
OT_ANI,
|
|
OT_OBJ,
|
|
OT_TBN,
|
|
OT_SPR,
|
|
OT_TAB,
|
|
OT_ICN,
|
|
OT_FNT,
|
|
OT_TXTBIN,
|
|
OT_CMD,
|
|
OT_POL,
|
|
OT_SPRM,
|
|
OT_OFF,
|
|
OT_CMP,
|
|
OT_OBC,
|
|
OT_SPL,
|
|
OT_LEV,
|
|
OT_SGD,
|
|
OT_BNQ,
|
|
OT_SPM
|
|
};
|
|
|
|
enum {
|
|
NUM_SFXS = 66,
|
|
NUM_BANK_BUFFERS = 50,
|
|
NUM_CUTSCENE_TEXTS = 117,
|
|
NUM_SPRITES = 1287
|
|
};
|
|
|
|
static const uint16_t _voicesOffsetsTable[];
|
|
static const uint32_t _spmOffsetsTable[];
|
|
static const char *_splNames[];
|
|
|
|
FileSystem *_fs;
|
|
ResourceType _type;
|
|
Language _lang;
|
|
bool _isDemo;
|
|
ResourceAba *_aba;
|
|
uint16_t (*_readUint16)(const void *);
|
|
uint32_t (*_readUint32)(const void *);
|
|
bool _hasSeqData;
|
|
char _entryName[32];
|
|
uint8_t *_fnt;
|
|
uint8_t *_mbk;
|
|
uint8_t *_icn;
|
|
int _icnLen;
|
|
uint8_t *_tab;
|
|
uint8_t *_spc; // BE
|
|
uint16_t _numSpc;
|
|
uint8_t _rp[0x4A];
|
|
uint8_t *_pal; // BE
|
|
uint8_t *_ani;
|
|
uint8_t *_tbn;
|
|
int8_t _ctData[0x1D00];
|
|
uint8_t *_spr1;
|
|
uint8_t *_sprData[NUM_SPRITES]; // 0-0x22F + 0x28E-0x2E9 ... conrad, 0x22F-0x28D : junkie
|
|
uint8_t _sprm[0x10000];
|
|
uint16_t _pgeNum;
|
|
InitPGE _pgeInit[256];
|
|
uint8_t *_map;
|
|
uint8_t *_lev;
|
|
int _levNum;
|
|
uint8_t *_sgd;
|
|
uint8_t *_bnq;
|
|
uint16_t _numObjectNodes;
|
|
ObjectNode *_objectNodesMap[255];
|
|
uint8_t *_memBuf;
|
|
SoundFx *_sfxList;
|
|
uint8_t _numSfx;
|
|
uint8_t *_cmd;
|
|
uint8_t *_pol;
|
|
uint8_t *_cineStrings[NUM_CUTSCENE_TEXTS];
|
|
uint8_t *_cine_off;
|
|
uint8_t *_cine_txt;
|
|
char **_extTextsTable;
|
|
const char **_textsTable;
|
|
uint8_t *_extStringsTable;
|
|
const uint8_t *_stringsTable;
|
|
uint8_t *_bankData;
|
|
uint8_t *_bankDataHead;
|
|
uint8_t *_bankDataTail;
|
|
BankSlot _bankBuffers[NUM_BANK_BUFFERS];
|
|
int _bankBuffersCount;
|
|
uint8_t *_dem;
|
|
int _demLen;
|
|
|
|
Resource(FileSystem *fs, ResourceType type, Language lang);
|
|
~Resource();
|
|
|
|
void init();
|
|
void fini();
|
|
|
|
bool isDOS() const { return _type == kResourceTypeDOS; }
|
|
bool isAmiga() const { return _type == kResourceTypeAmiga; }
|
|
|
|
void clearLevelRes();
|
|
void load_DEM(const char *filename);
|
|
void load_FIB(const char *fileName);
|
|
void load_SPL_demo();
|
|
void load_MAP_menu(const char *fileName, uint8_t *dstPtr);
|
|
void load_PAL_menu(const char *fileName, uint8_t *dstPtr);
|
|
void load_CMP_menu(const char *fileName, uint8_t *dstPtr);
|
|
void load_SPR_OFF(const char *fileName, uint8_t *sprData);
|
|
void load_CINE();
|
|
void load_TEXT();
|
|
void free_TEXT();
|
|
void load(const char *objName, int objType, const char *ext = 0);
|
|
void load_CT(File *pf);
|
|
void load_FNT(File *pf);
|
|
void load_MBK(File *pf);
|
|
void load_ICN(File *pf);
|
|
void load_SPR(File *pf);
|
|
void load_SPRM(File *pf);
|
|
void load_RP(File *pf);
|
|
void load_SPC(File *pf);
|
|
void load_PAL(File *pf);
|
|
void load_MAP(File *pf);
|
|
void load_OBJ(File *pf);
|
|
void free_OBJ();
|
|
void load_OBC(File *pf);
|
|
void decodeOBJ(const uint8_t *, int);
|
|
void load_PGE(File *pf);
|
|
void decodePGE(const uint8_t *, int);
|
|
void load_ANI(File *pf);
|
|
void load_TBN(File *pf);
|
|
void load_CMD(File *pf);
|
|
void load_POL(File *pf);
|
|
void load_CMP(File *pf);
|
|
void load_VCE(int num, int segment, uint8_t **buf, uint32_t *bufSize);
|
|
void load_SPL(File *pf);
|
|
void load_LEV(File *pf);
|
|
void load_SGD(File *pf);
|
|
void load_BNQ(File *pf);
|
|
void load_SPM(File *f);
|
|
const uint8_t *getAniData(int num) const {
|
|
const int offset = _readUint16(_ani + 2 + num * 2);
|
|
return _ani + 2 + offset;
|
|
}
|
|
const uint8_t *getTextString(int num) {
|
|
return _tbn + _readUint16(_tbn + num * 2);
|
|
}
|
|
const uint8_t *getGameString(int num) {
|
|
return _stringsTable + READ_LE_UINT16(_stringsTable + num * 2);
|
|
}
|
|
const uint8_t *getCineString(int num) {
|
|
if (_cine_off) {
|
|
const int offset = READ_BE_UINT16(_cine_off + num * 2);
|
|
return _cine_txt + offset;
|
|
}
|
|
return (num >= 0 && num < NUM_CUTSCENE_TEXTS) ? _cineStrings[num] : 0;
|
|
}
|
|
const char *getMenuString(int num) {
|
|
return (num >= 0 && num < LocaleData::LI_NUM) ? _textsTable[num] : "";
|
|
}
|
|
void clearBankData();
|
|
int getBankDataSize(uint16_t num);
|
|
uint8_t *findBankData(uint16_t num);
|
|
uint8_t *loadBankData(uint16_t num);
|
|
};
|
|
|
|
#endif // RESOURCE_H__
|