From The Mana World
(Created page with "This is some notes on the save formats of TMWA. It is not intended to authorative, but rather a porting tool. == Add new sections here ==")
 
Line 1: Line 1:
This is some notes on the save formats of TMWA. It is not intended to authorative, but rather a porting tool.
This is some notes on the save formats of TMWA. It is not intended to authorative, but rather a porting tool.
== General ==
Save files generally consist of a number of tab separated fields, each of which may consist of a number of space and/or comma-separated fields.
Any line starting with // is usually ignored. But, any line not matching for format correctly is also usually ignored.
If there are any C0 control characters, funny stuff might happen.
=== integer ===
All integers stored at this level are in base 10.
/0|-?[1-9][0-9]*/
=== string ===
A string is a sequence of non-control characters.
=== word ===
A word is a string containing no spaces.
=== Add new common types here ===


== Add new sections here ==
== Add new sections here ==

Revision as of 05:39, 27 December 2012

This is some notes on the save formats of TMWA. It is not intended to authorative, but rather a porting tool.

General

Save files generally consist of a number of tab separated fields, each of which may consist of a number of space and/or comma-separated fields.

Any line starting with // is usually ignored. But, any line not matching for format correctly is also usually ignored.

If there are any C0 control characters, funny stuff might happen.

integer

All integers stored at this level are in base 10.

/0|-?[1-9][0-9]*/

string

A string is a sequence of non-control characters.

word

A word is a string containing no spaces.

Add new common types here

Add new sections here