Dstexcomp: Difference between revisions

From GameBrew
No edit summary
No edit summary
Line 3: Line 3:
| image      = [[File:Dstexcompds.png|300px]]
| image      = [[File:Dstexcompds.png|300px]]
| type        = PC Utility
| type        = PC Utility
| version    = 0.1 30 March 2009
| version    = 0.1 (30 Mar 2009)
| licence    = Mixed
| licence    = Mixed
| author      = kvance (Kevin Vance)
| author      = kvance (Kevin Vance)

Revision as of 14:03, 28 July 2021

dstexcomp
File:Dstexcompds.png
General
Author(s)kvance (Kevin Vance)
TypePC Utility
Version0.1 (30 Mar 2009)
LicenceMixed
Links
[Media:Dstexcomp01.tar.gz Download]
Website
Advertisements

<htmlet>adsense</htmlet>


This is a python script that can generate compressed textures for the Nintendo DS. It takes any image as input, and can output the NDS formatted texture in a variety of ways.

Installation

Requirements

It will optionally use Psyco if you have it.

User guide

Hardware texture compression on the NDS allows you to display very large textures for the device. You can store two compressed 1024x512 textures on a device with a total screen size of 256x384. There is no performance penalty, as the hardware can decompress them on the fly. Unfortunately, the tools to generate compressed textures are not available to the homebrew community.

Compressed textures have a slightly complicated format, and the hardware is not very forgiving about how they are stored. The texture is divided into three parts:

  • Pixmap - The pixels of the texture, grouped into 4x4 blocks.
  • Index - A map from each pixel block to a part of the palette.
  • Palette - The list of colors, used in groups of 2 or 4.

The pixmap can be stored in texture slots 0 or 2. The index must be stored in slot 1. This prevents textures larger than 1024x512, since the index would be in the middle of them. Palettes are stored normally.

Example NDS Binary.

Example C Source Code.


Advertising: