A launcher and mod/patch tool for the 1997 video game LEGO Island.
Find a file
2022-07-14 00:39:15 -07:00
.github/workflows ci: shallow clone msvc600 [skip ci] 2022-06-03 21:06:53 -07:00
cmn ported some patches 2021-09-22 12:16:20 -07:00
ext/PropertyGrid fix description not updating when using down key 2022-04-15 20:28:59 -04:00
lib use new injection that works on all versions of windows 2022-07-14 00:39:15 -07:00
pkg pkg: add fade gif for readme 2022-04-01 13:18:36 -07:00
Rebld use new injection that works on all versions of windows 2022-07-14 00:39:15 -07:00
Rebuilder project: statically link mfc42 2022-06-03 21:05:55 -07:00
res migrate to formal vc6 project 2022-04-18 20:21:36 -07:00
src use new injection that works on all versions of windows 2022-07-14 00:39:15 -07:00
.gitignore gitignore: added *.aps files 2022-04-19 12:26:46 -07:00
README.md readme: remove mfc incompatibility notice 2022-06-06 12:37:09 -04:00
Rebuilder.dsw migrate to formal vc6 project 2022-04-18 20:21:36 -07:00


LEGO Island Rebuilder LEGO Island Rebuilder

A launcher and modification/patching tool for the 1997 video game LEGO Island

HomepageInfoDownloadBuildingUsageContributing

Supports Windows 95 - Windows 11 (Linux and macOS through Wine)

Info

LEGO Island Rebuilder is a launcher and modification tool for Mindscape's 1997 video game LEGO Island. It is the product of in-depth research done on the game; the bulk of which is documented on the LEGO Island Wiki.

It includes fixes to numerous bugs in the original game and multiple quality of life patches while making no permanent changes to the game installation. Additionally, Rebuilder acts as a full replacement for the original configuration tool.

Rebuilder currently supports all known versions of LEGO Island.

Download

The latest binaries are available on the releases page.

Building

LEGO Island Rebuilder specifically targets Microsoft Visual C++ 6.0 in order to retain compatibility with Windows 95. It is highly recommended to use this compiler at all times, as code written for newer compilers may not be compatible with this version.

Rebuilder can be built with the standard Visual C++ 6.0 IDE. Since the MSVC 6.0 installer is known to have issues on newer versions of Windows, a portable version of MSVC 6.0 is available here.

Since the IDE is old and somewhat archaic, you may wish to use a more modern IDE/code editor. This can be done by using the following commands as your build step in the IDE of your choice:

# Enter Visual C++ 6.0 build environment
<MSVC600 directory>/VC98/bin/VCVARS32.BAT

# Build the project
msdev Rebuilder.dsw /make

(Replace <MSVC600 directory> with the directory you installed/cloned MSVC 6.0 to)

Rebuilder can only be built in "Release" mode. This is because it utilizes DLL injection to modify LEGO Island in memory, and with MSVC, "Debug" code is incompatible with "Release" code (which is what LEGO Island was naturally compiled as).

Usage

By default, Rebuilder opens a graphical interface which can be used to set the patch configuration and to launch the game. However, command line arguments are also supported:

  • -r/--run: Runs LEGO Island with the currently saved configuration, bypassing Rebuilder's interface entirely.
  • -h/--help: Shows a help screen with usage details.

Linux and macOS

Rebuilder works on non-Windows platforms using Wine.

It is important to note that mfc42 must be installed before using Wine with Rebuilder. This can be done using winetricks mfc42.

After the installation is complete, simply run Rebuilder with Wine using wine Rebuilder.exe.

Contributing

Contributions like code changes, documentation, or findings and research about the game are welcome. The best way of contributing code to Rebuilder is to open a pull request.