Compare commits
1 Commits
master
...
fps-counte
Author | SHA1 | Date | |
---|---|---|---|
2c58e669ef |
161
SDL/main.c
161
SDL/main.c
@ -7,6 +7,17 @@
|
|||||||
#include "gui.h"
|
#include "gui.h"
|
||||||
#include "shader.h"
|
#include "shader.h"
|
||||||
|
|
||||||
|
#define str(x) #x
|
||||||
|
#define xstr(x) str(x)
|
||||||
|
#define title "SameBoy v" xstr(VERSION)
|
||||||
|
|
||||||
|
#define FRAME_VALUES 300 // reduce to get averages above shorter time periods
|
||||||
|
Uint32 frametimes[FRAME_VALUES];
|
||||||
|
Uint32 frametime_last;
|
||||||
|
Uint32 frame_count;
|
||||||
|
float frames_per_second;
|
||||||
|
float fps_min;
|
||||||
|
float fps_max;
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#define AUDIO_FREQUENCY 96000
|
#define AUDIO_FREQUENCY 96000
|
||||||
@ -42,6 +53,51 @@ static const GB_model_t sdl_to_internal_model[] =
|
|||||||
[MODEL_AGB] = GB_MODEL_AGB
|
[MODEL_AGB] = GB_MODEL_AGB
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void fps_init() {
|
||||||
|
// Set all frame times to 0ms.
|
||||||
|
memset(frametimes, 0, sizeof(frametimes));
|
||||||
|
frame_count = 0;
|
||||||
|
frames_per_second = 0;
|
||||||
|
fps_max = 0;
|
||||||
|
fps_min = FLT_MAX;
|
||||||
|
frametime_last = SDL_GetTicks();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Source: http://sdl.beuc.net/sdl.wiki/SDL_Average_FPS_Measurement */
|
||||||
|
void fps_update() {
|
||||||
|
Uint32 frametimes_index;
|
||||||
|
Uint32 get_ticks;
|
||||||
|
Uint32 count;
|
||||||
|
Uint32 i;
|
||||||
|
|
||||||
|
frametimes_index = frame_count % FRAME_VALUES;
|
||||||
|
get_ticks = SDL_GetTicks();
|
||||||
|
frametimes[frametimes_index] = get_ticks - frametime_last;
|
||||||
|
frametime_last = get_ticks;
|
||||||
|
frame_count++;
|
||||||
|
|
||||||
|
if (frame_count < FRAME_VALUES) {
|
||||||
|
count = frame_count;
|
||||||
|
} else {
|
||||||
|
count = FRAME_VALUES;
|
||||||
|
}
|
||||||
|
|
||||||
|
frames_per_second = 0;
|
||||||
|
for (i = 0; i < count; i++) {
|
||||||
|
frames_per_second += frametimes[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
frames_per_second /= count;
|
||||||
|
frames_per_second = 1000.f / frames_per_second;
|
||||||
|
|
||||||
|
if (frames_per_second < fps_min) fps_min = frames_per_second;
|
||||||
|
if (frames_per_second > fps_max) fps_max = frames_per_second;
|
||||||
|
|
||||||
|
char title_buffer[50];
|
||||||
|
snprintf(title_buffer, sizeof(title_buffer), title " - %.1f FPS (%.1f - %.1f)", frames_per_second, fps_min, fps_max);
|
||||||
|
SDL_SetWindowTitle(window, title_buffer);
|
||||||
|
}
|
||||||
|
|
||||||
void set_filename(const char *new_filename, bool new_should_free)
|
void set_filename(const char *new_filename, bool new_should_free)
|
||||||
{
|
{
|
||||||
if (filename && should_free_filename) {
|
if (filename && should_free_filename) {
|
||||||
@ -120,20 +176,20 @@ static void handle_events(GB_gameboy_t *gb)
|
|||||||
case SDL_QUIT:
|
case SDL_QUIT:
|
||||||
pending_command = GB_SDL_QUIT_COMMAND;
|
pending_command = GB_SDL_QUIT_COMMAND;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SDL_DROPFILE: {
|
case SDL_DROPFILE: {
|
||||||
set_filename(event.drop.file, true);
|
set_filename(event.drop.file, true);
|
||||||
pending_command = GB_SDL_NEW_FILE_COMMAND;
|
pending_command = GB_SDL_NEW_FILE_COMMAND;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case SDL_WINDOWEVENT: {
|
case SDL_WINDOWEVENT: {
|
||||||
if (event.window.event == SDL_WINDOWEVENT_RESIZED) {
|
if (event.window.event == SDL_WINDOWEVENT_RESIZED) {
|
||||||
update_viewport();
|
update_viewport();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case SDL_JOYBUTTONUP:
|
case SDL_JOYBUTTONUP:
|
||||||
case SDL_JOYBUTTONDOWN: {
|
case SDL_JOYBUTTONDOWN: {
|
||||||
joypad_button_t button = get_joypad_button(event.jbutton.button);
|
joypad_button_t button = get_joypad_button(event.jbutton.button);
|
||||||
@ -159,7 +215,7 @@ static void handle_events(GB_gameboy_t *gb)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SDL_JOYAXISMOTION: {
|
case SDL_JOYAXISMOTION: {
|
||||||
static bool axis_active[2] = {false, false};
|
static bool axis_active[2] = {false, false};
|
||||||
joypad_axis_t axis = get_joypad_axis(event.jaxis.axis);
|
joypad_axis_t axis = get_joypad_axis(event.jaxis.axis);
|
||||||
@ -207,14 +263,14 @@ static void handle_events(GB_gameboy_t *gb)
|
|||||||
value == SDL_HAT_LEFTUP || value == SDL_HAT_UP || value == SDL_HAT_RIGHTUP ? -1 : (value == SDL_HAT_LEFTDOWN || value == SDL_HAT_DOWN || value == SDL_HAT_RIGHTDOWN ? 1 : 0);
|
value == SDL_HAT_LEFTUP || value == SDL_HAT_UP || value == SDL_HAT_RIGHTUP ? -1 : (value == SDL_HAT_LEFTDOWN || value == SDL_HAT_DOWN || value == SDL_HAT_RIGHTDOWN ? 1 : 0);
|
||||||
int8_t leftright =
|
int8_t leftright =
|
||||||
value == SDL_HAT_LEFTUP || value == SDL_HAT_LEFT || value == SDL_HAT_LEFTDOWN ? -1 : (value == SDL_HAT_RIGHTUP || value == SDL_HAT_RIGHT || value == SDL_HAT_RIGHTDOWN ? 1 : 0);
|
value == SDL_HAT_LEFTUP || value == SDL_HAT_LEFT || value == SDL_HAT_LEFTDOWN ? -1 : (value == SDL_HAT_RIGHTUP || value == SDL_HAT_RIGHT || value == SDL_HAT_RIGHTDOWN ? 1 : 0);
|
||||||
|
|
||||||
GB_set_key_state(gb, GB_KEY_LEFT, leftright == -1);
|
GB_set_key_state(gb, GB_KEY_LEFT, leftright == -1);
|
||||||
GB_set_key_state(gb, GB_KEY_RIGHT, leftright == 1);
|
GB_set_key_state(gb, GB_KEY_RIGHT, leftright == 1);
|
||||||
GB_set_key_state(gb, GB_KEY_UP, updown == -1);
|
GB_set_key_state(gb, GB_KEY_UP, updown == -1);
|
||||||
GB_set_key_state(gb, GB_KEY_DOWN, updown == 1);
|
GB_set_key_state(gb, GB_KEY_DOWN, updown == 1);
|
||||||
break;
|
break;
|
||||||
};
|
};
|
||||||
|
|
||||||
case SDL_KEYDOWN:
|
case SDL_KEYDOWN:
|
||||||
switch (event.key.keysym.scancode) {
|
switch (event.key.keysym.scancode) {
|
||||||
case SDL_SCANCODE_ESCAPE: {
|
case SDL_SCANCODE_ESCAPE: {
|
||||||
@ -224,22 +280,21 @@ static void handle_events(GB_gameboy_t *gb)
|
|||||||
case SDL_SCANCODE_C:
|
case SDL_SCANCODE_C:
|
||||||
if (event.type == SDL_KEYDOWN && (event.key.keysym.mod & KMOD_CTRL)) {
|
if (event.type == SDL_KEYDOWN && (event.key.keysym.mod & KMOD_CTRL)) {
|
||||||
GB_debugger_break(gb);
|
GB_debugger_break(gb);
|
||||||
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SDL_SCANCODE_R:
|
case SDL_SCANCODE_R:
|
||||||
if (event.key.keysym.mod & MODIFIER) {
|
if (event.key.keysym.mod & MODIFIER) {
|
||||||
pending_command = GB_SDL_RESET_COMMAND;
|
pending_command = GB_SDL_RESET_COMMAND;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SDL_SCANCODE_P:
|
case SDL_SCANCODE_P:
|
||||||
if (event.key.keysym.mod & MODIFIER) {
|
if (event.key.keysym.mod & MODIFIER) {
|
||||||
paused = !paused;
|
paused = !paused;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SDL_SCANCODE_M:
|
case SDL_SCANCODE_M:
|
||||||
if (event.key.keysym.mod & MODIFIER) {
|
if (event.key.keysym.mod & MODIFIER) {
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
@ -257,24 +312,30 @@ static void handle_events(GB_gameboy_t *gb)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SDL_SCANCODE_F:
|
case SDL_SCANCODE_F:
|
||||||
if (event.key.keysym.mod & MODIFIER) {
|
if (event.key.keysym.mod & MODIFIER) {
|
||||||
if ((SDL_GetWindowFlags(window) & SDL_WINDOW_FULLSCREEN_DESKTOP) == false) {
|
if ((SDL_GetWindowFlags(window) & SDL_WINDOW_FULLSCREEN_DESKTOP) == false) {
|
||||||
SDL_SetWindowFullscreen(window, SDL_WINDOW_FULLSCREEN_DESKTOP);
|
SDL_SetWindowFullscreen(window, SDL_WINDOW_FULLSCREEN_DESKTOP);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
SDL_SetWindowFullscreen(window, 0);
|
SDL_SetWindowFullscreen(window, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case SDL_SCANCODE_L:
|
||||||
|
if (event.key.keysym.mod & MODIFIER) {
|
||||||
|
fps_init();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
/* Save states */
|
/* Save states */
|
||||||
if (event.key.keysym.scancode >= SDL_SCANCODE_1 && event.key.keysym.scancode <= SDL_SCANCODE_0) {
|
if (event.key.keysym.scancode >= SDL_SCANCODE_1 && event.key.keysym.scancode <= SDL_SCANCODE_0) {
|
||||||
if (event.key.keysym.mod & MODIFIER) {
|
if (event.key.keysym.mod & MODIFIER) {
|
||||||
command_parameter = (event.key.keysym.scancode - SDL_SCANCODE_1 + 1) % 10;
|
command_parameter = (event.key.keysym.scancode - SDL_SCANCODE_1 + 1) % 10;
|
||||||
|
|
||||||
if (event.key.keysym.mod & KMOD_SHIFT) {
|
if (event.key.keysym.mod & KMOD_SHIFT) {
|
||||||
pending_command = GB_SDL_LOAD_STATE_COMMAND;
|
pending_command = GB_SDL_LOAD_STATE_COMMAND;
|
||||||
}
|
}
|
||||||
@ -324,6 +385,7 @@ static void vblank(GB_gameboy_t *gb)
|
|||||||
clock_mutliplier += 0.1;
|
clock_mutliplier += 0.1;
|
||||||
GB_set_clock_multiplier(gb, clock_mutliplier);
|
GB_set_clock_multiplier(gb, clock_mutliplier);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (configuration.blend_frames) {
|
if (configuration.blend_frames) {
|
||||||
render_texture(active_pixel_buffer, previous_pixel_buffer);
|
render_texture(active_pixel_buffer, previous_pixel_buffer);
|
||||||
uint32_t *temp = active_pixel_buffer;
|
uint32_t *temp = active_pixel_buffer;
|
||||||
@ -334,6 +396,9 @@ static void vblank(GB_gameboy_t *gb)
|
|||||||
else {
|
else {
|
||||||
render_texture(active_pixel_buffer, NULL);
|
render_texture(active_pixel_buffer, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fps_update();
|
||||||
|
|
||||||
do_rewind = rewind_down;
|
do_rewind = rewind_down;
|
||||||
handle_events(gb);
|
handle_events(gb);
|
||||||
}
|
}
|
||||||
@ -365,7 +430,7 @@ static void audio_callback(void *gb, Uint8 *stream, int len)
|
|||||||
memset(stream, 0, len);
|
memset(stream, 0, len);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool handle_pending_command(void)
|
static bool handle_pending_command(void)
|
||||||
{
|
{
|
||||||
switch (pending_command) {
|
switch (pending_command) {
|
||||||
@ -375,7 +440,7 @@ static bool handle_pending_command(void)
|
|||||||
char save_extension[] = ".s0";
|
char save_extension[] = ".s0";
|
||||||
save_extension[2] += command_parameter;
|
save_extension[2] += command_parameter;
|
||||||
replace_extension(filename, strlen(filename), save_path, save_extension);
|
replace_extension(filename, strlen(filename), save_path, save_extension);
|
||||||
|
|
||||||
start_capturing_logs();
|
start_capturing_logs();
|
||||||
if (pending_command == GB_SDL_LOAD_STATE_COMMAND) {
|
if (pending_command == GB_SDL_LOAD_STATE_COMMAND) {
|
||||||
GB_load_state(&gb, save_path);
|
GB_load_state(&gb, save_path);
|
||||||
@ -386,17 +451,17 @@ static bool handle_pending_command(void)
|
|||||||
end_capturing_logs(true, false);
|
end_capturing_logs(true, false);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
case GB_SDL_RESET_COMMAND:
|
case GB_SDL_RESET_COMMAND:
|
||||||
GB_save_battery(&gb, battery_save_path_ptr);
|
GB_save_battery(&gb, battery_save_path_ptr);
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
case GB_SDL_NO_COMMAND:
|
case GB_SDL_NO_COMMAND:
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
case GB_SDL_NEW_FILE_COMMAND:
|
case GB_SDL_NEW_FILE_COMMAND:
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
case GB_SDL_QUIT_COMMAND:
|
case GB_SDL_QUIT_COMMAND:
|
||||||
GB_save_battery(&gb, battery_save_path_ptr);
|
GB_save_battery(&gb, battery_save_path_ptr);
|
||||||
exit(0);
|
exit(0);
|
||||||
@ -413,7 +478,7 @@ restart:
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
GB_init(&gb, sdl_to_internal_model[configuration.model]);
|
GB_init(&gb, sdl_to_internal_model[configuration.model]);
|
||||||
|
|
||||||
GB_set_vblank_callback(&gb, (GB_vblank_callback_t) vblank);
|
GB_set_vblank_callback(&gb, (GB_vblank_callback_t) vblank);
|
||||||
GB_set_pixels_output(&gb, active_pixel_buffer);
|
GB_set_pixels_output(&gb, active_pixel_buffer);
|
||||||
GB_set_rgb_encode_callback(&gb, rgb_encode);
|
GB_set_rgb_encode_callback(&gb, rgb_encode);
|
||||||
@ -422,32 +487,34 @@ restart:
|
|||||||
GB_set_highpass_filter_mode(&gb, configuration.highpass_mode);
|
GB_set_highpass_filter_mode(&gb, configuration.highpass_mode);
|
||||||
GB_set_rewind_length(&gb, configuration.rewind_length);
|
GB_set_rewind_length(&gb, configuration.rewind_length);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool error = false;
|
bool error = false;
|
||||||
start_capturing_logs();
|
start_capturing_logs();
|
||||||
const char * const boot_roms[] = {"dmg_boot.bin", "cgb_boot.bin", "agb_boot.bin"};
|
const char * const boot_roms[] = {"dmg_boot.bin", "cgb_boot.bin", "agb_boot.bin"};
|
||||||
error = GB_load_boot_rom(&gb, executable_relative_path(boot_roms[configuration.model]));
|
error = GB_load_boot_rom(&gb, executable_relative_path(boot_roms[configuration.model]));
|
||||||
end_capturing_logs(true, error);
|
end_capturing_logs(true, error);
|
||||||
|
|
||||||
start_capturing_logs();
|
start_capturing_logs();
|
||||||
error = GB_load_rom(&gb, filename);
|
error = GB_load_rom(&gb, filename);
|
||||||
end_capturing_logs(true, error);
|
end_capturing_logs(true, error);
|
||||||
|
|
||||||
size_t path_length = strlen(filename);
|
size_t path_length = strlen(filename);
|
||||||
|
|
||||||
/* Configure battery */
|
/* Configure battery */
|
||||||
char battery_save_path[path_length + 5]; /* At the worst case, size is strlen(path) + 4 bytes for .sav + NULL */
|
char battery_save_path[path_length + 5]; /* At the worst case, size is strlen(path) + 4 bytes for .sav + NULL */
|
||||||
replace_extension(filename, path_length, battery_save_path, ".sav");
|
replace_extension(filename, path_length, battery_save_path, ".sav");
|
||||||
battery_save_path_ptr = battery_save_path;
|
battery_save_path_ptr = battery_save_path;
|
||||||
GB_load_battery(&gb, battery_save_path);
|
GB_load_battery(&gb, battery_save_path);
|
||||||
|
|
||||||
/* Configure symbols */
|
/* Configure symbols */
|
||||||
GB_debugger_load_symbol_file(&gb, executable_relative_path("registers.sym"));
|
GB_debugger_load_symbol_file(&gb, executable_relative_path("registers.sym"));
|
||||||
|
|
||||||
char symbols_path[path_length + 5];
|
char symbols_path[path_length + 5];
|
||||||
replace_extension(filename, path_length, symbols_path, ".sym");
|
replace_extension(filename, path_length, symbols_path, ".sym");
|
||||||
GB_debugger_load_symbol_file(&gb, symbols_path);
|
GB_debugger_load_symbol_file(&gb, symbols_path);
|
||||||
|
|
||||||
|
fps_init();
|
||||||
|
|
||||||
/* Run emulation */
|
/* Run emulation */
|
||||||
while (true) {
|
while (true) {
|
||||||
if (paused || rewind_paused) {
|
if (paused || rewind_paused) {
|
||||||
@ -467,7 +534,7 @@ restart:
|
|||||||
}
|
}
|
||||||
GB_run(&gb);
|
GB_run(&gb);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* These commands can't run in the handle_event function, because they're not safe in a vblank context. */
|
/* These commands can't run in the handle_event function, because they're not safe in a vblank context. */
|
||||||
if (handle_pending_command()) {
|
if (handle_pending_command()) {
|
||||||
pending_command = GB_SDL_NO_COMMAND;
|
pending_command = GB_SDL_NO_COMMAND;
|
||||||
@ -490,15 +557,13 @@ static void save_configuration(void)
|
|||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
#define str(x) #x
|
fprintf(stderr, title "\n");
|
||||||
#define xstr(x) str(x)
|
|
||||||
fprintf(stderr, "SameBoy v" xstr(VERSION) "\n");
|
|
||||||
|
|
||||||
if (argc > 2) {
|
if (argc > 2) {
|
||||||
fprintf(stderr, "Usage: %s [rom]\n", argv[0]);
|
fprintf(stderr, "Usage: %s [rom]\n", argv[0]);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (argc == 2) {
|
if (argc == 2) {
|
||||||
filename = argv[1];
|
filename = argv[1];
|
||||||
}
|
}
|
||||||
@ -506,26 +571,26 @@ int main(int argc, char **argv)
|
|||||||
signal(SIGINT, debugger_interrupt);
|
signal(SIGINT, debugger_interrupt);
|
||||||
|
|
||||||
SDL_Init(SDL_INIT_EVERYTHING);
|
SDL_Init(SDL_INIT_EVERYTHING);
|
||||||
|
|
||||||
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
|
||||||
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 2);
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 2);
|
||||||
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
|
||||||
|
|
||||||
window = SDL_CreateWindow("SameBoy v" xstr(VERSION), SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
|
window = SDL_CreateWindow(title, SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
|
||||||
160 * 2, 144 * 2, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI);
|
160 * 2, 144 * 2, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI);
|
||||||
SDL_SetWindowMinimumSize(window, 160, 144);
|
SDL_SetWindowMinimumSize(window, 160, 144);
|
||||||
|
|
||||||
SDL_GLContext gl_context = SDL_GL_CreateContext(window);
|
SDL_GLContext gl_context = SDL_GL_CreateContext(window);
|
||||||
|
|
||||||
GLint major = 0, minor = 0;
|
GLint major = 0, minor = 0;
|
||||||
glGetIntegerv(GL_MAJOR_VERSION, &major);
|
glGetIntegerv(GL_MAJOR_VERSION, &major);
|
||||||
glGetIntegerv(GL_MINOR_VERSION, &minor);
|
glGetIntegerv(GL_MINOR_VERSION, &minor);
|
||||||
|
|
||||||
if (major * 0x100 + minor < 0x302) {
|
if (major * 0x100 + minor < 0x302) {
|
||||||
SDL_GL_DeleteContext(gl_context);
|
SDL_GL_DeleteContext(gl_context);
|
||||||
gl_context = NULL;
|
gl_context = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gl_context == NULL) {
|
if (gl_context == NULL) {
|
||||||
renderer = SDL_CreateRenderer(window, -1, 0);
|
renderer = SDL_CreateRenderer(window, -1, 0);
|
||||||
texture = SDL_CreateTexture(renderer, SDL_GetWindowPixelFormat(window), SDL_TEXTUREACCESS_STREAMING, 160, 144);
|
texture = SDL_CreateTexture(renderer, SDL_GetWindowPixelFormat(window), SDL_TEXTUREACCESS_STREAMING, 160, 144);
|
||||||
@ -534,15 +599,15 @@ int main(int argc, char **argv)
|
|||||||
else {
|
else {
|
||||||
pixel_format = SDL_AllocFormat(SDL_PIXELFORMAT_ABGR8888);
|
pixel_format = SDL_AllocFormat(SDL_PIXELFORMAT_ABGR8888);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Configure Audio */
|
/* Configure Audio */
|
||||||
memset(&want_aspec, 0, sizeof(want_aspec));
|
memset(&want_aspec, 0, sizeof(want_aspec));
|
||||||
want_aspec.freq = AUDIO_FREQUENCY;
|
want_aspec.freq = AUDIO_FREQUENCY;
|
||||||
want_aspec.format = AUDIO_S16SYS;
|
want_aspec.format = AUDIO_S16SYS;
|
||||||
want_aspec.channels = 2;
|
want_aspec.channels = 2;
|
||||||
#if SDL_COMPILEDVERSION >= 2005 && defined(__APPLE__)
|
#if SDL_COMPILEDVERSION >= 2005 && defined(__APPLE__)
|
||||||
/* SDL 2.0.5 on macOS introduced a bug where certain combinations of buffer lengths and frequencies
|
/* SDL 2.0.5 on macOS introduced a bug where certain combinations of buffer lengths and frequencies
|
||||||
fail to produce audio correctly. */
|
fail to produce audio correctly. */
|
||||||
want_aspec.samples = 2048;
|
want_aspec.samples = 2048;
|
||||||
#else
|
#else
|
||||||
@ -564,15 +629,15 @@ int main(int argc, char **argv)
|
|||||||
want_aspec.callback = audio_callback;
|
want_aspec.callback = audio_callback;
|
||||||
want_aspec.userdata = &gb;
|
want_aspec.userdata = &gb;
|
||||||
device_id = SDL_OpenAudioDevice(0, 0, &want_aspec, &have_aspec, SDL_AUDIO_ALLOW_FREQUENCY_CHANGE);
|
device_id = SDL_OpenAudioDevice(0, 0, &want_aspec, &have_aspec, SDL_AUDIO_ALLOW_FREQUENCY_CHANGE);
|
||||||
|
|
||||||
/* Start Audio */
|
/* Start Audio */
|
||||||
|
|
||||||
SDL_EventState(SDL_DROPFILE, SDL_ENABLE);
|
SDL_EventState(SDL_DROPFILE, SDL_ENABLE);
|
||||||
|
|
||||||
char *prefs_dir = SDL_GetPrefPath("", "SameBoy");
|
char *prefs_dir = SDL_GetPrefPath("", "SameBoy");
|
||||||
snprintf(prefs_path, sizeof(prefs_path) - 1, "%sprefs.bin", prefs_dir);
|
snprintf(prefs_path, sizeof(prefs_path) - 1, "%sprefs.bin", prefs_dir);
|
||||||
SDL_free(prefs_dir);
|
SDL_free(prefs_dir);
|
||||||
|
|
||||||
FILE *prefs_file = fopen(prefs_path, "rb");
|
FILE *prefs_file = fopen(prefs_path, "rb");
|
||||||
if (prefs_file) {
|
if (prefs_file) {
|
||||||
fread(&configuration, 1, sizeof(configuration), prefs_file);
|
fread(&configuration, 1, sizeof(configuration), prefs_file);
|
||||||
@ -581,14 +646,14 @@ int main(int argc, char **argv)
|
|||||||
if (configuration.model >= MODEL_MAX) {
|
if (configuration.model >= MODEL_MAX) {
|
||||||
configuration.model = MODEL_CGB;
|
configuration.model = MODEL_CGB;
|
||||||
}
|
}
|
||||||
|
|
||||||
atexit(save_configuration);
|
atexit(save_configuration);
|
||||||
|
|
||||||
if (!init_shader_with_name(&shader, configuration.filter)) {
|
if (!init_shader_with_name(&shader, configuration.filter)) {
|
||||||
init_shader_with_name(&shader, "NearestNeighbor");
|
init_shader_with_name(&shader, "NearestNeighbor");
|
||||||
}
|
}
|
||||||
update_viewport();
|
update_viewport();
|
||||||
|
|
||||||
if (filename == NULL) {
|
if (filename == NULL) {
|
||||||
run_gui(false);
|
run_gui(false);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user