[Scummvm-git-logs] scummvm master -> 072f96e1f273109097baa208d4ffccfa5640bb4a
sev-
sev at scummvm.org
Fri Apr 23 13:58:08 UTC 2021
This automated email contains information about 17 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
10406d3673 AGOS: Added another Polish simon2. Bugreport #11770
5e30db08e3 KYRA: Change incorrectly set up GOG lol to unsupported.
63f6f6f63d PINK: Provided back link to the added detection entry
0b65dfd35a STARK: Added detection for unsupported Polish version. Bugreport #11883
ace55b7af2 STARK: Added detection for Czech version. Bugreport #11914
634be04836 KYRA: Added detection to unsupported Chinese kyra3. Bugreport #11934
b848cbb0ad KYRA: Added detection entry for Traditional Chinese kyra3. Bugreport #11935
81556c8634 KYRA: Clarify language for Chinese kyra2
bed2519800 KYRA: Clarify language for Chinese kyra1
34cad2193d BLADERUNNER: Added detection stub for Chinese version
37188af06c SHERLOCK: Clarified language for Chinese sherlock. Marked as unsupported
a7459703d8 GOB: Added detection for Polish Amiga gob2. Bugreport #12033
f5b0b27fdf SCUMM: Added detection for freddi1. Bugreport #12104
c2c4526e56 COMPOSER: Added detection for French babayaga. Bugreport #12122
7fbe5512a7 COMPOSER: Added detection for French imoking. Bugreport #12123
e3e22e26c8 COMPOSER: Added detection for French littlesamurai. Bugreport #12124
072f96e1f2 GLK: QUEST: Added more detection entries. Bugreport #11654
Commit: 10406d3673ca1aaa16d034cd48c56c6a37d6d542
https://github.com/scummvm/scummvm/commit/10406d3673ca1aaa16d034cd48c56c6a37d6d542
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:48+02:00
Commit Message:
AGOS: Added another Polish simon2. Bugreport #11770
Changed paths:
engines/agos/detection_tables.h
diff --git a/engines/agos/detection_tables.h b/engines/agos/detection_tables.h
index 6dd66a6361..8541772370 100644
--- a/engines/agos/detection_tables.h
+++ b/engines/agos/detection_tables.h
@@ -2502,6 +2502,32 @@ static const AGOSGameDescription gameDescriptions[] = {
GF_TALKIE
},
+ // Simon the Sorcerer 2 - Polish Windows CD
+ // Supplied by paboum Bugreport #11770
+ {
+ {
+ "simon2",
+ "CD",
+
+ {
+ { "gsptr30", GAME_BASEFILE, "63b68bdd395baa108b865cfbc0f9afff", 58652},
+ { "icon.dat", GAME_ICONFILE, "72096a62d36e6034ea9fecc13b2dbdab", 18089},
+ { "simon2.gme", GAME_GMEFILE, "e749c4c103d7e7d51b34620ed76c5a04", 20046789},
+ { "stripped.txt", GAME_STRFILE, "e229f84d46fa83f99b4a7115679f3fb6", 171},
+ { "tbllist", GAME_TBLFILE, "2082f8d02075e590300478853a91ffd9", 513},
+ AD_LISTEND
+ },
+ Common::PL_POL,
+ Common::kPlatformWindows,
+ ADGF_CD,
+ GUIO0()
+ },
+
+ GType_SIMON2,
+ GID_SIMON2,
+ GF_TALKIE
+ },
+
// Simon the Sorcerer 2 - English with MT-32 hack (25th Anniversary Edition)
// Bugreport #11394
{
Commit: 5e30db08e34372d1a834d9727a4bb13ed4e8982b
https://github.com/scummvm/scummvm/commit/5e30db08e34372d1a834d9727a4bb13ed4e8982b
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:48+02:00
Commit Message:
KYRA: Change incorrectly set up GOG lol to unsupported.
Changed paths:
engines/kyra/detection_tables.h
diff --git a/engines/kyra/detection_tables.h b/engines/kyra/detection_tables.h
index 775b5be80d..c2a295aa22 100644
--- a/engines/kyra/detection_tables.h
+++ b/engines/kyra/detection_tables.h
@@ -1237,12 +1237,12 @@ const KYRAGameDescription adGameDescs[] = {
{
{
"lol",
- _s("You added the game incorrectly. The game data is in ISO image GAME.DAT."),
+ _s("You added the game incorrectly. The game data is in ISO image GAME.DAT."), // Reason for being unsupported
AD_ENTRY2s("VOC.PAK", "eb398f09ba3321d872b6174a68a987d9", 2276340,
"GAME.DAT", "f6ec0ee628b6b2ea4a1b551e3071d84b", 306751488),
Common::EN_ANY,
Common::kPlatformDOS,
- ADGF_WARNING | ADGF_DROPLANGUAGE | ADGF_CD,
+ ADGF_UNSUPPORTED | ADGF_DROPLANGUAGE | ADGF_CD,
GUIO5(GUIO_MIDIADLIB, GUIO_MIDIMT32, GUIO_MIDIGM, GUIO_MIDIPCSPK, GUIO_RENDERVGA)
},
LOL_CD_FLAGS
Commit: 63f6f6f63da982dcd4e0a6b636c5c880d700605e
https://github.com/scummvm/scummvm/commit/63f6f6f63da982dcd4e0a6b636c5c880d700605e
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:48+02:00
Commit Message:
PINK: Provided back link to the added detection entry
Changed paths:
engines/pink/detection_tables.h
diff --git a/engines/pink/detection_tables.h b/engines/pink/detection_tables.h
index f7e7e89994..8dc84509c2 100644
--- a/engines/pink/detection_tables.h
+++ b/engines/pink/detection_tables.h
@@ -60,6 +60,7 @@ static const ADGameDescription gameDescriptions[] = {
},
// English Great Britain
+ // Supplied by jp438-2 Bugreport #10956
{
"peril",
0,
Commit: 0b65dfd35a8a1ebc0f0adf10e2f1e41b48f27654
https://github.com/scummvm/scummvm/commit/0b65dfd35a8a1ebc0f0adf10e2f1e41b48f27654
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:48+02:00
Commit Message:
STARK: Added detection for unsupported Polish version. Bugreport #11883
Changed paths:
engines/stark/detection.cpp
diff --git a/engines/stark/detection.cpp b/engines/stark/detection.cpp
index a289f6aa55..698fb50ac7 100644
--- a/engines/stark/detection.cpp
+++ b/engines/stark/detection.cpp
@@ -272,6 +272,20 @@ static const ADGameDescription gameDescriptions[] = {
GUIO_NONE
},
+ // The Longest Journey
+ // Polish Demo.
+ // Provided by Faalargon, Bugreport #11883 (#1440 in Residualvm)
+ // Folder structure is completely different. Unsupported for now
+ {
+ "tlj", _s("Missing game code"), // Reason for being unsupported
+ AD_ENTRY2s("x.xarc", "6c6c388f757adcc49e7f33b0b2cccf96", 2904,
+ "chapters.ini", "6ee43a176a5eb94153c2d813261c3226", 252),
+ Common::PL_POL,
+ Common::kPlatformWindows,
+ ADGF_DEMO | ADGF_UNSUPPORTED,
+ GUIO_NONE
+ },
+
// The Longest Journey
// Russian 2CD by 1C
{
Commit: ace55b7af25ee7a7c7b9a5e54ee713340b603664
https://github.com/scummvm/scummvm/commit/ace55b7af25ee7a7c7b9a5e54ee713340b603664
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:48+02:00
Commit Message:
STARK: Added detection for Czech version. Bugreport #11914
Changed paths:
engines/stark/detection.cpp
diff --git a/engines/stark/detection.cpp b/engines/stark/detection.cpp
index 698fb50ac7..031ccd5079 100644
--- a/engines/stark/detection.cpp
+++ b/engines/stark/detection.cpp
@@ -80,6 +80,19 @@ static const ADGameDescription gameDescriptions[] = {
GUIO_NONE
},
+ // The Longest Journey
+ // Czech 4CD
+ // Bugreport #11914
+ {
+ "tlj", "4 CD build 142",
+ AD_ENTRY2s("x.xarc", "a0559457126caadab0cadac02d35f26f", 3032,
+ "chapters.ini", "547f0b9c04c00d330b60eed6e8d24732", 484),
+ Common::CZ_CZE,
+ Common::kPlatformWindows,
+ ADGF_NO_FLAGS,
+ GUIO_NONE
+ },
+
// The Longest Journey
// French Demo
{
Commit: 634be04836d448e3e06ddf72f551c7d0f0a11d1d
https://github.com/scummvm/scummvm/commit/634be04836d448e3e06ddf72f551c7d0f0a11d1d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:48+02:00
Commit Message:
KYRA: Added detection to unsupported Chinese kyra3. Bugreport #11934
Changed paths:
engines/kyra/detection_tables.h
diff --git a/engines/kyra/detection_tables.h b/engines/kyra/detection_tables.h
index c2a295aa22..b0f6c11976 100644
--- a/engines/kyra/detection_tables.h
+++ b/engines/kyra/detection_tables.h
@@ -950,6 +950,19 @@ const KYRAGameDescription adGameDescs[] = {
},
KYRA3_CD_FLAGS
},
+ { // Provided by AquariumTroop. Bugreport #11934
+ {
+ "kyra3",
+ _s("Missing game code"), // Reason for being unsupported
+ AD_ENTRY2s("ONETIME.PAK", "93b4ca2847ab7cfe52188cbde2ffe561", 485162,
+ "WESTWOOD.001", "c782e09a3b80510962af1426acf5a130", 10426962),
+ Common::ZH_CNA,
+ Common::kPlatformDOS,
+ ADGF_DROPLANGUAGE | ADGF_UNSUPPORTED,
+ GUIO5(GUIO_NOMIDI, GUIO_RENDERVGA, GAMEOPTION_KYRA3_AUDIENCE, GAMEOPTION_KYRA3_SKIP, GAMEOPTION_KYRA3_HELIUM)
+ },
+ KYRA3_CD_FLAGS
+ },
// installed version
{
Commit: b848cbb0ad6854fd19c74939541f72a9a0914f93
https://github.com/scummvm/scummvm/commit/b848cbb0ad6854fd19c74939541f72a9a0914f93
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:48+02:00
Commit Message:
KYRA: Added detection entry for Traditional Chinese kyra3. Bugreport #11935
Changed paths:
engines/kyra/detection_tables.h
diff --git a/engines/kyra/detection_tables.h b/engines/kyra/detection_tables.h
index b0f6c11976..ad67d04d38 100644
--- a/engines/kyra/detection_tables.h
+++ b/engines/kyra/detection_tables.h
@@ -963,6 +963,19 @@ const KYRAGameDescription adGameDescs[] = {
},
KYRA3_CD_FLAGS
},
+ { // Provided by AquariumTroop. Bugreport #11935
+ {
+ "kyra3",
+ _s("Missing game code"), // Reason for being unsupported
+ AD_ENTRY2s("ONETIME.PAK", "4fe8ff05002f3a4d645f11cd326fcef2", 485328,
+ "WESTWOOD.001", "99d4b13576ced18a072a7590eac3cc37", 10419012),
+ Common::ZH_TWN,
+ Common::kPlatformDOS,
+ ADGF_DROPLANGUAGE | ADGF_UNSUPPORTED,
+ GUIO5(GUIO_NOMIDI, GUIO_RENDERVGA, GAMEOPTION_KYRA3_AUDIENCE, GAMEOPTION_KYRA3_SKIP, GAMEOPTION_KYRA3_HELIUM)
+ },
+ KYRA3_CD_FLAGS
+ },
// installed version
{
Commit: 81556c86349138ba3501431660bf8f61492e6842
https://github.com/scummvm/scummvm/commit/81556c86349138ba3501431660bf8f61492e6842
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:48+02:00
Commit Message:
KYRA: Clarify language for Chinese kyra2
Changed paths:
engines/kyra/detection_tables.h
diff --git a/engines/kyra/detection_tables.h b/engines/kyra/detection_tables.h
index ad67d04d38..002391ea2e 100644
--- a/engines/kyra/detection_tables.h
+++ b/engines/kyra/detection_tables.h
@@ -618,7 +618,7 @@ const KYRAGameDescription adGameDescs[] = {
"kyra2",
_s("Missing game code"), // Reason for being unsupported
AD_ENTRY1("FATE.PAK", "5bfc4dd48778ca1f3a9e001e345a9774"),
- Common::ZH_ANY,
+ Common::ZH_TWN,
Common::kPlatformDOS,
ADGF_UNSUPPORTED,
GUIO6(GUIO_NOSPEECH, GUIO_MIDIADLIB, GUIO_MIDIMT32, GUIO_MIDIGM, GUIO_MIDIPCSPK, GUIO_RENDERVGA)
Commit: bed25198008cde8d12947c47aacb3db506e4fa67
https://github.com/scummvm/scummvm/commit/bed25198008cde8d12947c47aacb3db506e4fa67
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:48+02:00
Commit Message:
KYRA: Clarify language for Chinese kyra1
Changed paths:
engines/kyra/detection_tables.h
diff --git a/engines/kyra/detection_tables.h b/engines/kyra/detection_tables.h
index 002391ea2e..ce9489e55c 100644
--- a/engines/kyra/detection_tables.h
+++ b/engines/kyra/detection_tables.h
@@ -236,7 +236,7 @@ const KYRAGameDescription adGameDescs[] = {
"kyra1",
_s("Missing game code"), // Reason for being unsupported
AD_ENTRY1("GEMCUT.EMC", "3f319d6908830a46ff42229a39a2c7ec"),
- Common::ZH_ANY,
+ Common::ZH_TWN,
Common::kPlatformDOS,
ADGF_UNSUPPORTED,
GUIO5(GUIO_NOSPEECH, GUIO_MIDIADLIB, GUIO_MIDIMT32, GUIO_MIDIPCSPK, GUIO_RENDERVGA)
Commit: 34cad2193de5215982d42789521e0202b7e649be
https://github.com/scummvm/scummvm/commit/34cad2193de5215982d42789521e0202b7e649be
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:49+02:00
Commit Message:
BLADERUNNER: Added detection stub for Chinese version
Changed paths:
engines/bladerunner/detection_tables.h
diff --git a/engines/bladerunner/detection_tables.h b/engines/bladerunner/detection_tables.h
index 82d0e87b2b..a70d43d2fd 100644
--- a/engines/bladerunner/detection_tables.h
+++ b/engines/bladerunner/detection_tables.h
@@ -123,6 +123,18 @@ static const ADGameDescription gameDescriptions[] = {
GUIO6(GAMEOPTION_SITCOM, GAMEOPTION_SHORTY, GAMEOPTION_FRAMELIMITER_NODELAYMILLIS, GAMEOPTION_FRAMELIMITER_FPS, GAMEOPTION_DISABLE_STAMINA_DRAIN, GUIO_NOMIDI)
},
+ // BladeRunner (Chinese)
+ {
+ "bladerunner",
+ _s("Missing game code"), // Reason for being unsupported
+ AD_ENTRY2s("STARTUP.MIX", "c198b54a5366b88b1734bbca21d3b192", 2678672,
+ "95blade.dll", "187f257c3183d6b0a0aee69e5cde4c76", 307200),
+ Common::ZH_CNA,
+ Common::kPlatformWindows,
+ ADGF_UNSUPPORTED,
+ GUIO6(GAMEOPTION_SITCOM, GAMEOPTION_SHORTY, GAMEOPTION_FRAMELIMITER_NODELAYMILLIS, GAMEOPTION_FRAMELIMITER_FPS, GAMEOPTION_DISABLE_STAMINA_DRAIN, GUIO_NOMIDI)
+ },
+
// Versions with restored content
// BladeRunner (English) - ENG
Commit: 37188af06c5c9a6053759ce36409fdc1c2ab6c4c
https://github.com/scummvm/scummvm/commit/37188af06c5c9a6053759ce36409fdc1c2ab6c4c
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:49+02:00
Commit Message:
SHERLOCK: Clarified language for Chinese sherlock. Marked as unsupported
Changed paths:
engines/sherlock/POTFILES
engines/sherlock/detection_tables.h
diff --git a/engines/sherlock/POTFILES b/engines/sherlock/POTFILES
index b9f1c1249f..2748b07516 100644
--- a/engines/sherlock/POTFILES
+++ b/engines/sherlock/POTFILES
@@ -1,3 +1,4 @@
+engines/sherlock/detection_tables.h
engines/sherlock/detection.cpp
engines/sherlock/scalpel/scalpel.cpp
engines/sherlock/tattoo/widget_files.cpp
diff --git a/engines/sherlock/detection_tables.h b/engines/sherlock/detection_tables.h
index e154413bb6..eb28ad4f93 100644
--- a/engines/sherlock/detection_tables.h
+++ b/engines/sherlock/detection_tables.h
@@ -211,11 +211,11 @@ static const SherlockGameDescription gameDescriptions[] = {
// Provided by AquariumTroop
{
"scalpel",
- 0,
+ _s("Missing game code"), // Reason for being unsupported
AD_ENTRY1s("talk.lib", "334c7d468860f20eafbcd002891f0c6b", 173935),
- Common::ZH_CNA,
+ Common::ZH_TWN,
Common::kPlatformDOS,
- ADGF_UNSTABLE,
+ ADGF_UNSUPPORTED,
GUIO1(GUIO_NOSPEECH)
},
GType_SerratedScalpel,
Commit: a7459703d83d67ef8a147f3c20fd60e49b7808ac
https://github.com/scummvm/scummvm/commit/a7459703d83d67ef8a147f3c20fd60e49b7808ac
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:49+02:00
Commit Message:
GOB: Added detection for Polish Amiga gob2. Bugreport #12033
Changed paths:
engines/gob/detection/tables_gob2.h
diff --git a/engines/gob/detection/tables_gob2.h b/engines/gob/detection/tables_gob2.h
index af64c1c560..4a13a8d69b 100644
--- a/engines/gob/detection/tables_gob2.h
+++ b/engines/gob/detection/tables_gob2.h
@@ -561,6 +561,21 @@
kFeaturesNone,
0, 0, 0
},
+{ // Supplied by damsoftPL in bug report #12033
+ {
+ "gob2",
+ "",
+ AD_ENTRY1s("intro.stk", "d721383633b7acd6f18752e1ad217473", 559840),
+ PL_POL,
+ kPlatformAmiga,
+ ADGF_NO_FLAGS,
+ GUIO2(GUIO_NOSUBTITLES, GUIO_NOSPEECH)
+ },
+ kGameTypeGob2,
+ kFeaturesNone,
+ 0, 0, 0
+},
+
// -- Atari ST --
Commit: f5b0b27fdfcb9ec97f519259d75962c57e123d9b
https://github.com/scummvm/scummvm/commit/f5b0b27fdfcb9ec97f519259d75962c57e123d9b
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:49+02:00
Commit Message:
SCUMM: Added detection for freddi1. Bugreport #12104
Changed paths:
devtools/scumm-md5.txt
engines/scumm/scumm-md5.h
diff --git a/devtools/scumm-md5.txt b/devtools/scumm-md5.txt
index fd7f912383..01ea64e974 100644
--- a/devtools/scumm-md5.txt
+++ b/devtools/scumm-md5.txt
@@ -508,6 +508,7 @@ fbpack Fatty Bear's Fun Pack
freddi Freddi Fish 1: The Case of the Missing Kelp Seeds
d4cccb5af88f3e77f370896e9ba8c5f9 -1 All Windows HE 71 - - sev
+ 01e51615b26e8ddf6ae88dd86e435d4a -1 en Windows HE 71 - - PaulPfenning
c0039ad982999c92d0de81910d640fa0 26159 nl Windows HE 71 - - adutchguy
68530d2e15f339fbbf3150b78b4d2ffb -1 en Mac HE 73 - - satz
6d1baa1065ac5f7b210be8ebe4235e49 26384 nl Mac HE 73 - - daniel9
diff --git a/engines/scumm/scumm-md5.h b/engines/scumm/scumm-md5.h
index d03b386617..bcaf4a0ec4 100644
--- a/engines/scumm/scumm-md5.h
+++ b/engines/scumm/scumm-md5.h
@@ -1,5 +1,5 @@
/*
- This file was generated by the md5table tool on Tue Jan 19 21:18:50 2021
+ This file was generated by the md5table tool on Thu Apr 22 22:34:03 2021
DO NOT EDIT MANUALLY!
*/
@@ -21,6 +21,7 @@ struct MD5Table {
static const MD5Table md5table[] = {
{ "008e76ec3ae58d0add637ea7aa299a2c", "freddi3", "", "", -1, Common::FR_FRA, Common::kPlatformMacintosh },
+ { "01e51615b26e8ddf6ae88dd86e435d4a", "freddi", "HE 71", "", -1, Common::EN_ANY, Common::kPlatformWindows },
{ "02cae0e7ff8504f73618391873d5781a", "freddi3", "HE 98.5", "", -1, Common::DE_DEU, Common::kPlatformWindows },
{ "0305e850382b812fec6e5998ef88a966", "pajama", "", "Demo", -1, Common::NL_NLD, Common::kPlatformUnknown },
{ "03173f0df12062d84721062666155efa", "farm", "HE 71", "Demo", 34312, Common::EN_ANY, Common::kPlatformWindows },
Commit: c2c4526e56bf7d6ce259752e96f454b0e8be7fe0
https://github.com/scummvm/scummvm/commit/c2c4526e56bf7d6ce259752e96f454b0e8be7fe0
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:49+02:00
Commit Message:
COMPOSER: Added detection for French babayaga. Bugreport #12122
Changed paths:
engines/composer/detection_tables.h
diff --git a/engines/composer/detection_tables.h b/engines/composer/detection_tables.h
index a2f6d3b4c1..bc70551572 100644
--- a/engines/composer/detection_tables.h
+++ b/engines/composer/detection_tables.h
@@ -75,6 +75,23 @@ static const ComposerGameDescription gameDescriptions[] = {
GType_ComposerV1
},
+ // Magic Tales: Baba Yaga and the Magic Geese French- from bug #12122
+ {
+ {
+ "babayaga",
+ 0,
+ {
+ {"book.ini", GAME_CONFIGFILE, "966a4ee9226d96085c953bb4f9426c06", 3940},
+ AD_LISTEND
+ },
+ Common::FR_FRA,
+ Common::kPlatformWindows,
+ ADGF_NO_FLAGS,
+ GUIO2(GUIO_NOASPECT, GUIO_NOMIDI)
+ },
+ GType_ComposerV1
+ },
+
// Magic Tales: Imo and the King - from bug #5964
{
{
Commit: 7fbe5512a72337caeac1d31a412afe005df44f13
https://github.com/scummvm/scummvm/commit/7fbe5512a72337caeac1d31a412afe005df44f13
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:49+02:00
Commit Message:
COMPOSER: Added detection for French imoking. Bugreport #12123
Changed paths:
engines/composer/detection_tables.h
diff --git a/engines/composer/detection_tables.h b/engines/composer/detection_tables.h
index bc70551572..238c4a0b14 100644
--- a/engines/composer/detection_tables.h
+++ b/engines/composer/detection_tables.h
@@ -126,6 +126,23 @@ static const ComposerGameDescription gameDescriptions[] = {
GType_ComposerV1
},
+ // Magic Tales: Imo and the King French Windows. Bugreport #12123
+ {
+ {
+ "imoking",
+ 0,
+ {
+ {"book.ini", GAME_CONFIGFILE, "753d3be27f54d564d8d1bff2b9f0d14f", 3375},
+ AD_LISTEND
+ },
+ Common::FR_FRA,
+ Common::kPlatformWindows,
+ ADGF_NO_FLAGS,
+ GUIO2(GUIO_NOASPECT, GUIO_NOMIDI)
+ },
+ GType_ComposerV1
+ },
+
// Magic Tales: Imo and the King Hebrew Macintosh
{
{
Commit: e3e22e26c8d15ded26513112482ef83f493e46cc
https://github.com/scummvm/scummvm/commit/e3e22e26c8d15ded26513112482ef83f493e46cc
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:49+02:00
Commit Message:
COMPOSER: Added detection for French littlesamurai. Bugreport #12124
Changed paths:
engines/composer/detection_tables.h
diff --git a/engines/composer/detection_tables.h b/engines/composer/detection_tables.h
index 238c4a0b14..6509e2cb14 100644
--- a/engines/composer/detection_tables.h
+++ b/engines/composer/detection_tables.h
@@ -280,6 +280,23 @@ static const ComposerGameDescription gameDescriptions[] = {
GType_ComposerV1
},
+ // Magic Tales: The Little Samurai - French from bug #12124
+ {
+ {
+ "littlesamurai",
+ 0,
+ {
+ {"book.ini", GAME_CONFIGFILE, "1e9199e31b4f93c5e5caeedd3c2e7c0b", 3833},
+ AD_LISTEND
+ },
+ Common::FR_FRA,
+ Common::kPlatformWindows,
+ ADGF_NO_FLAGS,
+ GUIO2(GUIO_NOASPECT, GUIO_NOMIDI)
+ },
+ GType_ComposerV1
+ },
+
// Magic Tales: The Little Samurai Mac - from bug #5934
{
{
Commit: 072f96e1f273109097baa208d4ffccfa5640bb4a
https://github.com/scummvm/scummvm/commit/072f96e1f273109097baa208d4ffccfa5640bb4a
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-23T15:56:49+02:00
Commit Message:
GLK: QUEST: Added more detection entries. Bugreport #11654
Changed paths:
engines/glk/quest/detection_tables.h
diff --git a/engines/glk/quest/detection_tables.h b/engines/glk/quest/detection_tables.h
index dad3bf9b7c..87c1a0b129 100644
--- a/engines/glk/quest/detection_tables.h
+++ b/engines/glk/quest/detection_tables.h
@@ -32,6 +32,8 @@ const PlainGameDescriptor QUEST_GAME_LIST[] = {
{ "adventureq", "Adventure!" },
{ "attemptedassassination", "Attempted Assassination" },
+ { "beam", "Beam" },
+ { "gatheredindarkness", "Gathered in Darkness" },
{ "hauntedhorror", "Haunted Horror" },
{ "magicworld", "Magic World" },
{ "redsaucemonday", "Red Sauce Monday" },
@@ -39,24 +41,31 @@ const PlainGameDescriptor QUEST_GAME_LIST[] = {
#ifdef QUEST_EXT
// The games below are newer games that the Geas interpreter doesn't yet support
+ { "arcii", "ARC II" },
{ "attackonfrightside", "Attack On Frightside" },
{ "balaclava", "Balaclava" },
{ "bearsepicquest", "Bear's Epic Quest" },
{ "caught", "Caught!" },
{ "cuttings", "Cuttings" },
{ "draculacrl", "Dracula: CRL remake" },
+ { "dreampieces", "Dream Pieces" },
{ "elections4", "It's election time in Pakistan: Go rich boy, go!" },
+ { "escapebathhouse", "Escape from the Mechanical Bathhouse" },
{ "everyman", "Everyman" },
{ "firstTimes", "First Times" },
{ "giftofthemagi", "Gift of the Magi" },
{ "medievalistsquest", "Medievalist's Quest" },
+ { "micky", "Micky" },
{ "parishotel", "Welcome to the Paris Hotel" },
{ "questforloot", "Quest for loot and something else" },
+ { "signos", "Signos" },
{ "sleepingassassin", "El asesino durmiente (The Sleeping Assassin)" },
{ "spondre", "Spondre" },
{ "murderjennylee", "The Brutal Murder of Jenny Lee" },
{ "thelasthero", "The Last Hero" },
+ { "myothianfalcon", "The Myothian Falcon" },
{ "tokindlealight", "To Kindle a Light" },
+ { "welcometoparishotel", "Welcome to the Paris Hotel!" },
{ "xanadu", "Xanadu - The World's Only Hope" },
#endif
{ nullptr, nullptr }
@@ -70,8 +79,15 @@ const GlkDetectionEntry QUEST_GAMES[] = {
DT_ENTRY0("redsaucemonday", "5a2f3e25d4a8c77e0c53d980dbb37451", 20324),
DT_ENTRY0("worldsend", "4f5daac10085927bf5180bea24f7ef0d", 73396),
+ // Competition 2006
+ DT_ENTRY1("beam", "1.10", "d696f04cb7e6851e0bcbde0dbd78cbd0", 68543),
+
+ // Competition 2007
+ DT_ENTRY0("gatheredindarkness", "40f75b697ffb77bba88da6b431efad78", 1052274),
+
#ifdef QUEST_EXT
// The games below are newer games that the Geas interpreter doesn't yet support
+ DT_ENTRY0("arcii", "3c208e2afd9f032508de9bebf1b83f9a", 17268977),
DT_ENTRY0("attackonfrightside", "84542fc6460833bbf2594ed83f8b1fc7", 46019),
DT_ENTRY0("balaclava", "8b30af05d9986f9f962c677181ecc766", 57719),
DT_ENTRY0("bearsepicquest", "e6896a65527f456b4362aaebcf39e354", 62075),
@@ -79,18 +95,30 @@ const GlkDetectionEntry QUEST_GAMES[] = {
DT_ENTRY0("cuttings", "e0ded5a6b78e8c9482e746d55f61972c", 6583866),
DT_ENTRY0("draculacrl", "1af3ec877584b290f7ab1a1be8f944a5", 4548737),
DT_ENTRY0("elections4", "d0bc0cd54182d6099808767068592b94", 591994),
+ DT_ENTRY0("escapebathhouse", "02f7ba339e50c8faa8c5dc3a1c051d7b", 1067048),
DT_ENTRY0("everyman", "410c7211d3f0c700f34e97ed258e33f1", 56218),
DT_ENTRY0("firstTimes", "31d878c82d99856d473762612f154eb6", 10253826),
DT_ENTRY0("giftofthemagi", "b33132ce71c8a2eed0f6c1c1af284765", 78647),
DT_ENTRY0("medievalistsquest", "e0a15bc2a74a0bd6bb5c24661ea35829", 127977271),
+ DT_ENTRY0("micky", "9c2aa213bb73d8083506ee6f64436d9d", 287227),
DT_ENTRY0("parishotel", "c9a42bc3f306aba5e318b0a74115e0d4", 474983),
DT_ENTRY0("questforloot", "f7e32aec0f961a59a69bead3fadff4f0", 1357373),
DT_ENTRY0("sleepingassassin", "9c2aa213bb73d8083506ee6f64436d9d", 287227),
- DT_ENTRY0("spondre", "c639077eb487eb6d1b63cda2c9ba5a9b", 1169469),
+ DT_ENTRY1("spondre", "1.1a", "c639077eb487eb6d1b63cda2c9ba5a9b", 1169469),
DT_ENTRY0("murderjennylee", "27d0f3ff28fd13e556203ab3d53edbe6", 80486),
DT_ENTRY0("thelasthero", "31e10b8a7f11a6289955b89437f8178c", 62512),
- DT_ENTRY0("tokindlealight", "5d3b57830b003046a621620ba0869d7c", 811845),
+ DT_ENTRY1("tokindlealight", "1.2", "5d3b57830b003046a621620ba0869d7c", 811845),
+ DT_ENTRY0("welcometoparishotel", "c9a42bc3f306aba5e318b0a74115e0d4", 474983),
DT_ENTRY0("xanadu", "fef25e3473755ec572d4236d56f918e2", 396973),
+
+ // Competition 2011
+ DT_ENTRY1("myothianfalcon", "1.2", "b5e7680eeb4f27c195f58472fa8eb146", 97861),
+
+ // Competition 2012
+ DT_ENTRY0("signos", "636793562d75ee82a4ea10d3bd3c62d6", 2311079),
+
+ // Competition 2013
+ DT_ENTRY1("dreampieces", "5.0", "fcb0fcc94ba24ba308415fd02a6f6c95", 274779),
#endif
DT_END_MARKER
More information about the Scummvm-git-logs
mailing list