Claude Code Used to Reverse Engineer Disney Infinity 1.0, Breaking 13-Year Character Restriction

✍️ OpenClawRadar📅 Published: March 15, 2026🔗 Source
Claude Code Used to Reverse Engineer Disney Infinity 1.0, Breaking 13-Year Character Restriction
Ad

Technical Breakdown of the Reverse Engineering Process

A developer successfully used Claude Code to reverse engineer Disney Infinity 1.0 (2013) and break a long-standing character restriction that had stumped the modding community for over a decade. The game originally locked characters to their specific "home" playsets, preventing cross-play between different character worlds.

Why This Was a Difficult Problem

The restriction wasn't a simple flag or config file. The key function FindPlaysetForCharacter was called at 13 different points across 6 areas of the game's C++ code. Previous attempts failed because:

  • Patching one check didn't work since the other 12 still blocked access
  • Data-file-only mods failed because native code validated before reading data
  • DLL injection crashed the game due to thread-unsafe Lua state access
  • Renaming character files into other character folders caused game crashes

How Claude Code Helped

The developer used Claude Code (Opus with high reasoning) on the game's binary with no symbols, no source code, and no existing reverse engineering documentation. Claude Code assisted with:

  • Tracing the call graph from FindPlaysetForCharacter through the entire codebase
  • Identifying all 13 validation call sites
  • Mapping which code area each call site belonged to
  • Understanding x86 assembly and recognizing conditional jump patterns after each call
  • Determining the exact bytes to patch
  • Working through multiple failed approaches before arriving at the working solution
Ad

The Solution and Results

The entire reverse engineering process took under 24 hours. The final solution consists of:

  • 17 binary patches
  • 3 modified data files

The mod allows any character to work in any playset, is free and open source, and installs in 2 minutes. The GitHub repository is publicly available at github.com/philparkinson1204/InfinityUnlocked.

Community Response

The Reddit post announcing the mod became the top post on the Disney Infinity subreddit with 90+ upvotes, 45+ comments, and over 3,000 views. The most well-known modder in the community commented "Better than my method... AWESOME JOB!!!" and offered collaboration. Users are actively beta testing, reporting bugs, and requesting ports to Disney Infinity 2.0 and 3.0 since they run on the same engine.

The README credits Claude Code directly for the reverse engineering work.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also