diff options
author | Travis Howell | 2006-10-19 11:13:28 +0000 |
---|---|---|
committer | Travis Howell | 2006-10-19 11:13:28 +0000 |
commit | 26765932ccde8469f8521e11efd2a0068c32ff91 (patch) | |
tree | 9f9405cdba44eb99e3065fa4c719ca8c469aa91c /engines | |
parent | 8c72861de463e0db36b234750fb19904e5f04d3b (diff) | |
download | scummvm-rg350-26765932ccde8469f8521e11efd2a0068c32ff91.tar.gz scummvm-rg350-26765932ccde8469f8521e11efd2a0068c32ff91.tar.bz2 scummvm-rg350-26765932ccde8469f8521e11efd2a0068c32ff91.zip |
Add support for sound effects in PC version of Elvira 1
svn-id: r24388
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/agos.cpp | 10 | ||||
-rw-r--r-- | engines/agos/agos.h | 7 | ||||
-rw-r--r-- | engines/agos/res.cpp | 107 | ||||
-rw-r--r-- | engines/agos/script.cpp | 4 |
4 files changed, 95 insertions, 33 deletions
diff --git a/engines/agos/agos.cpp b/engines/agos/agos.cpp index c55aed0221..e2775c542e 100644 --- a/engines/agos/agos.cpp +++ b/engines/agos/agos.cpp @@ -1331,7 +1331,7 @@ uint AGOSEngine::itemGetIconNumber(Item *item) { } } -void AGOSEngine::hitarea_stuff() { +void AGOSEngine::waitForInput() { HitArea *ha; uint id; @@ -1588,17 +1588,17 @@ void AGOSEngine::loadZone(uint zoneNum) { // Loading order is important // due to resource managment - loadVGAFile(zoneNum, 2); + loadVGAVideoFile(zoneNum, 2); vpe->vgaFile2 = _block; vpe->vgaFile2End = _blockEnd; - loadVGAFile(zoneNum, 1); + loadVGAVideoFile(zoneNum, 1); vpe->vgaFile1 = _block; vpe->vgaFile1End = _blockEnd; vpe->sfxFile = NULL; if (!(getFeatures() & GF_ZLIBCOMP)) { - if (loadVGAFile(zoneNum, 3)) { + if (loadVGASoundFile(zoneNum, 3)) { vpe->sfxFile = _block; vpe->sfxFileEnd = _blockEnd; } @@ -2409,7 +2409,7 @@ int AGOSEngine::go() { permitInput(); while (1) { - hitarea_stuff(); + waitForInput(); handleVerbClicked(_verbHitArea); delay(100); } diff --git a/engines/agos/agos.h b/engines/agos/agos.h index 01006862e2..cfe744e53e 100644 --- a/engines/agos/agos.h +++ b/engines/agos/agos.h @@ -730,7 +730,7 @@ protected: void displayName(HitArea * ha); void resetNameWindow(); void displayBoxStars(); - void hitarea_stuff(); + void waitForInput(); void invertBox_FF(HitArea *ha, bool state); void invertBox(HitArea * ha, byte a, byte b, byte c, byte d); @@ -1292,8 +1292,9 @@ protected: void convertAmiga(byte *srcBuf, int32 fileSize); bool decrunchFile(byte *src, byte *dst, uint32 size); - bool loadVGAFile(uint id, uint type); - void loadSimonVGAFile(uint id); + void loadVGABeardFile(uint id); + void loadVGAVideoFile(uint id, uint type); + bool loadVGASoundFile(uint id, uint type); int init(); int go(); diff --git a/engines/agos/res.cpp b/engines/agos/res.cpp index ed0b0cefe7..2b68d3d0ec 100644 --- a/engines/agos/res.cpp +++ b/engines/agos/res.cpp @@ -611,7 +611,7 @@ bool AGOSEngine::decrunchFile(byte *src, byte *dst, uint32 size) { #undef SD_TYPE_LITERAL #undef SD_TYPE_MATCH -void AGOSEngine::loadSimonVGAFile(uint id) { +void AGOSEngine::loadVGABeardFile(uint id) { uint32 offs, size; if (getFeatures() & GF_OLD_BUNDLE) { @@ -655,10 +655,10 @@ void AGOSEngine::loadSimonVGAFile(uint id) { } } -bool AGOSEngine::loadVGAFile(uint id, uint type) { +void AGOSEngine::loadVGAVideoFile(uint id, uint type) { File in; char filename[15]; - byte *dst = NULL; + byte *dst; uint32 file, offs, srcSize, dstSize; uint extraBuffer = 0; @@ -698,15 +698,9 @@ bool AGOSEngine::loadVGAFile(uint id, uint type) { else sprintf(filename, "%.1d%d.out", id, type); } else if (getGameType() == GType_ELVIRA1 || getGameType() == GType_ELVIRA2) { - if (type == 3) - sprintf(filename, "%.2d%d.out", id, type); - else - sprintf(filename, "%.2d%d.pkd", id, type); + sprintf(filename, "%.2d%d.pkd", id, type); } else { - if (type == 3) - sprintf(filename, "%.3d%d.out", id, type); - else - sprintf(filename, "%.3d%d.pkd", id, type); + sprintf(filename, "%.3d%d.pkd", id, type); } } else { if (getGameType() == GType_ELVIRA1 || getGameType() == GType_ELVIRA2 || getGameType() == GType_WW) { @@ -717,21 +711,15 @@ bool AGOSEngine::loadVGAFile(uint id, uint type) { } in.open(filename); - if (in.isOpen() == false || in.size() == 0) { - // Sound VGA files don't always exist - if (type == 3) { - return false; - } else { - error("loadVGAFile: Can't load %s", filename); - } + if (in.isOpen() == false) { + error("loadVGAVideoFile: Can't load %s", filename); } dstSize = srcSize = in.size(); - if ((getGameType() == GType_ELVIRA1 && getFeatures() & GF_DEMO) || - (getFeatures() & GF_CRUNCHED && type != 3)) { + if (getFeatures() & GF_CRUNCHED) { byte *srcBuffer = (byte *)malloc(srcSize); if (in.read(srcBuffer, srcSize) != srcSize) - error("loadVGAFile: Read failed"); + error("loadVGAVideoFile: Read failed"); dstSize = READ_BE_UINT32(srcBuffer + srcSize - 4); if (type == 2) { @@ -748,13 +736,13 @@ bool AGOSEngine::loadVGAFile(uint id, uint type) { if (getGameId() == GID_SIMON1CD32 && type == 2) { dst = (byte *)malloc(dstSize); if (in.read(dst, dstSize) != dstSize) - error("loadVGAFile: Read failed"); + error("loadVGAVideoFile: Read failed"); convertAmiga(dst, dstSize); free(dst); } else { dst = allocBlock(dstSize + extraBuffer); if (in.read(dst, dstSize) != dstSize) - error("loadVGAFile: Read failed"); + error("loadVGAVideoFile: Read failed"); } } in.close(); @@ -766,6 +754,79 @@ bool AGOSEngine::loadVGAFile(uint id, uint type) { dst = allocBlock(dstSize + extraBuffer); readGameFile(dst, offs, dstSize); } +} + +static const byte elvira1_soundTable[100] = { + 0, 2, 0, 1, 0, 0, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 6, 4, 0, 0, 9, 0, + 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 1, 0, 0, 5, 0, 6, 6, 0, 0, + 0, 5, 0, 0, 6, 0, 0, 0, 0, 8, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + +bool AGOSEngine::loadVGASoundFile(uint id, uint type) { + File in; + char filename[15]; + byte *dst; + uint32 srcSize, dstSize; + + if (getPlatform() == Common::kPlatformAmiga || getPlatform() == Common::kPlatformAtariST) { + if (getGameType() == GType_ELVIRA1 && getFeatures() & GF_DEMO) { + if (id == 20) + sprintf(filename, "D%d.out", type); + else if (id == 26) + sprintf(filename, "J%d.out", type); + else if (id == 27) + sprintf(filename, "K%d.out", type); + else if (id == 33) + sprintf(filename, "Q%d.out", type); + else if (id == 34) + sprintf(filename, "R%d.out", type); + else + sprintf(filename, "%.1d%d.out", id, type); + } else if (getGameType() == GType_ELVIRA1 || getGameType() == GType_ELVIRA2) { + sprintf(filename, "%.2d%d.out", id, type); + } else { + sprintf(filename, "%.3d%d.out", id, type); + } + } else { + if (getGameType() == GType_ELVIRA1) { + if (elvira1_soundTable[id] == 0) + return false; + + sprintf(filename, "%.2d.SND", elvira1_soundTable[id]); + } else if (getGameType() == GType_ELVIRA2 || getGameType() == GType_WW) { + sprintf(filename, "%.2d%d.VGA", id, type); + } else { + sprintf(filename, "%.3d%d.VGA", id, type); + } + } + + in.open(filename); + if (in.isOpen() == false || in.size() == 0) { + return false; + } + + dstSize = srcSize = in.size(); + if (getGameType() == GType_ELVIRA1 && getFeatures() & GF_DEMO) { + byte *srcBuffer = (byte *)malloc(srcSize); + if (in.read(srcBuffer, srcSize) != srcSize) + error("loadVGASoundFile: Read failed"); + + dstSize = READ_BE_UINT32(srcBuffer + srcSize - 4); + dst = allocBlock (dstSize); + decrunchFile(srcBuffer, dst, srcSize); + free(srcBuffer); + } else { + dst = allocBlock(dstSize); + if (in.read(dst, dstSize) != dstSize) + error("loadVGASoundFile: Read failed"); + } + in.close(); return true; } diff --git a/engines/agos/script.cpp b/engines/agos/script.cpp index eb2b970c88..aced1bb04e 100644 --- a/engines/agos/script.cpp +++ b/engines/agos/script.cpp @@ -2422,7 +2422,7 @@ void AGOSEngine::o1_loadBeard() { if (_beardLoaded == false) { _beardLoaded = true; _lockWord |= 0x8000; - loadSimonVGAFile(328); + loadVGABeardFile(328); _lockWord &= ~0x8000; } } @@ -2432,7 +2432,7 @@ void AGOSEngine::o1_unloadBeard() { if (_beardLoaded == true) { _beardLoaded = false; _lockWord |= 0x8000; - loadSimonVGAFile(23); + loadVGABeardFile(23); _lockWord &= ~0x8000; } } |