10 #include "rpage/aos/inc.prl" 19 extern struct DosLibrary *
DOSBase;
20 extern struct GfxBase *GfxBase;
22 struct BitMap *allocate_new_bitmap(
short width,
short height,
short depth)
25 struct BitMap *new_bitmap;
28 size = RASSIZE(width, height);
29 new_bitmap = (
struct BitMap *)AllocMem((LONG)
sizeof(
struct BitMap), MEMF_CLEAR);
30 InitBitMap(new_bitmap, depth, width, height);
33 printf(
"allocate_new_bitmap(), size = %d", size * depth);
35 plane_prt = (PLANEPTR)AllocMem(size * depth, MEMF_CHIP | MEMF_CLEAR);
36 for (i = 0; i < depth; i++)
38 new_bitmap->Planes[i] = plane_prt + (i * size);
40 printf(
", allocated plane #%d", i);
47 BOOL load_pak_img_to_bitmap(
struct BitMap **bitmap, amiga_color **palette,
BYTE *packed_block,
UBYTE *name)
51 UWORD w, h, d, pal_size, packed_block_size;
58 printf(
"load_pak_img_to_bitmap(): '%s',", name);
60 if ((fileHandle = Open(name, MODE_OLDFILE)))
62 Read(fileHandle, &tag, 4);
63 if (strncmp(tag,
"IMPK", 4) != 0)
71 Read(fileHandle, &w, 2);
72 Read(fileHandle, &h, 2);
73 Read(fileHandle, &d, 2);
77 printf(
"w=%d, h=%d, d=%d, palette_size=%d, plane_size=%d,", w, h, d, pal_size, (
int)size);
80 Read(fileHandle, &tag, 4);
81 if (strncmp(tag,
"PAL4", 4) == 0)
89 for (i = 0; i < pal_size; i++)
91 Read(fileHandle, &fcolor, 2);
93 printf(
"%X,", fcolor);
96 (*palette)[i] = rgb4_to_rgb8(fcolor);
98 (*palette)[i] = fcolor;
104 Seek(fileHandle, pal_size * 2, OFFSET_CURRENT);
109 if (strncmp(tag,
"PAL8", 4) == 0)
117 for (i = 0; i < pal_size; i++)
119 Read(fileHandle, &fcolor, 4);
121 printf(
"%X,", fcolor);
124 (*palette)[i] = fcolor;
126 (*palette)[i] = rgb8_to_rgb4(fcolor);
132 Seek(fileHandle, pal_size * 4, OFFSET_CURRENT);
137 Read(fileHandle, &tag, 4);
138 if (strncmp(tag,
"DATA", 4) == 0)
141 printf(
", found raw 'DATA'!");
143 Read(fileHandle, (**bitmap).Planes[0], size * d);
145 printf(
", loaded plane #%d", i);
148 else if (strncmp(tag,
"MINZ", 4) == 0)
151 printf(
", found 'MINIZ' data!");
153 Read(fileHandle, &tag, 4);
154 if (strncmp(tag,
"SIZE", 4) == 0)
156 Read(fileHandle, &packed_block_size, 2);
158 printf(
", MINIZ block size: %d", packed_block_size);
160 Read(fileHandle, packed_block, packed_block_size);
164 printf(
", loaded packed plane #%d", i);
170 else if (strncmp(tag,
"SHRK", 4) == 0)
173 printf(
", found 'Shrinkler' data!");
175 Read(fileHandle, &tag, 4);
176 if (strncmp(tag,
"SIZE", 4) == 0)
178 Read(fileHandle, &packed_block_size, 2);
180 printf(
", Shrinkler block size: %d", packed_block_size);
182 Read(fileHandle, packed_block, packed_block_size);
183 ShrinklerDecompress(packed_block, (**bitmap).Planes[0], NULL, NULL);
185 printf(
", loaded packed plane #%d", i);
191 else if (strncmp(tag,
"NRV2", 4) == 0)
194 printf(
", found 'nrv2x' data!");
196 Read(fileHandle, &tag, 4);
197 if (strncmp(tag,
"SIZE", 4) == 0)
200 Read(fileHandle, &packed_block_size, 2);
202 printf(
", nrv2x block size: %d", packed_block_size);
204 Read(fileHandle, packed_block, packed_block_size);
205 Destination = (**bitmap).Planes[0];
206 nrv2s_unpack(packed_block, Destination);
208 printf(
", loaded packed plane #%d", i);
235 BOOL load_pak_img_to_new_bitmap(
struct BitMap **new_bitmap, amiga_color **new_palette,
BYTE *packed_block,
UBYTE *name)
239 UWORD w, h, d, pal_size, packed_block_size;
247 if (packed_block == NULL)
248 self_alloc_unpack_buffer =
TRUE;
251 printf(
"load_pak_img_to_new_bitmap(): '%s',", name);
253 if ((fileHandle = Open(name, MODE_OLDFILE)))
255 Read(fileHandle, &tag, 4);
256 if (strncmp(tag,
"IMPK", 4) != 0)
264 Read(fileHandle, &w, 2);
265 Read(fileHandle, &h, 2);
266 Read(fileHandle, &d, 2);
267 size = RASSIZE(w, h);
270 printf(
"w=%d, h=%d, d=%d, palette_size=%d, plane_size=%d,", w, h, d, pal_size, (
int)size);
273 Read(fileHandle, &tag, 4);
274 if (strncmp(tag,
"PAL4", 4) == 0)
276 if (new_palette != NULL)
279 *new_palette = (amiga_color *)AllocMem(pal_size *
sizeof(amiga_color), 0L);
280 for (i = 0; i < pal_size; i++)
282 Read(fileHandle, &fcolor, 2);
284 (*new_palette)[i] = rgb4_to_rgb8(fcolor);
286 (*new_palette)[i] = fcolor;
291 Seek(fileHandle, pal_size * 2, OFFSET_CURRENT);
295 if (strncmp(tag,
"PAL8", 4) == 0)
297 if (new_palette != NULL)
300 *new_palette = (amiga_color *)AllocMem(pal_size *
sizeof(amiga_color), 0L);
301 for (i = 0; i < pal_size; i++)
303 Read(fileHandle, &fcolor, 4);
305 (*new_palette)[i] = fcolor;
307 (*new_palette)[i] = rgb8_to_rgb4(fcolor);
312 Seek(fileHandle, pal_size * 4, OFFSET_CURRENT);
318 *new_bitmap = allocate_new_bitmap(w, h, d);
320 Read(fileHandle, &tag, 4);
321 if (strncmp(tag,
"DATA", 4) == 0)
324 printf(
", found raw 'DATA'!");
326 Read(fileHandle, (**new_bitmap).Planes[0], size * d);
328 printf(
", loaded plane #%d", i);
331 else if (strncmp(tag,
"MINZ", 4) == 0)
334 printf(
", found 'MINIZ' data!");
336 Read(fileHandle, &tag, 4);
337 if (strncmp(tag,
"SIZE", 4) == 0)
339 Read(fileHandle, &packed_block_size, 2);
340 if (self_alloc_unpack_buffer)
341 packed_block = AllocMem(packed_block_size *
sizeof(
BYTE), MEMF_CLEAR);
343 printf(
", MINIZ block size: %d", packed_block_size);
345 Read(fileHandle, packed_block, packed_block_size);
348 if (self_alloc_unpack_buffer && packed_block != NULL)
350 FreeMem(packed_block, packed_block_size);
354 printf(
", loaded packed plane #%d", i);
360 else if (strncmp(tag,
"SHRK", 4) == 0)
363 printf(
", found 'Shrinkler' data!");
365 Read(fileHandle, &tag, 4);
366 if (strncmp(tag,
"SIZE", 4) == 0)
368 Read(fileHandle, &packed_block_size, 2);
369 if (self_alloc_unpack_buffer)
370 packed_block = AllocMem(packed_block_size *
sizeof(
BYTE), MEMF_CLEAR);
372 printf(
", Shrinkler block size: %d", packed_block_size);
374 Read(fileHandle, packed_block, packed_block_size);
375 ShrinklerDecompress(packed_block, (**new_bitmap).Planes[0], NULL, NULL);
376 if (self_alloc_unpack_buffer && packed_block != NULL)
378 FreeMem(packed_block, packed_block_size);
382 printf(
", loaded packed plane #%d", i);
388 else if (strncmp(tag,
"NRV2", 4) == 0)
391 printf(
", found 'nrv2x' data!");
393 Read(fileHandle, &tag, 4);
394 if (strncmp(tag,
"SIZE", 4) == 0)
398 Read(fileHandle, &packed_block_size, 2);
399 if (self_alloc_unpack_buffer)
400 packed_block = AllocMem(packed_block_size *
sizeof(
BYTE), MEMF_CLEAR);
402 printf(
", nrv2x block size: %d", packed_block_size);
404 Read(fileHandle, packed_block, packed_block_size);
405 Destination = (**new_bitmap).Planes[0];
406 nrv2s_unpack(packed_block, Destination);
407 if (self_alloc_unpack_buffer && packed_block != NULL)
409 FreeMem(packed_block, packed_block_size);
413 printf(
", loaded packed plane #%d", i);
433 void clear_bitmap(
struct BitMap *bitmap)
436 for (i = 0; i < bitmap->Depth; i++)
438 BltClear(bitmap->Planes[i], RASSIZE(bitmap->BytesPerRow << 3, bitmap->Rows), 0);
443 PLANEPTR load_raw_to_mem(
UBYTE *name,
ULONG size,
BOOL allocate_into_chipmem)
448 if (!(fileHandle = Open(name, MODE_OLDFILE)))
455 if (!(mem = AllocMem(size, allocate_into_chipmem?MEMF_CHIP:0L)))
462 Read(fileHandle, mem, size);
468 void free_allocated_bitmap(
struct BitMap *allocated_bitmap)
470 if (allocated_bitmap)
475 printf(
"free_allocated_bitmap() allocated_bitmap = %x\n", (
int)allocated_bitmap);
476 printf(
"allocated_bitmap, BytesPerRow = %d, Rows = %d, Depth = %d, pad = %d\n",
477 (*allocated_bitmap).BytesPerRow,
478 (*allocated_bitmap).Rows,
479 (*allocated_bitmap).Depth,
480 (
int)(*allocated_bitmap).pad);
482 if (allocated_bitmap->Planes[0] != NULL)
483 FreeMem(allocated_bitmap->Planes[0], RASSIZE(allocated_bitmap->BytesPerRow << 3, allocated_bitmap->Rows) * allocated_bitmap->Depth);
485 printf(
"free_allocated_bitmap() error, plane ptr should not be NULL!\n");
487 for (i = 0; i < allocated_bitmap->Depth; i++)
490 printf(
"FreeMem() plane[%i], adr = %x, block_len = %i\n", i, allocated_bitmap->Planes[i], (
int)block_len);
492 if (allocated_bitmap->Planes[i] != NULL)
493 allocated_bitmap->Planes[i] = NULL;
496 if (allocated_bitmap != NULL)
498 FreeMem(allocated_bitmap, (LONG)
sizeof(
struct BitMap));
499 allocated_bitmap = NULL;
const char * err_cannot_open_file
const char * err_no_size_found
const char * err_no_impk_found
void rpage_system_alert(char *alert_message)
Opens a GURU MEDITATION message.
struct DosLibrary * DOSBase
size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags)