This commit is contained in:
JackCarterSmith 2020-09-08 20:01:09 +02:00
parent 6ac4b12b1c
commit 1ca33324c3
No known key found for this signature in database
GPG Key ID: B05F75E5934B1D7F
2 changed files with 12 additions and 10 deletions

View File

@ -7,7 +7,7 @@ The collection consist of few independants modules, each of them deals with spec
All modules are independants. This is the **'TEXTURE'** module. All modules are independants. This is the **'TEXTURE'** module.
**CAUTION! Master branch is hugely buggy and should not be used, please take only released versions.** **CAUTION! Master branch is ugly for now and should not be used, please take only released versions.**
## TEXTURE MODULE ## TEXTURE MODULE
@ -22,7 +22,7 @@ This module can do:
### Using ### Using
`Texture-Extractor_"version" [options] <hmt files...>` `RSE-Texture_"version" [options] <hmt files...>` or you can
### Options ### Options
@ -34,14 +34,16 @@ This module can do:
Necessary libs for running (provided in release) and for compiling. Necessary libs for running (provided in release) and for compiling.
- zlib - zlib (1.2.11)
- libpng (recommended: 1.6.37) - libpng (1.6.37)
### Compiling ### Compiling
You can compile on both Windows or Linux system, you only need to adjust your dependencies. You can compile on both Windows (MinGW) or native Linux system, you only need to adjust your dependencies.
zlib and libpng16 distrib package can be used. zlib and libpng16 distrib packages can be used.
To compile, just type on linux: To compile, just type on linux: `make`
`make` ### TODO
[ ] Cmake integration

View File

@ -17,7 +17,7 @@ int main(int argc, char *argv[]) {
HMT_FILE *hmt_fdatas = NULL; HMT_FILE *hmt_fdatas = NULL;
int file_index; int file_index;
printf("\n*** RogueSquadron Data Extractor - TEXTURE module - v%s ***\n", VERSION); printf("\n*** RogueSquadron Extractor (RSE) - TEXTURE module - v%s ***\n", VERSION);
// Check if filenames arguments exist // Check if filenames arguments exist
if (argc < 2) { if (argc < 2) {
@ -125,6 +125,6 @@ void dispHelp() {
printf("\n"); printf("\n");
printf("Options:\n -h Print this message\n -v Activate verbose console output\n -no-subdir Extract textures inside current folder\n"); printf("Options:\n -h Print this message\n -v Activate verbose console output\n -no-subdir Extract textures inside current folder\n");
printf("\n"); printf("\n");
printf("Usage: RogueRE-texture_%s [options] <hmt files...>\n", VERSION); printf("Usage: RSE-Texture_%s [options] <hmt files...>\n", VERSION);
printf("\n"); printf("\n");
} }