[Scummvm-cvs-logs] SF.net SVN: scummvm:[34156] scummvm/trunk/tools

buddha_ at users.sourceforge.net buddha_ at users.sourceforge.net
Mon Aug 25 17:14:22 CEST 2008


Revision: 34156
          http://scummvm.svn.sourceforge.net/scummvm/?rev=34156&view=rev
Author:   buddha_
Date:     2008-08-25 15:14:20 +0000 (Mon, 25 Aug 2008)

Log Message:
-----------
Added info about cine_tools to tools/README. Also added a couple of FIXMEs to the cine_tools files about missing endian safeness.

Modified Paths:
--------------
    scummvm/trunk/tools/README
    scummvm/trunk/tools/cine_tools/cine_decode.cpp
    scummvm/trunk/tools/cine_tools/cine_unpack.cpp

Modified: scummvm/trunk/tools/README
===================================================================
--- scummvm/trunk/tools/README	2008-08-25 15:08:30 UTC (rev 34155)
+++ scummvm/trunk/tools/README	2008-08-25 15:14:20 UTC (rev 34156)
@@ -51,3 +51,18 @@
     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

Modified: scummvm/trunk/tools/cine_tools/cine_decode.cpp
===================================================================
--- scummvm/trunk/tools/cine_tools/cine_decode.cpp	2008-08-25 15:08:30 UTC (rev 34155)
+++ scummvm/trunk/tools/cine_tools/cine_decode.cpp	2008-08-25 15:14:20 UTC (rev 34156)
@@ -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>

Modified: scummvm/trunk/tools/cine_tools/cine_unpack.cpp
===================================================================
--- scummvm/trunk/tools/cine_tools/cine_unpack.cpp	2008-08-25 15:08:30 UTC (rev 34155)
+++ scummvm/trunk/tools/cine_tools/cine_unpack.cpp	2008-08-25 15:14:20 UTC (rev 34156)
@@ -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>


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list