ModEnc is currently in Maintenance Mode: Changes could occur at any given moment, without advance warning.

Difference between revisions of "SHP"

From ModEnc
Jump to: navigation, search
(Frame Data)
m
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
SHP (TS) files are used on Tiberian Sun and Red Alert 2 to make buildings, infantry, animations, cameos (sidebar icons), among many other things. They consists on images with several frames using 256 colours from an external palette. Several programs are able to create and edit them like OS SHP Builder, Will's SHP Editor, XCC Mixer, etc. Several modders use XCC Mixer to convert images made with 3rd party programs into this format, while others edit them straight with OS SHP Builder.<br>
+
Shape files, or SHPs as they are more commonly known, are used on Tiberian Sun, FireStorm, Red Alert 2 and Yuri's Revenge to make buildings, infantry, animations, cameos (sidebar icons), among many other things. They consists on images with several frames using 256 colours from an external palette. Several programs are able to create and edit them like OS SHP Builder, Will's SHP Editor, XCC Mixer, etc. Several modders use XCC Mixer to convert images made with 3rd party programs into this format, while others edit them straight with OS SHP Builder.<br>
  
 
Below, I'll explain the file format and how does it work, so future programmers may also be able to play with these files:<br>
 
Below, I'll explain the file format and how does it work, so future programmers may also be able to play with these files:<br>
Line 19: Line 19:
 
=== File Header ===
 
=== File Header ===
 
The File Header is very simple and consists only of few variables (unsigned 2 bytes integers):<br>
 
The File Header is very simple and consists only of few variables (unsigned 2 bytes integers):<br>
*Signature (always #00000000)
+
*Reserved word (must be zero)
 
*Width
 
*Width
 
*Height
 
*Height
Line 25: Line 25:
  
 
=== Frame Header ===
 
=== Frame Header ===
Each Frame comes with a relevant ammount of data that will help to render it.
+
Each Frame comes with a relevant amount of data that will help to render it.
 
*X[uint16] (Horizontal position of the 0,0)
 
*X[uint16] (Horizontal position of the 0,0)
 
*Y[uint16] (Vertical position of the 0,0)
 
*Y[uint16] (Vertical position of the 0,0)
 
*Width[uint16] (Width of the frame. Note that X + Width < FileHeader.Width)
 
*Width[uint16] (Width of the frame. Note that X + Width < FileHeader.Width)
 
*Height[uint16] (Height of the frame. Note that Y + Height < FileHeader.Height)
 
*Height[uint16] (Height of the frame. Note that Y + Height < FileHeader.Height)
*Flags[uint8] Compression type. It can be 1, 2 or 3.
+
*Flags[uint8] Special flags. It can be any number
*Align[uint24] Unused
+
*Align[3] 3 bytes align to dword
 
*Color[uint32] Some color (Can be Transparent color)
 
*Color[uint32] Some color (Can be Transparent color)
 
*Reserved2[uint32] (A bunch of zero. Unused by Westwood. That's a kind of space you can use to add... things like password for it).
 
*Reserved2[uint32] (A bunch of zero. Unused by Westwood. That's a kind of space you can use to add... things like password for it).
Line 37: Line 37:
  
 
=== Frame Data ===
 
=== Frame Data ===
If the frame compression is 1, Frame data is composed of a (FrameHeader.Width * FrameHeader.Height) bytes, each byte being a colour of the palette. For Compression 3, you have to decompress it.<br>
+
The frame data is stored in one of two types, determined by the "flags" byte in the frame header.
 +
If the flag data have second bit clear, the frame data is stored as (FrameHeader.Height * FrameHeader.Width) bytes, each byte being an index of the [[PAL|palette]]
  
The compression 3 is quite easy to be understood. The colour #0 repeats many times in a SHP file, since it's the background (transparent) colour. Therefore for any instance of the colour #0, the next byte will be the ammount of times (until 255) that #0 repeats. Another thing that must be considered on the compression 3 is that the first 2 bytes of a line are not colours. They indicate the size (in bytes) of the line.<br>
+
If the flag data second bit is set the data is stored using RLE compression. See below for more details.  
  
The compression 2 works similarly to compression 3, but there is no special treatment for colour #0.<br>
+
=== Compression ===
  
=== Pratical Aplication ===
+
If FrameHeader.Flag have second bit set, compression is used.
 +
if (info->flag & 0x2)
 +
{
 +
  // with compression code
 +
}
 +
else
 +
{
 +
  // without compression code
 +
}
 +
 
 +
First method:<br>
 +
The first two bytes of the frame data indicate how many bytes are in the line (that is, how many bytes of the frame data represent a whole row of pixels). This count includes the two bytes that say how many bytes in the line (for example if the value was 8, there would be 6 bytes of pixel information until the next line).<br>
 +
After this, there is a series of bytes indicating which index of the [[PAL]] file the colour is. In any case where the colour is 0x00, then the following byte indicates how many pixels of colour 0x00 (transparent) are to be written.
 +
For example, a line might read:
 +
    07 00 00 09 53 00 9C
 +
This would be 9 pixels of transparent colour, colour 0x53 in the [[PAL|pallette]], and then another 0x9C pixels of transparent.
 +
This format repeats until all the lines in the image have been accounted for.
 +
 
 +
=== Practical Application ===
 
Both XCC Mixer and OS SHP Builder are open source programs that are able to load and save SHP files. XCC Mixer's source code is available at the CVS from XCCU project at SourceForge. It was written using C++ language. OS SHP Builder's source code, written in Delphi, is available with the program downloadable at Project Perfect Mod.<br>
 
Both XCC Mixer and OS SHP Builder are open source programs that are able to load and save SHP files. XCC Mixer's source code is available at the CVS from XCCU project at SourceForge. It was written using C++ language. OS SHP Builder's source code, written in Delphi, is available with the program downloadable at Project Perfect Mod.<br>
  
 
*XCC Mixer: http://cvs.sourceforge.net/viewcvs.py/xccu
 
*XCC Mixer: http://cvs.sourceforge.net/viewcvs.py/xccu
 
*OS SHP Builder: http://www.ppmsite.com<br>
 
*OS SHP Builder: http://www.ppmsite.com<br>
 
+
*[http://www.ppmsite.com/forum/index.php?f=372 SHP Shell Extension] for WIN32 will allow your windows explorer to display SHP files
  
 
[[Category:General_Editing_Information]]
 
[[Category:General_Editing_Information]]

Latest revision as of 19:01, 7 September 2018

Shape files, or SHPs as they are more commonly known, are used on Tiberian Sun, FireStorm, Red Alert 2 and Yuri's Revenge to make buildings, infantry, animations, cameos (sidebar icons), among many other things. They consists on images with several frames using 256 colours from an external palette. Several programs are able to create and edit them like OS SHP Builder, Will's SHP Editor, XCC Mixer, etc. Several modders use XCC Mixer to convert images made with 3rd party programs into this format, while others edit them straight with OS SHP Builder.

Below, I'll explain the file format and how does it work, so future programmers may also be able to play with these files:

SHP (TS) File Format

The internal format

Things work in a very simple way. We have one main header, follow by header from each frame and then, the data from each frame. Here's a how it works:

  • File Header
  • Frame 1 Header
  • Frame 2 Header
  • ...
  • Frame N Header
  • Frame 1 Data
  • Frame 2 Data
  • ...
  • Frame N Data

File Header

The File Header is very simple and consists only of few variables (unsigned 2 bytes integers):

  • Reserved word (must be zero)
  • Width
  • Height
  • NumberOfFrames

Frame Header

Each Frame comes with a relevant amount of data that will help to render it.

  • X[uint16] (Horizontal position of the 0,0)
  • Y[uint16] (Vertical position of the 0,0)
  • Width[uint16] (Width of the frame. Note that X + Width < FileHeader.Width)
  • Height[uint16] (Height of the frame. Note that Y + Height < FileHeader.Height)
  • Flags[uint8] Special flags. It can be any number
  • Align[3] 3 bytes align to dword
  • Color[uint32] Some color (Can be Transparent color)
  • Reserved2[uint32] (A bunch of zero. Unused by Westwood. That's a kind of space you can use to add... things like password for it).
  • Offset[uint32] (Location, inside the file, of the frame data. Use this value with Seek to reach the frame data. If offset equal 0 it is NULL "frame"

Frame Data

The frame data is stored in one of two types, determined by the "flags" byte in the frame header. If the flag data have second bit clear, the frame data is stored as (FrameHeader.Height * FrameHeader.Width) bytes, each byte being an index of the palette

If the flag data second bit is set the data is stored using RLE compression. See below for more details.

Compression

If FrameHeader.Flag have second bit set, compression is used.

if (info->flag & 0x2)
{
  // with compression code
}
else
{
  // without compression code
}

First method:
The first two bytes of the frame data indicate how many bytes are in the line (that is, how many bytes of the frame data represent a whole row of pixels). This count includes the two bytes that say how many bytes in the line (for example if the value was 8, there would be 6 bytes of pixel information until the next line).
After this, there is a series of bytes indicating which index of the PAL file the colour is. In any case where the colour is 0x00, then the following byte indicates how many pixels of colour 0x00 (transparent) are to be written. For example, a line might read:

   07 00 00 09 53 00 9C

This would be 9 pixels of transparent colour, colour 0x53 in the pallette, and then another 0x9C pixels of transparent. This format repeats until all the lines in the image have been accounted for.

Practical Application

Both XCC Mixer and OS SHP Builder are open source programs that are able to load and save SHP files. XCC Mixer's source code is available at the CVS from XCCU project at SourceForge. It was written using C++ language. OS SHP Builder's source code, written in Delphi, is available with the program downloadable at Project Perfect Mod.



Note: This tutorial was written by Banshee. Feel free to mirror it in your site, as long as you credit me.