scummvm/tools
Johannes Schickel 091ecc8fd0 - Fix extraction of Kyra 1 amiga string tables in kyra.dat
- Fix "taken" string offsets in kyra.dat
- Add temporary workaround for only one "taken" string being present in Kyra 1 amiga.
- Update kyra.dat

svn-id: r43208
2009-08-10 16:42:39 +00:00
..
create_drascula Patch #2590824: DRASCULA: further improvements in italian translation 2009-02-28 11:32:51 +00:00
create_igortbl Moved tools to all-C++ code (ensures consistency of all code during compilation, and allows us to use advanced stuff, like code from common/, in the tools) 2008-02-25 14:13:12 +00:00
create_kyradat - Fix extraction of Kyra 1 amiga string tables in kyra.dat 2009-08-10 16:42:39 +00:00
create_lure Added MSVC project files for the create_lure tool 2009-03-23 20:31:19 +00:00
qtable Moved tools to all-C++ code (ensures consistency of all code during compilation, and allows us to use advanced stuff, like code from common/, in the tools) 2008-02-25 14:13:12 +00:00
sci Removed obsolete files 2009-05-29 14:38:42 +00:00
skycpt Extended rules.mk with code for building extra (tool) executables, and changed some of the tools to make use of this 2008-02-25 14:10:17 +00:00
agi-palex.py Removed trailing spaces. 2008-01-27 19:47:41 +00:00
construct-pred-dict.pl Predictive input for AGI engine. To Do: 2006-11-06 13:19:12 +00:00
convbdf.c Fix warnings. 2009-04-04 13:15:41 +00:00
credits.pl Added Strangerke to credits, and moved wjp from Gob to SCI on his request 2009-07-30 21:04:46 +00:00
dist-scummvm.sh Fixed typo (SVN->CVS); expanded legal header to point to our COPYRIGHT file, and add some SVN tags 2008-01-13 13:24:14 +00:00
extract-words-tok.pl Predictive input for AGI engine. To Do: 2006-11-06 13:19:12 +00:00
make-scumm-fontdata.c Committed my own patch #2278665 ("SCUMM: Font data in old SCUMM games") to get 2008-11-14 14:03:08 +00:00
md5table.c Fix warnings. 2009-04-04 13:15:41 +00:00
module.mk Prevent our "credits" make target updating Credits.rtf, which in fact is not present in SVN anymore, and the outdated docbook. 2009-07-30 15:19:15 +00:00
README Added most of the missing tools to scummvm/tools/README 2009-05-29 14:38:56 +00:00
scumm-md5.txt Add DS version of Atari MM from Bug #2834054 2009-08-08 20:08:22 +00:00
svnpropset.sh Added a script (courtesy of salty-horse) to create/set properties for source files under version control by Subversion. Specifically, the mime-type, eol-style and keywords properties are handled. 2008-07-11 15:07:13 +00:00
themeparser.py Replaced Hex Dumper in Binary theme parser. 2008-12-29 14:11:26 +00:00
update-version.pl Merge creation of Info.plist into update-version.pl. 2009-08-07 18:16:58 +00:00

This directory contains various tools which aid the ScummVM developers
in their work. They are not intended for the general audience, and are
only sparsely, if at all, documented. Use at your own risk. You have
been warned :-).


agi-palex.py (buddha)
------------
  Tool for extracting palettes from Amiga AGI games' executables.


construct-pred-dict.pl, extract-words-tok.pl (sev)
--------------------------------------------
   Tools related to predictive input for AGI engine.


convbdf
-------
   Tool which converts BDF fonts (BDF = Bitmap Distribution Format) to
   C++ source. That source, after being slightly tweaked, can be used to
   replace or add fonts for the ScummVM GUI.

   There is also a ttf2bdf tool which allows you to convert TrueType
   fonts to BDF.

   Hint from SumthinWicked: If you use ttf2bdf, it'll convert all glyphs
   to bitmaps, but ScummVM only needs some of them. So you may want to
   do your conversion like this:
     ttf2bdf -p SIZE -l "32_160" -o FONT.bdf FONT.ttf
   where SIZE is replaced by the desired font height.


create_drascula
---------------
    Stores a lot of hardcoded data of Drascula in a data file, based on
    the game's original source code. This includes the game's character
    map, item locations, several hardcoded arrays used in animations,
    room script logic, talk sequence logic and all of the game's texts
    (mostly the dialog subtitles) in English, Spanish, German, French
    and Italian. This tool is used to create the drascula.dat file.


create_igortbl (cyx)
--------------
   This tool generates the "IGOR.TBL" file.


create_kyradat (LordHoto, athrxx)
--------------
    Extracts various static data from the original game executables.
    This includes room tables in kyra1, various hardcoded language
    strings in both kyra1 and kyra2, script data for the sequence
    players of kyra1 and kyra2 and other static data. This tool is used
    to create the kyra.dat file.


create_lure (dreammaster)
-----------
    Extracts various static data from each of the different language
    versions of the game executables. This includes character
    animations, game scripts, and other static data. This tool creates
    the lure.dat file.


credits.pl
----------
   This perl script contains credits to the many people who helped with
   ScummVM, and it is used to create the credits lists that occur in
   various places, including the AUTHORS file, the about dialog, and our
   web site.


dist-scummvm.sh
---------------
    This shell script is used to create source release archives for
    ScummVM releases. After tagging a branch for release, you can invoke
    it like this:

      ./dist-scummvm.sh scummvm 0.7.1

    Note #1: This creates .zip, .tar.bz2 and .tar.gz archives in /tmp by
    default. To do that it performs a "cvs export" in /tmp first. If you
    want to use another location, you can specify it as the thirds param
    to the script.

    Note #2: This assumes that our naming conventions for release tags
    are being followed. I.e. the tag must be named "release-0-7-1" in
    the above example. You can, however, specify an alternate tag as the
    fourth param.

    Note #3: Since SF.net anon CVS tends to lag behind developer CVS, if
    you just tagged CVS, anon CVS may not yet have this. So if you are
    in a hurry, modify the cvsroot in the script to use your dev CVS
    account.


make-scumm-fontdata (eriktorbjorn)
-------------------
   Tool that generates compressed font data used in SCUMM: To get rid of
   a few kilobytes of hard-coded font data, we only store how the
   French, German, Italian and Spanish fonts differ from the English one.


md5table
--------
    Used to convert scumm-md5.txt into a SCUMM header file, or
    alternatively PHP code for our website.


qtable (cyx)
-------
   This tool generates the "queen.tbl" file.


skycpt (lavosspawn)
-------
   This tool generates the "SKY.CPT" file.