Detecting GameMaker
まだ誰も着手していません。
評価
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 初心者へのやさしさ
- 25/100
- issue の種類
- 機能追加
- 明瞭さ
- 説明が足りない
- 活発さ
- 停滞
- 領域
- tooling
調査の方向性
Start by reviewing the existing GameMaker detection entry points and how depot file lists are scanned; the issue does not name specific files or tests. Compare the listed false negatives and proposed markers, then define which detection signals to support and verify them against the example depots without introducing false positives.
索引モデルが issue の本文から書いたものです。
説明
Currently there are plenty of false negatives for GM games, which is attributed to the following factors:
- GMS1..GMS2.2 (or so) games compiled with YYC would embed
data.winfile into the executable as a resource instead of keeping it external. snd_*naming convention is non-obligatory -mus_is also common, as is camelCase/PascalCase. And some games might not have external audio at all! (it's a thing you tick a checkbox for on sounds)
In a way I also personally made the matters worse due to releasing a tool that rewrites audio file paths and moves them to a sub-directory- GMS1 had an option to use a compressor (cabinet extractor IIRC) to pack everything into one large executable.
- Pre-GMS1 games are hard to detect since there was always a single executable.
Since almost all games would resort to using at least one DLL for specific features, collecting legacy DLL names from GMToolbox could help, but would take a while.
Binary signature detection is also problematic. options.iniis not required for the game to run so some people would delete it
Suggestions:
game.unxandgame.iosare Linux/Mac versions ofdata.win- Furthermore, OSX builds will contain
libYoYoGamepad.dylibfor concrete results. runner(+x) +run.sh+lib/libsteam_api.so+assetsis a good tell of a GM Linux build that has not been customizedaudiogroup<index>.datare packages of audio files to be loaded on-demand and can be a good tell.
These are always labelled sequentially starting at 1, soaudiogroup1.dat,audiogroup2.dat, and so on.D3DX9_43.dllwithoutD3DCompiler_43.dllcan be a good hint of GMS1 YYC game given presence of other evidence.- If you can afford to: see if the depot contains a single executable and try extracting it via
7z e that.exe.
This would also fix some other false negatives with games that used self-extracting executables. - If you can afford to, scan the executable bytes for
FORM<any 4 bytes>GEN8- this is a tell of adata.winfile embedded into the executable.

(pictured: Cavern Kings' executable) - Checking for GameMaker-specific DLLs could help:
CleanMem.dll: this thing.Steamworks.gmk.dll: my Steamworks wrapper for pre-GMS1 GameMaker versions (as far as I can tell, adds a couple games)Steamworks.gml.dll: my Steamworks helper for current GameMaker versionsGOG.gml.dll: my GOG wrapperjoydll.dll+SDL.dll: a DLL for SDL-based gamepad supportGMS-WinDev.dll: an ancient DLL of mine with Windows-specific curiosities.Apollo.dll: my Lua wrapper. Might be worth combining with other evidence since the name is generic enough.gmlive-server.exe: the local server from my live-coding extension. You are not supposed to ship it to the end user, but people sometimes forget.geon_fx: a folder with bits from Geon FX particle editor. Similarly, you are not supposed to distribute it to the end user, but guess whatdisplay_mouse_lock.dll: a native mouselock extension of mine.window_set_cursor.dll: an extension for native cursors by me.rousrDissonance.dll: a Discord Rich Presence wrapper extension.window_frame.dll: an extension of mine that prevents the game from getting frozen in an event loop while resized... and causes a handfulcatch_error.dll: an extension of mine that monkey-patches exception handling and crash reports into versions of GameMaker that didn't have those.
Some false-negatives:
- Caveblazers: no .win, no options, camelCase sounds - needs .exe scan
- Circuit Breakers: self-extracting executable on Windows, but Mac version is easily detectable
- Witchinour: no .win, no sounds, but has display_mouse_lock.
- Cavern Kings: self-extracting executable, no .win,
music_-prefixed OGGs - Devolver Bootleg: no options, no sounds - needs .exe scan
- Downwell: self-extracting executable
- Duke of Defense: no options, no sounds, has
rousrDissonance.dll - Ghost Croquet: no .win, custom sound names,
Steamworks.gml.dll - Gun Done: also a self-extracting executable
- Heat Signature: no .win, custom sound names - needs .exe scan
- INK: a self-extracting executable
- Last Horizon: a self-extracting executable, no .win, no options, custom sound names - needs .exe scan
- Momodora III: no .win, no options, but has CleanMem.dll
- Momodora RUtM: same author, same deal
- Nidhogg 2: no .win, custom sound names,
Steamworks.gml.dll, audio groups. - Nuclear Throne: no .win, custom sound names, a whole lot of my DLLs (because I extensively worked on this game)
- Pilot Unknown: no options, no sounds,
window_set_cursor.dll - Pixel Beef Battle: no options, no sounds,
geon_fxfolder - Prime Mover: no .win, no options, no sounds,
window_set_cursor.dll - Samurai Gunn: no options, custom sound names,
joydll.dll - ROFLNAUTS in Awesomenauts: the mini-game is made in GameMaker and spots joydll.dll... but what should SteamDB do if a game uses multiple engines as result?
- Super Mutant Alien Assault: a self-extracting executable
- Taco Gun: no options or sounds, but has audiogroup#.dat
- Wild Glory: no .win or options, but has audiogroup#.dat.
- 主要言語
- PHP
- スター
- 234
- フォーク
- 112
- PR マージ指標
- 30日以内にマージされた PR はありません
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
SteamDatabase/FileDetectionRuleSets のほかの issue
-
SQLite オープンType: SDK
難易度 2/5 1〜3時間 初心者へのやさしさ 76/100
-
False positive
難易度 2/5 1〜3時間 初心者へのやさしさ 68/100
SteamDatabase/FileDetectionRuleSets#928 · コメント 1 件 ·
-
Type: Engine
難易度 4/5 3〜5日 初心者へのやさしさ 45/100
SteamDatabase/FileDetectionRuleSets#940 · リアクション 1 件 ·
-
False negative
難易度 2/5 1〜3時間 初心者へのやさしさ 55/100
-
Messiah Engine オープンType: Engine
難易度 3/5 1〜2日 初心者へのやさしさ 35/100
SteamDatabase/FileDetectionRuleSets の issue をすべて見る
似ている issue
-
tooling
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
-
UX
難易度 2/5 1〜3時間 初心者へのやさしさ 70/100
ProfessionalWiki/NeoWiki#1525 ·
-
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
-
難易度 1/5 1時間未満 初心者へのやさしさ 90/100
OpenConext/OpenConext-engineblock#2122 ·
-
Bug
難易度 2/5 1〜3時間 初心者へのやさしさ 70/100
Automattic/safe-publish#594 ·