R-PAGE
Resistance's Portable-Adventure-Game-Engine
frwk.c
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 #include "rpage/frwk.h"
7 
8 #include "rpage/aos/inc.prl"
9 #include <time.h>
10 #include <intuition/intuition.h>
11 #include <graphics/gfxbase.h>
12 #include <hardware/dmabits.h>
13 #include <hardware/intbits.h>
14 #include <hardware/custom.h>
15 #include <graphics/gfxmacros.h>
16 #include <proto/exec.h>
17 #include <proto/dos.h>
18 #include <proto/timer.h>
19 #include <math.h>
20 #include <time.h>
21 
22 /*
23 Common
24 */
25 #include "rpage/aos/board.h"
26 #include "rpage/aos/ptreplay.h"
29 
30 /*
31 Routines
32 */
33 #include "rpage/aos/screen.h"
34 #include "rpage/aos/bitmap.h"
35 #include "rpage/aos/color.h"
36 #include "rpage/aos/helper.h"
37 #include "rpage/aos/ptracker.h"
38 #include "rpage/aos/io.h"
39 #include "rpage/aos/time.h"
40 
41 /*
42 Graphic assets
43 */
44 #include "rpage/aos/screen_size.h"
45 #include "rpage/aos/mouse_ptr.h"
46 #include "rpage/aos/debug.h"
47 
48 struct IntuitionBase *IntuitionBase = NULL;
49 struct GfxBase *GfxBase = NULL;
50 extern struct ExecBase *SysBase;
51 extern struct DosLibrary *DOSBase;
52 extern struct DiskfontBase *DiskfontBase;
53 extern struct Custom far custom;
54 
55 struct Task *main_task = NULL;
56 BYTE oldPri;
57 
58 /* Main ViewPort */
59 buffered_screen *main_screen = NULL;
60 short scr_x_offset = 0, scr_y_offset = 0;
61 BOOL sprites_enabled[MAX_HARDWARE_SPRITES];
62 
63 struct TextFont *main_font = NULL;
64 
65 /* Global clock */
66 struct timeval startTime;
67 
68 /* Input System */
69 short input_mouse_button;
70 short prev_input_mouse_button;
71 
72 vec2 input_mouse_position;
73 vec2 prev_input_mouse_position;
74 
75 BOOL input_enabled = FALSE;
76 
77 unsigned short input_rawkey;
78 
79 unsigned int g_max_video_ram = 0;
80 unsigned int g_max_non_video_ram = 0;
81 
82 /* platform interface Amiga implementation */
83 
84 void rpage_init(void)
85 {
86  // BYTE error_code;
87  short i;
88 
89 #ifdef DEBUG_MACROS
90  printf("rpage_init()\n");
91 #endif
92  /* Open the Intuition library: */
93  if (IntuitionBase == NULL)
94  {
95  IntuitionBase = (struct IntuitionBase *)OpenLibrary("intuition.library", 0);
96  if (!IntuitionBase)
97  {
98  rpage_system_alert("Could NOT open the Intuition library!");
99  rpage_uninit();
100  exit(0);
101  }
102  }
103  else
104  {
105  rpage_system_alert("Platform already initialized!");
106  exit(0);
107  }
108 
109  /* Open the Graphics library: */
110  GfxBase = (struct GfxBase *)OpenLibrary("graphics.library", 0);
111  if (!GfxBase)
112  {
113  rpage_system_alert("Could NOT open the Graphics library!");
114  rpage_uninit();
115  exit(0);
116  }
117 
118  /* Open the DiskFont library: */
119  DiskfontBase = (struct DiskfontBase *)OpenLibrary("diskfont.library", 0);
120  if (!DiskfontBase)
121  {
122  rpage_system_alert("Could NOT open the Diskfont library!");
123  rpage_uninit();
124  exit(0);
125  }
126  else
127  {
128  // Add the local fonts folder to the system path
129  if (SysBase->LibNode.lib_Version >= 36)
130  if (!AssignPath("Fonts","Fonts"))
131  printf("/!\\Cannot assign local Fonts: folder. The game fonts might not load properly!\n");
132  }
133 
134 
135  main_task = FindTask(NULL);
136  // oldPri = SetTaskPri(main_task, 16);
137 
138  /* Timestamp of the platform startup */
139  init_timer_device();
140  timer_device_get_system_time(&startTime);
141 
142  /* Init the sprites array */
143  sprites_enabled[0] = TRUE; /* sprites 0 is known to be reserved for the mouse cursor */
144  for(i = 1; i < MAX_HARDWARE_SPRITES; i++)
145  sprites_enabled[i] = FALSE;
146 
147  input_enabled = TRUE;
148 
149  main_screen = NULL;
150 
151  g_max_video_ram = rpage_get_avail_video_memory();
152  g_max_non_video_ram = rpage_get_avail_non_video_memory();
153 
154  // Execute("endcli", NULL, NULL);
155  // CloseWorkBench();
156 }
157 
159 {
160  if ((rpage_get_avail_memory() < (1024 << 10)) && (SysBase->LibNode.lib_Version < 39))
161  add36k(IntuitionBase);
162 }
163 
164 void rpage_uninit(void)
165 {
166  short i;
167 #ifdef DEBUG_MACROS
168  printf("rpage_uninit()\n");
169 #endif
170  /* Remove any allocated sprite */
171  for(i = 1; i < MAX_HARDWARE_SPRITES; i++)
172  if (sprites_enabled[i])
173  {
174  FreeSprite(i);
175  sprites_enabled[i] = FALSE;
176  }
177 
178  if (main_task != NULL)
179  SetTaskPri(main_task, oldPri);
180 
181  uninit_timer_device();
182 
183  /* Close the Graphics library: */
184  if (GfxBase)
185  CloseLibrary((struct Library *)GfxBase);
186 
187  /* C Close the Intuition library: */
188  if (IntuitionBase)
189  CloseLibrary((struct Library *)IntuitionBase);
190 
191  IntuitionBase = NULL;
192  GfxBase = NULL;
193 }
194 
195 /*
196  SYSTEM (resources, memory, multitasking...)
197  -------------------------------------------
198 */
199 
201 {
202  return SetTaskPri(main_task, new_priority);
203 }
204 
206 {
207  return AvailMem(MEMF_CHIP);
208 }
209 
211 {
212  return AvailMem(MEMF_CHIP|MEMF_LARGEST);
213 }
214 
216 {
217  return AvailMem(MEMF_FAST);
218 }
219 
221 {
222  ULONG m_any, m_chip, m_fast;
223 
224  m_any = AvailMem(MEMF_ANY);
225  m_chip = AvailMem(MEMF_CHIP);
226  m_fast = AvailMem(MEMF_FAST);
227  return max(m_any, m_chip + m_fast);
228 }
229 
230 void rpage_free_memory_block(BYTE *block_ptr, UWORD block_size)
231 {
232  if (block_ptr != NULL)
233  FreeMem(block_ptr, block_size);
234  else
235  rpage_system_alert("rpage_free_memory_block(), pointer is NULL!");
236 }
237 
238 void rpage_system_alert(char *alert_message)
239 {
240 #ifdef GAME_VISUAL_DEBUG
241  char guru_format_message[128];
242  short margin_x;
243 #ifdef DEBUG_MACROS
244  printf("/!\\%s\n", alert_message);
245 #endif
246  memset(guru_format_message, 0, 128);
247  strcpy(guru_format_message, " ");
248  if (strlen(alert_message) > 76)
249  alert_message[76] = 0x0;
250  strcat(guru_format_message, alert_message);
251  margin_x = ((640 - strlen(alert_message) * 8) / 2);
252  guru_format_message[0] = (margin_x & 0xFF00) >> 8;
253  guru_format_message[1] = margin_x & 0xFF;
254  guru_format_message[2] = 0xF;
255  DisplayAlert(RECOVERY_ALERT, guru_format_message, 32);
256 #else
257  printf("/!\\%s\n", alert_message);
258 #endif
259 }
260 
261 void rpage_system_flash(void)
262 {
263  DisplayBeep(main_screen->screen);
264 }
265 
267 {
268  struct timeval endTime;
269 
270  timer_device_get_system_time(&endTime);
271  SubTime(&endTime, &startTime);
272 
273  return (endTime.tv_secs * 1000 + endTime.tv_micro / 1000);
274 }
275 
276 /*
277  FILE
278  ----
279 */
280 
281 rpage_file rpage_file_open(char *filename, long mode)
282 {
283  return (rpage_file)Open(filename, mode);
284 }
285 
286 void rpage_file_close(rpage_file file)
287 {
288  Close((BPTR)file);
289 }
290 
291 long rpage_file_read(rpage_file file, void *buffer, long len)
292 {
293  return Read((BPTR)file, buffer, len);
294 }
295 
296 long rpage_file_write(rpage_file file, void *buffer, long len)
297 {
298  return Write((BPTR)file, buffer, len);
299 }
300 
301 /*
302  VIDEO (video framebuffer access)
303  --------------------------------
304 */
305 
307 {
308 #ifdef DEBUG_MACROS
309  printf("rpage_video_open()\n");
310 #endif
311  if (main_screen == NULL)
312  {
313  // if (rpage_video_open == mode_lowres)
314  main_screen = openMainScreen();
315  scr_x_offset = 0;
316  scr_y_offset = 0;
317  // else
318  // main_screen = openMainScreenCustom(320, 512, 32, FALSE); /* Double buffer is DISABLED */
319 
320  main_font = NULL;
321  }
322  else
323  {
324  rpage_system_alert("A screen is already open!");
325  exit(0);
326  }
327 }
328 
330 {
331  ScreenToFront(main_screen->screen);
332  // WindowToFront(main_screen->window);
333 }
334 
336 {
337  ScreenToBack(main_screen->screen);
338  // WindowToFront(main_screen->window);
339 }
340 
341 UWORD __inline rpage_video_get_depth(void)
342 {
343  return screenGetDepth();
344 }
345 
346 void __inline rpage_video_wait_dma(void)
347 {
348  WaitBlit();
349 }
350 
351 void __inline rpage_video_vsync(void)
352 {
353  WaitVBL(main_screen);
354 }
355 
356 void __inline rpage_video_flip_buffers(void)
357 {
358  flipBuffers(main_screen);
359 }
360 
361 void __inline rpage_video_present_screen(void)
362 {
363  presentScreen(main_screen);
364 }
365 
366 void __inline rpage_video_present_palette(void)
367 {
368  presentPalette(main_screen);
369 }
370 
371 void rpage_video_sync_buffers(void)
372 {
373  synchronizeBuffers(main_screen);
374 }
375 
376 void rpage_video_clear_bit_mask(UBYTE bit_mask)
377 {
378  if (main_screen != NULL)
379  {
380  short i;
381  for (i = 0; i < SCREEN_DEPTH; i++)
382  if (bit_mask & (1 << i))
383  BltClear(main_screen->screen->RastPort.BitMap->Planes[i], RASSIZE(SCREEN_WIDTH, SCREEN_HEIGHT), 0);
384  }
385  else
386  {
387  rpage_system_alert("No screen was found open!");
388  exit(0);
389  }
390 }
391 
392 void rpage_video_clear(void)
393 {
394  // SetRast(&(main_screen->RastPort), 0);
395  // Move(&(main_screen->RastPort), 0, 0);
396  // ClearScreen(&(main_screen->RastPort));
397  if (main_screen != NULL)
398  {
399  short i;
400  for (i = 0; i < SCREEN_DEPTH; i++)
401  {
402  // memset(main_screen->RastPort.BitMap->Planes[i], 0x0, RASSIZE(main_screen->Width, main_screen->Height));
403  BltClear(main_screen->screen->RastPort.BitMap->Planes[i], RASSIZE(SCREEN_WIDTH, SCREEN_HEIGHT), 0);
404  // WaitBlit();
405  }
406  }
407  else
408  {
409  rpage_system_alert("No screen was found open!");
410  exit(0);
411  }
412 }
413 
414 void __inline rpage_video_scroll(short x, short y)
415 {
416  if ((scr_x_offset != x) || (scr_y_offset != y))
417  {
418  main_screen->screen->ViewPort.DxOffset = x;
419  main_screen->screen->ViewPort.DyOffset = y;
420  ScrollVPort(&(main_screen->screen->ViewPort));
421  }
422 
423  scr_x_offset = x;
424  scr_y_offset = y;
425 }
426 
427 void __inline rpage_video_scroll_bit_mask(short x, short y, UBYTE bit_mask)
428 {
429  short src_x, src_y, dst_x, dst_y;
430 
431  if (x < 0)
432  {
433  src_x = -x;
434  dst_x = 0;
435  }
436  else
437  {
438  src_x = 0;
439  dst_x = x;
440  }
441 
442  if (y < 0)
443  {
444  src_y = -y;
445  dst_y = 0;
446  }
447  else
448  {
449  src_y = 0;
450  dst_y = y;
451  }
452 
453  BltBitMap(main_screen->bitmaps[main_screen->physical], src_x, src_y, main_screen->bitmaps[main_screen->physical], dst_x, dst_y, SCREEN_WIDTH - abs(x), SCREEN_HEIGHT - abs(y), 0xC0, bit_mask, NULL);
454 }
455 
456 void __inline rpage_bitmap_blit(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, rpage_bitmap *dest_bitmap)
457 {
458  BltBitMap(source_bitmap, source_x, source_y, dest_bitmap, x, y, width, height, 0xC0, 0xFF, NULL);
459  // WaitBlit();
460 }
461 
462 void __inline rpage_video_save_to_bitmap(rpage_bitmap *dest_bitmap, short source_x, short source_y, short width, short height)
463 {
464  BltBitMap(main_screen->bitmaps[main_screen->physical], source_x, source_y, dest_bitmap, 0, 0, width, height, 0xC0, 0xFF, NULL);
465 }
466 
467 void __inline rpage_video_blt_bmp(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y)
468 {
469  BltBitMap(source_bitmap, source_x, source_y, main_screen->bitmaps[main_screen->physical], x, y, width, height, 0xC0, 0xFF, NULL);
470  // WaitBlit();
471 }
472 
473 void __inline rpage_video_blt_bmp_bt(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, UBYTE bit_mask)
474 {
475  BltBitMap(source_bitmap, source_x, source_y, main_screen->bitmaps[main_screen->physical], x, y, width, height, 0xC0, bit_mask, NULL);
476 }
477 
478 void __inline rpage_video_blt_bmp_mask(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, rpage_bitmap *mask_bitmap)
479 {
480  BltMaskBitMapRastPort(source_bitmap, source_x, source_y, &(main_screen->screen->RastPort), x, y, width, height, (ABC|ABNC|ANBC), mask_bitmap->Planes[0]);
481  // WaitBlit();
482 }
483 
484 void __inline rpage_video_blt_bmp_clip(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, rect *clipping_rect)
485 {
486  if (x < clipping_rect->sx)
487  {
488  short clip_x = clipping_rect->sx - x;
489  x += clip_x;
490  source_x += clip_x;
491  width -= clip_x;
492  }
493  else
494  {
495  if (x + width > clipping_rect->ex)
496  width -= (x + width - clipping_rect->ex);
497  }
498 
499  if (width <= 0)
500  return;
501 
502  if (y < clipping_rect->sy)
503  {
504  short clip_y = clipping_rect->sy - y;
505  y += clip_y;
506  source_y += clip_y;
507  height -= clip_y;
508  }
509  else
510  {
511  if (y + height > clipping_rect->ey)
512  height -= (y + height - clipping_rect->ey);
513  }
514 
515  if (height <= 0)
516  return;
517 
518  BltBitMap(source_bitmap, source_x, source_y, main_screen->bitmaps[main_screen->physical], x, y, width, height, 0xC0, 0xFF, NULL);
519  // WaitBlit();
520 }
521 
522 void __inline rpage_video_blt_bmp_clip_mask(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, rpage_bitmap *mask_bitmap, rect *clipping_rect)
523 {
524  if (x < clipping_rect->sx)
525  {
526  short clip_x = clipping_rect->sx - x;
527  x += clip_x;
528  source_x += clip_x;
529  width -= clip_x;
530  }
531  else
532  {
533  if (x + width > clipping_rect->ex)
534  width -= (x + width - clipping_rect->ex);
535  }
536 
537  if (width <= 0)
538  return;
539 
540  if (y < clipping_rect->sy)
541  {
542  short clip_y = clipping_rect->sy - y;
543  y += clip_y;
544  source_y += clip_y;
545  height -= clip_y;
546  }
547  else
548  {
549  if (y + height > clipping_rect->ey)
550  height -= (y + height - clipping_rect->ey);
551  }
552 
553  if (height <= 0)
554  return;
555 
556  BltMaskBitMapRastPort(source_bitmap, source_x, source_y, &(main_screen->screen->RastPort), x, y, width, height, (ABC|ABNC|ANBC), mask_bitmap->Planes[0]);
557  // WaitBlit();
558 }
559 
560 void __inline rpage_video_blt_bmp_clip_mask_bt(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, rpage_bitmap *mask_bitmap, rect *clipping_rect, UBYTE bit_mask)
561 {
562  UBYTE tmp_mask;
563 
564  if (x < clipping_rect->sx)
565  {
566  short clip_x = clipping_rect->sx - x;
567  x += clip_x;
568  source_x += clip_x;
569  width -= clip_x;
570  }
571  else
572  {
573  if (x + width > clipping_rect->ex)
574  width -= (x + width - clipping_rect->ex);
575  }
576 
577  if (width <= 0)
578  return;
579 
580  if (y < clipping_rect->sy)
581  {
582  short clip_y = clipping_rect->sy - y;
583  y += clip_y;
584  source_y += clip_y;
585  height -= clip_y;
586  }
587  else
588  {
589  if (y + height > clipping_rect->ey)
590  height -= (y + height - clipping_rect->ey);
591  }
592 
593  if (height <= 0)
594  return;
595 
596  tmp_mask = main_screen->screen->RastPort.Mask;
597  main_screen->screen->RastPort.Mask = bit_mask;
598  BltMaskBitMapRastPort(source_bitmap, source_x, source_y, &(main_screen->screen->RastPort), x, y, width, height, (ABC|ABNC|ANBC), mask_bitmap->Planes[0]);
599  main_screen->screen->RastPort.Mask = tmp_mask;
600  // WaitBlit();
601 }
602 
603 void __inline rpage_video_set_palette(rpage_palette *palette, short palette_size)
604 {
605  short i;
606  for(i = 0; i < palette_size; i++)
607  main_screen->palettes[main_screen->physical][i] = palette[i];
608  // set_palette(main_screen->palettes[main_screen->physical], &palette, 0, palette_size - 1);
609  // set_palette(&(main_screen->screen->ViewPort), &palette, 0, palette_size - 1);
610 }
611 
612 void __inline rpage_video_set_palette_to_black(short first_color, short last_color)
613 {
614  int loop;
615  for (loop = first_color; loop <= last_color; loop++)
616  main_screen->palettes[main_screen->physical][loop] = 0x0;
617 }
618 
619 void __inline rpage_video_set_palette_to_grey(short first_color, short last_color)
620 {
621  int loop;
622  int *luma, tmp_col;
623 
624  luma = (int *)calloc(last_color + 1, sizeof(int));
625  if (luma != NULL)
626  {
627  for (loop = first_color; loop <= last_color; loop++)
628  luma[loop] = range_adjust(loop, first_color, last_color, 0, 255);
629 
630  // Swap some of the colors (19 <-> 31, 18 <-> 4),
631  // so that the Amiga cursor looks ok.
632  if (last_color >= 31)
633  {
634  tmp_col = luma[19];
635  luma[19] = luma[31];
636  luma[31] = tmp_col;
637 
638  tmp_col = luma[18];
639  luma[18] = luma[4];
640  luma[4] = tmp_col;
641  }
642 
643  // Set the colors
644  for (loop = first_color; loop <= last_color; loop++)
645  {
646  #ifdef VGA_ENABLED
647  main_screen->palettes[main_screen->physical][loop] = components_to_rgb8(luma[loop], luma[loop], luma[loop]);
648  #else
649  main_screen->palettes[main_screen->physical][loop] = components_to_rgb4(luma[loop], luma[loop], luma[loop]);
650  #endif
651  }
652 
653  free(luma);
654  }
655 }
656 
657 void rpage_video_show_freemem(short x, short y, short width, short height)
658 {
659  rect r;
660  r.sx = x;
661  r.sy = y;
662  r.ex = x + width;
663  r.ey = y + height;
664  rpage_video_fill_rect(&r, 0);
665 
666  r.sx = x + 1;
667  r.sy = y + 1;
668  r.ex = x + width - 1;
669  r.ey = y + height - 1;
670  rpage_video_fill_rect(&r, 2);
671 
672  r.sx = x + 1;
673  r.sy = y + 1;
674  r.ex = x + (width * rpage_get_avail_video_memory()) / (g_max_non_video_ram + g_max_video_ram);
675  r.ey = y + height - 1;
676  rpage_video_fill_rect(&r, 20);
677  rpage_video_draw_text("CHIP", r.sx + 4, r.sy - 2, 0);
678  rpage_video_draw_text("CHIP", r.sx + 4, r.sy - 3, 30);
679 
680  if (g_max_non_video_ram > 0)
681  {
682  r.sx = r.ex + 1;
683  r.ex = r.sx - 1 + (width * rpage_get_avail_non_video_memory()) / (g_max_non_video_ram + g_max_video_ram);
684  rpage_video_fill_rect(&r, 8);
685  rpage_video_draw_text("OTHER", r.sx + 4, r.sy - 2, 0);
686  rpage_video_draw_text("OTHER", r.sx + 4, r.sy - 3, 30);
687  }
688 
689 }
690 
691 void rpage_video_draw_tileset(rpage_bitmap *tileset_bitmap, UBYTE *tileset, rect *tile_rect, short tileset_width)
692 {
693  UBYTE x , y, tile_idx, prev_tile_idx = 0xFF;
694  UBYTE tile_x, tile_y, tileset_bitmap_width = rpage_bitmap_get_width(tileset_bitmap) >> 3;
695 
696  for(y = (UBYTE)(tile_rect->sy); y < tile_rect->ey; y++)
697  {
698  unsigned short y_w = y * tileset_width;
699  for(x = (UBYTE)(tile_rect->sx); x < tile_rect->ex; x++)
700  {
701  tile_idx = tileset[x + y_w];
702  if (tile_idx > 0)
703  {
704  if (prev_tile_idx != tile_idx) /* let's avoid 2 divide ops. if possible */
705  {
706  tile_x = (tile_idx%tileset_bitmap_width) << 3;
707  tile_y = (tile_idx/tileset_bitmap_width) << 3;
708  }
709  rpage_video_blt_bmp(tileset_bitmap, tile_x, tile_y, 8, 8, x << 3, y << 3);
710  }
711  prev_tile_idx = tile_idx;
712  }
713  }
714 }
715 
716 void rpage_bitmap_draw_tileset(rpage_bitmap *dest_bitmap, rpage_bitmap *tileset_bitmap, UBYTE *tileset, rect *tile_rect, short tileset_width)
717 {
718  UBYTE x , y, tile_idx, prev_tile_idx = 0xFF;
719  UBYTE tile_x, tile_y, tileset_bitmap_width = rpage_bitmap_get_width(tileset_bitmap) >> 3;
720 
721  for(y = (UBYTE)(tile_rect->sy); y < tile_rect->ey; y++)
722  {
723  unsigned short y_w = y * tileset_width;
724  for(x = (UBYTE)(tile_rect->sx); x < tile_rect->ex; x++)
725  {
726  tile_idx = tileset[x + y_w];
727  if (tile_idx > 0)
728  {
729  if (prev_tile_idx != tile_idx) /* let's avoid 2 divide ops. if possible */
730  {
731  tile_x = (tile_idx%tileset_bitmap_width) << 3;
732  tile_y = (tile_idx/tileset_bitmap_width) << 3;
733  }
734  rpage_bitmap_blit(tileset_bitmap, tile_x, tile_y, 8, 8, x << 3, y << 3, dest_bitmap);
735  }
736  prev_tile_idx = tile_idx;
737  }
738  }
739 }
740 
741 void __inline rpage_video_fill_rect(rect *r, short color)
742 {
743  if (color < 0)
744  color = (1 << SCREEN_DEPTH) - 1;
745  SetAPen(&(main_screen->screen->RastPort), color);
746  RectFill( &(main_screen->screen->RastPort), r->sx, r->sy, r->ex, r->ey);
747 }
748 
749 void __inline rpage_video_fill_rect_clip(rect *r, short color, rect *clipping_rect)
750 {
751  rect video_rect;
752  UBYTE tmp_mask;
753 
754  video_rect.sx = r->sx;
755  video_rect.sy = r->sy;
756  video_rect.ex = r->ex;
757  video_rect.ey = r->ey;
758 
759  if (video_rect.sx < clipping_rect->sx)
760  video_rect.sx = clipping_rect->sx;
761  else
762  {
763  if (video_rect.ex > clipping_rect->ex)
764  video_rect.ex = clipping_rect->ex;
765  }
766 
767  if (video_rect.ex <= video_rect.sx)
768  return;
769 
770  if (video_rect.sy < clipping_rect->sy)
771  video_rect.sy = clipping_rect->sy;
772  else
773  {
774  if (video_rect.ey > clipping_rect->ey)
775  video_rect.ey = clipping_rect->ey;
776  }
777 
778  if (video_rect.ey <= video_rect.sy)
779  return;
780 
781  if (color < 0)
782  color = (1 << SCREEN_DEPTH) - 1;
783  SetAPen(&(main_screen->screen->RastPort), color);
784  tmp_mask = main_screen->screen->RastPort.Mask;
785  main_screen->screen->RastPort.Mask = 0x8;
786  RectFill( &(main_screen->screen->RastPort), video_rect.sx, video_rect.sy, video_rect.ex, video_rect.ey);
787  main_screen->screen->RastPort.Mask = tmp_mask;
788 }
789 
790 void rpage_video_draw_polygon(poly *p, short color)
791 {
792  if (color < 0)
793  color = (1 << SCREEN_DEPTH) - 1;
794  SetAPen(&(main_screen->screen->RastPort), color);
795  Move(&(main_screen->screen->RastPort), p->p0.x, p->p0.y);
796  Draw(&(main_screen->screen->RastPort), p->p1.x, p->p1.y);
797  Draw(&(main_screen->screen->RastPort), p->p2.x, p->p2.y);
798  Draw(&(main_screen->screen->RastPort), p->p3.x, p->p3.y);
799  Draw(&(main_screen->screen->RastPort), p->p0.x, p->p0.y);
800 }
801 
802 void rpage_video_draw_rect(rect *r, short color)
803 {
804  rect video_rect;
805 
806  video_rect.sx = 0;
807  video_rect.sy = 0;
808  video_rect.ex = SCREEN_WIDTH - 1;
809  video_rect.ey = SCREEN_HEIGHT - 1;
810 
811  if (color < 0)
812  color = (1 << SCREEN_DEPTH) - 1;
813  SetAPen(&(main_screen->screen->RastPort), color);
814  Move(&(main_screen->screen->RastPort), max(r->sx, video_rect.sx), max(r->sy, video_rect.sy));
815  Draw(&(main_screen->screen->RastPort), min(r->ex, video_rect.ex), max(r->sy, video_rect.sy));
816  Draw(&(main_screen->screen->RastPort), min(r->ex, video_rect.ex), min(r->ey, video_rect.ey));
817  Draw(&(main_screen->screen->RastPort), max(r->sx, video_rect.sx), min(r->ey, video_rect.ey));
818  Draw(&(main_screen->screen->RastPort), max(r->sx, video_rect.sx), max(r->sy, video_rect.sy));
819 }
820 
821 void __inline rpage_video_set_pixel(short x, short y, short color)
822 {
823  if (color < 0)
824  color = (1 << SCREEN_DEPTH) - 1;
825  SetAPen(&(main_screen->screen->RastPort), color);
826  WritePixel(&(main_screen->screen->RastPort), x, y);
827 }
828 
829 short __inline rpage_video_get_pixel(short x, short y)
830 {
831  return (short)ReadPixel(&(main_screen->screen->RastPort), x, y);
832 }
833 
834 void rpage_video_set_font(char *font_filename, short font_size)
835 {
836  struct TextAttr ta;
837 
838  if (main_font != NULL)
839  CloseFont(main_font);
840 
841  ta.ta_Name = font_filename;
842  ta.ta_YSize = font_size;
843  ta.ta_Flags = FPB_DISKFONT | FPF_DESIGNED;
844  ta.ta_Style = FS_NORMAL;
845 
846  main_font = OpenDiskFont(&ta);
847  if (main_font)
848  SetFont(&(main_screen->screen->RastPort), main_font);
849  else
850  {
851 #ifdef DEBUG_MACROS
852  printf("Cannot open font %s!", font_filename);
853 #endif
854  main_font = NULL;
855  }
856 }
857 
858 short rpage_video_get_text_width(char *str)
859 {
860  return (short)TextLength(&(main_screen->screen->RastPort), str, strlen(str));
861 }
862 
863 void rpage_video_draw_text_bit_mask(char *str, short x, short y, short color_index, UBYTE bit_mask)
864 {
865  UBYTE tmp_mask;
866  tmp_mask = main_screen->screen->RastPort.Mask;
867  main_screen->screen->RastPort.Mask = bit_mask;
868  rpage_video_draw_text(str, x, y, color_index);
869  main_screen->screen->RastPort.Mask = tmp_mask;
870 }
871 
872 void rpage_video_draw_text(char *str, short x, short y, short color)
873 {
874  if (color < 0)
875  color = (1 << SCREEN_DEPTH) - 1;
876 
877  if (x < 0)
878  x = (SCREEN_WIDTH - TextLength(&(main_screen->screen->RastPort), str, strlen(str))) >> 1;
879  if (y < 0)
880  y = (SCREEN_HEIGHT - 8) >> 1;
881 
882  SetAPen(&(main_screen->screen->RastPort), color);
883  SetBPen(&(main_screen->screen->RastPort), 0);
884  Move(&(main_screen->screen->RastPort), x, y + 8);
885  SetDrMd(&(main_screen->screen->RastPort), 0);
886  Text(&(main_screen->screen->RastPort), str, strlen(str));
887 }
888 
889 void rpage_video_close(void)
890 {
891 #ifdef DEBUG_MACROS
892  printf("rpage_video_close()\n");
893 #endif
894  if (main_font)
895  {
896  CloseFont(main_font);
897  main_font = NULL;
898  }
899 
900  closeMainScreen(main_screen);
901  main_screen = NULL;
902 }
903 
904 /*
905  BITMAP (direct bitmap access)
906  -----------------------------
907 */
908 
909 ULONG rpage_bitmap_calculate_bytesize(short width, short height, short depth)
910 {
911  return (RASSIZE(width, height) * depth);
912 }
913 
914 rpage_bitmap *rpage_bitmap_new(short width, short height, short depth)
915 {
916  return (rpage_bitmap *)allocate_new_bitmap(width, height, depth);
917 }
918 
919 BOOL rpage_load_pak_into_bitmap(rpage_bitmap **bitmap, rpage_palette **palette, BYTE *packed_buffer, char *bitmap_filename)
920 {
921  return load_pak_img_to_bitmap((struct BitMap **)bitmap, (UWORD **)palette, packed_buffer, bitmap_filename);
922 }
923 
924 
925 short rpage_bitmap_get_width(rpage_bitmap *bitmap)
926 {
927  return(short)(bitmap->BytesPerRow << 3);
928 }
929 
930 short rpage_bitmap_get_height(rpage_bitmap *bitmap)
931 {
932  return(short)(bitmap->Rows);
933 }
934 
935 short rpage_bitmap_get_depth(rpage_bitmap *bitmap)
936 {
937  return(short)(bitmap->Depth);
938 }
939 
940 void rpage_bitmap_clear(rpage_bitmap *bitmap)
941 {
942  short i;
943  for (i = 0; i < rpage_bitmap_get_depth(bitmap); i++)
944  {
945  // memset(main_screen->RastPort.BitMap->Planes[i], 0x0, RASSIZE(main_screen->Width, main_screen->Height));
946  BltClear(bitmap->Planes[i], rpage_bitmap_calculate_bytesize(rpage_bitmap_get_width(bitmap), rpage_bitmap_get_height(bitmap), 1), 0);
947  }
948 }
949 
950 BOOL rpage_load_pak_to_new_bitmap(rpage_bitmap **new_bitmap, rpage_palette **new_palette, BYTE *packed_buffer, char *bitmap_filename)
951 {
952  return load_pak_img_to_new_bitmap((struct BitMap **)new_bitmap, (UWORD **)new_palette, packed_buffer, bitmap_filename);
953 }
954 
955 rpage_bitmap *rpage_build_bitmap_mask(rpage_bitmap *source_bitmap)
956 {
957  // TODO
958  return NULL;
959 }
960 
961 void rpage_bitmap_free(rpage_bitmap *bitmap)
962 {
963  free_allocated_bitmap(bitmap);
964 }
965 
966 /*
967 
968  HARDWARE SPRITES (specific to the Amiga)
969  ----------------------------------------
970 */
971 
972 void rpage_move_sprite(short sprite_index, rpage_hardware_sprite *sprite, vec2 *position)
973 {
974  // If the sprite doesn't exist yet, we need to create it
975  if (!sprites_enabled[sprite_index])
976  {
977  short pick;
978  // FreeSprite(sprite_index);
979  pick = GetSprite((struct SimpleSprite *)sprite, sprite_index);
980  if (pick > -1)
981  sprites_enabled[sprite_index] = TRUE;
982 #ifdef DEBUG_MACROS
983  else
984  printf("rpage_move_sprite() GetSprite() returned %d!\n", pick);
985 #endif
986  }
987 
988  if (sprites_enabled[sprite_index])
989  MoveSprite(&(main_screen->screen->ViewPort), (struct SimpleSprite *)sprite, position->x, position->y);
990 }
991 
992 void rpage_remove_sprite(short sprite_index)
993 {
994  if (sprites_enabled[sprite_index])
995  FreeSprite(sprite_index);
996  sprites_enabled[sprite_index] = FALSE;
997 }
998 
999 BOOL rpage_sprite_is_enabled(short sprite_index)
1000 {
1001  return sprites_enabled[sprite_index];
1002 }
1003 
1004 /*
1005  INPUT (mouse, keyboard...)
1006  --------------------------
1007 */
1008 
1009 BOOL rpage_input_init(void)
1010 {
1011  if (main_screen->screen == NULL)
1012  {
1013  rpage_system_alert("Cannot init. input without a screen open !");
1014  return FALSE;
1015  }
1016 
1017  if (main_screen->window == NULL)
1018  {
1019  rpage_system_alert("Cannot init. input without a window open !");
1020  return FALSE;
1021  }
1022 
1023  input_window_init(main_screen->window);
1024 }
1025 
1026 void rpage_input_enable(BOOL enabled)
1027 {
1028  input_enabled = enabled;
1029  prev_input_mouse_button = input_mouse_button;
1030  prev_input_mouse_position = input_mouse_position;
1031  input_mouse_button = 0;
1032 }
1033 
1034 void rpage_input_update(void)
1035 {
1036  prev_input_mouse_button = input_mouse_button;
1037  prev_input_mouse_position = input_mouse_position;
1038 
1039  if (input_enabled)
1040  input_update(&input_mouse_button, &(input_mouse_position.x), &(input_mouse_position.y), &input_rawkey);
1041 }
1042 
1043 void rpage_mouse_button_flush(void)
1044 {
1045  ActivateWindow(main_screen->window); /* FIXME : this patch helps the main window to get the focus after game init */
1046  input_mouse_button = 0;
1047 }
1048 
1049 unsigned short rpage_keyboard_rawkey(void)
1050 {
1051  return input_rawkey;
1052 }
1053 
1055 {
1056  if ((input_mouse_button & PLATFORM_MOUSE_LEFT_BUTTON))
1057  return TRUE;
1058 
1059  return FALSE;
1060 }
1061 
1063 {
1064  if ((input_mouse_button & PLATFORM_MOUSE_RIGHT_BUTTON))
1065  return TRUE;
1066 
1067  return FALSE;
1068 }
1069 
1071 {
1072  if ((input_mouse_button & PLATFORM_MOUSE_LEFT_BUTTON) && !(prev_input_mouse_button & PLATFORM_MOUSE_LEFT_BUTTON))
1073  return TRUE;
1074 
1075  return FALSE;
1076 }
1077 
1079 {
1080  if ((input_mouse_button & PLATFORM_MOUSE_RIGHT_BUTTON) && !(prev_input_mouse_button & PLATFORM_MOUSE_RIGHT_BUTTON))
1081  return TRUE;
1082 
1083  return FALSE;
1084 }
1085 
1086 void __inline rpage_mouse_get_prev_values(short *button, vec2 *mouse_coords)
1087 {
1088  if (button) *button = prev_input_mouse_button;
1089  if (mouse_coords) *mouse_coords = prev_input_mouse_position;
1090 }
1091 
1092 void __inline rpage_mouse_get_values(short *button, vec2 *mouse_coords)
1093 {
1094  // input_update(button, &(mouse_coords->x), &(mouse_coords->y));
1095  if (button) *button = input_mouse_button;
1096  if (mouse_coords) *mouse_coords = input_mouse_position;
1097 }
1098 
1099 void rpage_mouse_set_bitmap(UWORD *sprite_data, vec2 *hotspot)
1100 {
1101  if (main_screen != NULL && main_screen->screen->FirstWindow != NULL)
1102  {
1103 #ifdef DEBUG_MACROS
1104  printf("rpage_mouse_set_bitmap()\n");
1105 #endif
1106  SetPointer(main_screen->screen->FirstWindow, sprite_data, 16, 16, hotspot->x, hotspot->y);
1107  }
1108  else
1109  rpage_system_alert("Cannot set cursor state without a window ownership!");
1110 }
1111 
1112 void rpage_mouse_set_system_image(unsigned short img_index)
1113 {
1114  if (main_screen != NULL && main_screen->screen->FirstWindow != NULL)
1115  {
1116 #ifdef DEBUG_MACROS
1117  printf("rpage_mouse_set_system_img(%d)\n", img_index);
1118 #endif
1119  SetPointer(main_screen->screen->FirstWindow, system_cursors_img[img_index], 16, 16, system_cursors_hotspot[img_index].x, system_cursors_hotspot[img_index].y);
1120  }
1121  else
1122  rpage_system_alert("Cannot set cursor state without a window ownership!");
1123 }
1124 
1125 void rpage_mouse_show(void)
1126 {
1128 // if (main_screen != NULL && main_screen->screen->FirstWindow != NULL)
1129 // {
1130 // #ifdef DEBUG_MACROS
1131 // printf("rpage_mouse_show()\n");
1132 // #endif
1133 // SetPointer(main_screen->screen->FirstWindow, system_cursors_img[MOUSE_CURSOR_POINT], 16, 16, system_cursors_hotspot[MOUSE_CURSOR_POINT].x, system_cursors_hotspot[MOUSE_CURSOR_POINT].y);
1134 // }
1135 // else
1136 // rpage_system_alert("Cannot set cursor state without a window ownership!");
1137 }
1138 
1139 void rpage_mouse_wait(void)
1140 {
1142 // if (main_screen != NULL && main_screen->screen->FirstWindow != NULL)
1143 // {
1144 // #ifdef DEBUG_MACROS
1145 // printf("rpage_mouse_wait()\n");
1146 // #endif
1147 // SetPointer(main_screen->screen->FirstWindow, system_cursors_img[MOUSE_CURSOR_WAIT], 16, 16, system_cursors_hotspot[MOUSE_CURSOR_WAIT].x, system_cursors_hotspot[MOUSE_CURSOR_WAIT].y);
1148 // }
1149 // else
1150 // rpage_system_alert("Cannot set cursor state without a window ownership!");
1151 }
1152 
1153 void rpage_mouse_read(void)
1154 {
1156 }
1157 
1158 void rpage_mouse_hide(void)
1159 {
1160  if (main_screen != NULL && main_screen->screen->FirstWindow != NULL)
1161  {
1162 #ifdef DEBUG_MACROS
1163  printf("rpage_mouse_hide()\n");
1164 #endif
1165  SetPointer(main_screen->screen->FirstWindow, system_cursors_img[0], 0, 0, 0, 0);
1166  }
1167  else
1168  rpage_system_alert("Cannot set cursor state without a window ownership!");
1169 }
1170 
1171 #endif
void rpage_mouse_show(void)
Show the mouse cursor.
short ex
Definition: utils.h:69
void rpage_uninit(void)
Un-initialize the framework, close the system libraries.
UWORD chip system_cursors_img[3][36]
void rpage_video_blt_bmp_bt(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, UBYTE bit_mask)
Blit a bitmap into the screen using a bitplan mask, each bit of the &#39;bt&#39; parameter being the mask for...
short rpage_video_get_pixel(short x, short y)
Get the color of a pixel on screen.
#define FALSE
Definition: utils.h:41
void rpage_mouse_get_values(short *button, vec2 *mouse_coords)
Read the current mouse coordinates and button states.
short sy
Definition: utils.h:69
void rpage_input_update(void)
Pull the mouse/keyboard update from the input system.
void rpage_free_memory_block(BYTE *block_ptr, UWORD block_size)
Wrapper to the system-specific memory deallocator.
short y
Definition: utils.h:54
BOOL rpage_mouse_button_left_was_down(void)
Test if the left mouse button was pressed but isn&#39;t anymore.
void rpage_video_blt_bmp_clip(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, rect *clipping_rect)
void rpage_video_set_palette_to_black(short first_color, short last_color)
Blacken the current palette of the screen.
void rpage_video_draw_tileset(rpage_bitmap *tileset_bitmap, UBYTE *tileset, rect *tile_rect, short tileset_width)
Draw a tileset-based image to the current screen.
short rpage_video_get_text_width(char *str)
Get text width in pixels.
int range_adjust(int val, int in_lower, int in_upper, int out_lower, int out_upper)
Definition: utils.c:98
BOOL rpage_mouse_button_left_is_down(void)
Test if the left mouse button is currently pressed.
BOOL rpage_load_pak_into_bitmap(rpage_bitmap **bitmap, rpage_palette **palette, BYTE *packed_buffer, char *filename)
void rpage_video_draw_text(char *str, short x, short y, short color_index)
void rpage_video_close(void)
Close the video output, deallocate the screen framebuffer.
void rpage_mouse_read(void)
Change the look of the mouse cursor to warn the end-user that s.he should read some text...
unsigned short rpage_keyboard_rawkey(void)
Raw read the keyboard input.
void rpage_file_close(rpage_file file)
Close a current file.
Definition: utils.h:52
rpage_bitmap * rpage_bitmap_new(short width, short height, short depth)
Allocate a new ::rpage_bitmap and return its address in video memory.
BOOL rpage_mouse_button_right_was_down(void)
Test if the right mouse button was pressed but isn&#39;t anymore.
void rpage_video_show_freemem(short x, short y, short width, short height)
Display the amount of free memory (DEBUG ONLY)
#define MOUSE_CURSOR_READ
Definition: mouse_ptr.h:13
vec2 p2
Definition: utils.h:64
short rpage_bitmap_get_height(rpage_bitmap *bitmap)
Return the height in pixels of a ::rpage_bitmap.
void rpage_bitmap_free(rpage_bitmap *bitmap)
void rpage_video_draw_rect(rect *r, short color_index)
void rpage_bitmap_draw_tileset(rpage_bitmap *dest_bitmap, rpage_bitmap *tileset_bitmap, UBYTE *tileset, rect *tile_rect, short tileset_width)
Draw a tileset-based image into a bitmap.
void rpage_video_blt_bmp_clip_mask_bt(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, rpage_bitmap *mask_bitmap, rect *clipping_rect, UBYTE bit_mask)
void rpage_video_clear(void)
Clear the screen.
#define MOUSE_CURSOR_POINT
Definition: mouse_ptr.h:11
void rpage_video_screen_to_front(void)
Bring the game screen to top (Amiga only)
void rpage_move_sprite(short sprite_index, rpage_hardware_sprite *sprite, vec2 *position)
Refresh the image/position of an hardware sprite.
ULONG rpage_get_avail_memory(void)
Return the total of available memory.
void rpage_video_blt_bmp(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y)
Blit a bitmap into the screen.
void rpage_video_screen_to_back(void)
Send the game screen to the back (Amiga only)
void rpage_video_blt_bmp_mask(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, rpage_bitmap *mask_bitmap)
ULONG rpage_bitmap_calculate_bytesize(short width, short height, short depth)
Return the size in bytes of a ::rpage_bitmap.
void rpage_bitmap_blit(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, rpage_bitmap *dest_bitmap)
Blit the destination bitmap into the source bitmap.
int BOOL
Definition: utils.h:32
void rpage_reclaim_system_memory(void)
Try to deallocate as many system resources as possible.
BYTE rpage_set_process_priority(BYTE new_priority)
vec2 system_cursors_hotspot[3]
void rpage_video_set_palette(rpage_palette *palette, short palette_size)
long rpage_file_read(rpage_file file, void *buffer, long len)
Read data from file into a buffer.
short rpage_bitmap_get_width(rpage_bitmap *bitmap)
Return the width in pixels of a ::rpage_bitmap.
BOOL rpage_sprite_is_enabled(short sprite_index)
Returns TRUE is the sprite with this index is currently enabled.
rpage_file rpage_file_open(char *filename, long mode)
void rpage_system_alert(char *alert_message)
Opens a GURU MEDITATION message.
ULONG rpage_get_avail_video_memory(void)
Return how many free memory is available to store the graphics data (aka Chipram on the Amiga side)...
unsigned char UBYTE
Definition: utils.h:20
BOOL rpage_load_pak_to_new_bitmap(rpage_bitmap **new_bitmap, rpage_palette **new_palette, BYTE *packed_buffer, char *bitmap_filename)
void rpage_video_blt_bmp_clip_mask(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y, rpage_bitmap *mask_bitmap, rect *clipping_rect)
short sx
Definition: utils.h:69
void rpage_video_clear_bit_mask(UBYTE bit_mask)
Set the default font file/size for every next call to rpage_video_draw_text.
vec2 p1
Definition: utils.h:64
void rpage_mouse_button_flush(void)
void rpage_mouse_hide(void)
Hide the mouse cursor.
void rpage_video_save_to_bitmap(rpage_bitmap *dest_bitmap, short source_x, short source_y, short width, short height)
Store a part of the current screen into a bitmap.
unsigned short UWORD
Definition: utils.h:28
void rpage_video_present_screen(void)
Tell R-PAGE to swap the logical and the physical buffers. Everything that was drawn into the logical ...
UWORD rpage_video_get_depth(void)
Get bit depth of the screen.
ULONG rpage_get_avail_non_video_memory(void)
Return how many general purpose free memory is available (aka Fastram/Slowram on the Amiga side)...
short x
Definition: utils.h:54
void rpage_video_set_palette_to_grey(short first_color, short last_color)
Set the current palette of the screen to a gradient of greys.
void rpage_init(void)
#define min(x, y)
Definition: utils.h:45
ULONG rpage_get_clock(void)
Get the elapsed time, in milliseconds, since rpage_init was invoked.
struct DosLibrary * DOSBase
void rpage_video_present_palette(void)
Swap logical & physical palettes.
void rpage_mouse_get_prev_values(short *button, vec2 *mouse_coords)
Definition: utils.h:67
void rpage_video_fill_rect_clip(rect *r, short color, rect *clipping_rect)
void rpage_mouse_wait(void)
Change the look of the mouse cursor to warn the end-user that the application is currently busy...
void rpage_video_scroll(short x, short y)
Hardware scrolling.
short ey
Definition: utils.h:69
#define max(x, y)
Definition: utils.h:49
vec2 p3
Definition: utils.h:64
void rpage_mouse_set_system_image(unsigned short img_index)
Private function that sets a bitmap to the mouse cursor.
ULONG rpage_get_avail_largest_video_memory(void)
Return the largest free memory block available to store the graphics data (aka Chipram on the Amiga s...
void rpage_video_set_pixel(short x, short y, short color_index)
Draw a pixel to the screen.
void rpage_video_draw_text_bit_mask(char *str, short x, short y, short color_index, UBYTE bit_mask)
BOOL rpage_mouse_button_right_is_down(void)
Test if the right mouse button is currently pressed.
unsigned char BYTE
Definition: utils.h:16
void rpage_video_draw_polygon(poly *p, short color)
void rpage_input_enable(BOOL enabled)
Enable or disable the input pooling (Enabled by default)
void rpage_mouse_set_bitmap(UWORD *sprite_data, vec2 *hotspot)
Defines the new aspect of the mouse cursor. Bitmap format is the regular Amiga hardware sprite format...
void rpage_video_scroll_bit_mask(short x, short y, UBYTE bit_mask)
FIXME!
void rpage_video_open(int screen_mode)
unsigned long ULONG
Definition: utils.h:24
void rpage_video_flip_buffers(void)
void rpage_video_wait_dma(void)
Wait for the completion of all ongoing DMA transfert (including the blitter operation, on the Amiga side).
BOOL rpage_input_init(void)
#define MOUSE_CURSOR_WAIT
Definition: mouse_ptr.h:12
void rpage_system_flash(void)
Use the system function BELL/RING/FLASH to send a visual/audio alert.
#define TRUE
Definition: utils.h:37
Definition: utils.h:62
void rpage_remove_sprite(short sprite_index)
Remove the sprite based on his index.
void rpage_bitmap_clear(rpage_bitmap *bitmap)
Clear the current bitmap (fill it with 0, aka index 0 color)
short rpage_bitmap_get_depth(rpage_bitmap *bitmap)
Return the bitwise depth of a ::rpage_bitmap.
long rpage_file_write(rpage_file file, void *buffer, long len)
Write a data buffer into the file.
void rpage_video_fill_rect(rect *r, short color)
vec2 p0
Definition: utils.h:64
void rpage_video_vsync(void)
Wait for the vertical blank.
void rpage_video_set_font(char *font_filename, short font_size)
void rpage_video_sync_buffers(void)
Hard copy the content of the physical buffer to the logical buffer. On the Amiga side This function m...