6 #ifndef _FRAMEWORK_HEADER_ 7 #define _FRAMEWORK_HEADER_ 12 #include <exec/types.h> 13 #include <graphics/gfx.h> 17 typedef BPTR rpage_file;
18 typedef struct BitMap rpage_bitmap;
20 typedef unsigned long rpage_palette;
22 typedef unsigned short rpage_palette;
24 typedef struct SimpleSprite rpage_hardware_sprite;
26 #define MAX_HARDWARE_SPRITES 8 27 #define PLATFORM_DRAW_TWICE(_EXPR_){rpage_video_flip_buffers(); _EXPR_; rpage_video_present_screen(); rpage_video_flip_buffers(); _EXPR_; rpage_video_present_screen(); } 30 #define MODE_OPEN_FILE MODE_OLDFILE 31 #define MODE_CREATE_FILE MODE_NEWFILE 33 #define MODE_OPEN_OR_CREATE MODE_READWRITE 39 #define SDL_MAIN_HANDLED 42 typedef SDL_Texture rpage_bitmap;
43 typedef SDL_Color rpage_palette;
44 #define PLATFORM_DRAW_TWICE(_EXPR_); 135 void rpage_video_blt_bmp(rpage_bitmap *source_bitmap,
short source_x,
short source_y,
short width,
short height,
short x,
short y);
137 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);
140 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);
143 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);
147 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);
151 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);
190 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);
void rpage_mouse_show(void)
Show the mouse cursor.
void rpage_uninit(void)
Un-initialize the framework, close the system libraries.
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.
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)
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.
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)
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.
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)
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...