https://github.com/palaceswitcher/gameloft-j2me-tools
Tools and documentation for modding Gameloft's J2ME games
https://github.com/palaceswitcher/gameloft-j2me-tools
gameloft imgui j2me modding-tool sdl3
Last synced: 5 months ago
JSON representation
Tools and documentation for modding Gameloft's J2ME games
- Host: GitHub
- URL: https://github.com/palaceswitcher/gameloft-j2me-tools
- Owner: palaceswitcher
- License: gpl-3.0
- Created: 2025-01-23T03:26:48.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-05-12T17:32:49.000Z (about 1 year ago)
- Last Synced: 2025-05-12T18:39:38.376Z (about 1 year ago)
- Topics: gameloft, imgui, j2me, modding-tool, sdl3
- Language: C++
- Homepage:
- Size: 117 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gameloft J2ME Tools
A GUI tool and Python scripts for modifying Gameloft's J2ME asset files.
## Building
The following build instructions should work for both Windows and Linux, provided you have installed the appropriate dependencies. [MSYS2](https://www.msys2.org/) is recommended for Windows.
### Dependencies
- libpng
- SDL3
- CMake
### Linux
```
git clone --recursive https://github.com/palaceswitcher/Gameloft-J2ME-Tools
cd Gameloft-J2ME-Tools
mkdir build && cd build
cmake ..
make
```
### Windows (MSYS2)
Using specifically UCRT64 is recommended, though other environments may also work under MSYS2.
#### Building (MSYS2)
```
git clone --recursive https://github.com/palaceswitcher/Gameloft-J2ME-Tools
cd Gameloft-J2ME-Tools
mkdir build && cd build
cmake -G "Unix Makefiles" ..
make
```