Skip to content

Commit 72cad12

Browse files
committedOct 27, 2024
Added instruction on how to manually produce a patch file
1 parent 0f80517 commit 72cad12

File tree

1 file changed

+88
-1
lines changed

1 file changed

+88
-1
lines changed
 

‎README.md

+88-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,91 @@ This project contains a few executables and libraries:
1313

1414
The patcher is the only application which is meant to create new patches. The GUI interfaces are meant only as a way to use existing patch files to patch game backups.
1515

16+
## Usage
17+
18+
This goal of this tool is to allow modification of GameCube and Wii games. This is accomplished through the mean of a patch file. Due to the complexity of the format of both GameCube and Wii games (compared to older platforms like snes or N64), it would be less efficient to share mods as diffs of the original and modded version of the game. Instead GeckoPatcher uses a custom patch format which is a simple zip file containing metadata files about the mod, as well as the data to be injected into the game.
19+
20+
A minimal Patch file (zip archive) would contain a single `RomHack.toml` file with the following content:
21+
22+
```Toml
23+
[src]
24+
iso = ""
25+
26+
[build]
27+
iso = ""
28+
```
29+
30+
This valid patch file would result in nothing being modified in the game. Although, the file that the patcher would output could be different when comparing it to the original file byte to bytes, even though it could be run by an emulator or a physical console. Wii game would typically see the size of the file be reduced a bit. This is due to the fact that GameCube and Wii games are essentially equivalent to an archive containing a header with metadata and a FileSystem (with Wii having an additional layer of abstraction with the filesystem being contained inside a partition). The patcher extracts the FileSystem to then apply the modification to the relevant files, and finally put the FileSystem back in a new dump file, usually without the padding that usually comes from the disc on which the game was stored.
31+
32+
A more useful patch file would be a zip archive with the following structure:
33+
34+
```
35+
|
36+
+- RomHack.toml
37+
+- patch.asm
38+
```
39+
40+
With the files content being like so:
41+
42+
```Toml
43+
# RomHack.toml
44+
[info]
45+
game-name = "MyMod"
46+
full-game-name = "My Awesome Mod"
47+
developer-name = "The Author"
48+
full-developer-name = "John Doe, The Author"
49+
50+
[src]
51+
iso = ""
52+
patch = "patch.asm"
53+
54+
[build]
55+
iso = ""
56+
```
57+
```asm
58+
; patch.asm
59+
0x80000000:
60+
u32 0x12345678
61+
u32 0x9ABCDEF0
62+
```
63+
64+
Which would replace the two 32 bits words at the address 0x80000000 with the values 0x12345678 and 0x9ABCDEF0 in the main DOL file of the game.
65+
66+
An other possible way to modify the game would be to replace some of the game's files:
67+
68+
```
69+
|
70+
+- RomHack.toml
71+
+- someFileInPatch.ext
72+
+- res
73+
|
74+
+ someOtherFileInPatch.tex
75+
```
76+
```Toml
77+
# RomHack.toml
78+
[info]
79+
game-name = "MyMod"
80+
full-game-name = "My Awesome Mod"
81+
developer-name = "The Author"
82+
full-developer-name = "John Doe, The Author"
83+
84+
[src]
85+
iso = ""
86+
87+
[build]
88+
iso = ""
89+
90+
[files]
91+
"res/obj/someFileInGame.arc" = "someFileInPatch.ext"
92+
"my_mod/a_texture.tex" = "res/someOtherFileInPatch.tex"
93+
```
94+
95+
This would replace an existing file from `res/obj/someFileInGame.arc` in the game with the file `someFileInPatch.ext` contained in the zip archive (the patch file), as well as adding a new file to the game under `my_mod/a_texture.tex`.
96+
1697
## Building
1798

99+
GeckoPatcher can be built natively for all major distributions (Windows, MacOS, Linux), as well as a web application for applying a patch file provided by the user, or ones provided for your own application. You can find more details in the [web Readme](gui/web/README.md).
100+
18101
### Native
19102

20103
The requirements to compile the native gui and cli are as follow:
@@ -23,4 +106,8 @@ The requirements to compile the native gui and cli are as follow:
23106

24107
That's all. You then just need to run `cargo build` at the root of the repository. You can optionally add the `--release` flag to build the release version.
25108

26-
### Web
109+
This will result in the binary for the system you built it on to be put in `target/debug/` (for a release build, `target/release/`), under the names `romhack` and `gui-patcher` for the CLI and GUI verisons of the application respectively (`romhack.exe` and `gui-patcher.exe` for Windows).
110+
111+
### Web
112+
113+
See [gui/web/README.md](gui/web/README.md)

0 commit comments

Comments
 (0)
Please sign in to comment.