10 #include "SDL_image.h" 12 #include <sysinfoapi.h> 19 short scr_x_offset = 0, scr_y_offset = 0;
20 SDL_Window *main_window = NULL;
21 SDL_Renderer *main_renderer = NULL;
22 SDL_Event input_events;
28 if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0)
60 MEMORYSTATUSEX status;
61 status.dwLength =
sizeof(status);
62 GlobalMemoryStatusEx(&status);
63 return (
ULONG)status.ullTotalPhys;
68 printf(
"%s\n", alert_message);
79 return st.wMilliseconds;
89 if (main_window == NULL)
91 main_window = SDL_CreateWindow(
"Athanor 2", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, DISPL_WIDTH, DISPL_HEIGHT, 0);
95 SDL_SetHint(
"SDL_HINT_RENDER_SCALE_QUALITY",
"nearest");
96 main_renderer = SDL_CreateRenderer(main_window, -1, SDL_RENDERER_PRESENTVSYNC | SDL_RENDERER_ACCELERATED);
97 SDL_RenderSetLogicalSize(main_renderer, SCREEN_WIDTH, SCREEN_HEIGHT);
98 SDL_SetRenderDrawColor(main_renderer, 255, 0, 255, 255);
102 printf(
"Couldn't create a surface: %s\n", SDL_GetError());
115 SDL_RenderPresent(main_renderer);
120 SDL_RenderClear(main_renderer);
123 void rpage_video_blt_bmp(rpage_bitmap *source_bitmap,
short source_x,
short source_y,
short width,
short height,
short x,
short y)
135 SDL_RenderCopy(main_renderer, source_bitmap, &src, &dst);
138 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)
161 printf(
"rpage_video_draw_text(%s)\n", str);
166 SDL_DestroyRenderer(main_renderer);
167 SDL_DestroyWindow(main_window);
168 main_renderer = NULL;
179 return (width * height);
184 return (rpage_bitmap *)SDL_CreateTexture(main_renderer, SDL_PIXELFORMAT_INDEX8, SDL_TEXTUREACCESS_STATIC, width, height);
189 (*bitmap) = IMG_LoadTexture(main_renderer, bitmap_filename);
190 if ((*bitmap) == NULL)
201 SDL_QueryTexture((SDL_Texture *)bitmap, NULL, NULL, &w, NULL);
208 SDL_QueryTexture((SDL_Texture *)bitmap, NULL, NULL, NULL, &h);
219 SDL_DestroyTexture((SDL_Texture *)bitmap);
230 SDL_PollEvent(&input_events);
263 SDL_ShowCursor(SDL_ENABLE);
272 SDL_ShowCursor(SDL_DISABLE);
void rpage_mouse_show(void)
Show the mouse cursor.
void rpage_uninit(void)
Un-initialize the framework, close the system libraries.
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.
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.
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.
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_video_clear(void)
Clear the screen.
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_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.
BYTE rpage_set_process_priority(BYTE new_priority)
void rpage_video_set_palette(rpage_palette *palette, short palette_size)
short rpage_bitmap_get_width(rpage_bitmap *bitmap)
Return the width in pixels of a ::rpage_bitmap.
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_mouse_button_flush(void)
void rpage_mouse_hide(void)
Hide the mouse cursor.
ULONG rpage_get_clock(void)
Get the elapsed time, in milliseconds, since rpage_init was invoked.
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_set_pixel(short x, short y, short color_index)
Draw a pixel to the screen.
BOOL rpage_mouse_button_right_is_down(void)
Test if the right mouse button is currently pressed.
void rpage_video_open(int screen_mode)
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_video_vsync(void)
Wait for the vertical blank.
void rpage_video_set_font(char *font_filename, short font_size)