R-PAGE
Resistance's Portable-Adventure-Game-Engine
bitmap.h
Go to the documentation of this file.
1 /* Resistance's Portable-Adventure-Game-Engine (R-PAGE), Copyright (C) 2019 François Gutherz, Resistance.no
2  Released under MIT License, see license.txt for details.
3 */
4 
5 #ifdef LATTICE
6 #ifndef BITMAP_ROUTINES
7 #define BITMAP_ROUTINES
8 
9 /*
10  Misc bitmap routines headers
11 */
12 
13 #include "rpage/aos/inc.prl"
14 
15 #include <stdio.h>
16 #include <string.h>
17 #include <stdlib.h>
18 #include <dos/dos.h>
19 #include <exec/types.h> /* The Amiga data types file. */
20 #include <exec/memory.h> /* The Amiga data types file. */
21 #include <exec/libraries.h>
22 #include <intuition/intuition.h> /* Intuition data strucutres, etc. */
23 #include <libraries/dos.h> /* Official return codes defined here */
24 #include <devices/keyboard.h>
25 
26 #include <clib/exec_protos.h> /* Exec function prototypes */
27 #include <clib/alib_protos.h>
28 #include <clib/graphics_protos.h> /* Exec function prototypes */
29 #include <clib/intuition_protos.h> /* Intuition function prototypes */
30 
31 #include "rpage/aos/debug.h"
32 
33 /*
34  Image loading
35 */
36 BOOL load_pak_img_to_bitmap(struct BitMap **bitmap, UWORD **palette, BYTE *packed_block, UBYTE *name);
37 BOOL load_pak_img_to_new_bitmap(struct BitMap **new_bitmap, UWORD **new_palette, BYTE *packed_block, UBYTE *name);
38 
39 /*
40  Image loading
41  Legacy RAW format (exported from Cloanto PPaint)
42 */
43 struct BitMap *allocate_new_bitmap(short width, short height, short depth);
44 void free_allocated_bitmap(struct BitMap *allocated_bitmap);
45 PLANEPTR load_raw_to_mem(UBYTE *name, ULONG size, BOOL allocate_into_chipmem);
46 void clear_bitmap(struct BitMap *bitmap);
47 
48 /*
49  Simple bitblit
50 */
51 #define BLIT_BITMAP_S(SRC_BITMAP, DEST_BITMAP, SCREEN_WIDTH, SCREEN_HEIGHT, X, Y) BltBitMap(SRC_BITMAP, 0, 0, \
52  DEST_BITMAP, X, Y, \
53  SCREEN_WIDTH, SCREEN_HEIGHT, \
54  0xC0, 0xFF, NULL);
55 
56 #endif // #ifndef BITMAP_ROUTINES
57 #endif
int BOOL
Definition: utils.h:32
unsigned char UBYTE
Definition: utils.h:20
unsigned short UWORD
Definition: utils.h:28
unsigned char BYTE
Definition: utils.h:16
unsigned long ULONG
Definition: utils.h:24