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

Self-hosting OpenClaw for Slack: Three failure modes and a managed alternative
A developer documented three failed attempts at self-hosting OpenClaw for Slack, encountering WebSocket disconnections, API outage handling issues, and silent token rotation failures before switching to SlackClaw.ai, a managed service.

Financial Analyst Uses Claude Code to Build DCF Model Without Coding Experience
A financial analyst with no terminal experience used Claude Code to build a discounted cash flow model in 20-25 minutes instead of 1-2 days. The tool read financial files and generated a fully structured Excel model with working formulas after the user typed /dcf [company name].

Developer builds MCP server with Claude Code to automate Minnesota land search
A developer with InfoSec/automation engineering background used Claude Code to build a Python/FastMCP server with 7 tools that scrapes Zillow and LandWatch for rural Minnesota land listings. The system filters properties against 10 criteria across 21 counties and found 29 unique parcels in its first run.

Developer Uses Claude Code to Build USB Dongle That Auto-Plays Chrome Dino Game
A developer built a USB dongle using an ATtiny85 board that automatically plays Chrome's Dino game by detecting obstacles with light sensors and sending keyboard commands. Claude Code assisted with firmware development including V-USB integration, sensor logic, and adaptive timing algorithms.