diff options
author | Kari Salminen | 2008-08-25 15:14:20 +0000 |
---|---|---|
committer | Kari Salminen | 2008-08-25 15:14:20 +0000 |
commit | f21cc823de03412040687724e9eeb1e96d737a06 (patch) | |
tree | 51b067f73ac7773ebd52c84429a61f24cb3eddda /tools | |
parent | 4abc98dfdf05a4c4b370fd8aabefe86105aaa5b2 (diff) | |
download | scummvm-rg350-f21cc823de03412040687724e9eeb1e96d737a06.tar.gz scummvm-rg350-f21cc823de03412040687724e9eeb1e96d737a06.tar.bz2 scummvm-rg350-f21cc823de03412040687724e9eeb1e96d737a06.zip |
Added info about cine_tools to tools/README. Also added a couple of FIXMEs to the cine_tools files about missing endian safeness.
svn-id: r34156
Diffstat (limited to 'tools')
-rw-r--r-- | tools/README | 15 | ||||
-rw-r--r-- | tools/cine_tools/cine_decode.cpp | 1 | ||||
-rw-r--r-- | tools/cine_tools/cine_unpack.cpp | 2 |
3 files changed, 18 insertions, 0 deletions
diff --git a/tools/README b/tools/README index 8e5a267daf..d13e842a88 100644 --- a/tools/README +++ b/tools/README @@ -51,3 +51,18 @@ md5table Used to convert scumm-md5.txt into a SCUMM header file, or alternatively PHP code for our website. +cine_tools/cine_unpack +---------------------- + Delphine's Cinematique engine's archive file unpacker: + + USAGE: cine_unpack [input file] [output directory] + Supports using Operation Stealth's 'vol.cnf' file as input. + +cine_tools/cine_decode +---------------------- + Delphine's Cinematique engine's script decompiler: + + USAGE: cine_decode [type] [version] [filename] + type: -prc or -rel (Use -prc for *.prc-files, -rel for *.rel-files) + version: -v1 or -v2 (Use -v1 for Future Wars, -v2 for Operation Stealth) + filename: The name of the script file to decode diff --git a/tools/cine_tools/cine_decode.cpp b/tools/cine_tools/cine_decode.cpp index 16411d25bf..e54161d0ba 100644 --- a/tools/cine_tools/cine_decode.cpp +++ b/tools/cine_tools/cine_decode.cpp @@ -28,6 +28,7 @@ * Note that this isn't polished code so caveat emptor. * * TODO: Unify opcode namings between ScummVM's Cine engine and this utility. + * FIXME: Make this code endian safe. */ #include <stdio.h> diff --git a/tools/cine_tools/cine_unpack.cpp b/tools/cine_tools/cine_unpack.cpp index 14ac3df795..ab9142ad3b 100644 --- a/tools/cine_tools/cine_unpack.cpp +++ b/tools/cine_tools/cine_unpack.cpp @@ -27,6 +27,8 @@ * which archive files to unpack. * * Note that this isn't polished code so caveat emptor. + * + * FIXME: Make this code endian safe. */ #include <stdio.h> |