diff options
author | Paul Gilbert | 2012-10-09 00:21:03 +1100 |
---|---|---|
committer | Paul Gilbert | 2012-10-09 00:21:03 +1100 |
commit | 4e0738af23f2e83ee30777d22cf63a13ddf5f08e (patch) | |
tree | ca2efe25a707c4450766b5f2ca4fc7d0a978a28c | |
parent | 2b592038df8c81e27ccca1bddca9c5dec1dd742c (diff) | |
download | scummvm-rg350-4e0738af23f2e83ee30777d22cf63a13ddf5f08e.tar.gz scummvm-rg350-4e0738af23f2e83ee30777d22cf63a13ddf5f08e.tar.bz2 scummvm-rg350-4e0738af23f2e83ee30777d22cf63a13ddf5f08e.zip |
HOPKINS: Bugfixes for INILINK initialisatoin
-rw-r--r-- | engines/hopkins/files.cpp | 3 | ||||
-rw-r--r-- | engines/hopkins/globals.cpp | 2 | ||||
-rw-r--r-- | engines/hopkins/hopkins.cpp | 1 | ||||
-rw-r--r-- | engines/hopkins/lines.h | 1 | ||||
-rw-r--r-- | engines/hopkins/objects.cpp | 18 |
5 files changed, 15 insertions, 10 deletions
diff --git a/engines/hopkins/files.cpp b/engines/hopkins/files.cpp index a6a0d28cf3..fec9d859ef 100644 --- a/engines/hopkins/files.cpp +++ b/engines/hopkins/files.cpp @@ -200,6 +200,9 @@ byte *FileManager::LIBERE_FICHIER(byte *ptr) { byte *FileManager::RECHERCHE_CAT(const Common::String &file, int a2) { byte *ptr = NULL; Common::File f; + + Common::String filename = file; + filename.toUppercase(); switch (a2) { case 1: diff --git a/engines/hopkins/globals.cpp b/engines/hopkins/globals.cpp index e973e5c2bd..9d5de109d7 100644 --- a/engines/hopkins/globals.cpp +++ b/engines/hopkins/globals.cpp @@ -312,7 +312,7 @@ void Globals::clearAll() { _vm->_linesManager.Ligne[idx].field4 = 0; _vm->_linesManager.Ligne[idx].field6 = 0; _vm->_linesManager.Ligne[idx].field8 = 0; - _vm->_linesManager.Ligne[idx].field12 = PTRNUL; + _vm->_linesManager.Ligne[idx].fieldC = PTRNUL; _vm->_linesManager.LigneZone[idx].field0 = 0; _vm->_linesManager.LigneZone[idx].field2 = 0; diff --git a/engines/hopkins/hopkins.cpp b/engines/hopkins/hopkins.cpp index 0afc35c0b0..2608da5dbc 100644 --- a/engines/hopkins/hopkins.cpp +++ b/engines/hopkins/hopkins.cpp @@ -44,6 +44,7 @@ HopkinsEngine::HopkinsEngine(OSystem *syst, const HopkinsGameDescription *gameDe _fontManager.setParent(this); _globals.setParent(this); _graphicsManager.setParent(this); + _linesManager.setParent(this); _menuManager.setParent(this); _objectsManager.setParent(this); _soundManager.setParent(this); diff --git a/engines/hopkins/lines.h b/engines/hopkins/lines.h index 2d131c646c..1ac44b8bb0 100644 --- a/engines/hopkins/lines.h +++ b/engines/hopkins/lines.h @@ -43,7 +43,6 @@ struct LigneItem { int field6; int field8; byte *fieldC; - byte *field12; }; struct SmoothItem { diff --git a/engines/hopkins/objects.cpp b/engines/hopkins/objects.cpp index ab427fc2bc..0d509b5b14 100644 --- a/engines/hopkins/objects.cpp +++ b/engines/hopkins/objects.cpp @@ -6462,8 +6462,8 @@ void ObjectsManager::INILINK(const Common::String &file) { int v23; int v24; int v25; - int v27; - int v28; + int16 v27; + int16 v28; int v29; int v30; int v31; @@ -6509,13 +6509,15 @@ void ObjectsManager::INILINK(const Common::String &file) { filename2 = Common::String((const char *)ptr + 1000); if (!filename2.empty()) { _vm->_globals.CACHE_BANQUE[1] = _vm->_fileManager.RECHERCHE_CAT(filename2, 8); - if (_vm->_globals.CACHE_BANQUE[1]) { + + if (_vm->_globals.CACHE_BANQUE[1] || _vm->_globals.CACHE_BANQUE[1] == PTRNUL) { _vm->_globals.CAT_FLAG = 0; _vm->_fileManager.CONSTRUIT_FICHIER(_vm->_globals.HOPLINK, filename2); } else { _vm->_globals.CAT_FLAG = 1; _vm->_fileManager.CONSTRUIT_FICHIER(_vm->_globals.HOPLINK, "RES_SLI.RES"); } + _vm->_globals.CACHE_BANQUE[1] = _vm->_fileManager.CHARGE_FICHIER(_vm->_globals.NFICHIER); _vm->_globals.CAT_FLAG = 0; v36 = 60; @@ -6560,13 +6562,13 @@ void ObjectsManager::INILINK(const Common::String &file) { v41 = 0; if (nbytes) { do { - if (*(ptr + v41) == 79 && *(ptr + v41 + 1) == 66 && *(ptr + v41 + 2) == 50) { + if (*(ptr + v41) == 'O' && *(ptr + v41 + 1) == 'B' && *(ptr + v41 + 2) == '2') { v16 = ptr + v41 + 4; v32 = 0; v34 = 0; _vm->_linesManager.TOTAL_LIGNES = 0; do { - v27 = READ_LE_UINT16(v16 + 2 * v32); + v27 = (int16)READ_LE_UINT16(v16 + 2 * v32); if (v27 != -1) { _vm->_linesManager.AJOUTE_LIGNE( v34, @@ -6616,7 +6618,7 @@ void ObjectsManager::INILINK(const Common::String &file) { v31 = 0; do { - v28 = READ_LE_UINT16(v17 + 2 * v33); + v28 = (int16)READ_LE_UINT16(v17 + 2 * v33); if (v28 != -1) { _vm->_linesManager.AJOUTE_LIGNE_ZONE( v35, @@ -6633,7 +6635,7 @@ void ObjectsManager::INILINK(const Common::String &file) { } while (v28 != -1); v20 = 1; do { - v21 = 20 * v20; + v21 = v20; _vm->_globals.ZONEP[v21].field0 = READ_LE_UINT16(v17 + 2 * v33); _vm->_globals.ZONEP[v21].field2 = READ_LE_UINT16(v17 + 2 * v33 + 2); _vm->_globals.ZONEP[v21].field4 = READ_LE_UINT16(v17 + 2 * v33 + 4); @@ -6645,7 +6647,7 @@ void ObjectsManager::INILINK(const Common::String &file) { v29 = 0; v23 = 1; do { - v24 = 20 * v23; + v24 = v23; _vm->_globals.ZONEP[v24].field6 = *(v29 + v22); _vm->_globals.ZONEP[v24].field7 = *(v22 + v29 + 1); _vm->_globals.ZONEP[v24].field8 = *(v22 + v29 + 2); |