2016-03-30 20:07:55 +00:00
|
|
|
#include <stdbool.h>
|
2018-03-28 18:59:27 +00:00
|
|
|
#include <stdio.h>
|
2016-07-17 19:43:23 +00:00
|
|
|
#include <signal.h>
|
2017-05-21 18:44:28 +00:00
|
|
|
#include <SDL2/SDL.h>
|
2017-10-12 21:02:02 +00:00
|
|
|
#include <Core/gb.h>
|
2017-05-24 18:44:43 +00:00
|
|
|
#include "utils.h"
|
2017-10-04 09:43:31 +00:00
|
|
|
#include "gui.h"
|
2017-12-23 15:29:42 +00:00
|
|
|
#include "shader.h"
|
2017-05-24 17:33:39 +00:00
|
|
|
|
2016-08-20 14:51:17 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
#define AUDIO_FREQUENCY 96000
|
|
|
|
#else
|
2018-04-22 13:22:10 +00:00
|
|
|
/* LIJI32 says: Windows (well, at least my VM) can't handle 96KHz sound well :(
|
|
|
|
|
|
|
|
felsqualle says: For SDL 2.0.6+ using the WASAPI driver, the highest freq.
|
|
|
|
we can get is 48000. 96000 also works, but always has some faint crackling in
|
|
|
|
the audio, no matter how high or low I set the buffer length...
|
|
|
|
Not quite satisfied with that solution, because acc. to SDL2 docs,
|
|
|
|
96k + WASAPI *should* work. */
|
|
|
|
|
|
|
|
#define AUDIO_FREQUENCY 48000
|
2016-08-20 14:51:17 +00:00
|
|
|
#endif
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2017-05-24 18:44:43 +00:00
|
|
|
GB_gameboy_t gb;
|
|
|
|
static bool paused = false;
|
2017-12-23 15:41:47 +00:00
|
|
|
static uint32_t pixel_buffer_1[160*144], pixel_buffer_2[160*144];
|
|
|
|
static uint32_t *active_pixel_buffer = pixel_buffer_1, *previous_pixel_buffer = pixel_buffer_2;
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2017-05-23 20:18:16 +00:00
|
|
|
static char *filename = NULL;
|
|
|
|
static bool should_free_filename = false;
|
2017-05-21 18:44:28 +00:00
|
|
|
static char *battery_save_path_ptr;
|
|
|
|
|
2018-04-22 13:22:10 +00:00
|
|
|
SDL_AudioDeviceID deviceId;
|
|
|
|
|
2017-10-04 09:43:31 +00:00
|
|
|
void set_filename(const char *new_filename, bool new_should_free)
|
|
|
|
{
|
|
|
|
if (filename && should_free_filename) {
|
2017-10-04 10:14:37 +00:00
|
|
|
SDL_free(filename);
|
2017-10-04 09:43:31 +00:00
|
|
|
}
|
|
|
|
filename = (char *) new_filename;
|
|
|
|
should_free_filename = new_should_free;
|
|
|
|
}
|
|
|
|
|
2017-05-23 20:18:16 +00:00
|
|
|
static SDL_AudioSpec want_aspec, have_aspec;
|
|
|
|
|
2017-05-25 20:28:48 +00:00
|
|
|
static char *captured_log = NULL;
|
|
|
|
|
|
|
|
static void log_capture_callback(GB_gameboy_t *gb, const char *string, GB_log_attributes attributes)
|
|
|
|
{
|
|
|
|
size_t current_len = strlen(captured_log);
|
|
|
|
size_t len_to_add = strlen(string);
|
|
|
|
captured_log = realloc(captured_log, current_len + len_to_add + 1);
|
|
|
|
memcpy(captured_log + current_len, string, len_to_add);
|
|
|
|
captured_log[current_len + len_to_add] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void start_capturing_logs(void)
|
|
|
|
{
|
|
|
|
if (captured_log != NULL) {
|
|
|
|
free(captured_log);
|
|
|
|
}
|
|
|
|
captured_log = malloc(1);
|
|
|
|
captured_log[0] = 0;
|
|
|
|
GB_set_log_callback(&gb, log_capture_callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *end_capturing_logs(bool show_popup, bool should_exit)
|
|
|
|
{
|
|
|
|
GB_set_log_callback(&gb, NULL);
|
|
|
|
if (captured_log[0] == 0) {
|
|
|
|
free(captured_log);
|
|
|
|
captured_log = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (show_popup) {
|
|
|
|
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, "Error", captured_log, window);
|
|
|
|
}
|
|
|
|
if (should_exit) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return captured_log;
|
|
|
|
}
|
|
|
|
|
2017-05-21 18:44:28 +00:00
|
|
|
static void handle_events(GB_gameboy_t *gb)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
2016-07-18 11:37:06 +00:00
|
|
|
#ifdef __APPLE__
|
2017-05-25 20:28:48 +00:00
|
|
|
#define MODIFIER KMOD_GUI
|
2017-05-21 18:44:28 +00:00
|
|
|
#else
|
2017-05-25 20:28:48 +00:00
|
|
|
#define MODIFIER KMOD_CTRL
|
2016-07-18 11:37:06 +00:00
|
|
|
#endif
|
2016-03-30 20:07:55 +00:00
|
|
|
SDL_Event event;
|
|
|
|
while (SDL_PollEvent(&event))
|
|
|
|
{
|
2017-05-24 17:33:39 +00:00
|
|
|
switch (event.type) {
|
2016-03-30 20:07:55 +00:00
|
|
|
case SDL_QUIT:
|
2017-10-14 11:10:26 +00:00
|
|
|
pending_command = GB_SDL_QUIT_COMMAND;
|
|
|
|
break;
|
2017-05-21 18:44:28 +00:00
|
|
|
|
2017-05-23 20:18:16 +00:00
|
|
|
case SDL_DROPFILE: {
|
2017-10-04 10:14:37 +00:00
|
|
|
set_filename(event.drop.file, true);
|
2017-05-23 20:18:16 +00:00
|
|
|
pending_command = GB_SDL_NEW_FILE_COMMAND;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-05-24 17:33:39 +00:00
|
|
|
case SDL_WINDOWEVENT: {
|
|
|
|
if (event.window.event == SDL_WINDOWEVENT_RESIZED) {
|
|
|
|
update_viewport();
|
|
|
|
}
|
2017-12-22 22:39:04 +00:00
|
|
|
break;
|
2017-05-24 17:33:39 +00:00
|
|
|
}
|
|
|
|
|
2017-12-22 22:39:04 +00:00
|
|
|
case SDL_JOYBUTTONUP:
|
|
|
|
case SDL_JOYBUTTONDOWN:
|
|
|
|
event.jbutton.button = fix_joypad_button(event.jbutton.button);
|
|
|
|
if (event.jbutton.button < 4) {
|
|
|
|
GB_set_key_state(gb, (event.jbutton.button & 1) ? GB_KEY_A : GB_KEY_B,
|
|
|
|
event.type == SDL_JOYBUTTONDOWN);
|
|
|
|
}
|
|
|
|
else if (event.jbutton.button == 8) {
|
|
|
|
GB_set_key_state(gb, GB_KEY_SELECT, event.type == SDL_JOYBUTTONDOWN);
|
|
|
|
}
|
|
|
|
else if (event.jbutton.button == 9) {
|
|
|
|
GB_set_key_state(gb, GB_KEY_START, event.type == SDL_JOYBUTTONDOWN);
|
|
|
|
}
|
2017-12-28 18:22:54 +00:00
|
|
|
else if (event.jbutton.button == SDL_CONTROLLER_BUTTON_DPAD_UP) {
|
|
|
|
GB_set_key_state(gb, GB_KEY_UP, event.type == SDL_JOYBUTTONDOWN);
|
|
|
|
}
|
|
|
|
else if (event.jbutton.button == SDL_CONTROLLER_BUTTON_DPAD_DOWN) {
|
|
|
|
GB_set_key_state(gb, GB_KEY_DOWN, event.type == SDL_JOYBUTTONDOWN);
|
|
|
|
}
|
|
|
|
else if (event.jbutton.button == SDL_CONTROLLER_BUTTON_DPAD_LEFT) {
|
|
|
|
GB_set_key_state(gb, GB_KEY_LEFT, event.type == SDL_JOYBUTTONDOWN);
|
|
|
|
}
|
|
|
|
else if (event.jbutton.button == SDL_CONTROLLER_BUTTON_DPAD_RIGHT) {
|
|
|
|
GB_set_key_state(gb, GB_KEY_RIGHT, event.type == SDL_JOYBUTTONDOWN);
|
|
|
|
}
|
2017-12-22 22:39:04 +00:00
|
|
|
else if (event.jbutton.button & 1) {
|
|
|
|
GB_set_turbo_mode(gb, event.type == SDL_JOYBUTTONDOWN, false);
|
|
|
|
}
|
2017-12-28 18:22:54 +00:00
|
|
|
|
2017-12-22 22:39:04 +00:00
|
|
|
else {
|
2018-04-22 13:22:10 +00:00
|
|
|
bool audio_playing = SDL_GetAudioDeviceStatus(deviceId) == SDL_AUDIO_PLAYING;
|
2017-12-23 19:11:44 +00:00
|
|
|
if (audio_playing) {
|
2018-04-22 13:22:10 +00:00
|
|
|
SDL_PauseAudioDevice(deviceId, 1);
|
2017-12-23 19:11:44 +00:00
|
|
|
}
|
2017-12-22 22:39:04 +00:00
|
|
|
run_gui(true);
|
2018-04-22 13:22:10 +00:00
|
|
|
if (!audio_playing) {
|
|
|
|
SDL_PauseAudioDevice(deviceId, 0);
|
2017-12-23 19:11:44 +00:00
|
|
|
}
|
2017-12-22 22:39:04 +00:00
|
|
|
GB_set_color_correction_mode(gb, configuration.color_correction_mode);
|
2017-12-23 19:11:44 +00:00
|
|
|
GB_set_highpass_filter_mode(gb, configuration.highpass_mode);
|
2017-12-22 22:39:04 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_JOYAXISMOTION:
|
2017-12-28 18:22:54 +00:00
|
|
|
event.jaxis.axis = fix_joypad_axis(event.jaxis.axis);
|
|
|
|
if (event.jaxis.axis == 1) {
|
2017-12-22 22:39:04 +00:00
|
|
|
GB_set_key_state(gb, GB_KEY_DOWN, event.jaxis.value > 0x4000);
|
|
|
|
GB_set_key_state(gb, GB_KEY_UP, event.jaxis.value < -0x4000);
|
|
|
|
}
|
2017-12-28 18:22:54 +00:00
|
|
|
else if (event.jaxis.axis == 0) {
|
2017-12-22 22:39:04 +00:00
|
|
|
GB_set_key_state(gb, GB_KEY_RIGHT, event.jaxis.value > 0x4000);
|
|
|
|
GB_set_key_state(gb, GB_KEY_LEFT, event.jaxis.value < -0x4000);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
case SDL_KEYDOWN:
|
2017-10-14 17:24:13 +00:00
|
|
|
switch (event.key.keysym.scancode) {
|
2017-12-23 19:11:44 +00:00
|
|
|
case SDL_SCANCODE_ESCAPE: {
|
2018-04-22 13:22:10 +00:00
|
|
|
bool audio_playing = SDL_GetAudioDeviceStatus(deviceId) == SDL_AUDIO_PLAYING;
|
2017-12-23 19:11:44 +00:00
|
|
|
if (audio_playing) {
|
2018-04-22 13:22:10 +00:00
|
|
|
SDL_PauseAudioDevice(deviceId, 1);
|
2017-12-23 19:11:44 +00:00
|
|
|
}
|
2017-10-13 22:41:51 +00:00
|
|
|
run_gui(true);
|
2018-04-22 13:22:10 +00:00
|
|
|
if (!audio_playing) {
|
|
|
|
SDL_PauseAudioDevice(deviceId, 0);
|
2017-12-23 19:11:44 +00:00
|
|
|
}
|
2017-12-22 20:25:53 +00:00
|
|
|
GB_set_color_correction_mode(gb, configuration.color_correction_mode);
|
2017-12-23 19:11:44 +00:00
|
|
|
GB_set_highpass_filter_mode(gb, configuration.highpass_mode);
|
2017-10-13 22:41:51 +00:00
|
|
|
break;
|
2017-12-23 19:11:44 +00:00
|
|
|
}
|
2017-10-14 17:24:13 +00:00
|
|
|
case SDL_SCANCODE_C:
|
2017-05-25 20:28:48 +00:00
|
|
|
if (event.type == SDL_KEYDOWN && (event.key.keysym.mod & KMOD_CTRL)) {
|
2017-05-21 18:44:28 +00:00
|
|
|
GB_debugger_break(gb);
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2017-10-14 17:24:13 +00:00
|
|
|
case SDL_SCANCODE_R:
|
2017-05-25 20:28:48 +00:00
|
|
|
if (event.key.keysym.mod & MODIFIER) {
|
2017-05-21 18:44:28 +00:00
|
|
|
pending_command = GB_SDL_RESET_COMMAND;
|
|
|
|
}
|
|
|
|
break;
|
2017-05-24 17:33:39 +00:00
|
|
|
|
2017-10-14 17:24:13 +00:00
|
|
|
case SDL_SCANCODE_P:
|
2017-05-25 20:28:48 +00:00
|
|
|
if (event.key.keysym.mod & MODIFIER) {
|
2017-05-24 17:33:39 +00:00
|
|
|
paused = !paused;
|
|
|
|
}
|
|
|
|
break;
|
2017-05-23 20:18:16 +00:00
|
|
|
|
2017-10-14 17:24:13 +00:00
|
|
|
case SDL_SCANCODE_M:
|
2017-05-25 20:28:48 +00:00
|
|
|
if (event.key.keysym.mod & MODIFIER) {
|
2017-05-21 18:44:28 +00:00
|
|
|
#ifdef __APPLE__
|
2017-05-23 20:18:16 +00:00
|
|
|
// Can't override CMD+M (Minimize) in SDL
|
2017-05-25 20:28:48 +00:00
|
|
|
if (!(event.key.keysym.mod & KMOD_SHIFT)) {
|
2017-05-21 18:44:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
2018-04-22 13:22:10 +00:00
|
|
|
bool audio_playing = SDL_GetAudioDeviceStatus(deviceId) == SDL_AUDIO_PLAYING;
|
|
|
|
if (audio_playing) {
|
|
|
|
SDL_PauseAudioDevice(deviceId, 1);
|
2017-05-21 18:44:28 +00:00
|
|
|
}
|
2018-04-22 13:22:10 +00:00
|
|
|
else if (!audio_playing) {
|
|
|
|
SDL_PauseAudioDevice(deviceId, 0);
|
|
|
|
}
|
|
|
|
break;
|
2018-04-18 17:22:08 +00:00
|
|
|
|
|
|
|
case SDL_SCANCODE_F:
|
|
|
|
if (event.key.keysym.mod & MODIFIER) {
|
|
|
|
if ((SDL_GetWindowFlags(window) & SDL_WINDOW_FULLSCREEN_DESKTOP) == false) {
|
|
|
|
SDL_SetWindowFullscreen(window, SDL_WINDOW_FULLSCREEN_DESKTOP);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SDL_SetWindowFullscreen(window, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2017-05-21 18:44:28 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
/* Save states */
|
2018-04-19 12:40:42 +00:00
|
|
|
if (event.key.keysym.scancode >= SDL_SCANCODE_1 && event.key.keysym.scancode <= SDL_SCANCODE_0) {
|
2017-05-25 20:28:48 +00:00
|
|
|
if (event.key.keysym.mod & MODIFIER) {
|
2018-05-11 09:51:15 +00:00
|
|
|
command_parameter = (event.key.keysym.scancode - SDL_SCANCODE_1 + 1) % 10;
|
2017-05-21 18:44:28 +00:00
|
|
|
|
2017-05-25 20:28:48 +00:00
|
|
|
if (event.key.keysym.mod & KMOD_SHIFT) {
|
2017-05-21 18:44:28 +00:00
|
|
|
pending_command = GB_SDL_LOAD_STATE_COMMAND;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pending_command = GB_SDL_SAVE_STATE_COMMAND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2018-04-22 13:22:10 +00:00
|
|
|
}
|
2017-05-21 18:44:28 +00:00
|
|
|
}
|
|
|
|
case SDL_KEYUP: // Fallthrough
|
2017-12-22 20:25:53 +00:00
|
|
|
if (event.key.keysym.scancode == configuration.keys[8]) {
|
|
|
|
GB_set_turbo_mode(gb, event.type == SDL_KEYDOWN, false);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for (unsigned i = 0; i < GB_KEY_MAX; i++) {
|
|
|
|
if (event.key.keysym.scancode == configuration.keys[i]) {
|
|
|
|
GB_set_key_state(gb, i, event.type == SDL_KEYDOWN);
|
|
|
|
}
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2018-04-22 13:22:10 +00:00
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-20 14:51:17 +00:00
|
|
|
static void vblank(GB_gameboy_t *gb)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
2017-12-23 15:41:47 +00:00
|
|
|
if (configuration.blend_frames) {
|
|
|
|
render_texture(active_pixel_buffer, previous_pixel_buffer);
|
|
|
|
uint32_t *temp = active_pixel_buffer;
|
|
|
|
active_pixel_buffer = previous_pixel_buffer;
|
|
|
|
previous_pixel_buffer = temp;
|
|
|
|
GB_set_pixels_output(gb, active_pixel_buffer);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
render_texture(active_pixel_buffer, NULL);
|
|
|
|
}
|
2017-05-21 18:44:28 +00:00
|
|
|
handle_events(gb);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
static uint32_t rgb_encode(GB_gameboy_t *gb, uint8_t r, uint8_t g, uint8_t b)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
2017-05-21 18:44:28 +00:00
|
|
|
return SDL_MapRGB(pixel_format, r, g, b);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
2016-04-06 19:58:30 +00:00
|
|
|
static void debugger_interrupt(int ignore)
|
|
|
|
{
|
2017-10-14 11:10:26 +00:00
|
|
|
if (!GB_is_inited(&gb)) return;
|
2016-07-18 10:10:19 +00:00
|
|
|
/* ^C twice to exit */
|
2017-04-17 17:16:17 +00:00
|
|
|
if (GB_debugger_is_stopped(&gb)) {
|
2017-10-14 11:10:26 +00:00
|
|
|
GB_save_battery(&gb, battery_save_path_ptr);
|
2016-07-18 10:10:19 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
2017-04-17 17:16:17 +00:00
|
|
|
GB_debugger_break(&gb);
|
2016-04-06 19:58:30 +00:00
|
|
|
}
|
|
|
|
|
2016-05-23 19:22:09 +00:00
|
|
|
|
|
|
|
static void audio_callback(void *gb, Uint8 *stream, int len)
|
|
|
|
{
|
2017-05-23 20:18:16 +00:00
|
|
|
if (GB_is_inited(gb)) {
|
|
|
|
GB_apu_copy_buffer(gb, (GB_sample_t *) stream, len / sizeof(GB_sample_t));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
memset(stream, 0, len);
|
|
|
|
}
|
2016-05-23 19:22:09 +00:00
|
|
|
}
|
2017-05-24 18:44:43 +00:00
|
|
|
|
|
|
|
static bool handle_pending_command(void)
|
2016-07-17 20:08:07 +00:00
|
|
|
{
|
2017-05-24 18:44:43 +00:00
|
|
|
switch (pending_command) {
|
|
|
|
case GB_SDL_LOAD_STATE_COMMAND:
|
|
|
|
case GB_SDL_SAVE_STATE_COMMAND: {
|
|
|
|
char save_path[strlen(filename) + 4];
|
|
|
|
char save_extension[] = ".s0";
|
|
|
|
save_extension[2] += command_parameter;
|
|
|
|
replace_extension(filename, strlen(filename), save_path, save_extension);
|
|
|
|
|
2017-05-25 20:28:48 +00:00
|
|
|
start_capturing_logs();
|
2017-05-24 18:44:43 +00:00
|
|
|
if (pending_command == GB_SDL_LOAD_STATE_COMMAND) {
|
|
|
|
GB_load_state(&gb, save_path);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
GB_save_state(&gb, save_path);
|
|
|
|
}
|
2017-05-25 20:28:48 +00:00
|
|
|
end_capturing_logs(true, false);
|
2017-05-24 18:44:43 +00:00
|
|
|
return false;
|
2016-07-17 20:08:07 +00:00
|
|
|
}
|
2017-05-24 18:44:43 +00:00
|
|
|
|
|
|
|
case GB_SDL_RESET_COMMAND:
|
2018-04-19 14:47:54 +00:00
|
|
|
GB_save_battery(&gb, battery_save_path_ptr);
|
2018-01-13 11:49:20 +00:00
|
|
|
return true;
|
2017-05-24 18:44:43 +00:00
|
|
|
|
|
|
|
case GB_SDL_NO_COMMAND:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case GB_SDL_NEW_FILE_COMMAND:
|
|
|
|
return true;
|
|
|
|
|
2017-10-14 11:10:26 +00:00
|
|
|
case GB_SDL_QUIT_COMMAND:
|
|
|
|
GB_save_battery(&gb, battery_save_path_ptr);
|
|
|
|
exit(0);
|
2016-07-17 20:08:07 +00:00
|
|
|
}
|
2017-05-24 18:44:43 +00:00
|
|
|
return false;
|
2016-07-17 20:08:07 +00:00
|
|
|
}
|
2017-05-24 18:44:43 +00:00
|
|
|
|
2017-05-23 20:18:16 +00:00
|
|
|
static void run(void)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
2017-10-13 22:41:51 +00:00
|
|
|
pending_command = GB_SDL_NO_COMMAND;
|
2017-05-23 20:18:16 +00:00
|
|
|
restart:
|
|
|
|
if (GB_is_inited(&gb)) {
|
2018-01-13 11:49:20 +00:00
|
|
|
GB_switch_model_and_reset(&gb, configuration.model != MODEL_DMG);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
2017-05-23 20:18:16 +00:00
|
|
|
else {
|
2018-01-13 11:49:20 +00:00
|
|
|
if (configuration.model == MODEL_DMG) {
|
2017-05-23 20:18:16 +00:00
|
|
|
GB_init(&gb);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
else {
|
2017-05-23 20:18:16 +00:00
|
|
|
GB_init_cgb(&gb);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
2017-05-23 20:18:16 +00:00
|
|
|
|
|
|
|
GB_set_vblank_callback(&gb, (GB_vblank_callback_t) vblank);
|
2017-12-23 15:41:47 +00:00
|
|
|
GB_set_pixels_output(&gb, active_pixel_buffer);
|
2017-05-23 20:18:16 +00:00
|
|
|
GB_set_rgb_encode_callback(&gb, rgb_encode);
|
|
|
|
GB_set_sample_rate(&gb, have_aspec.freq);
|
2017-12-22 20:25:53 +00:00
|
|
|
GB_set_color_correction_mode(&gb, configuration.color_correction_mode);
|
2017-12-23 19:11:44 +00:00
|
|
|
GB_set_highpass_filter_mode(&gb, configuration.highpass_mode);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
2017-05-23 20:18:16 +00:00
|
|
|
|
2017-05-27 16:16:07 +00:00
|
|
|
bool error = false;
|
2017-05-25 20:28:48 +00:00
|
|
|
start_capturing_logs();
|
2018-01-13 11:49:20 +00:00
|
|
|
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]));
|
2017-05-27 16:16:07 +00:00
|
|
|
end_capturing_logs(true, error);
|
2017-05-23 20:18:16 +00:00
|
|
|
|
2017-05-25 20:28:48 +00:00
|
|
|
start_capturing_logs();
|
2017-05-27 16:16:07 +00:00
|
|
|
error = GB_load_rom(&gb, filename);
|
|
|
|
end_capturing_logs(true, error);
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2016-07-18 11:37:06 +00:00
|
|
|
size_t path_length = strlen(filename);
|
2017-05-23 20:18:16 +00:00
|
|
|
|
2016-07-17 20:08:07 +00:00
|
|
|
/* Configure battery */
|
|
|
|
char battery_save_path[path_length + 5]; /* At the worst case, size is strlen(path) + 4 bytes for .sav + NULL */
|
2016-07-18 11:37:06 +00:00
|
|
|
replace_extension(filename, path_length, battery_save_path, ".sav");
|
2017-05-21 18:44:28 +00:00
|
|
|
battery_save_path_ptr = battery_save_path;
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_load_battery(&gb, battery_save_path);
|
2017-05-23 20:18:16 +00:00
|
|
|
|
2016-07-17 20:08:07 +00:00
|
|
|
/* Configure symbols */
|
2017-02-20 12:37:15 +00:00
|
|
|
GB_debugger_load_symbol_file(&gb, executable_relative_path("registers.sym"));
|
|
|
|
|
2016-07-17 20:08:07 +00:00
|
|
|
char symbols_path[path_length + 5];
|
2016-07-18 11:37:06 +00:00
|
|
|
replace_extension(filename, path_length, symbols_path, ".sym");
|
2016-07-17 20:08:07 +00:00
|
|
|
GB_debugger_load_symbol_file(&gb, symbols_path);
|
2016-05-23 19:22:09 +00:00
|
|
|
|
|
|
|
/* Run emulation */
|
2017-05-21 18:44:28 +00:00
|
|
|
while (true) {
|
2017-05-24 17:33:39 +00:00
|
|
|
if (paused) {
|
|
|
|
SDL_WaitEvent(NULL);
|
|
|
|
handle_events(&gb);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
GB_run(&gb);
|
|
|
|
}
|
2017-05-24 18:44:43 +00:00
|
|
|
|
|
|
|
/* These commands can't run in the handle_event function, because they're not safe in a vblank context. */
|
|
|
|
if (handle_pending_command()) {
|
|
|
|
pending_command = GB_SDL_NO_COMMAND;
|
|
|
|
goto restart;
|
2017-05-21 18:44:28 +00:00
|
|
|
}
|
|
|
|
pending_command = GB_SDL_NO_COMMAND;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-23 15:29:42 +00:00
|
|
|
|
2017-12-28 19:46:59 +00:00
|
|
|
static char prefs_path[1024] = {0, };
|
|
|
|
|
|
|
|
static void save_configuration(void)
|
|
|
|
{
|
|
|
|
FILE *prefs_file = fopen(prefs_path, "wb");
|
|
|
|
if (prefs_file) {
|
|
|
|
fwrite(&configuration, 1, sizeof(configuration), prefs_file);
|
|
|
|
fclose(prefs_file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-23 20:18:16 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
#define str(x) #x
|
|
|
|
#define xstr(x) str(x)
|
|
|
|
fprintf(stderr, "SameBoy v" xstr(VERSION) "\n");
|
|
|
|
|
2018-01-13 11:49:20 +00:00
|
|
|
if (argc > 2) {
|
|
|
|
fprintf(stderr, "Usage: %s [rom]\n", argv[0]);
|
2017-05-23 20:18:16 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2018-01-13 11:49:20 +00:00
|
|
|
if (argc == 2) {
|
2018-01-22 20:25:27 +00:00
|
|
|
filename = argv[1];
|
2017-05-23 20:18:16 +00:00
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2017-05-23 20:18:16 +00:00
|
|
|
signal(SIGINT, debugger_interrupt);
|
|
|
|
|
|
|
|
SDL_Init( SDL_INIT_EVERYTHING );
|
|
|
|
|
2017-12-23 15:29:42 +00:00
|
|
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 2);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
|
|
|
|
|
2017-05-23 20:18:16 +00:00
|
|
|
window = SDL_CreateWindow("SameBoy v" xstr(VERSION), SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
|
2017-12-23 15:29:42 +00:00
|
|
|
160 * 2, 144 * 2, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI);
|
2017-05-24 17:33:39 +00:00
|
|
|
SDL_SetWindowMinimumSize(window, 160, 144);
|
2017-05-23 20:18:16 +00:00
|
|
|
|
2017-12-23 15:29:42 +00:00
|
|
|
SDL_GLContext gl_context = SDL_GL_CreateContext(window);
|
2017-12-28 22:43:19 +00:00
|
|
|
|
2017-12-30 15:01:23 +00:00
|
|
|
GLint major = 0, minor = 0;
|
2017-12-28 22:43:19 +00:00
|
|
|
glGetIntegerv(GL_MAJOR_VERSION, &major);
|
|
|
|
glGetIntegerv(GL_MINOR_VERSION, &minor);
|
|
|
|
|
|
|
|
if (major * 0x100 + minor < 0x302) {
|
|
|
|
SDL_GL_DeleteContext(gl_context);
|
|
|
|
gl_context = NULL;
|
|
|
|
}
|
|
|
|
|
2017-12-23 15:29:42 +00:00
|
|
|
if (gl_context == NULL) {
|
|
|
|
renderer = SDL_CreateRenderer(window, -1, 0);
|
|
|
|
texture = SDL_CreateTexture(renderer, SDL_GetWindowPixelFormat(window), SDL_TEXTUREACCESS_STREAMING, 160, 144);
|
|
|
|
pixel_format = SDL_AllocFormat(SDL_GetWindowPixelFormat(window));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pixel_format = SDL_AllocFormat(SDL_PIXELFORMAT_ABGR8888);
|
|
|
|
}
|
|
|
|
|
2017-05-23 20:18:16 +00:00
|
|
|
|
|
|
|
/* Configure Audio */
|
|
|
|
memset(&want_aspec, 0, sizeof(want_aspec));
|
|
|
|
want_aspec.freq = AUDIO_FREQUENCY;
|
|
|
|
want_aspec.format = AUDIO_S16SYS;
|
|
|
|
want_aspec.channels = 2;
|
2018-03-27 20:05:08 +00:00
|
|
|
printf("SDL version is %d\n", SDL_COMPILEDVERSION);
|
|
|
|
#if SDL_COMPILEDVERSION >= 2005 && defined(__APPLE__)
|
2017-05-27 09:29:36 +00:00
|
|
|
/* SDL 2.0.5 on macOS introduced a bug where certain combinations of buffer lengths and frequencies
|
2018-03-27 20:05:08 +00:00
|
|
|
fail to produce audio correctly. */
|
2017-05-23 20:18:16 +00:00
|
|
|
want_aspec.samples = 2048;
|
2017-05-27 09:29:36 +00:00
|
|
|
#else
|
|
|
|
want_aspec.samples = 512;
|
|
|
|
#endif
|
2018-04-22 13:22:10 +00:00
|
|
|
|
2018-04-22 14:20:11 +00:00
|
|
|
#if SDL_COMPILEDVERSION >= 2006 && defined(_WIN32)
|
2018-04-22 13:22:10 +00:00
|
|
|
/* SDL 2.0.6 offers WASAPI support which allows for much lower audio buffer lengths which at least
|
|
|
|
theoretically reduces lagging. */
|
|
|
|
printf("SDL 2.0.6+ detected, reducing audio buffer to 32 samples\n");
|
|
|
|
want_aspec.samples = 32;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SDL_COMPILEDVERSION <= 2005 && defined(_WIN32)
|
|
|
|
/* Since WASAPI audio was introduced in SDL 2.0.6, we have to lower the audio frequency
|
|
|
|
to 44100 because otherwise we would get garbled audio output.*/
|
|
|
|
printf("Fallback: SDL 2.0.5 detected, lowering audio freqency to 44100\n");
|
|
|
|
want_aspec.freq = 44100;
|
|
|
|
#endif
|
|
|
|
|
2017-05-23 20:18:16 +00:00
|
|
|
want_aspec.callback = audio_callback;
|
|
|
|
want_aspec.userdata = &gb;
|
2018-04-22 13:22:10 +00:00
|
|
|
deviceId = SDL_OpenAudioDevice(0, 0, &want_aspec, &have_aspec, SDL_AUDIO_ALLOW_FREQUENCY_CHANGE);
|
2017-05-23 20:18:16 +00:00
|
|
|
|
|
|
|
/* Start Audio */
|
|
|
|
|
|
|
|
SDL_EventState(SDL_DROPFILE, SDL_ENABLE);
|
|
|
|
|
2017-12-28 19:46:59 +00:00
|
|
|
char *prefs_dir = SDL_GetPrefPath("", "SameBoy");
|
|
|
|
snprintf(prefs_path, sizeof(prefs_path) - 1, "%sprefs.bin", prefs_dir);
|
|
|
|
SDL_free(prefs_dir);
|
|
|
|
|
|
|
|
FILE *prefs_file = fopen(prefs_path, "rb");
|
|
|
|
if (prefs_file) {
|
|
|
|
fread(&configuration, 1, sizeof(configuration), prefs_file);
|
|
|
|
fclose(prefs_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
atexit(save_configuration);
|
|
|
|
|
2017-12-23 15:29:42 +00:00
|
|
|
if (!init_shader_with_name(&shader, configuration.filter)) {
|
|
|
|
init_shader_with_name(&shader, "NearestNeighbor");
|
|
|
|
}
|
|
|
|
update_viewport();
|
|
|
|
|
2017-05-23 20:18:16 +00:00
|
|
|
if (filename == NULL) {
|
2017-10-13 22:41:51 +00:00
|
|
|
run_gui(false);
|
2017-05-23 20:18:16 +00:00
|
|
|
}
|
2018-04-22 13:22:10 +00:00
|
|
|
SDL_PauseAudioDevice(deviceId, 0);
|
2017-05-23 20:18:16 +00:00
|
|
|
run(); // Never returns
|
|
|
|
return 0;
|
|
|
|
}
|