R-PAGE
Resistance's Portable-Adventure-Game-Engine
screen.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 SCREEN_ROUTINES
7 #define SCREEN_ROUTINES
8 
9 #include "rpage/aos/inc.prl"
10 #include <intuition/intuition.h>
11 #include <graphics/gfxbase.h>
12 
13 typedef struct{
14  struct BitMap *bitmaps[2];
15  amiga_color *palettes[2];
16  struct Screen *screen;
17  struct Window *window;
18  BOOL double_buffer_enabled;
19  struct RastPort *rp;
20  USHORT physical;
21 } buffered_screen;
22 
23 #define DBUFFER_ENABLED TRUE
24 
25 /* Prototypes for our functions */
26 
27 void WaitVBL(buffered_screen *screen);
28 void disableScreen(void);
29 void enableScreen(void);
30 // buffered_screen *openMainScreenCustom(USHORT _width, USHORT _height, USHORT _colors, BOOL _dbuffer);
31 buffered_screen *openMainScreen(void);
32 void closeMainScreen(buffered_screen *main_screen);
33 struct BitMap *setupBitMap(LONG, LONG, LONG);
34 void freeBitMap(struct BitMap *,LONG, LONG, LONG);
35 LONG setupPlanes(struct BitMap *, LONG, LONG, LONG);
36 void freePlanes(struct BitMap *, LONG, LONG, LONG);
37 USHORT getLogicalBitmapIndex(buffered_screen *screen);
38 USHORT getPhysicalBitmapIndex(buffered_screen *screen);
39 void flipBuffers(buffered_screen *screen);
40 void presentPalette(buffered_screen *screen);
41 void presentScreen(buffered_screen *screen);
42 void synchronizeBuffers(buffered_screen *screen);
43 UWORD screenGetDepth(void);
45 VOID add36k(struct IntuitionBase *ibase);
46 
47 #endif
48 #endif
int BOOL
Definition: utils.h:32
unsigned short UWORD
Definition: utils.h:28