Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
Fix up SCI0_LATE variant of the driver so that it actually plays anything (and even correctly). SCI1 hasn't seen any testing from me so far. I don't know whether that version works. Same for SCI0_EARLY...
|
|
I haven't found an elegant and non-intrusive way to squeeze SCI0 support into LordHoto's existing code. The drivers are too different. So I made some rearrangements. The basic mechanisms of LordHoto's SCI1 code should remain the same as before, though. I only introduced some more classes, moved some code into these classes and renamed some things (mainly for myself, so as not to get confused).
I fixed two voice mapping bugs in the existing driver code. The first bug in bindVocies() effectively hindered the driver from playing anything at all when the CMS_DISABLE_VOICE_MAPPING #define wasn't set (_voice[i].channel == 0xFF instead of _voice[i].channel != 0xFF). The second bug in unbindVoices() was not a complete show stopper, but the function simply did not "unbind the voice". The line which does the actual removal of the channel assignment was missing.
The SCI0 driver portions have been tested with: PQ2, KQ4, LSL3, QFG1, ICE and COC.
SCI_0_EARLY versions apparently don't support the CMS. At least I haven't seen a driver file so far. And there seems to be no no instrument patch resource. Although the latter issue needn't necessarily be one, since the patch data array in the driver is actually preset with data (which gets overwritten as soon as a patch file is loaded). Maybe this would work for SCI_0_EARLY. However, I haven't tested this, since I really would have have a look at a driver file first if one actually exists. For now, I have limited the driver to SCI_0_LATE.
SCI1 has been tested with KQ5 and LSL5 (not extensively, just to see whether anything got broken and whether my voice mapping fixes work).
|
|
(somewhat difficult to make out any difference, but it does affect the envelope processing)
|
|
|
|
Conflicts:
engines/sci/engine/script_patches.cpp
|
|
|
|
FOA Amiga uses 'ROL ' resources (unlike MI2 which has 'AMI ' resources). So our imuse player treated those as MT32 tracks playing on a non-MT32 device and applied GM mapping. Which of course messed up the instruments.
|
|
(several function declarations in imuse_internal.h)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Removed unnecessary '\0' byte written after a string. Reasons to remove:
1. Hamlet game does not write 0 after string when running this code:
var SomeFile = new File((Game.SaveDirectory + "\gamelet.save"));
SomeFile.OpenAsText(2);
SomeFile.WriteText(LVL_N);
SomeFile.Close();
2. Original WME does not have this:
https://github.com/retrowork/Wintermute-Engine/blob/master/src/engine_core/wme_base/SXFile.cpp#L303
|
|
|
|
|
|
Assertion was caused by providing "saves/" prefixed string to
WindowsFilesystemNode::getChild() function, that asserts on '/'
characters.
Wintermute game code:
if(!(Game.FileExists((Game.SaveDirectory + "\gamelet.save")))) {
Directory.Create(Game.SaveDirectory);
}
...
Assertion stack:
from C:\WINDOWS\System32\KernelBase.dll
from C:\WINDOWS\System32\msvcrt.dll
(this=0xcfdf710,
n=...) at backends/fs/windows/windows-fs.cpp:158
n=...)
at common/fs.cpp:68
(filename=...)
at engines/wintermute/base/file/base_disk_file.cpp:76
at engines/wintermute/base/file/base_disk_file.cpp:105
this=0x50795e0, filename=...)
at engines/wintermute/base/base_file_manager.cpp:326
(this=0xcea72f0,
script=0xcf657d0, stack=0xcf6a2e0, thisStack=0xcf69ee0,
name=0xcfd8870 "FileExists") at
engines/wintermute/base/base_game.cpp:1523
...
|
|
Source:
http://docs.dead-code.org/wme/generated/scripting_ref_directory.html
|
|
Source: https://steamdb.info/app/222160/depots/
|
|
Hopefully fixes the build
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This warning will not only show up if a tag is actually unrecognized but also in cases where the tag is recognized, but the resource size is 0. This happens quite a lot in the Amiga version of MI2 with 'SOU ' tags.
|
|
The audio track is not broken. LEC simply didn't make good euphony music tracks for the FM-Towns. There is nothing we can do about that.
The TODO implies that someone should mess around with the audio data (change the composition?).
|
|
- move mac, pc speaker and fm-towns ims sound drivers into separate directory
(AdLib and MT32/GM drivers are still too entangled with common code to be moved so easily, especially MT32/GM. It would require lots of changes to the common code and possibly to all engines using the MidiDriver class. So I leave that for now.)
|
|
This fixes the issue that some rhythm instruments didn't receive correct notes. The changes have been limited to the Amiga versions.
|
|
|
|
(applies to MI2 and INDY4)
|
|
|
|
|
|
|
|
|
|
|
|
Recent GCC versions complain if you memset() a class or struct that
contain non-POD data types. Get around that by either initializing
the object when created, or by adding a reset() method.
|
|
Recent GCC versions complain if you memset() a class or struct that
contain non-POD data types. Get around that by either initializing
the object when created, or by adding a reset() method.
|
|
Recent GCC versions complain if you memset() a class or struct that
contain non-POD data types. Get around that by either initializing
the object when created, or by adding a reset() method.
|
|
|
|
WINTERMUTE: Enhanced BaseUtils::normalizeAngle to run the while if angle is greater than 359.
When normalizing an angle, we expect the number to be between 0 and
359 (since 360 is 0), this changes the util so 360 is transformed to 0.
The case for 359.8 (which this would make it -0.2) is covered by the following
while loop, which will increase it back to 359.8.
|
|
* WINTERMUTE: Add all changelog engine versions to enum
Source: http://docs.dead-code.org/wme/history.html
* WINTERMUTE: Fixed name and update detection for Satan and sons
Download:
http://www.freegamearchive.com/play/download/game/satan_and_sons.zip
* WINTERMUTE: Update detection for Five Lethal Demons
Download:
http://web.archive.org/web/20070705114336if_/http://dead-code.org/5ld/5ld_setup.exe
* WINTERMUTE: Update detection for Five Magical Amulets
Download:
http://web.archive.org/web/20070505233127if_/http://www.nacht-und-nebel.org/download/fma.exe
Download:
http://www.flint.cba.pl/fusion_7/downloads.php?cat_id=1&download_id=1
Download: http://dead-code.org/5ma/5ma_deutsch.exe
* WINTERMUTE: Update detection for Actual Destination
Download:
http://web.archive.org/web/20111121174804/http://mrburns.tks.bth.se/ds/ds08/magv08/Actual%20Destination.rar
* WINTERMUTE: Update detection for Boredom of Agustin Cordes
Download: http://www.cbe-software.com/Games/Boredom/setup_boredom.exe
* WINTERMUTE: Update detection for Alimardan's Mischief
Buy: https://store.steampowered.com/app/694420/Alimardans_Mischief/
* WINTERMUTE: Update detection for Alimardan Meets Merlin
Buy: https://store.steampowered.com/app/694430/Alimardan_Meets_Merlin/
* WINTERMUTE: Update detection for Beyond the Threshold
Download: http://www.nacht-und-nebel.org/pcg/BeyondTheTreshold.zip
NOTE: This game's executable has a very strange version 1.7.94 not
listed in changelog.
* WINTERMUTE: Update detection for Basis Octavus
Download: http://kraaca.cz/wp-content/files/basis-octavus.zip
* WINTERMUTE: Update detection for Bickadoodle
Download: https://www.moddb.com/games/bickadoodle/downloads
* WINTERMUTE: Update detection for Book of Gron: Part One
Download: http://questzone.ru/download/gr/BookOfGron.rar
* WINTERMUTE: Update detection for Chivalry is Not Dead
Download: https://games.squinky.me/downloads/chivalry/chivalry.zip
* WINTERMUTE: Update detection for Carol Reed series
I assume that Carol Reed 4 EN use the same engine as Carol Reed 4 RU.
For other versions I assume that Demo and Full versions are sharing the
same engine version.
Demos: http://www.mdna-games.com/
Buy: http://www.mdna-games.com/
* WINTERMUTE: Update detection for Corrosion
Buy:
https://store.steampowered.com/app/349140/Corrosion_Cold_Winter_Waiting_Enhanced_Edition/
* WINTERMUTE: Update detection for Dead City
Download: http://dead-code.org/download/games/deadcity.zip
* WINTERMUTE: Add detection for Dark Fall: Lost Souls
This is a 2.5D game that is out of ScummVM scope
* WINTERMUTE: Update detection for Dirty Split
Download: https://dreamagination.itch.io/dirty-split
* WINTERMUTE: Update detection for Dreamscape
Download:
http://web.archive.org/web/20111121174150if_/http://mrburns.tks.bth.se/ds/ds08/vida08/Dreamland.rar
* WINTERMUTE: Update detection for Dreamcat
Download: https://jennibee.itch.io/dreamcat
* WINTERMUTE: Update detection for Des Reves Elastiques Avec Mille Insectes Nommes Georges
Download: https://games.squinky.me/downloads/dreaming/dreaming.zip
* WINTERMUTE: Update detection for DFAF Adventure
Download: https://jennibee.itch.io/dfaf-adventure
* WINTERMUTE: Add detection for Dr. Bohus
Author: Local Studio
Description: Saving the world from outbreak of a mysterious disease
Language: Czech
Licence: Freeware
Download:
http://www.freegame.cz/hry-ke-stazeni/zdarma/adventury/dr-bohus/13266
* WINTERMUTE: Update detection for Escape from the Mansion
Download:
https://escapefromthemansion.com/files/EscapeFromTheMansion_v1.3.zip
* WINTERMUTE: Add detection for Finding Hope
Finding Hope is a hidden object game made with Wintermute engine by
Golden Bough Games.
Try & Buy: https://www.bigfishgames.com/games/5960/finding-hope/
* WINTERMUTE: Add detection for The Death of Erin Myers
Buy links and details: http://www.viperante.com/short.htm
* WINTERMUTE: Update detection for Four
Download: http://mentalscraps.com/Four.zip
* WINTERMUTE: Add detection for Face Noir
This is a 2.5D game that is out of ScummVM scope
* WINTERMUTE: Update detection for Hamlet
Buy: https://store.steampowered.com/app/222160
* WINTERMUTE: Update detection for Framed
Download:
http://web.archive.org/web/20111121173916if_/http://mrburns.tks.bth.se/ds/ds08/maqk08/Framed.rar
* WINTERMUTE: Update detection for James Peris
Download: http://www.jamesperis.com/jamesperisweb-a.htm
* WINTERMUTE: Update detection for Project Lonely Robot
Download:
http://web.archive.org/web/20111121173634if_/http://mrburns.tks.bth.se/ds/ds07/stgo07/Projectlonelyrobot.rar
* WINTERMUTE: Update detection for Helga Deep In Trouble
Download: http://helgagame.com/download/helgainstall.exe
* WINTERMUTE: Update detection for Ghost in the Sheet
Demo: https://ag.ru/games/ghost-in-the-sheet/demos/24978
* WINTERMUTE: Add detection for K'NOSSOS
Demo: http://svarunentertainment.com/
* WINTERMUTE: Update detection for Open Quest
Download: https://github.com/JenniBee/openquest/releases/tag/v1.0
* WINTERMUTE: Update detection for Night Train
Download: https://www.moddb.com/games/night-train/downloads
* WINTERMUTE: Update detection for Mirage
Download:
http://web.archive.org/web/20111121173733if_/http://mrburns.tks.bth.se/ds/ds08/sasl08/Mirage.rar
* WINTERMUTE: Update detection for kulivocko
Download: https://ulozto.net/!Ge2FUW8q/kulivocko1-zip
* WINTERMUTE: Update detection for Looky
Demo: https://mac-bs.de/homepage/downloads/Looky_Demo_Setup.exe
Download: https://bullshit-softworx.itch.io/looky-adventure
* WINTERMUTE: Add detection for One
Demo: http://rcorp.wz.cz/one/one%20DEMO.rar
* WINTERMUTE: Update detection for Pizza Morgana
Download: http://pizza-morgana.com/download/episode1
* WINTERMUTE: Update detection for One Helluva Day
Demo: https://store.steampowered.com/app/603680/One_helluva_day/
* WINTERMUTE: Update detection for reversion1&2
Buy: https://steamcommunity.com/app/270570 ,
https://store.steampowered.com/app/281060
Source for old versions: https://bugs.scummvm.org/ticket/11009 ,
https://bugs.scummvm.org/ticket/11011
* WINTERMUTE: Update detection for Project: Doom
Download:
http://web.archive.org/web/20111121180654if_/http://mrburns.tks.bth.se/ds/ds08/vida08/ProjectDoom.rar
* WINTERMUTE: Update detection for Silent Footsteps
Demo: http://frostlindgames.com/demo.html
Buy: https://store.steampowered.com/app/780740/Silent_Footsteps/
* WINTERMUTE: Update detection for Paintaria
Download: https://gamejolt.com/games/paintaria/17652
* WINTERMUTE: Update detection for Pigeons in the Park
Download: https://games.squinky.me/downloads/pigeons/pigeons.zip
* WINTERMUTE: Update detection for reversion1&2 (Linux & Mac)
* WINTERMUTE: Update detection for Rosemary
Download: http://gambit.mit.edu/loadgame/rosemary_eula.php
* WINTERMUTE: Update detection for Shaban
Try & Buy (English): https://www.bigfishgames.com/games/7157/shaban/?pc
Try & Buy (German): https://www.bigfishgames.de/spiele/7157/shaban/?pc
Try & Buy (Spanish): https://www.bigfishgames.es/juegos/7157/shaban/?pc
Try & Buy (French): https://www.bigfishgames.fr/jeux/7157/shaban/?pc
Try & Buy (Japanese): https://www.bigfishgames.jp/games/7157/shaban/?pc
Try & Buy (Dutch): https://www.bigfishgames.nl/spellen/7157/shaban/?pc
Try & Buy (Italian): https://www.bigfishgames.it/giochi/7157/shaban/?pc
Try & Buy (Portuguese):
https://www.bigfishgames.com.br/jogos/7157/shaban/?pc
* WINTERMUTE: Update detection for Rhiannon
Demos: https://ag.ru/games/rhiannon-curse-of-the-four-branches/demos
Demo:
http://download.fileplanet.com/ftp1/122008/Rhiannon_Demo_C5_setup.exe
Buy: https://store.steampowered.com/app/298140
* WINTERMUTE: Update detection for Space Invaders demo
Download: https://docs.google.com/file/d/0B1Y5w30FUPM7bk1UQ1BGR2ZVZ2s
* WINTERMUTE: Update detection for Sofia's Debt
Download:
http://www.artisticsoft.com/flyers/deudadesofia/La%20Deuda%20de%20Sofia.zip
Download:
http://www.artisticsoft.com/flyers/deudadesofia/Sofias%20Debt.zip
* WINTERMUTE: Update detection for The Kite
Download: https://anatolii.itch.io/the-kite
* WINTERMUTE: Update detection for The Box
Download: http://web.archive.org/web/20111121180051if_/http://mrburns.tks.bth.se/ds/ds08/maqk08/packages.rar
* WINTERMUTE: Update detection for The Driller Incident
Download: http://questzone.ru/enzi/files/1645
* WINTERMUTE: Update detection for The Ancient Mark
Download: https://www.moddb.com/games/the-ancient-mark-episode-1/downloads
* WINTERMUTE: Update detection for Tanya Grotter dilogy
Buy:
https://www.soft-moscow.ru/goods/tanya_grotter_i_magicheskiy_kontrabas.htm
Buy:
https://www.soft-moscow.ru/goods/tanya_grotter_i_ischezayushchiy_etag.htm
* WINTERMUTE: Update detection for Space Madness
Demos:
http://web.archive.org/web/20150520160556/http://www.spreadcamp.com/downloads/SM-DEMO_English_and_German.exe
* WINTERMUTE: Update detection for The Shine of a Star
NOTE: http://questzone.ru/enzi/game/2502 states that this game is
freeware since 29.07.2013
Download: http://forgottenkey.se/TSoaS/TSOAS.msi
Archive: https://web.archive.org/web/20190116104138if_/http://forgottenkey.se/TSoaS/TSOAS.msi
* WINTERMUTE: Update detection for The White Chamber
Download:
http://www.studiotrophis.com/downloads/thewhitechamber1.7SETUP%20-%20Definitive%20Edition.exe
Download:
http://www.indiedb.com/games/the-white-chamber/downloads/the-white-chamber-17
* WINTERMUTE: Update detection for Trader of Stories
Download demo: http://www.rudowscy.com/download/theTraderofStories.zip
Full version is not made with Wintermute: http://www.rudowscy.com/tos1/
* WINTERMUTE: Update detection for Zbang! The Game
Download: http://www.corbomitegames.com/zbang/download.php
* WINTERMUTE: Update detection for Vsevolod
Download: http://public.ag.ru/vd/c16b434cc9656d4ca5856150c8fc9b18/demos/23267/Vsevolod-Prologue.exe
* WINTERMUTE: Update some comments
* WINTERMUTE: Update detection for Toshechka and Boshechka
* WINTERMUTE: Update detection for Wilma Tetris
Download: http://web.archive.org/web/20160330072540if_/http://dead-code.org/misc/wtetris.zip
* WINTERMUTE: Add detection for WME Technology Demo 1.2
Download: http://www.dead-code.org/download/wme_demo.zip
* WINTERMUTE: Update detection for reversion1 (bug 11011)
This fixes https://bugs.scummvm.org/ticket/11011
|