A work-in-progress modernization of LEGO Island (1997)
Find a file
2024-06-25 19:50:27 +02:00
.github/workflows Add back some stuff from decomp (#2) 2024-06-25 19:49:59 +02:00
3rdparty Remove SmartHeap 2024-06-25 19:48:57 +02:00
CONFIG basic name improvements (#930) 2024-05-18 15:20:05 -04:00
ISLE Refactor LegoOmni into LegoMain/Scripts (#883) 2024-05-04 14:06:32 +02:00
LEGO1 Merge commit 'ac41854149776a30b7acaa89808cee0a7cad7380' into new-isle-decomp 2024-06-25 19:50:27 +02:00
tools Add back some stuff from decomp (#2) 2024-06-25 19:49:59 +02:00
util Rename _countof to sizeOfArray (#921) 2024-05-14 16:35:22 +02:00
.clang-format (clang-format) Add RemoveSemicolon (#506) 2024-01-29 23:30:20 +01:00
.clang-tidy cmake+ci: run clang-tidy (#512) 2024-02-01 21:42:10 +01:00
.editorconfig (Proposal) Use alternative C4786 warning suppression (#312) 2023-12-08 06:37:44 -05:00
.gitattributes Convert all sources eol's to nl (#41) 2023-06-23 09:17:41 -07:00
.gitignore Reorganize sources and files (#414) 2024-01-08 10:58:49 +01:00
.gitmodules Add libsmacker to replace smack.lib 2024-06-25 19:48:56 +02:00
.pylintrc (Proposal) Use alternative C4786 warning suppression (#312) 2023-12-08 06:37:44 -05:00
CMakeLists.txt Merge commit 'ac41854149776a30b7acaa89808cee0a7cad7380' into new-isle-decomp 2024-06-25 19:50:27 +02:00
CONTRIBUTING.md Update CONTRIBUTING.md 2024-06-25 19:49:59 +02:00
pyproject.toml Python Linting and Code Formatting (#298) 2023-11-25 13:27:42 -05:00
README.md Add back some stuff from decomp (#2) 2024-06-25 19:49:59 +02:00

LEGO Island Modernization

Development Vlog | Contributing | Matrix | Forums | Patreon

This initiative is a work-in-progress modernization of LEGO Island (Version 1.1, English) based on the decompilation project. Our primary goal is to transform the codebase to achieve platform independence, thereby enhancing compatibility across various systems while preserving the original game's experience as faithfully as possible.

Please note: this project is dedicated to achieving platform independence without altering the core gameplay, adding new features, enhancing visual quality, or rewriting code for improvement's sake. While those are worthwhile objectives, they are not within the scope of this project.

Status

Supported platforms

Platform Implementation status
Windows
Linux
macOS

Library substitutions

To achieve our goal of platform independence, we need to replace any Windows-only libraries with platform-independent alternatives. This ensures that our codebase remains versatile and compatible across various systems. The following table serves as an overview of major libraries / subsystems and their chosen replacements. For any significant changes or additions, it's recommended to discuss them with the team on the Matrix chat first to ensure consistency and alignment with our project's objectives.

Library Substitution Implementation status
Smacker libsmacker Open issues
Filesystem C standard library Open issues
Threads, Mutexes (Synchronization) SDL3 Open issues
Keyboard, Mouse, Joystick, DirectInput (Input) SDL3 Open issues
WinMM, DirectSound (Audio) SDL3 Open issues
DirectDraw (2D video) SDL3 Open issues
Direct3D (3D video) SDL3, OpenGL ES (TBD) Open issues
Direct3D Retained Mode Custom re-implementation (TBD) Open issues
SmartHeap Default memory allocator - -

Building

This project uses the CMake build system, which allows for a high degree of versatility regarding compilers and development environments. Please refer to the GitHub action for guidance.

Contributing

If you're interested in helping or contributing to this project, check out the CONTRIBUTING page.