SameBoy/SDL/gui.h

63 lines
1.3 KiB
C
Raw Normal View History

2017-10-04 09:43:31 +00:00
#ifndef gui_h
#define gui_h
#include <SDL2/SDL.h>
#include <Core/gb.h>
2017-12-23 15:29:42 +00:00
#include "shader.h"
2017-10-04 09:43:31 +00:00
extern SDL_Window *window;
extern SDL_Renderer *renderer;
extern SDL_Texture *texture;
extern SDL_PixelFormat *pixel_format;
2017-12-23 15:29:42 +00:00
extern shader_t shader;
2017-10-04 09:43:31 +00:00
enum scaling_mode {
GB_SDL_SCALING_ENTIRE_WINDOW,
GB_SDL_SCALING_KEEP_RATIO,
GB_SDL_SCALING_INTEGER_FACTOR,
GB_SDL_SCALING_MAX,
};
2017-10-13 22:41:51 +00:00
enum pending_command {
GB_SDL_NO_COMMAND,
GB_SDL_SAVE_STATE_COMMAND,
GB_SDL_LOAD_STATE_COMMAND,
GB_SDL_RESET_COMMAND,
GB_SDL_NEW_FILE_COMMAND,
GB_SDL_QUIT_COMMAND,
2017-10-13 22:41:51 +00:00
};
extern enum pending_command pending_command;
extern unsigned command_parameter;
2017-12-22 20:25:53 +00:00
typedef struct {
SDL_Scancode keys[9];
GB_color_correction_mode_t color_correction_mode;
enum scaling_mode scaling_mode;
2017-12-23 15:41:47 +00:00
bool blend_frames;
2017-12-22 22:39:04 +00:00
2017-12-23 19:11:44 +00:00
GB_highpass_mode_t highpass_mode;
2017-12-22 22:39:04 +00:00
bool div_joystick;
bool flip_joystick_bit_1;
bool swap_joysticks_bits_1_and_2;
2017-12-23 15:29:42 +00:00
char filter[32];
enum {
MODEL_DMG,
MODEL_CGB,
MODEL_AGB,
MODEL_MAX,
} model;
2017-12-22 20:25:53 +00:00
} configuration_t;
extern configuration_t configuration;
2017-10-13 22:41:51 +00:00
2017-10-04 09:43:31 +00:00
void update_viewport(void);
2017-10-13 22:41:51 +00:00
void run_gui(bool is_running);
2017-12-22 22:39:04 +00:00
unsigned fix_joypad_button(unsigned button);
2017-12-28 18:22:54 +00:00
unsigned fix_joypad_axis(unsigned axis);
2017-12-23 15:29:42 +00:00
void render_texture(void *pixels, void *previous);
2017-12-22 22:39:04 +00:00
2017-10-04 09:43:31 +00:00
#endif