SCI: GK2: if subtitles patch is missing, explain how to install it

This commit is contained in:
Zvika Haramaty 2020-02-05 15:03:18 +02:00 committed by Filippos Karapetis
parent f3082a5588
commit bf3a8df741
3 changed files with 48 additions and 2 deletions

View File

@ -873,8 +873,7 @@ static const struct ADGameDescription SciGameDescriptions[] = {
GUIO_NOLAUNCHLOAD, \
GUIO_NOASPECT, \
GAMEOPTION_HQ_VIDEO)
#define GUIO_GK2 GUIO7(GUIO_NOSUBTITLES, \
GUIO_LINKSPEECHTOSFX, \
#define GUIO_GK2 GUIO6(GUIO_LINKSPEECHTOSFX, \
GUIO_NOMIDI, \
GUIO_NOASPECT, \
GAMEOPTION_ORIGINAL_SAVELOAD, \

View File

@ -30,7 +30,12 @@
#include "sci/engine/guest_additions.h"
#endif
#include "common/config-manager.h"
#include "common/util.h"
#include "common/translation.h"
#include "common/system.h"
#include "gui/message.h"
namespace Sci {
@ -18460,6 +18465,42 @@ void ScriptPatcher::applyPatch(const SciScriptPatcherEntry *patchEntry, SciSpan<
}
}
// TODO: suggest automatic installation
void ScriptPatcher::suggestDownloadGK2SubTitlesPatch() {
if (ConfMan.getBool("subtitles")) {
const char *altButton;
Common::String downloadMessage;
if (g_system->hasFeature(OSystem::kFeatureOpenUrl)) {
altButton = _("Download patch");
downloadMessage = _("(or click 'Download patch' button. But note - it only downloads, you will have to continue from there)\n");
} else {
altButton = nullptr;
downloadMessage = "";
}
GUI::MessageDialog dialog(_("GK2 has a fan made subtitles, available thanks to the good persons at SierraHelp.\n\n"
"Installation:\n"
"- download http://www.sierrahelp.com/Files/Patches/GabrielKnight/GK2Subtitles.zip\n" +
downloadMessage +
"- extract zip file\n"
"- no need to run the .exe file\n"
"- extract the .exe file with a file archiver, like 7-zip\n"
"- create a PATCHES subdirectory inside your GK2 directory\n"
"- copy the content of GK2Subtitles\\SUBPATCH to the PATCHES subdirectory\n"
"- replace files with similar names\n"
"- restart the game\n"), _("OK"), altButton, Graphics::kTextAlignLeft);
int result = dialog.runModal();
if (!result) {
char url[] = "http://www.sierrahelp.com/Files/Patches/GabrielKnight/GK2Subtitles.zip";
g_system->openUrl(url);
}
}
}
bool ScriptPatcher::verifySignature(uint32 byteOffset, const uint16 *signatureData, const char *signatureDescription, const SciSpan<const byte> &scriptData) {
uint16 sigSelector = 0;
@ -18947,6 +18988,8 @@ void ScriptPatcher::processScript(uint16 scriptNr, SciSpan<byte> scriptData) {
// Enable subtitle compatibility if a sync resource is present
if (g_sci->getResMan()->testResource(ResourceId(kResourceTypeSync, 10))) {
enablePatch(signatureTable, "subtitle patch compatibility");
} else {
suggestDownloadGK2SubTitlesPatch();
}
break;
case GID_KQ5:

View File

@ -120,6 +120,10 @@ private:
// Applies a patch to a given script + offset (overwrites parts)
void applyPatch(const SciScriptPatcherEntry *patchEntry, SciSpan<byte> scriptData, int32 signatureOffset);
// suggest to download GK2 subtitles patch
// in the future, we might refactor it to something more generic, if will needed
void suggestDownloadGK2SubTitlesPatch();
Selector *_selectorIdTable;
SciScriptPatcherRuntimeEntry *_runtimeTable;
bool _isMacSci11;