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

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
FindPlaysetForCharacterthrough 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
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
👀 See Also

Trading Algorithm Rebuild: From Win Rate to Est. PoP and Smart Pre-Filtering
A developer rebuilt their stock trading scanner to replace misleading 'Win Rate' calculations with accurate 'Est. PoP' (Estimated Probability of Profit) using N(d2) at breakeven prices, added market-metrics pre-filtering that reduced API calls by 85%, and implemented a three-outcome expected value model.

OpenClaw Video Creation Process: Reducing Automation to 80% with Improved Quality
A developer shares their refined OpenClaw workflow for animated video creation, reducing automation to 80% while improving quality through better prompt engineering, multiple clip generation, and manual post-processing steps.

Using Claude's Free Version to Auto-Update Notion Research Databases
A developer built a system using Claude's free tier to automatically structure and save research into Notion databases. The workflow takes raw research notes and formats them into structured database entries with consistent fields, categories, and summaries.

Building Non-Coding AI Agents with Claude Code: Three Practical Examples
A Reddit user shares their personal setup for creating AI agents using Claude Code, detailing three specific implementations: an automated morning briefing agent pulling from emails, todos, and calendar; a tmux-based pipeline for capturing Substack articles; and a meeting summarization agent.