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