Update README.md
parent
81326d32df
commit
30b55eb8e0
14
README.md
14
README.md
|
@ -3,14 +3,22 @@ reskit
|
||||||
|
|
||||||
***INCOMPLETE***
|
***INCOMPLETE***
|
||||||
|
|
||||||
Resource kit for the Sega Genesis/Megadrive.
|
Resource kit for the Sega Genesis/Megadrive. Converts tilesets and soundtracks for use in custom Sega Megadrive game engines.
|
||||||
|
|
||||||
# Convert PNG to tile + palette set
|
# Tileset Tool
|
||||||
```
|
```
|
||||||
reskit tileset --input file.png --output file.bin --format bin
|
reskit tileset --input file.png --output file.bin --format bin
|
||||||
```
|
```
|
||||||
|
|
||||||
The file format will contain the palette required by the image, followed by the image.
|
The file format will contain the palette required by the image, followed by the image.
|
||||||
|
|
||||||
## Caveats
|
## Caveats
|
||||||
* Image dimensions that are not a multiple of 8 will be rounded up to the nearest multiple of 8.
|
* Image dimensions that are not a multiple of 8 will be rounded up to the nearest multiple of 8.
|
||||||
* Input images containing more than 15 colours will not be converted and will throw an error.
|
* Input images containing more than 15 colours will not be converted and will throw an error.
|
||||||
|
|
||||||
|
# Soundtrack Tool
|
||||||
|
```
|
||||||
|
reskit soundtrack --input song.dmf --output song.bin --format esf
|
||||||
|
```
|
||||||
|
|
||||||
|
The file format will contain the instrument definitions, followed by waveform samples, followed by an Echo Stream Format (ESF) stream.
|
||||||
|
|
Loading…
Reference in New Issue