R-PAGE
Resistance's Portable-Adventure-Game-Engine
screen.c
Go to the documentation of this file.
1 #ifdef LATTICE
2 #define INTUI_V36_NAMES_ONLY
3 
4 #include <exec/types.h>
5 #include <exec/memory.h>
6 #include <exec/execbase.h>
7 #include <pragmas/dos_pragmas.h>
8 #include <intuition/intuition.h>
9 #include <intuition/screens.h>
10 
11 #include <clib/exec_protos.h>
12 #include <clib/graphics_protos.h>
13 #include <clib/intuition_protos.h>
14 
15 #include "rpage/aos/screen_size.h"
16 #include "rpage/aos/color.h"
17 #include "rpage/aos/screen.h"
18 #include "rpage/aos/debug.h"
19 
20 extern struct DosLibrary *DOSBase;
21 extern struct Library *IntuitionBase;
22 extern struct Library *GfxBase;
23 
24 void __inline WaitVBL(buffered_screen *screen)
25 {
26  WaitTOF();
27 }
28 
29 USHORT getLogicalBitmapIndex(buffered_screen *screen)
30 {
31  if (screen->double_buffer_enabled)
32  return (USHORT)((screen->physical)^1);
33  else
34  return 0;
35 }
36 
37 USHORT getPhysicalBitmapIndex(buffered_screen *screen)
38 {
39  return screen->physical;
40 }
41 
42 void flipBuffers(buffered_screen *screen)
43 {
44  if (screen->double_buffer_enabled)
45  {
46  /* Swap the physical and logical bitmaps */
47  screen->physical = (USHORT)(screen->physical)^1;
48  screen->screen->RastPort.BitMap = screen->bitmaps[screen->physical];
49  screen->screen->ViewPort.RasInfo->BitMap = screen->bitmaps[screen->physical];
50  // screen->rp = &(screen->screen->RastPort);
51  }
52 #ifdef DEBUG_MACROS
53  printf("flipBuffers() : physical screen: %d\n", screen->physical);
54  printf("flipBuffers() : logical screen: %d\n", getLogicalBitmapIndex(screen));
55 #endif
56 }
57 
58 void presentPalette(buffered_screen *screen)
59 {
60  set_palette(&(screen->screen->ViewPort), &(screen->palettes[getPhysicalBitmapIndex(screen)]), 0, 1 << screen->screen->BitMap.Depth);
61 }
62 
63 void presentScreen(buffered_screen *screen)
64 {
65  /* Update the physical display to match the recently updated bitmap. */
66  MakeScreen(screen->screen);
67  RethinkDisplay();
68  presentPalette(screen);
69 #ifdef DEBUG_MACROS
70  printf("presentScreen()\n");
71 #endif
72 }
73 
74 void synchronizeBuffers(buffered_screen *screen)
75 {
76  if (screen->double_buffer_enabled)
77  {
78  short i;
79  for(i = 0; i < (1 << screen->screen->BitMap.Depth); i++)
80  screen->palettes[getLogicalBitmapIndex(screen)][i] = screen->palettes[getPhysicalBitmapIndex(screen)][i];
81  BltBitMap(screen->bitmaps[screen->physical], 0, 0, screen->bitmaps[getLogicalBitmapIndex(screen)], 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, 0xC0, 0xFF, NULL);
82  WaitBlit();
83  }
84 }
85 
86 UWORD screenGetDepth(void)
87 {
88  return SCREEN_DEPTH;
89 }
90 
91 #define SCR_PAD_X 16
92 
93 buffered_screen *openMainScreen(void)
94 {
95  int i;
96  static buffered_screen bscreen;
97  struct NewScreen new_screen;
98  struct NewWindow new_window;
99 
100 #ifdef DEBUG_MACROS
101  printf("openMainScreenCustom(%d, %d, %d, %d), depth = %d\n", SCREEN_WIDTH, SCREEN_HEIGHT, COLORS, DBUFFER_ENABLED, this_screen.depth);
102 #endif
103 
104  bscreen.double_buffer_enabled = DBUFFER_ENABLED;
105  bscreen.physical = 0; /* the physical screen (front buffer) has index 0. */
106 
107  for(i = 0; i < (DBUFFER_ENABLED?2:1); i++)
108  {
109  bscreen.bitmaps[i] = setupBitMap(SCREEN_DEPTH, SCREEN_WIDTH, SCREEN_HEIGHT);
110  bscreen.palettes[i] = (amiga_color *)calloc(COLORS, sizeof(amiga_color));
111  memset(bscreen.palettes[i], 0x000, COLORS);
112  }
113 
114 #ifdef DEBUG_MACROS
115  printf("Allocated %d bitmaps!\n", i);
116 #endif
117 
118  if (bscreen.bitmaps[i-1] != NULL)
119  {
120  new_screen.LeftEdge = 0;
121  new_screen.TopEdge = 0;
122  new_screen.Width = SCREEN_WIDTH;
123  new_screen.Height = SCREEN_HEIGHT;
124  new_screen.Depth = SCREEN_DEPTH;
125  new_screen.ViewModes = SPRITES;
126  new_screen.BlockPen = 0;
127  new_screen.DetailPen = 0;
128 
129  if (SCREEN_WIDTH >= 640)
130  {
131  new_screen.ViewModes |= HIRES;
132 #ifdef DEBUG_MACROS
133  printf("openMainScreenCustom(), HIRES.\n");
134 #endif
135  }
136 
137  if (SCREEN_HEIGHT >= 512)
138  {
139  new_screen.ViewModes |= LACE;
140 #ifdef DEBUG_MACROS
141  printf("openMainScreenCustom(), INTERLACE.\n");
142 #endif
143  }
144 
145  new_screen.Type = CUSTOMSCREEN | CUSTOMBITMAP | SCREENQUIET;
146  new_screen.Font = NULL;
147  new_screen.DefaultTitle = NULL;
148  new_screen.Gadgets = NULL;
149  new_screen.CustomBitMap = bscreen.bitmaps[bscreen.physical];
150 
151  bscreen.screen = OpenScreen(&new_screen);
152  if (bscreen.screen != NULL)
153  {
154  ShowTitle(bscreen.screen, FALSE);
155  /* Blacken the palette */
156  // set_palette_to_black(&(bscreen.screen->ViewPort), 0, COLORS);
157  set_palette_to_grey(&(bscreen.screen->ViewPort), 0, COLORS);
158 
159  WaitTOF();
160 
161  /* Create a fullscreen window */
162  new_window.LeftEdge = 0;
163  new_window.TopEdge = 0;
164  new_window.DetailPen = 0;
165  new_window.BlockPen = 0;
166  new_window.Title = NULL;
167  new_window.Width = SCREEN_WIDTH; // - SCR_PAD_X;
168  new_window.Height = SCREEN_HEIGHT;
169  new_window.BlockPen = 0;
170  new_window.DetailPen = 0;
171  new_window.IDCMPFlags = IDCMP_MOUSEMOVE | IDCMP_MOUSEBUTTONS | IDCMP_RAWKEY | IDCMP_INTUITICKS;
172  new_window.Flags = WFLG_ACTIVATE | WFLG_OTHER_REFRESH | WFLG_RMBTRAP | WFLG_REPORTMOUSE | WFLG_WINDOWACTIVE | WFLG_GIMMEZEROZERO | WFLG_BORDERLESS | WFLG_NOCAREREFRESH;
173  new_window.Screen = bscreen.screen;
174  new_window.Type = CUSTOMSCREEN;
175  new_window.FirstGadget = NULL;
176  new_window.CheckMark = NULL;
177  new_window.BitMap = NULL;
178 
179  bscreen.window = OpenWindow(&new_window);
180  if (bscreen.window == NULL)
181  {
182  printf("openMainScreenCustom(), OpenWindow() failed!\n");
183  closeMainScreen(&bscreen);
184  return NULL;
185  }
186 
187  bscreen.screen->FirstWindow = bscreen.window;
188  // bscreen.rp = &(bscreen.screen->RastPort);
189 
190  ScreenToFront(bscreen.screen);
191  return &bscreen;
192  }
193  else
194  {
195  for(i = 0; i < (DBUFFER_ENABLED?2:1); i++)
196  {
197  freeBitMap(bscreen.bitmaps[i], SCREEN_DEPTH, SCREEN_WIDTH, SCREEN_HEIGHT);
198  free(bscreen.palettes[i]);
199  }
200  printf("openMainScreenCustom(), OpenScreen() failed!\n");
201  return NULL;
202  }
203  }
204  else
205  {
206  printf("openMainScreenCustom(), setupBitMaps() failed!\n");
207  return NULL;
208  }
209 }
210 
211 void closeMainScreen(buffered_screen *screen)
212 {
213 #ifdef DEBUG_MACROS
214  printf("closeMainScreen()\n");
215 #endif
216  if (screen->screen->FirstWindow != NULL)
217  CloseWindow(screen->screen->FirstWindow);
218 
219  if (screen->screen != NULL)
220  {
221  int i;
222  struct BitMap *_bmp[2];
223  for(i = 0; i < ((!(screen->double_buffer_enabled))?1:2); i++)
224  _bmp[i] = screen->bitmaps[i];
225 
226  WaitBlit();
227  CloseScreen(screen->screen);
228 
229  for(i = 0; i < ((!(screen->double_buffer_enabled))?1:2); i++)
230  {
231  freeBitMap(_bmp[i], SCREEN_DEPTH, SCREEN_WIDTH, SCREEN_HEIGHT);
232  free(screen->palettes[i]);
233  }
234 
235  for(i = 0; i < ((!(screen->double_buffer_enabled))?1:2); i++)
236  screen->bitmaps[i] = NULL;
237  screen->screen = NULL;
238  screen->window = NULL;
239  }
240  else
241  printf("closeMainScreen(): new_screen is NULL!\n");
242 }
243 
244 /*
245  setupBitMap(): allocate the bit maps for a screen.
246 */
247 struct BitMap *setupBitMap(LONG depth, LONG width, LONG height)
248 {
249  /* static */ struct BitMap *main_bitmap = NULL;
250 
251  main_bitmap = (struct BitMap *)AllocMem((LONG)sizeof(struct BitMap), MEMF_CLEAR);
252  if (main_bitmap != NULL)
253  {
254  InitBitMap(main_bitmap, depth, width, height);
255 
256  if (setupPlanes(main_bitmap, depth, width, height) != NULL)
257  return (main_bitmap);
258 
259  freePlanes(main_bitmap, depth, width, height);
260  }
261 
262  if (main_bitmap != NULL)
263  {
264  FreeMem(main_bitmap, (LONG)sizeof(struct BitMap));
265  main_bitmap = NULL;
266  }
267  return NULL;
268 }
269 
270 /*
271  freeBitMap(): free up the memory allocated by setupBitMap().
272 */
273 VOID freeBitMap(struct BitMap *main_bitmaps, LONG depth, LONG width, LONG height)
274 {
275  if (main_bitmaps != NULL)
276  {
277  freePlanes(main_bitmaps, depth, width, height);
278  main_bitmaps = NULL;
279  }
280  // FreeMem(main_bitmaps, (LONG)sizeof(struct BitMap));
281 }
282 
283 /*
284  setupPlanes(): allocate the bit planes for a screen bit map.
285 */
286 LONG setupPlanes(struct BitMap *bitMap, LONG depth, LONG width, LONG height)
287 {
288  SHORT plane_num;
289 
290  for (plane_num = 0; plane_num < depth; plane_num++)
291  {
292  bitMap->Planes[plane_num] = (PLANEPTR)AllocRaster(width, height);
293 
294  if (bitMap->Planes[plane_num] != NULL)
295  BltClear(bitMap->Planes[plane_num], (width / 8) * height, 1);
296  else
297  {
298  freePlanes(bitMap, depth, width, height);
299  return (NULL);
300  }
301  }
302  return (TRUE);
303 }
304 
305 /*
306  freePlanes(): free up the memory allocated by setupPlanes().
307 */
308 VOID freePlanes(struct BitMap *bitMap, LONG depth, LONG width, LONG height)
309 {
310  SHORT plane_num;
311 
312  for (plane_num = 0; plane_num < depth; plane_num++)
313  {
314  if (bitMap->Planes[plane_num] != NULL)
315  FreeRaster(bitMap->Planes[plane_num], width, height);
316  }
317 }
318 
319 
324 VOID add36k(struct IntuitionBase *ibase)
325 {
326  long pl0,pl1,plb,ple;
327  struct Screen *scr;
328  struct BitMap *bm;
329  struct Window *win;
330  ULONG origheight;
331 
332  if (ibase != NULL)
333  {
334  scr = ibase->ActiveScreen;
335  win = ibase->ActiveWindow;
336 
337  origheight=scr->Height;
338  SizeWindow(win,0,-150);
339 
340  Delay(1*50);
341 
342  scr->Height=50;
343  scr->BitMap.Depth=1;
344  bm=&scr->BitMap;
345  bm->Rows=50;
346  bm->Depth=1;
347  pl0=(long)bm->Planes[0];
348  pl1=(long)bm->Planes[1];
349  bm->Planes[1]=NULL;
350  plb=pl0+(640*50/8);
351  ple=pl1+(640*origheight/8);
352 
353  RemakeDisplay();
354  FreeMem((APTR)plb,ple-plb);
355  }
356 }
357 #endif
#define FALSE
Definition: utils.h:41
unsigned short UWORD
Definition: utils.h:28
struct DosLibrary * DOSBase
unsigned long ULONG
Definition: utils.h:24
#define TRUE
Definition: utils.h:37