Difference between revisions of "Save File Format"

From Shield Cat Wiki
Jump to navigation Jump to search
 
(31 intermediate revisions by the same user not shown)
Line 9: Line 9:
  
 
[[Shield Cat]] save files are saved using the following structure:
 
[[Shield Cat]] save files are saved using the following structure:
   OTTSAV00.BIN
+
   /saves/OTTSAV00/
 
where <code>00</code> is the number of the save file. The game will support up to 100 save files, but more can be added later if it is necessary.
 
where <code>00</code> is the number of the save file. The game will support up to 100 save files, but more can be added later if it is necessary.
  
<code>OTTSAVFF.BIN</code> is used for the Autosave file. Save slot <code>0</code> is not used.
+
<code>OTTSAVFF</code> is used for the Autosave file. Save slot <code>0</code> is not used.
  
Save information is stored in blocks, where each block has a certain data associated with it. <b>There <u>cannot</u> be two blocks of the same type.</b> All blocks listed below must be present, or the file will be considered invalid. They must also be in the correct spot, or the file will be invalid.
+
Save information is stored in separate blocks, with each block being stored in it's own file. Details on each file are present below, as well as their expected file sizes.
 
 
The save file is expected to be exactly <code>494</code> bytes in size. If it isn't, then it is considered invalid.
 
  
 
In Gamemaker, it is loaded and saved as a Buffer with type <code>buffer_fixed</code>. It is 1 byte aligned.
 
In Gamemaker, it is loaded and saved as a Buffer with type <code>buffer_fixed</code>. It is 1 byte aligned.
  
 
== Header ==
 
== Header ==
<code>OTTSAV</code> files start with the following header:
+
<code>OTTSAV</code> files start with the following header string:
 
   SC_OTTSAV_V00
 
   SC_OTTSAV_V00
 
where <code>00</code> is the version of the save format. <b>During the prototype phase,</b> all save files will use format 00. The format may also change a lot.
 
where <code>00</code> is the version of the save format. <b>During the prototype phase,</b> all save files will use format 00. The format may also change a lot.
  
== LINF ==
+
<b>Please Note</b> this is not a string that is to be read with <code>buffer_string</code> or <code>buffer_text</code>. It is instead read as <code>unsigned bytes</code>, and then the bytes are compared to see if the header is correct or not. The value <code>00</code> is actually ASCII, and will be <code>$3030</code>.
The <code>LINF</code> block contains info about Lance and the abilities he has, max health, max magic, attack, defense, abilities equipped, and others. It is <code>65 Bytes</code> in length.
+
 
 +
== Block Type and Info ==
 +
This is where the data for this particular save file will go. Details about what is stored in each file is available on each file's page.
 +
 
 +
Each file is saved separately in the save sub directory, which will look something like this:
 +
  * LINF.BIN
 +
  * FLGS.BIN
 +
  * TRSR.BIN
 +
  * (etc)
 +
 
 +
The contents of the <code>LINF.BIN</code> file would be as follows:
 +
  SC_OTTSAV_V00LINF(data here)OEND
 +
 
 +
Please see the details about each block on its associated page:
 +
* [[Save_File_Format/DATE.BIN]]
 +
* [[Save_File_Format/LINF.BIN]]
 +
* [[Save_File_Format/FLGS.BIN]]
 +
* [[Save_File_Format/TRSR.BIN]]
 +
* [[Save_File_Format/ACHV.BIN]]
 +
* [[Save_File_Format/AREA.BIN]]
 +
* [[Save_File_Format/MAPS.BIN]]
 +
 
 +
== Footer ==
 +
<code>OTTSAV</code> files end with the following footer:
 +
  OEND
 +
This is used to prevent the file from being truncated, which can cause issues.
 +
 
 +
== TRSR ==
 +
These are the different treasure locations in the game, and whether you got the treasure at that location or not. This block is <code>128</code> bytes in length, allowing for <code>1024</code> treasures.
  
<i><b>Please note</b> that Lance's health, magic, attack, and defense are computed from his base stats + any upgrades that you may have, and are provided for convenience. If you modify these numbers, and then Lance gets a new upgrade, the numbers will be corrected.</i>
+
<i><b>Please Note</b> that not every treasure slot is used. This allows me to add more treasures later and keep them in the same group.</i>
 +
{{Stub}}
  
 +
== ACHV ==
 +
These are flags for the different Achievements you can get in the game. It is <code>16</code> bytes in length, allowing for <code>128</code> achievements. (However, it is unlikely that this many achievements will be in the game.)
 +
{{Stub}}
 +
 +
== AREA ==
 +
This block contains the collectibles data for the different areas in the game. Each area uses <b>128 bits / 16 Bytes</b> of data, following the format specified below. There is support for up to 16 areas, meaning that this block is <b>256 bytes</b> in size. Each chunk of data is followed sequentially, and the area it represents is detailed in the second table.
 
{| class="wikitable"
 
{| class="wikitable"
!Offset
+
!Byte Offset
!Bytes
+
!Bytes Used
!Description
+
!Usage
 
|-
 
|-
 
!0
 
!0
!2 Bytes
 
|Lance's max health
 
|-
 
!2
 
!2 Bytes
 
|Lance's max magic
 
|-
 
!4
 
!2 Bytes
 
|Lance's current health.
 
|-
 
!6
 
!2 Bytes
 
|Lance's current magic.
 
|-
 
!8
 
 
!1 Byte
 
!1 Byte
|Lance's attack stat
+
|The count of all the Fish Scales in an area that Lance has collected.
 
|-
 
|-
!9
+
!1
!1 Byte
 
|Lance's defense stat
 
|-
 
!10
 
!1 Byte (packed)
 
|Various flags about Lance's state:
 
* Bit 0: if Lance is allowed to use his equipment or not. If 0, none of his abilities will show.
 
* Bits 2-3: number of health potions Lance has (up to 3)
 
* Bits 4-5: number of magic recovery potions Lance has (up to 3)
 
* Bits 6-7: unused.
 
|-
 
!11
 
!1 Byte (packed)
 
|Various flags about the game itself:
 
* Bit 0: If this is a randomized mode save or not. A [[Randomized Mode Remap File]] will be required.
 
* Bits 1-3: Game [[Shield_Cat#Difficulty_Modes|difficulty mode]].
 
** Mode 0: Chill Mode
 
** Mode 1: Regular Mode
 
** Mode 2: Cool Mode
 
** Mode 3: Fun Mode
 
** Mode 4: Custom Mode. A [[Custom Difficulty Data File]] will be required.
 
** Modes 5-7: Unused.
 
* Bit 4: If cheats were enabled on this file or not.
 
* Bit 5: If the game has been cleared or not.
 
* Bits 6-7: Unused.
 
|-
 
!12
 
!3 Bytes
 
|How many Pretty Petals Lance has in his possession.
 
|-
 
!15
 
 
!2 Bytes
 
!2 Bytes
|Which save location Lance saved at.
+
|Reserved for future use
 
|-
 
|-
!colspan=3|Lance's Active Abilities
+
!3
|-
+
!13 bytes
|colspan=3|Each ability is stored using a 16bit value. The format is as follows:
+
|All of the Fish Scales in the area. There are <b>99</b> Fish Scales in each area. The <b>first 5 bits</b> of this are used for the 5 "LANCE" letters the player can find in each area, using the total 104 bits.
* Bits 0-2: How many of this ability Lance has (up to 7.) If it shows Lance has the ability equipped, but he has none, undefined behavior will occur.
 
* Bit 3: If Lance has this ability equipped.
 
This format continues for each of the 3 upgrades possible. Below, the names of each ability and its upgrades will be displayed. Each one represents 4 bits, and are in the order shown to make the 16 bits. Lance's abilities are detailed [[Lance's Abilities#Active Abilities|here]].
 
Lance cannot use an ability upgrade for an ability he does not have. For instance, if he finds the Ultra Spin upgrade for the Super Spin ability, but does not have the Super Spin ability, he will not be able to use it.
 
|-
 
!17
 
!2 Bytes
 
|Shield Ability - Homing - Wave - Indestructable
 
|-
 
!19
 
!2 Bytes
 
|Dagger - Explosion - Piercer - Surplus
 
|-
 
!21
 
!2 Bytes
 
|Lance - Doubletime - Javelin - Grand Lance
 
|-
 
!23
 
!2 Bytes
 
|Fire - Flame On - Long Distance - Triple Flame
 
|-
 
!25
 
!2 Bytes
 
|Ice - Chill Master - Ice Spreader - Cool Blast
 
|-
 
!27
 
!2 Bytes
 
|Super Spin - Ultra Spin - Radical Spin - Sure Footed
 
|-
 
!29
 
!2 Bytes
 
|Air Dash - Distance Dash - Sharp Wind - Maneuverability
 
|-
 
!31
 
!2 Bytes
 
|Boomerang - Doublerang - Returner - Center of Focus
 
|-
 
!33
 
!8 Bytes
 
|Reserved, allows for 4 more Active Abilities to be added in later.
 
|-
 
!colspan=3|Passive Abilities
 
|-
 
|colspan=3|The format for Lance's abilities is as follows:
 
* <b>Format 1</b>: Bits 0-2 is how many of the <b>first</b> ability shown is owned, and bit 3 shows if Lance has it equipped or not. Bits 4-6 is how many of the <b>second</b> ability shown is owned, and bit 7 shows if Lance has it equipped or not. He can equip <b>1</b> of the ability, and own up to <b>7</b>.
 
* <b>Format 2</b>: Bits 0-3 shows how many Lance owns, and bits 4-7 shows how many Lance has equipped. He can own and equip up to <b>15</b> of this ability.
 
Lance's Passive abilities can be viewed [[Lance's Abilities#Passive Abilities|here]].
 
|-
 
!41
 
!1 Byte
 
(Format 1)
 
|
 
* Bits 0-3: Lantern.
 
* Bits 4-7: Survivor.
 
|-
 
!42
 
!1 Byte
 
(Format 1)
 
|
 
* Bits 0-3: Healer.
 
* Bits 4-7: Double Magic.
 
|-
 
!43
 
!1 Byte
 
(Format 1)
 
|
 
* Bits 0-3: Triple Magic.
 
* Bits 4-7: Distance Traveller.
 
|-
 
!44
 
!1 Byte
 
(Format 1)
 
|
 
*Bits 0-3: Magic Saver.
 
*Bits 4-7: Flame Tail.
 
|-
 
!45
 
!1 Byte
 
(Format 1)
 
|
 
* Bits 0-3: Infinite Spin
 
* Bits 4-7: Reserved for future use.
 
|-
 
!46
 
!1 Byte
 
(Format 2)
 
|Lucky
 
|-
 
!47
 
!1 Byte
 
(Format 2)
 
|Magic Master
 
|-
 
!48
 
!1 Byte
 
(Format 2)
 
|Attack Up
 
|-
 
!49
 
!1 Byte
 
(Format 2)
 
|Defense Up
 
|-
 
!50
 
!1 Byte
 
(Format 2)
 
|HP Up
 
|-
 
!51
 
!1 Byte
 
(Format 2)
 
|Magic Up
 
|-
 
!52
 
!10 Bytes
 
|Reserved for future use.
 
|-
 
!colspan=3|Upgrades
 
|-
 
|colspan=3|Lance can have up to 255 of each upgrade, although if the amount of upgrades would exceed the amount possible, then the result will be capped.
 
|-
 
!62
 
!1 Byte
 
|Attack Increase
 
|-
 
!63
 
!1 Byte
 
|Defense Increase
 
|-
 
!64
 
!1 Byte
 
|Magic Meter Increase
 
|-
 
!65
 
!1 Byte
 
|Health Increase
 
 
|}
 
|}
  
== FLGS ==
 
These are event flags for different events that happen in the game. It is <code>256</code> bytes in length, with <code>2048</code> possible event flags. If a value is <code>0</code> then it hasn't happened yet, while a value of <code>1</code> means that the event occurred.
 
 
Below is a description of the flag offsets, and what each one means when it is set to <code>1</code>.
 
 
<i><b>Please note</b> that not all flags are consecutive. This allows me to add more later and group them together.</i>
 
 
{| class="wikitable"
 
{| class="wikitable"
!Bit Offset
+
!Chunk Number
!Bit description
+
!Associated Area
|-
 
!colspan="2"|Boss States
 
 
|-
 
|-
 
!0
 
!0
|Parker defeated
+
|Forest Area
 
|-
 
|-
 
!1
 
!1
|Suzette defeated
+
|Cat Town
 
|-
 
|-
 
!2
 
!2
|Trent defeated
+
|Underground Forest
 
|-
 
|-
 
!3
 
!3
|Olivia defeated
+
|Marine Exhibit
 
|-
 
|-
 
!4
 
!4
|Ruby defeated
+
|Mt. Bophades (Exterior)
 
|-
 
|-
 
!5
 
!5
|Claire defeated
+
|Mt. Bophades (Interior)
 +
|-
 +
!6
 +
|Sky Cat Airship Fleet
 +
|-
 +
!7
 +
|Cat Castle
 +
|-
 +
!8
 +
|Deep Woods
 +
|-
 +
!9
 +
|Lake Area
 
|}
 
|}
  
== TRSR ==
+
== OEND ==
These are the different treasure locations in the game, and whether you got the treasure at that location or not. This block is <code>128</code> bytes in length, allowing for <code>1024</code> treasures.
+
This denotes the end of the file, and prevents the file from being truncated by having some kind of data at the end.
  
<i><b>Please Note</b> that not every treasure slot is used. This allows me to add more treasures later and keep them in the same group.</i>
 
{{Stub}}
 
 
== ACHV ==
 
These are flags for the different Achievements you can get in the game. It is <code>16</code> bytes in length, allowing for <code>128</code> achievements. (However, it is unlikely that this many achievements will be in the game.)
 
{{Stub}}
 
  
 
[[Category:Technical Info]]
 
[[Category:Technical Info]]

Latest revision as of 18:52, 9 April 2020

Warning! The information detailed on this page may not be in the present available build, and may only be available in an upcoming build! Therefore, all information here is to be considered volatile and could change or be removed without notice.
Warning! The information below is to be considered a draft. This means that the information presented is not final, so don't go running wild with this information.

Shield Cat saves are stored in the /saves directory. This directory is platform specific, please see Installation Instructions for its location on your platform.

Please note, save files can only be easily accessed and modified on Windows, Mac OS, and Linux. It may be possible on other platforms, but it is not supported.

Shield Cat save files are saved using the following structure:

 /saves/OTTSAV00/

where 00 is the number of the save file. The game will support up to 100 save files, but more can be added later if it is necessary.

OTTSAVFF is used for the Autosave file. Save slot 0 is not used.

Save information is stored in separate blocks, with each block being stored in it's own file. Details on each file are present below, as well as their expected file sizes.

In Gamemaker, it is loaded and saved as a Buffer with type buffer_fixed. It is 1 byte aligned.

Header

OTTSAV files start with the following header string:

 SC_OTTSAV_V00

where 00 is the version of the save format. During the prototype phase, all save files will use format 00. The format may also change a lot.

Please Note this is not a string that is to be read with buffer_string or buffer_text. It is instead read as unsigned bytes, and then the bytes are compared to see if the header is correct or not. The value 00 is actually ASCII, and will be $3030.

Block Type and Info

This is where the data for this particular save file will go. Details about what is stored in each file is available on each file's page.

Each file is saved separately in the save sub directory, which will look something like this:

 * LINF.BIN
 * FLGS.BIN
 * TRSR.BIN
 * (etc)

The contents of the LINF.BIN file would be as follows:

 SC_OTTSAV_V00LINF(data here)OEND

Please see the details about each block on its associated page:

Footer

OTTSAV files end with the following footer:

 OEND

This is used to prevent the file from being truncated, which can cause issues.

TRSR

These are the different treasure locations in the game, and whether you got the treasure at that location or not. This block is 128 bytes in length, allowing for 1024 treasures.

Please Note that not every treasure slot is used. This allows me to add more treasures later and keep them in the same group.

This page is a stub. Roxy will probably come along later and add more to it.

ACHV

These are flags for the different Achievements you can get in the game. It is 16 bytes in length, allowing for 128 achievements. (However, it is unlikely that this many achievements will be in the game.)

This page is a stub. Roxy will probably come along later and add more to it.

AREA

This block contains the collectibles data for the different areas in the game. Each area uses 128 bits / 16 Bytes of data, following the format specified below. There is support for up to 16 areas, meaning that this block is 256 bytes in size. Each chunk of data is followed sequentially, and the area it represents is detailed in the second table.

Byte Offset Bytes Used Usage
0 1 Byte The count of all the Fish Scales in an area that Lance has collected.
1 2 Bytes Reserved for future use
3 13 bytes All of the Fish Scales in the area. There are 99 Fish Scales in each area. The first 5 bits of this are used for the 5 "LANCE" letters the player can find in each area, using the total 104 bits.
Chunk Number Associated Area
0 Forest Area
1 Cat Town
2 Underground Forest
3 Marine Exhibit
4 Mt. Bophades (Exterior)
5 Mt. Bophades (Interior)
6 Sky Cat Airship Fleet
7 Cat Castle
8 Deep Woods
9 Lake Area

OEND

This denotes the end of the file, and prevents the file from being truncated by having some kind of data at the end.