Click here to Skip to main content
15,881,757 members
Articles / Mobile Apps / Android

Texture Atlas Maker

Rate me:
Please Sign up or sign in to vote.
4.94/5 (16 votes)
1 Apr 2012BSD6 min read 142K   7K   55  
A utility to create texture atlases for 2D OpenGL games
/*
Copyright (c) 2012, Ed Welch
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

*    Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*    Redistributions in binary form must reproduce the above copyright notice, this list of conditions 
     and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import java.awt.image.BufferedImage;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;


public class TargaWriter
{
    private final static int TGA_COLOR_MAP_ABSENT = 0;
    private final static int TGA_IMAGE_TYPE_BGR_RLE = 10;
    private final static int TGA_T_TO_B_BIT = 32;
    public static void write(BufferedImage im, File output, int format) throws IOException 
    {
        FileOutputStream fileOutput;
        DataOutputStream dataOut;
        fileOutput = new FileOutputStream(output);
        dataOut = new DataOutputStream (fileOutput);
        dataOut.writeByte(0);	// image_id_length
        dataOut.writeByte(TGA_COLOR_MAP_ABSENT);	// color_map_type
        dataOut.writeByte(TGA_IMAGE_TYPE_BGR_RLE);	// image_type
        writeShort(dataOut, 0);	// color_map_origin
        writeShort(dataOut, 0);	// color_map_length
        dataOut.writeByte(0);	// color_map_depth
        writeShort(dataOut, 0);	// origin_x
        writeShort(dataOut, 0);	// origin_y
        writeShort(dataOut, im.getWidth(null));	
        writeShort(dataOut, im.getHeight(null));	
    	// write everything backwards
        if (format == ImageFormat.TARGA32)
        	dataOut.writeByte(32);	// pixel_depth
        else
        	dataOut.writeByte(16);	// pixel_depth
        dataOut.writeByte(TGA_T_TO_B_BIT);	// image_descriptor
        int[] data = new int[im.getWidth(null)*im.getHeight(null)];
        im.getRGB(0, 0, im.getWidth(null), im.getHeight(null), data, 0, im.getWidth(null));
        writeRLE(dataOut, data, format);
        dataOut.writeBytes("\0\0\0\0\0\0\0\0TRUEVISION-XFILE.");
    }
        
    private static void writeRLE(DataOutputStream dataOut, int[] data, int format) throws IOException 
    {
    	int index = 0;
    	// count pixels that are the same
//    	int count = 0;
    	int startPacket;
    	int packetHeader;
    	int n;
    	// it's much faster to operate on a buffer rather than directly write to DataOutputStream 
    	byte[] dest = new byte[data.length*4];
    	int indexOut = 0;
    	do
    	{
    		startPacket = index;
	    	while (index+1 < data.length && data[index] == data[index+1] &&
	    			index - startPacket < 127)
	    	{
	    		index++;
	    	}
	    	if (index - startPacket < 2)
	    	{
	    		// the packet is raw, now we have to count how many more bytes until we reach
	    		// a sequence of 3
		    	while (index+2 < data.length && (data[index] != data[index+1] || 
		    			data[index] != data[index+2]) &&
		    			index - startPacket < 127)
		    	{
		    		index++;
		    	}
	    		if (index+2 >= data.length) 
	    		{
	    			index = data.length;
	    		}
	    		packetHeader = (index - startPacket-1);
	    		dest[indexOut] = (byte)(packetHeader & 0xFF);
	    		indexOut++;
	    		for (n = startPacket; n < index; n++)
	    		{
		    		indexOut = outData(dest, indexOut, data[n], format); 
	    		}
	    	}
	    	else
	    	{
	    		if (index+1 >= data.length) 
	    		{
	    			index = data.length-1;
	    		}
	    		// output rle packet
	    		packetHeader = 0x80 | (index - startPacket);
	    		dest[indexOut] = (byte)(packetHeader & 0xFF);
	    		indexOut++;
	    		indexOut = outData(dest, indexOut, data[index], format); 
//    	    	dest[indexOut] = (byte)((v >> 16) & 0xFF);
//    	    	indexOut++;
//    	    	dest[indexOut] = (byte)((v >> 8) & 0xFF);
//    	    	indexOut++;
//    	    	dest[indexOut] = (byte)(v & 0xFF);
//    	    	indexOut++;
//    	    	dest[indexOut] = (byte)((v >> 24) & 0xFF);
//    	    	indexOut++;
	    		index++;
	    	}
    	} while (index < data.length);
    	dataOut.write(dest, 0, indexOut);
    }
	// write everything backwards
    private static void writeShort(DataOutputStream dataOut, int v) throws IOException 
    {
    	dataOut.writeByte(v & 0xFF);
    	dataOut.writeByte((v >> 8) & 0xFF);
    }
    private static int outData(byte[] dest, int indexOut, int v, int format)  
    {
        if (format == ImageFormat.TARGA32)
        {
	    	dest[indexOut] = (byte)((v >> 16) & 0xFF);
	    	indexOut++;
	    	dest[indexOut] = (byte)((v >> 8) & 0xFF);
	    	indexOut++;
	    	dest[indexOut] = (byte)(v & 0xFF);
	    	indexOut++;
	    	dest[indexOut] = (byte)((v >> 24) & 0xFF);
	    	indexOut++;
        }
        else
        {
        	int blue = (v & 0xFF);
        	int blueNibble = blue >> 4;
        	if ((blue & 0xf) > 8 && blueNibble < 0xf) blueNibble++;

        	int alpha = ((v >> 24) & 0xFF);
        	int alphaNibble = alpha >> 4;
        	if ((alpha & 0xf) > 8 && alphaNibble < 0xf) alphaNibble++;

	    	int red = ((v >> 16) & 0xFF);
        	int redNibble = red >> 4;
        	if ((red & 0xf) > 8 && redNibble < 0xf) redNibble++;

        	int green = ((v >> 8) & 0xFF);
        	int greenNibble = green >> 4;
        	if ((green & 0xf) > 8 && greenNibble < 0xf) greenNibble++;      	

        	dest[indexOut] = (byte)((blueNibble << 4) | alphaNibble); 
	    	indexOut++;
        	dest[indexOut] = (byte)((redNibble << 4) | greenNibble); 
	    	indexOut++;
	    	
        }
    	return indexOut; 
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Software Developer Astronautz
Spain Spain
After working in the software industry for many years, I've started my own games company that specialises in strategy games for mobile platforms.

Comments and Discussions