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 WIN32
6 #include "rpage/frwk.h"
8 #include "rpage/utils.h"
9 #include "SDL.h"
10 #include "SDL_image.h"
11 #include <stdio.h>
12 #include <sysinfoapi.h>
13 
14 /*
15 Graphic assets
16 */
17 #include "rpage/aos/screen_size.h"
18 
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;
23 
24 /* platform interface Win32 implementation */
25 
26 void rpage_init(void)
27 {
28  if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0)
29  {
30  rpage_system_alert("Could NOT open the Intuition library!");
31  rpage_uninit();
32  exit(0);
33  }
34 
35  // atexit(SDL_Quit);
36 }
37 
38 void rpage_uninit(void)
39 {
40  SDL_Quit();
41 }
42 
43 /*
44  SYSTEM (resources, memory, multitasking...)
45  -------------------------------------------
46 */
47 
49 {
50  // Not implemented!
51  return 0;
52 }
53 
54 void rpage_free_memory_block(BYTE *block_ptr, UWORD block_size)
55 {
56 }
57 
59 {
60  MEMORYSTATUSEX status;
61  status.dwLength = sizeof(status);
62  GlobalMemoryStatusEx(&status);
63  return (ULONG)status.ullTotalPhys;
64 }
65 
66 void rpage_system_alert(char *alert_message)
67 {
68  printf("%s\n", alert_message);
69 }
70 
71 void rpage_system_flash(void)
72 {
73 }
74 
76 {
77  SYSTEMTIME st;
78  GetSystemTime(&st);
79  return st.wMilliseconds;
80 }
81 
82 /*
83  VIDEO (video framebuffer access)
84  --------------------------------
85 */
86 
87 void rpage_video_open(int screen_mode)
88 {
89  if (main_window == NULL)
90  {
91  main_window = SDL_CreateWindow("Athanor 2", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, DISPL_WIDTH, DISPL_HEIGHT, 0);
92 
93  if (main_window)
94  {
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);
99  }
100  else
101  {
102  printf("Couldn't create a surface: %s\n", SDL_GetError());
103  exit(0);
104  }
105  }
106  else
107  {
108  rpage_system_alert("A screen is already open!");
109  exit(0);
110  }
111 }
112 
113 void rpage_video_vsync(void)
114 {
115  SDL_RenderPresent(main_renderer);
116 }
117 
118 void rpage_video_clear(void)
119 {
120  SDL_RenderClear(main_renderer);
121 }
122 
123 void rpage_video_blt_bmp(rpage_bitmap *source_bitmap, short source_x, short source_y, short width, short height, short x, short y)
124 {
125  SDL_Rect src, dst;
126  src.x = source_x;
127  src.y = source_y;
128  src.w = width;
129  src.h = height;
130  dst.x = x;
131  dst.y = y;
132  dst.w = width;
133  dst.h = height;
134 
135  SDL_RenderCopy(main_renderer, source_bitmap, &src, &dst);
136 }
137 
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)
139 {
140 }
141 
142 void rpage_video_set_palette(rpage_palette *palette, short palette_size)
143 {
144 }
145 
146 void rpage_video_draw_rect(rect *r, short color)
147 {
148 }
149 
150 void rpage_video_set_pixel(short x, short y, short color)
151 {
152 
153 }
154 
155 void rpage_video_set_font(char *font_filename, short font_size)
156 {
157 }
158 
159 void rpage_video_draw_text(char *str, short x, short y, short color)
160 {
161  printf("rpage_video_draw_text(%s)\n", str);
162 }
163 
164 void rpage_video_close(void)
165 {
166  SDL_DestroyRenderer(main_renderer);
167  SDL_DestroyWindow(main_window);
168  main_renderer = NULL;
169  main_window = NULL;
170 }
171 
172 /*
173  BITMAP (direct bitmap access)
174  -----------------------------
175 */
176 
177 ULONG rpage_bitmap_calculate_bytesize(short width, short height, short depth)
178 {
179  return (width * height);
180 }
181 
182 rpage_bitmap *rpage_bitmap_new(short width, short height, short depth)
183 {
184  return (rpage_bitmap *)SDL_CreateTexture(main_renderer, SDL_PIXELFORMAT_INDEX8, SDL_TEXTUREACCESS_STATIC, width, height);
185 }
186 
187 BOOL rpage_load_pak_into_bitmap(rpage_bitmap **bitmap, rpage_palette **palette, BYTE *packed_buffer, char *bitmap_filename)
188 {
189  (*bitmap) = IMG_LoadTexture(main_renderer, bitmap_filename);
190  if ((*bitmap) == NULL)
191  {
192  rpage_system_alert("Cannot load bitmap!");
193  return FALSE;
194  }
195  return TRUE;
196 }
197 
198 short rpage_bitmap_get_width(rpage_bitmap *bitmap)
199 {
200  int w;
201  SDL_QueryTexture((SDL_Texture *)bitmap, NULL, NULL, &w, NULL);
202  return w;
203 }
204 
205 short rpage_bitmap_get_height(rpage_bitmap *bitmap)
206 {
207  int h;
208  SDL_QueryTexture((SDL_Texture *)bitmap, NULL, NULL, NULL, &h);
209  return h;
210 }
211 
212 BOOL rpage_load_pak_to_new_bitmap(rpage_bitmap **new_bitmap, rpage_palette **new_palette, BYTE *packed_buffer, char *bitmap_filename)
213 {
214  return FALSE;
215 }
216 
217 void rpage_bitmap_free(rpage_bitmap *bitmap)
218 {
219  SDL_DestroyTexture((SDL_Texture *)bitmap);
220 }
221 
223 {
224  // In SDL2, the mouse & keyboard don't need a specific subsystem to be initialized.
225  return TRUE;
226 }
227 
228 void rpage_input_update(void)
229 {
230  SDL_PollEvent(&input_events);
231 }
232 
233 void rpage_mouse_button_flush(void)
234 {
235 }
236 
238 {
239  return FALSE;
240 }
241 
243 {
244  return FALSE;
245 }
246 
248 {
249  return FALSE;
250 }
251 
253 {
254  return FALSE;
255 }
256 
257 void rpage_mouse_get_values(short *button, vec2 *mouse_coords)
258 {
259 }
260 
261 void rpage_mouse_show(void)
262 {
263  SDL_ShowCursor(SDL_ENABLE);
264 }
265 
266 void rpage_mouse_wait(void)
267 {
268 }
269 
270 void rpage_mouse_hide(void)
271 {
272  SDL_ShowCursor(SDL_DISABLE);
273 }
274 
275 #endif
void rpage_mouse_show(void)
Show the mouse cursor.
void rpage_uninit(void)
Un-initialize the framework, close the system libraries.
#define FALSE
Definition: utils.h:41
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&#39;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.
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.
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.
int BOOL
Definition: utils.h:32
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.
unsigned short UWORD
Definition: utils.h:28
void rpage_init(void)
ULONG rpage_get_clock(void)
Get the elapsed time, in milliseconds, since rpage_init was invoked.
Definition: utils.h:67
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.
unsigned char BYTE
Definition: utils.h:16
void rpage_video_open(int screen_mode)
unsigned long ULONG
Definition: utils.h:24
BOOL rpage_input_init(void)
void rpage_system_flash(void)
Use the system function BELL/RING/FLASH to send a visual/audio alert.
#define TRUE
Definition: utils.h:37
void rpage_video_vsync(void)
Wait for the vertical blank.
void rpage_video_set_font(char *font_filename, short font_size)