development:aseprite
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
development:aseprite [2023/08/29 16:33] – created clyde | development:aseprite [2023/12/17 18:52] (current) – [Using the SDK] clyde | ||
---|---|---|---|
Line 5: | Line 5: | ||
===== File setup ===== | ===== File setup ===== | ||
- | To create a file that can be rendered by the GameTank video hardware, the final output should be a Bitmap image with the color mode set to " | + | To create a file that can be rendered by the GameTank video hardware, the final output should be a Bitmap image with the color mode set to " |
In table form for easy reference: | In table form for easy reference: | ||
Line 19: | Line 19: | ||
==== Selecting the palette file: ==== | ==== Selecting the palette file: ==== | ||
+ | Once the new file is created, open the palette menu and pick Load Palette. | ||
+ | If you've downloaded the emulator repository, GAMETANK.act is in the " | ||
+ | But you can also download that file separately on GitHub. | ||
{{: | {{: | ||
Line 24: | Line 27: | ||
{{: | {{: | ||
+ | ===== Manual Export ===== | ||
+ | A .BMP file in indexed mode has a structure that is very straightforward to convert for GameTank use. The reason we want to use a specific palette file is that it assigns colors to each byte value that resemble the color that the video hardware would output for that byte. | ||
+ | |||
+ | Note that the video circuit is **not** palette-based. Instead each byte encodes packed parameters for the video signal: | ||
+ | |||
+ | ^Bitmask^Physical Control^Effective Output^ | ||
+ | |11100000|Color Carrier Phase Shift| Hue| | ||
+ | |00011000|Color Carrier Amplitude| Saturation| | ||
+ | |00000111|DC Offset | Luminosity | | ||
+ | |||
+ | Since each pixel in both a BMP file and in VRAM is represented by a single byte, using GAMETANK.act provides the convenient assignment from all possible byte values in a BMP to a closely matching output color. | ||
+ | |||
+ | ==== BMP file structure ==== | ||
+ | |||
+ | BMP files contain a header that specifies things like color mode, and width and height in pixels. Indexed BMP files will also contain a table of RGB values that describes the palette. At the end of the file is the image data. For our purposes we need only the image data, and will discard the header //including the palette.// | ||
+ | |||
+ | ==== Making a GTG file ==== | ||
+ | |||
+ | Technically it is not required to name your output file with a .GTG extension specifically. Short for " | ||
+ | |||
+ | Relative to how they are displayed on screen, BMP files are actually stored vertically flipped. So you'll need to flip (not rotate) your art upside down. Aseprite has this under the Edit menu and the hotkey is Shift+V. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | Next you'll need to extract only a certain number of the last bytes of your BMP file. This certain number is the same as the total number of pixels in your image. So if your image is 128 wide and 128 tall you'll need the last 16384 bytes of the BMP file. | ||
+ | |||
+ | On Mac and Linux this can be done with a simple terminal command: | ||
+ | <code Bash> | ||
+ | tail -c 16384 myfile.bmp > myfile.gtg | ||
+ | </ | ||
+ | |||
+ | In Windows Powershell the command is a bit more verbose but this should be equivalent: | ||
+ | <code Powershell> | ||
+ | Get-Content -Path " | ||
+ | </ | ||
+ | |||
+ | ===== Using the SDK ===== | ||
+ | |||
+ | The GameTank SDK includes scripts for automatically converting and compressing your image files using Zopfli. | ||
+ | |||
+ | This section will cover the settings and export options needed to take full advantage of the SDK's conversion script and animation API. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | The SDK supports animated sequences as packed sprite sheets that don't need to be aligned to a grid, using a framedata file exported alongside the bitmap. | ||
+ | |||
+ | The canvas on the source file can be as big as your largest animation frame needs to be, and the export/ | ||
+ | |||
+ | The export dialog we'll use is " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | On the Layout tab, sheet type should be set to " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | On the Borders tab select Trim Cels to pack the frames based on their bounding box size, taking transparent areas into account. | ||
+ | |||
+ | {{: | ||
+ | {{ : | ||
+ | |||
+ | Finally on the Output tab check the Output File and JSON Data boxes. Make sure that the image output file is a BMP instead of the PNG default. In your SDK project save this into a subfolder of the " | ||
+ | |||
+ | The JSON file should be saved in the same folder as the BMP. It can have any name, but generally using the same name apart from the .json extension will make it easier to remember the two files are associated. | ||
+ | |||
+ | The drop down should be switched from " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | After adding, removing, moving, or resizing files in the assets folder use the < |
development/aseprite.1693326792.txt.gz · Last modified: 2023/08/29 16:33 by clyde