aboutsummaryrefslogtreecommitdiff
path: root/frontend/plat_sdl.c
blob: 19d7ac07418ff7945ae5422edd1a260997dbcd95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/*
 * (C) Gražvydas "notaz" Ignotas, 2011,2012
 *
 * This work is licensed under the terms of any of these licenses
 * (at your option):
 *  - GNU GPL, version 2 or later.
 *  - GNU LGPL, version 2.1 or later.
 * See the COPYING file in the top-level directory.
 */

#include <stdio.h>
#include <SDL.h>
#include "common/input.h"
#include "common/in_sdl.h"
#include "common/menu.h"
#include "plugin_lib.h"
#include "main.h"
#include "plat.h"
#include "revision.h"

static const struct in_default_bind in_sdl_defbinds[] = {
	{ SDLK_UP,	IN_BINDTYPE_PLAYER12, DKEY_UP },
	{ SDLK_DOWN,	IN_BINDTYPE_PLAYER12, DKEY_DOWN },
	{ SDLK_LEFT,	IN_BINDTYPE_PLAYER12, DKEY_LEFT },
	{ SDLK_RIGHT,	IN_BINDTYPE_PLAYER12, DKEY_RIGHT },
	{ SDLK_d,	IN_BINDTYPE_PLAYER12, DKEY_TRIANGLE },
	{ SDLK_z,	IN_BINDTYPE_PLAYER12, DKEY_CROSS },
	{ SDLK_x,	IN_BINDTYPE_PLAYER12, DKEY_CIRCLE },
	{ SDLK_s,	IN_BINDTYPE_PLAYER12, DKEY_SQUARE },
	{ SDLK_v,	IN_BINDTYPE_PLAYER12, DKEY_START },
	{ SDLK_c,	IN_BINDTYPE_PLAYER12, DKEY_SELECT },
	{ SDLK_w,	IN_BINDTYPE_PLAYER12, DKEY_L1 },
	{ SDLK_r,	IN_BINDTYPE_PLAYER12, DKEY_R1 },
	{ SDLK_e,	IN_BINDTYPE_PLAYER12, DKEY_L2 },
	{ SDLK_t,	IN_BINDTYPE_PLAYER12, DKEY_R2 },
	{ SDLK_ESCAPE,	IN_BINDTYPE_EMU, SACTION_ENTER_MENU },
	{ 0, 0, 0 }
};

static SDL_Surface *screen;

static int change_video_mode(int w, int h)
{
  screen = SDL_SetVideoMode(w, h, 16, 0);
  if (screen == NULL) {
    fprintf(stderr, "SDL_SetVideoMode failed: %s\n", SDL_GetError());
    return -1;
  }

  return 0;
}

void plat_init(void)
{
  int ret;

  ret = SDL_Init(SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE);
  if (ret != 0) {
    fprintf(stderr, "SDL_Init failed: %s\n", SDL_GetError());
    exit(1);
  }

  g_menuscreen_w = 640;
  g_menuscreen_h = 480;
  ret = change_video_mode(g_menuscreen_w, g_menuscreen_h);
  if (ret != 0) {
    ret = change_video_mode(0, 0);
    if (ret != 0)
      goto fail;

    if (screen->w < 320 || screen->h < 240) {
      fprintf(stderr, "resolution %dx%d is too small, sorry.\n",
              screen->w, screen->h);
      goto fail;
    }
    g_menuscreen_w = screen->w;
    g_menuscreen_h = screen->h;
  }
  SDL_WM_SetCaption("PCSX-ReARMed " REV, NULL);

  in_sdl_init(in_sdl_defbinds);
  in_probe();
  return;

fail:
  SDL_Quit();
  exit(1);
}

void plat_finish(void)
{
  SDL_Quit();
}

void plat_gvideo_open(void)
{
}

void *plat_gvideo_set_mode(int *w, int *h, int *bpp)
{
  change_video_mode(*w, *h);
  return screen->pixels;
}

void *plat_gvideo_flip(void)
{
  SDL_Flip(screen);
  return screen->pixels;
}

void plat_gvideo_close(void)
{
}

void plat_video_menu_enter(int is_rom_loaded)
{
  change_video_mode(g_menuscreen_w, g_menuscreen_h);
}

void plat_video_menu_begin(void)
{
  SDL_LockSurface(screen);
  g_menuscreen_ptr = screen->pixels;
}

void plat_video_menu_end(void)
{
  SDL_UnlockSurface(screen);
  SDL_Flip(screen);
  g_menuscreen_ptr = NULL;
}

void plat_video_menu_leave(void)
{
}

/* unused stuff */
void *plat_prepare_screenshot(int *w, int *h, int *bpp)
{
  return 0;
}

int plat_cpu_clock_get(void)
{
  return -1;
}

int plat_cpu_clock_apply(int cpu_clock)
{
  return -1;
}

int plat_get_bat_capacity(void)
{
  return -1;
}

void plat_step_volume(int is_up)
{
}

void plat_trigger_vibrate(int is_strong)
{
}

void plat_minimize(void)
{
}

// vim:shiftwidth=2:expandtab