summaryrefslogtreecommitdiffstats
path: root/src/jake2/imageio/PCX.java
blob: eb714652af6ee73dff6ce18552542dc4e968a303 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/*
 * Created on Nov 18, 2003
 *
 */
package jake2.imageio;

import java.nio.ByteBuffer;
import java.nio.ByteOrder;

/**
 * @author cwei
 *
 */
public class PCX {

	public static final int HEADER_SIZE = 128;

	/**
	 * <code>
		typedef struct
		{
		char        manufacturer;
		char        version;
		char        encoding;
		char        bits_per_pixel;
		unsigned short      xmin,ymin,xmax,ymax;
		unsigned short      horzRes,vertRes;
		unsigned char       palette[48];
		char        reserved;
		char        color_planes;
		unsigned short      bytes_per_line;
		unsigned short      palette_type;
		char        filler[58];
		unsigned char       data;                   // unbounded
		} pcx_t;
	
		</code>
	*/
	public static class Header {

		// size of byte arrays
		static final int PALETTE_SIZE = 48;
		static final int FILLER_SIZE = 58;

		byte manufacturer;
		byte version;
		byte encoding;
		byte bitsPerPixel;
		int xmin, ymin, xmax, ymax; // unsigned short
		int horzRes, vertRes; // unsigned short
		byte[] palette; //unsigned byte
		byte reserved;
		byte colorPlanes;
		int bytesPerLine; // unsigned short
		int paletteType; // unsigned short
		byte[] filler;
		


		public Header(byte[] headerBytes) {
			if (headerBytes == null || headerBytes.length != 128) {
				throw new IllegalArgumentException("invalid quake2 pcx header");
			}

			ByteBuffer b = ByteBuffer.wrap(headerBytes);
			// is stored as little endian
			b.order(ByteOrder.LITTLE_ENDIAN);
			
			// fill header
			manufacturer = b.get();
			version = b.get();
			encoding = b.get();
			bitsPerPixel = b.get();
			xmin = b.getShort() & 0xffff;
			ymin = b.getShort() & 0xffff;
			xmax = b.getShort() & 0xffff;
			ymax = b.getShort() & 0xffff;
			horzRes = b.getShort() & 0xffff;
			vertRes = b.getShort() & 0xffff;
			b.get(palette = new byte[PALETTE_SIZE]);
			reserved = b.get();
			colorPlanes = b.get();
			bytesPerLine = b.getShort() & 0xffff;
			paletteType = b.getShort() & 0xffff;
			b.get(filler = new byte[FILLER_SIZE]);

			// check some attributes
			checkHeader();
		}

		private void checkHeader() {

			if (this.getManufacturer() != 0x0a
				|| this.getVersion() != 5
				|| this.getEncoding() != 1
				|| this.getBitsPerPixel() != 8
				|| this.getXmax() >= 640
				|| this.getYmax() >= 480) {
				throw new IllegalArgumentException("invalid quake2 pcx header");
			}
		}
		
		/**
		 * @return
		 */
		public byte getBitsPerPixel() {
			return bitsPerPixel;
		}

		/**
		 * @return
		 */
		public int getBytesPerLine() {
			return bytesPerLine;
		}

		/**
		 * @return
		 */
		public byte getColorPlanes() {
			return colorPlanes;
		}

		/**
		 * @return
		 */
		public byte getEncoding() {
			return encoding;
		}

		/**
		 * @return
		 */
		public byte[] getFiller() {
			return filler;
		}

		/**
		 * @return
		 */
		public int getHeight() {
			return ymax - ymin + 1;
		}

		/**
		 * @return
		 */
		public byte getManufacturer() {
			return manufacturer;
		}

		/**
		 * @return
		 */
		public byte[] getPalette() {
			return palette;
		}

		/**
		 * @return
		 */
		public int getPaletteType() {
			return paletteType;
		}

		/**
		 * @return
		 */
		public byte getReserved() {
			return reserved;
		}

		/**
		 * @return
		 */
		public byte getVersion() {
			return version;
		}

		/**
		 * @return
		 */
		public int getWidth() {
			return  xmax - xmin + 1;
		}

		/**
		 * @return
		 */
		public int getXmax() {
			return xmax;
		}

		/**
		 * @return
		 */
		public int getXmin() {
			return xmin;
		}

		/**
		 * @return
		 */
		public int getYmax() {
			return ymax;
		}

		/**
		 * @return
		 */
		public int getYmin() {
			return ymin;
		}
		/**
		 * @return
		 */
		public int getHorzRes() {
			return horzRes;
		}

		/**
		 * @return
		 */
		public int getVertRes() {
			return vertRes;
		}

	}
}