[Scummvm-git-logs] scummvm master -> 2d4c34353b240f6f0fb7951ec7646bb4d73d2d8f
bluegr
noreply at scummvm.org
Thu Jul 30 21:54:57 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
2d4c34353b AGS: Add detection, support for Gobliiins 5 v1.0.5
Commit: 2d4c34353b240f6f0fb7951ec7646bb4d73d2d8f
https://github.com/scummvm/scummvm/commit/2d4c34353b240f6f0fb7951ec7646bb4d73d2d8f
Author: eientei95 (einstein95 at users.noreply.github.com)
Date: 2026-07-31T00:54:52+03:00
Commit Message:
AGS: Add detection, support for Gobliiins 5 v1.0.5
Changed paths:
engines/ags/detection_tables.h
engines/ags/plugins/ags_console_sys_plugin/ags_console_sys_plugin.cpp
engines/ags/plugins/ags_console_sys_plugin/ags_console_sys_plugin.h
diff --git a/engines/ags/detection_tables.h b/engines/ags/detection_tables.h
index 763ef951133..c2b8777c698 100644
--- a/engines/ags/detection_tables.h
+++ b/engines/ags/detection_tables.h
@@ -5067,6 +5067,8 @@ const AGSGameDescription GAME_DESCRIPTIONS[] = {
GAME_ENTRY_STEAM("gobliiins5-1", "Gobliiins5-Part1.ags", "41513db1bd8870e43426b9e94bb26ad1", 171800709),
// Gobliiins Collection release 2026-05-27
GAME_ENTRY_PLATFORM("gobliiins5", "Gobliiins5.ags", "58c44c065cbdbddf83e9535ef17ed51f", 281472880, "Switch"),
+ // Gobliiins Collection release 2026-0?-?? v1.0.5 update
+ GAME_ENTRY_PLATFORM("gobliiins5", "Gobliiins5.ags", "8796d0826649a3e6920d799cf7f472bb", 281555704, "Switch"),
// Itch.io v? release 2026-02-10
diff --git a/engines/ags/plugins/ags_console_sys_plugin/ags_console_sys_plugin.cpp b/engines/ags/plugins/ags_console_sys_plugin/ags_console_sys_plugin.cpp
index d4da1f0edb6..38fd438d769 100644
--- a/engines/ags/plugins/ags_console_sys_plugin/ags_console_sys_plugin.cpp
+++ b/engines/ags/plugins/ags_console_sys_plugin/ags_console_sys_plugin.cpp
@@ -47,6 +47,7 @@ void AGSConsoleSysPlugin::AGS_EngineStartup(IAGSEngine *engine) {
SCRIPT_METHOD(AGSConsoleSysPlugin::SetTextureFilteringType^1, AGSConsoleSysPlugin::SetTextureFilteringType);
SCRIPT_METHOD(Game_RAG::EnableCheats^0, AGSConsoleSysPlugin::EnableCheats);
+ SCRIPT_METHOD(Game_RAG::IsAnyJoyconMouseInContact^0, AGSConsoleSysPlugin::IsAnyJoyconMouseInContact);
}
void AGSConsoleSysPlugin::GetSystemInputDeviceType(ScriptMethodParams ¶ms) {
@@ -137,9 +138,14 @@ void AGSConsoleSysPlugin::SetTextureFilteringType(ScriptMethodParams ¶ms) {
}
void AGSConsoleSysPlugin::EnableCheats(ScriptMethodParams ¶ms) {
+ warning("AGSConsoleSysPlugin::EnableCheats STUB: returning false");
params._result = false;
}
+void AGSConsoleSysPlugin::IsAnyJoyconMouseInContact(ScriptMethodParams ¶ms) {
+ // warning("AGSConsoleSysPlugin::IsAnyJoyconMouseInContact STUB: returning false");
+ params._result = true;
+}
} // namespace AGSConsoleSysPlugin
} // namespace Plugins
diff --git a/engines/ags/plugins/ags_console_sys_plugin/ags_console_sys_plugin.h b/engines/ags/plugins/ags_console_sys_plugin/ags_console_sys_plugin.h
index 2a332ef4d8e..ce5903fa73c 100644
--- a/engines/ags/plugins/ags_console_sys_plugin/ags_console_sys_plugin.h
+++ b/engines/ags/plugins/ags_console_sys_plugin/ags_console_sys_plugin.h
@@ -43,6 +43,7 @@ private:
void SetPixelPerfect(ScriptMethodParams ¶ms);
void SetTextureFilteringType(ScriptMethodParams ¶ms);
void EnableCheats(ScriptMethodParams ¶ms);
+ void IsAnyJoyconMouseInContact(ScriptMethodParams ¶ms);
public:
AGSConsoleSysPlugin() : PluginBase() {}
More information about the Scummvm-git-logs
mailing list