8 #include "rpage/aos/inc.prl" 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> 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;
55 struct Task *main_task = NULL;
59 buffered_screen *main_screen = NULL;
60 short scr_x_offset = 0, scr_y_offset = 0;
61 BOOL sprites_enabled[MAX_HARDWARE_SPRITES];
63 struct TextFont *main_font = NULL;
66 struct timeval startTime;
69 short input_mouse_button;
70 short prev_input_mouse_button;
72 vec2 input_mouse_position;
73 vec2 prev_input_mouse_position;
77 unsigned short input_rawkey;
79 unsigned int g_max_video_ram = 0;
80 unsigned int g_max_non_video_ram = 0;
90 printf(
"rpage_init()\n");
93 if (IntuitionBase == NULL)
95 IntuitionBase = (
struct IntuitionBase *)OpenLibrary(
"intuition.library", 0);
110 GfxBase = (
struct GfxBase *)OpenLibrary(
"graphics.library", 0);
119 DiskfontBase = (
struct DiskfontBase *)OpenLibrary(
"diskfont.library", 0);
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");
135 main_task = FindTask(NULL);
140 timer_device_get_system_time(&startTime);
143 sprites_enabled[0] =
TRUE;
144 for(i = 1; i < MAX_HARDWARE_SPRITES; i++)
145 sprites_enabled[i] =
FALSE;
147 input_enabled =
TRUE;
161 add36k(IntuitionBase);
168 printf(
"rpage_uninit()\n");
171 for(i = 1; i < MAX_HARDWARE_SPRITES; i++)
172 if (sprites_enabled[i])
175 sprites_enabled[i] =
FALSE;
178 if (main_task != NULL)
179 SetTaskPri(main_task, oldPri);
181 uninit_timer_device();
185 CloseLibrary((
struct Library *)GfxBase);
189 CloseLibrary((
struct Library *)IntuitionBase);
191 IntuitionBase = NULL;
202 return SetTaskPri(main_task, new_priority);
207 return AvailMem(MEMF_CHIP);
212 return AvailMem(MEMF_CHIP|MEMF_LARGEST);
217 return AvailMem(MEMF_FAST);
222 ULONG m_any, m_chip, m_fast;
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);
232 if (block_ptr != NULL)
233 FreeMem(block_ptr, block_size);
240 #ifdef GAME_VISUAL_DEBUG 241 char guru_format_message[128];
244 printf(
"/!\\%s\n", alert_message);
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);
257 printf(
"/!\\%s\n", alert_message);
263 DisplayBeep(main_screen->screen);
268 struct timeval endTime;
270 timer_device_get_system_time(&endTime);
271 SubTime(&endTime, &startTime);
273 return (endTime.tv_secs * 1000 + endTime.tv_micro / 1000);
283 return (rpage_file)Open(filename, mode);
293 return Read((BPTR)file, buffer, len);
298 return Write((BPTR)file, buffer, len);
309 printf(
"rpage_video_open()\n");
311 if (main_screen == NULL)
314 main_screen = openMainScreen();
331 ScreenToFront(main_screen->screen);
337 ScreenToBack(main_screen->screen);
343 return screenGetDepth();
353 WaitVBL(main_screen);
358 flipBuffers(main_screen);
363 presentScreen(main_screen);
368 presentPalette(main_screen);
373 synchronizeBuffers(main_screen);
378 if (main_screen != NULL)
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);
397 if (main_screen != NULL)
400 for (i = 0; i < SCREEN_DEPTH; i++)
403 BltClear(main_screen->screen->RastPort.BitMap->Planes[i], RASSIZE(SCREEN_WIDTH, SCREEN_HEIGHT), 0);
416 if ((scr_x_offset != x) || (scr_y_offset != y))
418 main_screen->screen->ViewPort.DxOffset = x;
419 main_screen->screen->ViewPort.DyOffset = y;
420 ScrollVPort(&(main_screen->screen->ViewPort));
429 short src_x, src_y, dst_x, dst_y;
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);
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)
458 BltBitMap(source_bitmap, source_x, source_y, dest_bitmap, x, y, width, height, 0xC0, 0xFF, NULL);
462 void __inline
rpage_video_save_to_bitmap(rpage_bitmap *dest_bitmap,
short source_x,
short source_y,
short width,
short height)
464 BltBitMap(main_screen->bitmaps[main_screen->physical], source_x, source_y, dest_bitmap, 0, 0, width, height, 0xC0, 0xFF, NULL);
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)
469 BltBitMap(source_bitmap, source_x, source_y, main_screen->bitmaps[main_screen->physical], x, y, width, height, 0xC0, 0xFF, NULL);
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)
475 BltBitMap(source_bitmap, source_x, source_y, main_screen->bitmaps[main_screen->physical], x, y, width, height, 0xC0, bit_mask, NULL);
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)
480 BltMaskBitMapRastPort(source_bitmap, source_x, source_y, &(main_screen->screen->RastPort), x, y, width, height, (ABC|ABNC|ANBC), mask_bitmap->Planes[0]);
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)
486 if (x < clipping_rect->sx)
488 short clip_x = clipping_rect->
sx - x;
495 if (x + width > clipping_rect->
ex)
496 width -= (x + width - clipping_rect->
ex);
502 if (y < clipping_rect->sy)
504 short clip_y = clipping_rect->
sy - y;
511 if (y + height > clipping_rect->
ey)
512 height -= (y + height - clipping_rect->
ey);
518 BltBitMap(source_bitmap, source_x, source_y, main_screen->bitmaps[main_screen->physical], x, y, width, height, 0xC0, 0xFF, NULL);
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)
524 if (x < clipping_rect->sx)
526 short clip_x = clipping_rect->
sx - x;
533 if (x + width > clipping_rect->
ex)
534 width -= (x + width - clipping_rect->
ex);
540 if (y < clipping_rect->sy)
542 short clip_y = clipping_rect->
sy - y;
549 if (y + height > clipping_rect->
ey)
550 height -= (y + height - clipping_rect->
ey);
556 BltMaskBitMapRastPort(source_bitmap, source_x, source_y, &(main_screen->screen->RastPort), x, y, width, height, (ABC|ABNC|ANBC), mask_bitmap->Planes[0]);
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)
564 if (x < clipping_rect->sx)
566 short clip_x = clipping_rect->
sx - x;
573 if (x + width > clipping_rect->
ex)
574 width -= (x + width - clipping_rect->
ex);
580 if (y < clipping_rect->sy)
582 short clip_y = clipping_rect->
sy - y;
589 if (y + height > clipping_rect->
ey)
590 height -= (y + height - clipping_rect->
ey);
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;
606 for(i = 0; i < palette_size; i++)
607 main_screen->palettes[main_screen->physical][i] = palette[i];
615 for (loop = first_color; loop <= last_color; loop++)
616 main_screen->palettes[main_screen->physical][loop] = 0x0;
624 luma = (
int *)calloc(last_color + 1,
sizeof(
int));
627 for (loop = first_color; loop <= last_color; loop++)
628 luma[loop] =
range_adjust(loop, first_color, last_color, 0, 255);
632 if (last_color >= 31)
644 for (loop = first_color; loop <= last_color; loop++)
647 main_screen->palettes[main_screen->physical][loop] = components_to_rgb8(luma[loop], luma[loop], luma[loop]);
649 main_screen->palettes[main_screen->physical][loop] = components_to_rgb4(luma[loop], luma[loop], luma[loop]);
668 r.
ex = x + width - 1;
669 r.
ey = y + height - 1;
675 r.
ey = y + height - 1;
680 if (g_max_non_video_ram > 0)
693 UBYTE x , y, tile_idx, prev_tile_idx = 0xFF;
696 for(y = (
UBYTE)(tile_rect->
sy); y < tile_rect->ey; y++)
698 unsigned short y_w = y * tileset_width;
699 for(x = (
UBYTE)(tile_rect->
sx); x < tile_rect->ex; x++)
701 tile_idx = tileset[x + y_w];
704 if (prev_tile_idx != tile_idx)
706 tile_x = (tile_idx%tileset_bitmap_width) << 3;
707 tile_y = (tile_idx/tileset_bitmap_width) << 3;
711 prev_tile_idx = tile_idx;
718 UBYTE x , y, tile_idx, prev_tile_idx = 0xFF;
721 for(y = (
UBYTE)(tile_rect->
sy); y < tile_rect->ey; y++)
723 unsigned short y_w = y * tileset_width;
724 for(x = (
UBYTE)(tile_rect->
sx); x < tile_rect->ex; x++)
726 tile_idx = tileset[x + y_w];
729 if (prev_tile_idx != tile_idx)
731 tile_x = (tile_idx%tileset_bitmap_width) << 3;
732 tile_y = (tile_idx/tileset_bitmap_width) << 3;
734 rpage_bitmap_blit(tileset_bitmap, tile_x, tile_y, 8, 8, x << 3, y << 3, dest_bitmap);
736 prev_tile_idx = tile_idx;
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);
754 video_rect.
sx = r->
sx;
755 video_rect.
sy = r->
sy;
756 video_rect.
ex = r->
ex;
757 video_rect.
ey = r->
ey;
759 if (video_rect.
sx < clipping_rect->
sx)
760 video_rect.
sx = clipping_rect->
sx;
763 if (video_rect.
ex > clipping_rect->
ex)
764 video_rect.
ex = clipping_rect->
ex;
767 if (video_rect.
ex <= video_rect.
sx)
770 if (video_rect.
sy < clipping_rect->
sy)
771 video_rect.
sy = clipping_rect->
sy;
774 if (video_rect.
ey > clipping_rect->
ey)
775 video_rect.
ey = clipping_rect->
ey;
778 if (video_rect.
ey <= video_rect.
sy)
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;
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);
808 video_rect.
ex = SCREEN_WIDTH - 1;
809 video_rect.
ey = SCREEN_HEIGHT - 1;
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));
824 color = (1 << SCREEN_DEPTH) - 1;
825 SetAPen(&(main_screen->screen->RastPort), color);
826 WritePixel(&(main_screen->screen->RastPort), x, y);
831 return (
short)ReadPixel(&(main_screen->screen->RastPort), x, y);
838 if (main_font != NULL)
839 CloseFont(main_font);
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;
846 main_font = OpenDiskFont(&ta);
848 SetFont(&(main_screen->screen->RastPort), main_font);
852 printf(
"Cannot open font %s!", font_filename);
860 return (
short)TextLength(&(main_screen->screen->RastPort), str, strlen(str));
866 tmp_mask = main_screen->screen->RastPort.Mask;
867 main_screen->screen->RastPort.Mask = bit_mask;
869 main_screen->screen->RastPort.Mask = tmp_mask;
875 color = (1 << SCREEN_DEPTH) - 1;
878 x = (SCREEN_WIDTH - TextLength(&(main_screen->screen->RastPort), str, strlen(str))) >> 1;
880 y = (SCREEN_HEIGHT - 8) >> 1;
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));
892 printf(
"rpage_video_close()\n");
896 CloseFont(main_font);
900 closeMainScreen(main_screen);
911 return (RASSIZE(width, height) * depth);
916 return (rpage_bitmap *)allocate_new_bitmap(width, height, depth);
921 return load_pak_img_to_bitmap((
struct BitMap **)bitmap, (
UWORD **)palette, packed_buffer, bitmap_filename);
927 return(
short)(bitmap->BytesPerRow << 3);
932 return(
short)(bitmap->Rows);
937 return(
short)(bitmap->Depth);
952 return load_pak_img_to_new_bitmap((
struct BitMap **)new_bitmap, (
UWORD **)new_palette, packed_buffer, bitmap_filename);
955 rpage_bitmap *rpage_build_bitmap_mask(rpage_bitmap *source_bitmap)
963 free_allocated_bitmap(bitmap);
975 if (!sprites_enabled[sprite_index])
979 pick = GetSprite((
struct SimpleSprite *)sprite, sprite_index);
981 sprites_enabled[sprite_index] =
TRUE;
984 printf(
"rpage_move_sprite() GetSprite() returned %d!\n", pick);
988 if (sprites_enabled[sprite_index])
989 MoveSprite(&(main_screen->screen->ViewPort), (
struct SimpleSprite *)sprite, position->
x, position->
y);
994 if (sprites_enabled[sprite_index])
995 FreeSprite(sprite_index);
996 sprites_enabled[sprite_index] =
FALSE;
1001 return sprites_enabled[sprite_index];
1011 if (main_screen->screen == NULL)
1017 if (main_screen->window == NULL)
1023 input_window_init(main_screen->window);
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;
1036 prev_input_mouse_button = input_mouse_button;
1037 prev_input_mouse_position = input_mouse_position;
1040 input_update(&input_mouse_button, &(input_mouse_position.
x), &(input_mouse_position.
y), &input_rawkey);
1045 ActivateWindow(main_screen->window);
1046 input_mouse_button = 0;
1051 return input_rawkey;
1056 if ((input_mouse_button & PLATFORM_MOUSE_LEFT_BUTTON))
1064 if ((input_mouse_button & PLATFORM_MOUSE_RIGHT_BUTTON))
1072 if ((input_mouse_button & PLATFORM_MOUSE_LEFT_BUTTON) && !(prev_input_mouse_button & PLATFORM_MOUSE_LEFT_BUTTON))
1080 if ((input_mouse_button & PLATFORM_MOUSE_RIGHT_BUTTON) && !(prev_input_mouse_button & PLATFORM_MOUSE_RIGHT_BUTTON))
1088 if (button) *button = prev_input_mouse_button;
1089 if (mouse_coords) *mouse_coords = prev_input_mouse_position;
1095 if (button) *button = input_mouse_button;
1096 if (mouse_coords) *mouse_coords = input_mouse_position;
1101 if (main_screen != NULL && main_screen->screen->FirstWindow != NULL)
1104 printf(
"rpage_mouse_set_bitmap()\n");
1106 SetPointer(main_screen->screen->FirstWindow, sprite_data, 16, 16, hotspot->
x, hotspot->
y);
1114 if (main_screen != NULL && main_screen->screen->FirstWindow != NULL)
1117 printf(
"rpage_mouse_set_system_img(%d)\n", img_index);
1160 if (main_screen != NULL && main_screen->screen->FirstWindow != NULL)
1163 printf(
"rpage_mouse_hide()\n");
void rpage_mouse_show(void)
Show the mouse cursor.
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 'bt' parameter being the mask for...
short rpage_video_get_pixel(short x, short y)
Get the color of a pixel on screen.
void rpage_mouse_get_values(short *button, vec2 *mouse_coords)
Read the current mouse coordinates and button states.
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.
BOOL rpage_mouse_button_left_was_down(void)
Test if the left mouse button was pressed but isn'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)
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.
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'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
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
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.
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)...
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)
void rpage_video_clear_bit_mask(UBYTE bit_mask)
Set the default font file/size for every next call to rpage_video_draw_text.
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.
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)...
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.
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)
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.
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.
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)
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
void rpage_system_flash(void)
Use the system function BELL/RING/FLASH to send a visual/audio alert.
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)
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...