Initial multitap support
[pcsx_rearmed.git] / frontend / plugin_lib.c
CommitLineData
b60f2812 1/*
8f892648 2 * (C) notaz, 2010-2011
b60f2812 3 *
4 * This work is licensed under the terms of the GNU GPLv2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7
8#include <stdio.h>
9#include <stdlib.h>
69af03a2 10#include <string.h>
11#include <stdarg.h>
799b0b87 12#include <stdint.h>
72228559 13#include <sys/time.h>
14#include <sys/types.h>
15#include <sys/stat.h>
16#include <fcntl.h>
17#include <unistd.h>
7c0f51de 18#include <pthread.h>
b60f2812 19
cc56203b 20#include "libpicofe/fonts.h"
21#include "libpicofe/input.h"
22#include "libpicofe/plat.h"
23#include "libpicofe/arm/neon_scale2x.h"
24#include "libpicofe/arm/neon_eagle2x.h"
72228559 25#include "plugin_lib.h"
3c70c47b 26#include "menu.h"
8f892648 27#include "main.h"
47821672 28#include "plat.h"
72228559 29#include "pcnt.h"
4c08b9e7 30#include "pl_gun_ts.h"
c82f907a 31#include "cspace.h"
da710571 32#include "psemu_plugin_defs.h"
69af03a2 33#include "../libpcsxcore/new_dynarec/new_dynarec.h"
87e5b45f 34#include "../libpcsxcore/psxmem_map.h"
e4c83ca6 35#include "../plugins/dfinput/externals.h"
b60f2812 36
92a5fe88 37#define HUD_HEIGHT 10
38
61c4962a 39int in_type[8];
40int in_analog_left[8][2] = {{ 127, 127 },{ 127, 127 },{ 127, 127 },{ 127, 127 },{ 127, 127 },{ 127, 127 },{ 127, 127 },{ 127, 127 }};
41int in_analog_right[8][2] = {{ 127, 127 },{ 127, 127 },{ 127, 127 },{ 127, 127 },{ 127, 127 },{ 127, 127 },{ 127, 127 },{ 127, 127 }};
42//int in_a1[2] = { 127, 127 }, in_a2[2] = { 127, 127 };
1b0c5139 43int in_adev[2] = { -1, -1 }, in_adev_axis[2][2] = {{ 0, 1 }, { 0, 1 }};
2c5d0a55 44int in_adev_is_nublike[2];
4c08b9e7 45int in_keystate, in_state_gun;
b944a30e 46int in_enable_vibration;
faf2b2aa 47void *tsdev;
76f7048e 48void *pl_vout_buf;
6469a8c4 49int g_layer_x, g_layer_y, g_layer_w, g_layer_h;
ddc0a02a 50static int pl_vout_w, pl_vout_h, pl_vout_bpp; /* output display/layer */
7cfc0c66 51static int pl_vout_scale_w, pl_vout_scale_h, pl_vout_yoffset;
ddc0a02a 52static int psx_w, psx_h, psx_bpp;
a92f6af1 53static int vsync_cnt;
ab423939 54static int is_pal, frame_interval, frame_interval1024;
55static int vsync_usec_time;
72228559 56
c9099d02 57// platform hooks
58void (*pl_plat_clear)(void);
59void (*pl_plat_blit)(int doffs, const void *src, int w, int h,
60 int sstride, int bgr24);
61void (*pl_plat_hud_print)(int x, int y, const char *str, int bpp);
62
4c08b9e7 63
64static __attribute__((noinline)) int get_cpu_ticks(void)
72228559 65{
66 static unsigned long last_utime;
67 static int fd;
68 unsigned long utime, ret;
69 char buf[128];
70
71 if (fd == 0)
72 fd = open("/proc/self/stat", O_RDONLY);
73 lseek(fd, 0, SEEK_SET);
74 buf[0] = 0;
75 read(fd, buf, sizeof(buf));
76 buf[sizeof(buf) - 1] = 0;
77
78 sscanf(buf, "%*d %*s %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u %*u %lu", &utime);
79 ret = utime - last_utime;
c9099d02 80 if (ret > 200)
81 ret = 0;
72228559 82 last_utime = utime;
83 return ret;
84}
85
c9099d02 86static void hud_print(void *fb, int w, int x, int y, const char *text)
87{
88 if (pl_plat_hud_print)
89 pl_plat_hud_print(x, y, text, pl_vout_bpp);
90 else if (pl_vout_bpp == 16)
91 basic_text_out16_nf(fb, w, x, y, text);
92}
93
94static void hud_printf(void *fb, int w, int x, int y, const char *texto, ...)
95{
96 va_list args;
97 char buffer[256];
98
99 va_start(args, texto);
100 vsnprintf(buffer, sizeof(buffer), texto, args);
101 va_end(args);
102
103 hud_print(fb, w, x, y, buffer);
104}
105
41f55c9f 106static void print_msg(int h, int border)
8f892648 107{
92a5fe88 108 hud_print(pl_vout_buf, pl_vout_w, border + 2, h - HUD_HEIGHT, hud_msg);
8f892648 109}
110
41f55c9f 111static void print_fps(int h, int border)
72228559 112{
92a5fe88 113 hud_printf(pl_vout_buf, pl_vout_w, border + 2, h - HUD_HEIGHT,
c9099d02 114 "%2d %4.1f", pl_rearmed_cbs.flips_per_sec,
115 pl_rearmed_cbs.vsps_cur);
72228559 116}
117
41f55c9f 118static void print_cpu_usage(int w, int h, int border)
72228559 119{
92a5fe88 120 hud_printf(pl_vout_buf, pl_vout_w, pl_vout_w - border - 28,
121 h - HUD_HEIGHT, "%3d", pl_rearmed_cbs.cpu_usage);
72228559 122}
b60f2812 123
90f1d26c 124// draw 192x8 status of 24 sound channels
55b0eeea 125static __attribute__((noinline)) void draw_active_chans(int vout_w, int vout_h)
90f1d26c 126{
174c454a 127 extern void spu_get_debug_info(int *chans_out, int *run_chans,
128 int *fmod_chans_out, int *noise_chans_out); // hack
129 int live_chans, run_chans, fmod_chans, noise_chans;
90f1d26c 130
131 static const unsigned short colors[2] = { 0x1fe3, 0x0700 };
76f7048e 132 unsigned short *dest = (unsigned short *)pl_vout_buf +
92a5fe88 133 vout_w * (vout_h - HUD_HEIGHT) + vout_w / 2 - 192/2;
90f1d26c 134 unsigned short *d, p;
135 int c, x, y;
136
c9099d02 137 if (dest == NULL || pl_vout_bpp != 16)
90f1d26c 138 return;
139
174c454a 140 spu_get_debug_info(&live_chans, &run_chans, &fmod_chans, &noise_chans);
90f1d26c 141
142 for (c = 0; c < 24; c++) {
143 d = dest + c * 8;
174c454a 144 p = !(live_chans & (1<<c)) ? (run_chans & (1<<c) ? 0x01c0 : 0) :
90f1d26c 145 (fmod_chans & (1<<c)) ? 0xf000 :
146 (noise_chans & (1<<c)) ? 0x001f :
147 colors[c & 1];
55b0eeea 148 for (y = 0; y < 8; y++, d += vout_w)
90f1d26c 149 for (x = 0; x < 8; x++)
150 d[x] = p;
151 }
152}
153
02783d0b 154static void print_hud(int w, int h, int xborder)
55b0eeea 155{
aafcb4dd 156 if (h < 16)
157 return;
158
02783d0b 159 if (w < pl_vout_w)
160 xborder += (pl_vout_w - w) / 2;
161 if (h > pl_vout_h)
162 h = pl_vout_h;
841ba5ee 163
55b0eeea 164 if (g_opts & OPT_SHOWSPU)
165 draw_active_chans(w, h);
166
167 if (hud_msg[0] != 0)
41f55c9f 168 print_msg(h, xborder);
55b0eeea 169 else if (g_opts & OPT_SHOWFPS)
41f55c9f 170 print_fps(h, xborder);
55b0eeea 171
172 if (g_opts & OPT_SHOWCPU)
41f55c9f 173 print_cpu_usage(w, h, xborder);
55b0eeea 174}
175
9e5ac38f 176/* update scaler target size according to user settings */
177static void update_layer_size(int w, int h)
178{
179 float mult;
180 int imult;
181
182 switch (g_scaler) {
183 case SCALE_1_1:
184 g_layer_w = w; g_layer_h = h;
185 break;
186
efcf1f73 187 case SCALE_2_2:
188 g_layer_w = w; g_layer_h = h;
189 if (w * 2 <= g_menuscreen_w)
190 g_layer_w = w * 2;
191 if (h * 2 <= g_menuscreen_h)
192 g_layer_h = h * 2;
193 break;
194
9e5ac38f 195 case SCALE_4_3v2:
196 if (h > g_menuscreen_h || (240 < h && h <= 360))
197 goto fractional_4_3;
198
199 // 4:3 that prefers integer scaling
200 imult = g_menuscreen_h / h;
201 g_layer_w = w * imult;
202 g_layer_h = h * imult;
203 mult = (float)g_layer_w / (float)g_layer_h;
204 if (mult < 1.25f || mult > 1.666f)
205 g_layer_w = 4.0f/3.0f * (float)g_layer_h;
206 printf(" -> %dx%d %.1f\n", g_layer_w, g_layer_h, mult);
207 break;
208
209 fractional_4_3:
210 case SCALE_4_3:
211 mult = 240.0f / (float)h * 4.0f / 3.0f;
212 if (h > 256)
213 mult *= 2.0f;
214 g_layer_w = mult * (float)g_menuscreen_h;
215 g_layer_h = g_menuscreen_h;
216 printf(" -> %dx%d %.1f\n", g_layer_w, g_layer_h, mult);
217 break;
218
219 case SCALE_FULLSCREEN:
220 g_layer_w = g_menuscreen_w;
221 g_layer_h = g_menuscreen_h;
222 break;
223
224 default:
225 break;
226 }
227
228 g_layer_x = g_menuscreen_w / 2 - g_layer_w / 2;
229 g_layer_y = g_menuscreen_h / 2 - g_layer_h / 2;
230 if (g_layer_x < 0) g_layer_x = 0;
231 if (g_layer_y < 0) g_layer_y = 0;
232 if (g_layer_w > g_menuscreen_w) g_layer_w = g_menuscreen_w;
233 if (g_layer_h > g_menuscreen_h) g_layer_h = g_menuscreen_h;
234}
235
fa56d360 236// XXX: this is platform specific really
7cfc0c66 237static inline int resolution_ok(int w, int h)
69af03a2 238{
fa56d360 239 return w <= 1024 && h <= 512;
240}
241
e4c83ca6 242static void pl_vout_set_mode(int w, int h, int raw_w, int raw_h, int bpp)
fa56d360 243{
244 int vout_w, vout_h, vout_bpp;
0fed3dc3 245 int buf_yoffset = 0;
fa56d360 246
a185be70 247 // special h handling, Wipeout likes to change it by 1-6
321ca84d 248 static int vsync_cnt_ms_prev;
249 if ((unsigned int)(vsync_cnt - vsync_cnt_ms_prev) < 5*60)
250 h = (h + 7) & ~7;
251 vsync_cnt_ms_prev = vsync_cnt;
a185be70 252
e4c83ca6 253 psx_w = raw_w;
254 psx_h = raw_h;
468072a1 255 psx_bpp = bpp;
e4c83ca6 256 vout_w = w;
257 vout_h = h;
468072a1 258 vout_bpp = bpp;
259 if (pl_rearmed_cbs.only_16bpp)
260 vout_bpp = 16;
fa56d360 261
0fed3dc3 262 // don't use very low heights
263 if (vout_h < 192) {
264 buf_yoffset = (192 - vout_h) / 2;
265 vout_h = 192;
266 }
267
7cfc0c66 268 pl_vout_scale_w = pl_vout_scale_h = 1;
fa56d360 269#ifdef __ARM_NEON__
270 if (soft_filter) {
271 if (resolution_ok(w * 2, h * 2) && bpp == 16) {
7cfc0c66 272 pl_vout_scale_w = 2;
273 pl_vout_scale_h = 2;
fa56d360 274 }
275 else {
276 // filter unavailable
277 hud_msg[0] = 0;
278 }
279 }
7cfc0c66 280 else if (scanlines != 0 && scanline_level != 100 && bpp == 16) {
281 if (h <= 256)
282 pl_vout_scale_h = 2;
283 }
fa56d360 284#endif
7cfc0c66 285 vout_w *= pl_vout_scale_w;
286 vout_h *= pl_vout_scale_h;
b60f2812 287
fa56d360 288 update_layer_size(vout_w, vout_h);
9e5ac38f 289
fa56d360 290 pl_vout_buf = plat_gvideo_set_mode(&vout_w, &vout_h, &vout_bpp);
c9099d02 291 if (pl_vout_buf == NULL && pl_plat_blit == NULL)
ddc0a02a 292 fprintf(stderr, "failed to set mode %dx%d@%d\n",
468072a1 293 vout_w, vout_h, vout_bpp);
fa56d360 294 else {
295 pl_vout_w = vout_w;
296 pl_vout_h = vout_h;
297 pl_vout_bpp = vout_bpp;
0fed3dc3 298 pl_vout_yoffset = buf_yoffset;
fa56d360 299 }
0fed3dc3 300 if (pl_vout_buf != NULL)
301 pl_vout_buf = (char *)pl_vout_buf
302 + pl_vout_yoffset * pl_vout_w * pl_vout_bpp / 8;
a185be70 303
ddc0a02a 304 menu_notify_mode_change(pl_vout_w, pl_vout_h, pl_vout_bpp);
69af03a2 305}
306
fa56d360 307static void pl_vout_flip(const void *vram, int stride, int bgr24, int w, int h)
69af03a2 308{
fa56d360 309 static int doffs_old, clear_counter;
310 unsigned char *dest = pl_vout_buf;
311 const unsigned short *src = vram;
312 int dstride = pl_vout_w, h1 = h;
313 int doffs;
314
cc56203b 315 pcnt_start(PCNT_BLIT);
316
fa56d360 317 if (vram == NULL) {
318 // blanking
c9099d02 319 if (pl_plat_clear)
320 pl_plat_clear();
321 else
322 memset(pl_vout_buf, 0,
323 dstride * pl_vout_h * pl_vout_bpp / 8);
324 goto out_hud;
fa56d360 325 }
326
327 // borders
7cfc0c66 328 doffs = (dstride - w * pl_vout_scale_w) / 2 & ~1;
fa56d360 329
330 if (doffs > doffs_old)
331 clear_counter = 2;
332 doffs_old = doffs;
333
334 if (clear_counter > 0) {
c9099d02 335 if (pl_plat_clear)
336 pl_plat_clear();
337 else
338 memset(pl_vout_buf, 0,
339 dstride * pl_vout_h * pl_vout_bpp / 8);
fa56d360 340 clear_counter--;
341 }
342
c9099d02 343 if (pl_plat_blit)
344 {
345 pl_plat_blit(doffs, src, w, h, stride, bgr24);
346 goto out_hud;
347 }
348
349 if (dest == NULL)
350 goto out;
351
352 dest += doffs * 2;
353
fa56d360 354 if (bgr24)
355 {
356 if (pl_rearmed_cbs.only_16bpp) {
357 for (; h1-- > 0; dest += dstride * 2, src += stride)
358 {
359 bgr888_to_rgb565(dest, src, w * 3);
360 }
361 }
362 else {
363 dest -= doffs * 2;
364 dest += (doffs / 8) * 24;
365
366 for (; h1-- > 0; dest += dstride * 3, src += stride)
367 {
368 bgr888_to_rgb888(dest, src, w * 3);
369 }
370 }
371 }
372#ifdef __ARM_NEON__
7cfc0c66 373 else if (soft_filter == SOFT_FILTER_SCALE2X && pl_vout_scale_w == 2)
fa56d360 374 {
375 neon_scale2x_16_16(src, (void *)dest, w,
c9099d02 376 stride * 2, dstride * 2, h);
fa56d360 377 }
7cfc0c66 378 else if (soft_filter == SOFT_FILTER_EAGLE2X && pl_vout_scale_w == 2)
fa56d360 379 {
380 neon_eagle2x_16_16(src, (void *)dest, w,
c9099d02 381 stride * 2, dstride * 2, h);
fa56d360 382 }
35d3fd2e 383 else if (scanlines != 0 && scanline_level != 100)
384 {
385 int l = scanline_level * 2048 / 100;
7cfc0c66 386 int stride_0 = pl_vout_scale_h >= 2 ? 0 : stride;
35d3fd2e 387
7cfc0c66 388 h1 *= pl_vout_scale_h;
35d3fd2e 389 for (; h1 >= 2; h1 -= 2)
390 {
391 bgr555_to_rgb565(dest, src, w * 2);
7cfc0c66 392 dest += dstride * 2, src += stride_0;
35d3fd2e 393
394 bgr555_to_rgb565_b(dest, src, w * 2, l);
395 dest += dstride * 2, src += stride;
396 }
397 }
fa56d360 398#endif
399 else
400 {
401 for (; h1-- > 0; dest += dstride * 2, src += stride)
402 {
403 bgr555_to_rgb565(dest, src, w * 2);
404 }
405 }
8f892648 406
c9099d02 407out_hud:
7cfc0c66 408 print_hud(w * pl_vout_scale_w, h * pl_vout_scale_h, 0);
72228559 409
fa56d360 410out:
cc56203b 411 pcnt_end(PCNT_BLIT);
412
69af03a2 413 // let's flip now
6469a8c4 414 pl_vout_buf = plat_gvideo_flip();
0fed3dc3 415 if (pl_vout_buf != NULL)
416 pl_vout_buf = (char *)pl_vout_buf
417 + pl_vout_yoffset * pl_vout_w * pl_vout_bpp / 8;
418
fa56d360 419 pl_rearmed_cbs.flip_cnt++;
b60f2812 420}
421
76f7048e 422static int pl_vout_open(void)
6d1a1ac2 423{
cefe86b7 424 struct timeval now;
425
fa56d360 426 // force mode update on pl_vout_set_mode() call from gpulib/vout_pl
427 pl_vout_buf = NULL;
cefe86b7 428
ab423939 429 plat_gvideo_open(is_pal);
76f7048e 430
cefe86b7 431 gettimeofday(&now, 0);
432 vsync_usec_time = now.tv_usec;
76f7048e 433 while (vsync_usec_time >= frame_interval)
434 vsync_usec_time -= frame_interval;
cefe86b7 435
6d1a1ac2 436 return 0;
437}
438
76f7048e 439static void pl_vout_close(void)
b60f2812 440{
6469a8c4 441 plat_gvideo_close();
b60f2812 442}
443
fa56d360 444static void pl_set_gpu_caps(int caps)
445{
446 pl_rearmed_cbs.gpu_caps = caps;
447}
448
29a8c4f3 449void *pl_prepare_screenshot(int *w, int *h, int *bpp)
450{
6469a8c4 451 void *ret = plat_prepare_screenshot(w, h, bpp);
452 if (ret != NULL)
453 return ret;
454
76f7048e 455 *w = pl_vout_w;
456 *h = pl_vout_h;
457 *bpp = pl_vout_bpp;
29a8c4f3 458
76f7048e 459 return pl_vout_buf;
29a8c4f3 460}
461
fa56d360 462/* display/redering mode switcher */
463static int dispmode_default(void)
464{
465 pl_rearmed_cbs.gpu_neon.enhancement_enable = 0;
466 soft_filter = SOFT_FILTER_NONE;
467 snprintf(hud_msg, sizeof(hud_msg), "default mode");
468 return 1;
469}
470
7cfc0c66 471#ifdef __ARM_NEON__
472static int dispmode_doubleres(void)
fa56d360 473{
474 if (!(pl_rearmed_cbs.gpu_caps & GPU_CAP_SUPPORTS_2X)
475 || !resolution_ok(psx_w * 2, psx_h * 2) || psx_bpp != 16)
476 return 0;
477
478 dispmode_default();
479 pl_rearmed_cbs.gpu_neon.enhancement_enable = 1;
480 snprintf(hud_msg, sizeof(hud_msg), "double resolution");
481 return 1;
482}
483
7cfc0c66 484static int dispmode_scale2x(void)
fa56d360 485{
e4c83ca6 486 if (!resolution_ok(psx_w * 2, psx_h * 2) || psx_bpp != 16)
fa56d360 487 return 0;
488
489 dispmode_default();
490 soft_filter = SOFT_FILTER_SCALE2X;
491 snprintf(hud_msg, sizeof(hud_msg), "scale2x");
492 return 1;
493}
494
7cfc0c66 495static int dispmode_eagle2x(void)
fa56d360 496{
e4c83ca6 497 if (!resolution_ok(psx_w * 2, psx_h * 2) || psx_bpp != 16)
fa56d360 498 return 0;
499
500 dispmode_default();
501 soft_filter = SOFT_FILTER_EAGLE2X;
502 snprintf(hud_msg, sizeof(hud_msg), "eagle2x");
503 return 1;
504}
7cfc0c66 505#endif
fa56d360 506
507static int (*dispmode_switchers[])(void) = {
508 dispmode_default,
509#ifdef __ARM_NEON__
510 dispmode_doubleres,
511 dispmode_scale2x,
512 dispmode_eagle2x,
513#endif
514};
515
516static int dispmode_current;
517
518void pl_switch_dispmode(void)
519{
520 if (pl_rearmed_cbs.gpu_caps & GPU_CAP_OWNS_DISPLAY)
521 return;
522
523 while (1) {
524 dispmode_current++;
525 if (dispmode_current >=
526 sizeof(dispmode_switchers) / sizeof(dispmode_switchers[0]))
527 dispmode_current = 0;
528 if (dispmode_switchers[dispmode_current]())
529 break;
530 }
531}
532
1b0c5139 533#ifndef MAEMO
2c5d0a55 534/* adjust circle-like analog inputs to better match
535 * more square-like analogs in PSX */
536static void update_analog_nub_adjust(int *x_, int *y_)
537{
e4c83ca6 538 #define d 16
cc8ae53e 539 static const int scale[] =
540 { 0 - d*2, 0 - d*2, 0 - d*2, 12 - d*2,
541 30 - d*2, 60 - d*2, 75 - d*2, 60 - d*2, 60 - d*2 };
542 int x = abs(*x_);
543 int y = abs(*y_);
544 int scale_x = scale[y / 16];
545 int scale_y = scale[x / 16];
546
547 if (x) {
548 x += d + (x * scale_x >> 8);
549 if (*x_ < 0)
550 x = -x;
551 }
552 if (y) {
553 y += d + (y * scale_y >> 8);
554 if (*y_ < 0)
555 y = -y;
556 }
2c5d0a55 557
558 *x_ = x;
559 *y_ = y;
e4c83ca6 560 #undef d
2c5d0a55 561}
562
1b0c5139 563static void update_analogs(void)
564{
61c4962a 565 int *nubp[2] = { in_analog_left[0], in_analog_right[0] };
2c5d0a55 566 int vals[2];
1b0c5139 567 int i, a, v, ret;
568
569 for (i = 0; i < 2; i++)
570 {
571 if (in_adev[i] < 0)
572 continue;
573
574 for (a = 0; a < 2; a++) {
2c5d0a55 575 vals[a] = 0;
1b0c5139 576
577 ret = in_update_analog(in_adev[i], in_adev_axis[i][a], &v);
2c5d0a55 578 if (ret == 0)
579 vals[a] = 128 * v / IN_ABS_RANGE;
1b0c5139 580 }
2c5d0a55 581
582 if (in_adev_is_nublike[i])
583 update_analog_nub_adjust(&vals[0], &vals[1]);
584
585 for (a = 0; a < 2; a++) {
586 v = vals[a] + 127;
587 if (v < 0) v = 0;
588 else if (v > 255) v = 255;
589 nubp[i][a] = v;
590 }
591
1b0c5139 592 }
593 //printf("%4d %4d %4d %4d\n", in_a1[0], in_a1[1], in_a2[0], in_a2[1]);
594}
595
15d46930 596static void update_input(void)
597{
598 int actions[IN_BINDTYPE_COUNT] = { 0, };
8f892648 599 unsigned int emu_act;
15d46930 600
601 in_update(actions);
61c4962a 602 if (in_type[0] == PSE_PAD_TYPE_ANALOGPAD)
1b0c5139 603 update_analogs();
8f892648 604 emu_act = actions[IN_BINDTYPE_EMU];
4c08b9e7 605 in_state_gun = (emu_act & SACTION_GUN_MASK) >> SACTION_GUN_TRIGGER;
606
607 emu_act &= ~SACTION_GUN_MASK;
8f892648 608 if (emu_act) {
609 int which = 0;
610 for (; !(emu_act & 1); emu_act >>= 1, which++)
611 ;
612 emu_act = which;
613 }
614 emu_set_action(emu_act);
615
61c4962a 616 in_keystate[0] = actions[IN_BINDTYPE_PLAYER12];
617
15d46930 618}
1b0c5139 619#else /* MAEMO */
7010034e 620extern void update_input(void);
1b0c5139 621#endif
15d46930 622
e4c83ca6 623void pl_update_gun(int *xn, int *yn, int *xres, int *yres, int *in)
4c08b9e7 624{
faf2b2aa 625 if (tsdev)
e4c83ca6 626 pl_gun_ts_update(tsdev, xn, yn, in);
4c08b9e7 627
e4c83ca6 628 *xres = psx_w;
629 *yres = psx_h;
4c08b9e7 630}
631
bce6b056 632#define MAX_LAG_FRAMES 3
633
634#define tvdiff(tv, tv_old) \
635 ((tv.tv_sec - tv_old.tv_sec) * 1000000 + tv.tv_usec - tv_old.tv_usec)
bce6b056 636
72228559 637/* called on every vsync */
638void pl_frame_limit(void)
639{
bce6b056 640 static struct timeval tv_old, tv_expect;
2f546f9a 641 static int vsync_cnt_prev, drc_active_vsyncs;
bce6b056 642 struct timeval now;
cefe86b7 643 int diff, usadj;
bce6b056 644
69e482e3 645 if (g_emu_resetting)
81edd2b3 646 return;
647
bce6b056 648 vsync_cnt++;
72228559 649
15d46930 650 /* doing input here because the pad is polled
651 * thousands of times per frame for some reason */
652 update_input();
653
72228559 654 pcnt_end(PCNT_ALL);
bce6b056 655 gettimeofday(&now, 0);
72228559 656
bce6b056 657 if (now.tv_sec != tv_old.tv_sec) {
658 diff = tvdiff(now, tv_old);
a92f6af1 659 pl_rearmed_cbs.vsps_cur = 0.0f;
bce6b056 660 if (0 < diff && diff < 2000000)
a92f6af1 661 pl_rearmed_cbs.vsps_cur = 1000000.0f * (vsync_cnt - vsync_cnt_prev) / diff;
7c0f51de 662 vsync_cnt_prev = vsync_cnt;
a92f6af1 663
664 if (g_opts & OPT_SHOWFPS)
665 pl_rearmed_cbs.flips_per_sec = pl_rearmed_cbs.flip_cnt;
666 pl_rearmed_cbs.flip_cnt = 0;
bd6267e6 667 if (g_opts & OPT_SHOWCPU)
a92f6af1 668 pl_rearmed_cbs.cpu_usage = get_cpu_ticks();
8f892648 669
670 if (hud_new_msg > 0) {
671 hud_new_msg--;
672 if (hud_new_msg == 0)
673 hud_msg[0] = 0;
674 }
a92f6af1 675 tv_old = now;
72228559 676 }
677#ifdef PCNT
678 static int ya_vsync_count;
679 if (++ya_vsync_count == PCNT_FRAMES) {
a92f6af1 680 pcnt_print(pl_rearmed_cbs.vsps_cur);
72228559 681 ya_vsync_count = 0;
682 }
683#endif
684
76f7048e 685 // tv_expect uses usec*1024 units instead of usecs for better accuracy
686 tv_expect.tv_usec += frame_interval1024;
687 if (tv_expect.tv_usec >= (1000000 << 10)) {
688 tv_expect.tv_usec -= (1000000 << 10);
689 tv_expect.tv_sec++;
690 }
691 diff = (tv_expect.tv_sec - now.tv_sec) * 1000000 + (tv_expect.tv_usec >> 10) - now.tv_usec;
692
693 if (diff > MAX_LAG_FRAMES * frame_interval || diff < -MAX_LAG_FRAMES * frame_interval) {
694 //printf("pl_frame_limit reset, diff=%d, iv %d\n", diff, frame_interval);
c89cd762 695 tv_expect = now;
696 diff = 0;
cefe86b7 697 // try to align with vsync
698 usadj = vsync_usec_time;
76f7048e 699 while (usadj < tv_expect.tv_usec - frame_interval)
700 usadj += frame_interval;
701 tv_expect.tv_usec = usadj << 10;
c89cd762 702 }
703
76f7048e 704 if (!(g_opts & OPT_NO_FRAMELIM) && diff > frame_interval) {
c89cd762 705 // yay for working usleep on pandora!
76f7048e 706 //printf("usleep %d\n", diff - frame_interval / 2);
47f37583 707 usleep(diff - frame_interval);
c89cd762 708 }
709
e64dc4c5 710 if (pl_rearmed_cbs.frameskip) {
76f7048e 711 if (diff < -frame_interval)
e64dc4c5 712 pl_rearmed_cbs.fskip_advice = 1;
713 else if (diff >= 0)
714 pl_rearmed_cbs.fskip_advice = 0;
2f546f9a 715
716 // recompilation is not that fast and may cause frame skip on
717 // loading screens and such, resulting in flicker or glitches
718 if (new_dynarec_did_compile) {
719 if (drc_active_vsyncs < 32)
720 pl_rearmed_cbs.fskip_advice = 0;
721 drc_active_vsyncs++;
722 }
723 else
724 drc_active_vsyncs = 0;
725 new_dynarec_did_compile = 0;
bce6b056 726 }
72228559 727
728 pcnt_start(PCNT_ALL);
729}
730
ab423939 731void pl_timing_prepare(int is_pal_)
76f7048e 732{
733 pl_rearmed_cbs.fskip_advice = 0;
a92f6af1 734 pl_rearmed_cbs.flips_per_sec = 0;
735 pl_rearmed_cbs.cpu_usage = 0;
76f7048e 736
ab423939 737 is_pal = is_pal_;
76f7048e 738 frame_interval = is_pal ? 20000 : 16667;
739 frame_interval1024 = is_pal ? 20000*1024 : 17066667;
740
741 // used by P.E.Op.S. frameskip code
742 pl_rearmed_cbs.gpu_peops.fFrameRateHz = is_pal ? 50.0f : 59.94f;
743 pl_rearmed_cbs.gpu_peops.dwFrameRateTicks =
744 (100000*100 / (unsigned long)(pl_rearmed_cbs.gpu_peops.fFrameRateHz*100));
745}
746
201c21e2 747static void pl_get_layer_pos(int *x, int *y, int *w, int *h)
748{
749 *x = g_layer_x;
750 *y = g_layer_y;
751 *w = g_layer_w;
752 *h = g_layer_h;
753}
754
87e5b45f 755static void *pl_mmap(unsigned int size);
756static void pl_munmap(void *ptr, unsigned int size);
9ee0fd5b 757
e64dc4c5 758struct rearmed_cbs pl_rearmed_cbs = {
201c21e2 759 pl_get_layer_pos,
76f7048e 760 pl_vout_open,
761 pl_vout_set_mode,
762 pl_vout_flip,
763 pl_vout_close,
fa56d360 764
765 .mmap = pl_mmap,
766 .munmap = pl_munmap,
767 .pl_set_gpu_caps = pl_set_gpu_caps,
201c21e2 768};
769
7c0f51de 770/* watchdog */
771static void *watchdog_thread(void *unused)
772{
773 int vsync_cnt_old = 0;
774 int seen_dead = 0;
775 int sleep_time = 5;
776
d3f3bf09 777#if !defined(NDEBUG) || defined(DRC_DBG)
799b0b87 778 // don't interfere with debug
779 return NULL;
780#endif
7c0f51de 781 while (1)
782 {
783 sleep(sleep_time);
784
785 if (stop) {
786 seen_dead = 0;
787 sleep_time = 5;
788 continue;
789 }
790 if (vsync_cnt != vsync_cnt_old) {
791 vsync_cnt_old = vsync_cnt;
792 seen_dead = 0;
793 sleep_time = 2;
794 continue;
795 }
796
797 seen_dead++;
798 sleep_time = 1;
799 if (seen_dead > 1)
800 fprintf(stderr, "watchdog: seen_dead %d\n", seen_dead);
801 if (seen_dead > 4) {
802 fprintf(stderr, "watchdog: lockup detected, aborting\n");
803 // we can't do any cleanup here really, the main thread is
804 // likely touching resources and would crash anyway
805 abort();
806 }
807 }
808}
809
810void pl_start_watchdog(void)
811{
812 pthread_attr_t attr;
813 pthread_t tid;
814 int ret;
815
816 pthread_attr_init(&attr);
817 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
818
819 ret = pthread_create(&tid, &attr, watchdog_thread, NULL);
820 if (ret != 0)
821 fprintf(stderr, "could not start watchdog: %d\n", ret);
822}
823
87e5b45f 824static void *pl_emu_mmap(unsigned long addr, size_t size, int is_fixed,
825 enum psxMapTag tag)
826{
827 return plat_mmap(addr, size, 0, is_fixed);
828}
829
830static void pl_emu_munmap(void *ptr, size_t size, enum psxMapTag tag)
831{
832 plat_munmap(ptr, size);
833}
834
835static void *pl_mmap(unsigned int size)
836{
837 return psxMapHook(0, size, 0, MAP_TAG_VRAM);
838}
839
840static void pl_munmap(void *ptr, unsigned int size)
841{
842 psxUnmapHook(ptr, size, MAP_TAG_VRAM);
843}
844
4c08b9e7 845void pl_init(void)
846{
24de2dd4 847 extern unsigned int hSyncCount; // from psxcounters
3ece2f0c 848 extern unsigned int frame_counter;
24de2dd4 849
ddc0a02a 850 psx_w = psx_h = pl_vout_w = pl_vout_h = 256;
851 psx_bpp = pl_vout_bpp = 16;
321ca84d 852
faf2b2aa 853 tsdev = pl_gun_ts_init();
24de2dd4 854
855 pl_rearmed_cbs.gpu_hcnt = &hSyncCount;
3ece2f0c 856 pl_rearmed_cbs.gpu_frame_count = &frame_counter;
87e5b45f 857
858 psxMapHook = pl_emu_mmap;
859 psxUnmapHook = pl_emu_munmap;
4c08b9e7 860}