You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+88-1
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,91 @@ This project contains a few executables and libraries:
13
13
14
14
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.
15
15
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:
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
+
16
97
## Building
17
98
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
+
18
101
### Native
19
102
20
103
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:
23
106
24
107
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.
25
108
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).
0 commit comments