gpu-gles: remove scissor test disable on fills
[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
72228559 20#include "plugin_lib.h"
b60f2812 21#include "linux/fbdev.h"
69af03a2 22#include "common/fonts.h"
23#include "common/input.h"
24#include "omap.h"
3c70c47b 25#include "menu.h"
8f892648 26#include "main.h"
47821672 27#include "plat.h"
72228559 28#include "pcnt.h"
4c08b9e7 29#include "pl_gun_ts.h"
69af03a2 30#include "../libpcsxcore/new_dynarec/new_dynarec.h"
799b0b87 31#include "../libpcsxcore/psemu_plugin_defs.h"
b60f2812 32
4c08b9e7 33int in_type1, in_type2;
34int in_a1[2] = { 127, 127 }, in_a2[2] = { 127, 127 };
1b0c5139 35int in_adev[2] = { -1, -1 }, in_adev_axis[2][2] = {{ 0, 1 }, { 0, 1 }};
4c08b9e7 36int in_keystate, in_state_gun;
b944a30e 37int in_enable_vibration;
faf2b2aa 38void *tsdev;
76f7048e 39void *pl_vout_buf;
40static int pl_vout_w, pl_vout_h, pl_vout_bpp;
a92f6af1 41static int vsync_cnt;
76f7048e 42static int frame_interval, frame_interval1024, vsync_usec_time;
72228559 43
4c08b9e7 44
45static __attribute__((noinline)) int get_cpu_ticks(void)
72228559 46{
47 static unsigned long last_utime;
48 static int fd;
49 unsigned long utime, ret;
50 char buf[128];
51
52 if (fd == 0)
53 fd = open("/proc/self/stat", O_RDONLY);
54 lseek(fd, 0, SEEK_SET);
55 buf[0] = 0;
56 read(fd, buf, sizeof(buf));
57 buf[sizeof(buf) - 1] = 0;
58
59 sscanf(buf, "%*d %*s %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u %*u %lu", &utime);
60 ret = utime - last_utime;
61 last_utime = utime;
62 return ret;
63}
64
41f55c9f 65static void print_msg(int h, int border)
8f892648 66{
76f7048e 67 if (pl_vout_bpp == 16)
41f55c9f 68 pl_text_out16(border + 2, h - 10, "%s", hud_msg);
8f892648 69}
70
41f55c9f 71static void print_fps(int h, int border)
72228559 72{
76f7048e 73 if (pl_vout_bpp == 16)
a92f6af1 74 pl_text_out16(border + 2, h - 10, "%2d %4.1f",
75 pl_rearmed_cbs.flips_per_sec, pl_rearmed_cbs.vsps_cur);
72228559 76}
77
41f55c9f 78static void print_cpu_usage(int w, int h, int border)
72228559 79{
76f7048e 80 if (pl_vout_bpp == 16)
a92f6af1 81 pl_text_out16(w - border - 28, h - 10, "%3d", pl_rearmed_cbs.cpu_usage);
72228559 82}
b60f2812 83
90f1d26c 84// draw 192x8 status of 24 sound channels
55b0eeea 85static __attribute__((noinline)) void draw_active_chans(int vout_w, int vout_h)
90f1d26c 86{
174c454a 87 extern void spu_get_debug_info(int *chans_out, int *run_chans,
88 int *fmod_chans_out, int *noise_chans_out); // hack
89 int live_chans, run_chans, fmod_chans, noise_chans;
90f1d26c 90
91 static const unsigned short colors[2] = { 0x1fe3, 0x0700 };
76f7048e 92 unsigned short *dest = (unsigned short *)pl_vout_buf +
55b0eeea 93 vout_w * (vout_h - 10) + vout_w / 2 - 192/2;
90f1d26c 94 unsigned short *d, p;
95 int c, x, y;
96
76f7048e 97 if (pl_vout_bpp != 16)
90f1d26c 98 return;
99
174c454a 100 spu_get_debug_info(&live_chans, &run_chans, &fmod_chans, &noise_chans);
90f1d26c 101
102 for (c = 0; c < 24; c++) {
103 d = dest + c * 8;
174c454a 104 p = !(live_chans & (1<<c)) ? (run_chans & (1<<c) ? 0x01c0 : 0) :
90f1d26c 105 (fmod_chans & (1<<c)) ? 0xf000 :
106 (noise_chans & (1<<c)) ? 0x001f :
107 colors[c & 1];
55b0eeea 108 for (y = 0; y < 8; y++, d += vout_w)
90f1d26c 109 for (x = 0; x < 8; x++)
110 d[x] = p;
111 }
112}
113
41f55c9f 114void pl_print_hud(int w, int h, int xborder)
55b0eeea 115{
116 pl_vout_w = w; // used by pollux
117 pl_vout_h = h;
118
119 if (g_opts & OPT_SHOWSPU)
120 draw_active_chans(w, h);
121
122 if (hud_msg[0] != 0)
41f55c9f 123 print_msg(h, xborder);
55b0eeea 124 else if (g_opts & OPT_SHOWFPS)
41f55c9f 125 print_fps(h, xborder);
55b0eeea 126
127 if (g_opts & OPT_SHOWCPU)
41f55c9f 128 print_cpu_usage(w, h, xborder);
55b0eeea 129}
130
76f7048e 131static void *pl_vout_set_mode(int w, int h, int bpp)
69af03a2 132{
a185be70 133 // special h handling, Wipeout likes to change it by 1-6
321ca84d 134 static int vsync_cnt_ms_prev;
135 if ((unsigned int)(vsync_cnt - vsync_cnt_ms_prev) < 5*60)
136 h = (h + 7) & ~7;
137 vsync_cnt_ms_prev = vsync_cnt;
a185be70 138
76f7048e 139 if (w == pl_vout_w && h == pl_vout_h && bpp == pl_vout_bpp)
140 return pl_vout_buf;
b60f2812 141
76f7048e 142 pl_vout_w = w;
143 pl_vout_h = h;
144 pl_vout_bpp = bpp;
d352cde2 145
76f7048e 146#if defined(VOUT_FBDEV)
d352cde2 147 vout_fbdev_clear(layer_fb);
76f7048e 148 pl_vout_buf = vout_fbdev_resize(layer_fb, w, h, bpp, 0, 0, 0, 0, 3);
149#elif defined(MAEMO)
150 extern void *hildon_set_mode(int w, int h);
151 pl_vout_buf = hildon_set_mode(w, h);
152#endif
d352cde2 153
76f7048e 154 if (pl_vout_buf == NULL)
155 fprintf(stderr, "failed to set mode\n");
a185be70 156
157 // menu decides on layer size, we commit it
bd6267e6 158 menu_notify_mode_change(w, h, bpp);
a185be70 159 omap_enable_layer(1);
3c70c47b 160
76f7048e 161 return pl_vout_buf;
69af03a2 162}
163
76f7048e 164static void *pl_vout_flip(void)
69af03a2 165{
a92f6af1 166 pl_rearmed_cbs.flip_cnt++;
8f892648 167
55b0eeea 168 if (pl_vout_buf != NULL)
41f55c9f 169 pl_print_hud(pl_vout_w, pl_vout_h, 0);
72228559 170
69af03a2 171 // let's flip now
76f7048e 172#if defined(VOUT_FBDEV)
173 pl_vout_buf = vout_fbdev_flip(layer_fb);
174#elif defined(MAEMO)
175 extern void *hildon_flip(void);
176 pl_vout_buf = hildon_flip();
177#endif
178 return pl_vout_buf;
b60f2812 179}
180
76f7048e 181static int pl_vout_open(void)
6d1a1ac2 182{
cefe86b7 183 struct timeval now;
184
6d1a1ac2 185 omap_enable_layer(1);
76f7048e 186#if defined(VOUT_FBDEV)
321ca84d 187 // force mode update
188 int h = pl_vout_h;
189 pl_vout_h--;
190 pl_vout_buf = pl_vout_set_mode(pl_vout_w, h, pl_vout_bpp);
cefe86b7 191
192 // try to align redraws to vsync
193 vout_fbdev_wait_vsync(layer_fb);
76f7048e 194#elif defined(MAEMO)
195 extern void *hildon_flip(void);
196 pl_vout_buf = hildon_flip();
197#endif
198
cefe86b7 199 gettimeofday(&now, 0);
200 vsync_usec_time = now.tv_usec;
76f7048e 201 while (vsync_usec_time >= frame_interval)
202 vsync_usec_time -= frame_interval;
cefe86b7 203
6d1a1ac2 204 return 0;
205}
206
76f7048e 207static void pl_vout_close(void)
b60f2812 208{
6d1a1ac2 209 omap_enable_layer(0);
b60f2812 210}
211
29a8c4f3 212void *pl_prepare_screenshot(int *w, int *h, int *bpp)
213{
47821672 214#if defined(VOUT_FBDEV)
76f7048e 215 *w = pl_vout_w;
216 *h = pl_vout_h;
217 *bpp = pl_vout_bpp;
29a8c4f3 218
76f7048e 219 return pl_vout_buf;
47821672 220#else
221 return plat_prepare_screenshot(w, h, bpp);
222#endif
29a8c4f3 223}
224
1b0c5139 225#ifndef MAEMO
226static void update_analogs(void)
227{
228 int *nubp[2] = { in_a1, in_a2 };
229 int i, a, v, ret;
230
231 for (i = 0; i < 2; i++)
232 {
233 if (in_adev[i] < 0)
234 continue;
235
236 for (a = 0; a < 2; a++) {
237 nubp[i][a] = 127;
238
239 ret = in_update_analog(in_adev[i], in_adev_axis[i][a], &v);
240 if (ret == 0) {
241 v = v / (IN_ABS_RANGE / 128) + 127;
242 nubp[i][a] = v < 0 ? 0 : v;
243 }
244 }
245 }
246 //printf("%4d %4d %4d %4d\n", in_a1[0], in_a1[1], in_a2[0], in_a2[1]);
247}
248
15d46930 249static void update_input(void)
250{
251 int actions[IN_BINDTYPE_COUNT] = { 0, };
8f892648 252 unsigned int emu_act;
15d46930 253
254 in_update(actions);
4c08b9e7 255 if (in_type1 == PSE_PAD_TYPE_ANALOGPAD)
1b0c5139 256 update_analogs();
8f892648 257 emu_act = actions[IN_BINDTYPE_EMU];
4c08b9e7 258 in_state_gun = (emu_act & SACTION_GUN_MASK) >> SACTION_GUN_TRIGGER;
259
260 emu_act &= ~SACTION_GUN_MASK;
8f892648 261 if (emu_act) {
262 int which = 0;
263 for (; !(emu_act & 1); emu_act >>= 1, which++)
264 ;
265 emu_act = which;
266 }
267 emu_set_action(emu_act);
268
799b0b87 269 in_keystate = actions[IN_BINDTYPE_PLAYER12];
447783f8 270#ifdef X11
4218954f 271 extern int x11_update_keys(unsigned int *action);
272 in_keystate |= x11_update_keys(&emu_act);
273 emu_set_action(emu_act);
447783f8 274#endif
15d46930 275}
1b0c5139 276#else /* MAEMO */
277static void update_input(void)
278{
279}
280#endif
15d46930 281
4c08b9e7 282void pl_update_gun(int *xn, int *xres, int *y, int *in)
283{
faf2b2aa 284 if (tsdev)
285 pl_gun_ts_update(tsdev, xn, y, in);
4c08b9e7 286
76f7048e 287 *xres = pl_vout_w;
288 *y = *y * pl_vout_h >> 10;
4c08b9e7 289}
290
bce6b056 291#define MAX_LAG_FRAMES 3
292
293#define tvdiff(tv, tv_old) \
294 ((tv.tv_sec - tv_old.tv_sec) * 1000000 + tv.tv_usec - tv_old.tv_usec)
bce6b056 295
72228559 296/* called on every vsync */
297void pl_frame_limit(void)
298{
bce6b056 299 static struct timeval tv_old, tv_expect;
2f546f9a 300 static int vsync_cnt_prev, drc_active_vsyncs;
bce6b056 301 struct timeval now;
cefe86b7 302 int diff, usadj;
bce6b056 303
304 vsync_cnt++;
72228559 305
15d46930 306 /* doing input here because the pad is polled
307 * thousands of times per frame for some reason */
308 update_input();
309
72228559 310 pcnt_end(PCNT_ALL);
bce6b056 311 gettimeofday(&now, 0);
72228559 312
bce6b056 313 if (now.tv_sec != tv_old.tv_sec) {
314 diff = tvdiff(now, tv_old);
a92f6af1 315 pl_rearmed_cbs.vsps_cur = 0.0f;
bce6b056 316 if (0 < diff && diff < 2000000)
a92f6af1 317 pl_rearmed_cbs.vsps_cur = 1000000.0f * (vsync_cnt - vsync_cnt_prev) / diff;
7c0f51de 318 vsync_cnt_prev = vsync_cnt;
a92f6af1 319
320 if (g_opts & OPT_SHOWFPS)
321 pl_rearmed_cbs.flips_per_sec = pl_rearmed_cbs.flip_cnt;
322 pl_rearmed_cbs.flip_cnt = 0;
bd6267e6 323 if (g_opts & OPT_SHOWCPU)
a92f6af1 324 pl_rearmed_cbs.cpu_usage = get_cpu_ticks();
8f892648 325
326 if (hud_new_msg > 0) {
327 hud_new_msg--;
328 if (hud_new_msg == 0)
329 hud_msg[0] = 0;
330 }
a92f6af1 331 tv_old = now;
72228559 332 }
333#ifdef PCNT
334 static int ya_vsync_count;
335 if (++ya_vsync_count == PCNT_FRAMES) {
a92f6af1 336 pcnt_print(pl_rearmed_cbs.vsps_cur);
72228559 337 ya_vsync_count = 0;
338 }
339#endif
340
76f7048e 341 // tv_expect uses usec*1024 units instead of usecs for better accuracy
342 tv_expect.tv_usec += frame_interval1024;
343 if (tv_expect.tv_usec >= (1000000 << 10)) {
344 tv_expect.tv_usec -= (1000000 << 10);
345 tv_expect.tv_sec++;
346 }
347 diff = (tv_expect.tv_sec - now.tv_sec) * 1000000 + (tv_expect.tv_usec >> 10) - now.tv_usec;
348
349 if (diff > MAX_LAG_FRAMES * frame_interval || diff < -MAX_LAG_FRAMES * frame_interval) {
350 //printf("pl_frame_limit reset, diff=%d, iv %d\n", diff, frame_interval);
c89cd762 351 tv_expect = now;
352 diff = 0;
cefe86b7 353 // try to align with vsync
354 usadj = vsync_usec_time;
76f7048e 355 while (usadj < tv_expect.tv_usec - frame_interval)
356 usadj += frame_interval;
357 tv_expect.tv_usec = usadj << 10;
c89cd762 358 }
359
76f7048e 360 if (!(g_opts & OPT_NO_FRAMELIM) && diff > frame_interval) {
c89cd762 361 // yay for working usleep on pandora!
76f7048e 362 //printf("usleep %d\n", diff - frame_interval / 2);
47f37583 363 usleep(diff - frame_interval);
c89cd762 364 }
365
e64dc4c5 366 if (pl_rearmed_cbs.frameskip) {
76f7048e 367 if (diff < -frame_interval)
e64dc4c5 368 pl_rearmed_cbs.fskip_advice = 1;
369 else if (diff >= 0)
370 pl_rearmed_cbs.fskip_advice = 0;
2f546f9a 371
372 // recompilation is not that fast and may cause frame skip on
373 // loading screens and such, resulting in flicker or glitches
374 if (new_dynarec_did_compile) {
375 if (drc_active_vsyncs < 32)
376 pl_rearmed_cbs.fskip_advice = 0;
377 drc_active_vsyncs++;
378 }
379 else
380 drc_active_vsyncs = 0;
381 new_dynarec_did_compile = 0;
bce6b056 382 }
72228559 383
384 pcnt_start(PCNT_ALL);
385}
386
76f7048e 387void pl_timing_prepare(int is_pal)
388{
389 pl_rearmed_cbs.fskip_advice = 0;
a92f6af1 390 pl_rearmed_cbs.flips_per_sec = 0;
391 pl_rearmed_cbs.cpu_usage = 0;
76f7048e 392
393 frame_interval = is_pal ? 20000 : 16667;
394 frame_interval1024 = is_pal ? 20000*1024 : 17066667;
395
396 // used by P.E.Op.S. frameskip code
397 pl_rearmed_cbs.gpu_peops.fFrameRateHz = is_pal ? 50.0f : 59.94f;
398 pl_rearmed_cbs.gpu_peops.dwFrameRateTicks =
399 (100000*100 / (unsigned long)(pl_rearmed_cbs.gpu_peops.fFrameRateHz*100));
400}
401
69af03a2 402static void pl_text_out16_(int x, int y, const char *text)
b60f2812 403{
76f7048e 404 int i, l, len = strlen(text), w = pl_vout_w;
405 unsigned short *screen = (unsigned short *)pl_vout_buf + x + y * w;
69af03a2 406 unsigned short val = 0xffff;
407
408 for (i = 0; i < len; i++, screen += 8)
409 {
410 for (l = 0; l < 8; l++)
411 {
412 unsigned char fd = fontdata8x8[text[i] * 8 + l];
413 unsigned short *s = screen + l * w;
414 if (fd&0x80) s[0] = val;
415 if (fd&0x40) s[1] = val;
416 if (fd&0x20) s[2] = val;
417 if (fd&0x10) s[3] = val;
418 if (fd&0x08) s[4] = val;
419 if (fd&0x04) s[5] = val;
420 if (fd&0x02) s[6] = val;
421 if (fd&0x01) s[7] = val;
422 }
423 }
b60f2812 424}
425
69af03a2 426void pl_text_out16(int x, int y, const char *texto, ...)
b60f2812 427{
69af03a2 428 va_list args;
429 char buffer[256];
430
431 va_start(args, texto);
432 vsnprintf(buffer, sizeof(buffer), texto, args);
433 va_end(args);
434
435 pl_text_out16_(x, y, buffer);
b60f2812 436}
437
201c21e2 438static void pl_get_layer_pos(int *x, int *y, int *w, int *h)
439{
440 *x = g_layer_x;
441 *y = g_layer_y;
442 *w = g_layer_w;
443 *h = g_layer_h;
444}
445
e64dc4c5 446struct rearmed_cbs pl_rearmed_cbs = {
201c21e2 447 pl_get_layer_pos,
76f7048e 448 pl_vout_open,
449 pl_vout_set_mode,
450 pl_vout_flip,
451 pl_vout_close,
201c21e2 452};
453
7c0f51de 454/* watchdog */
455static void *watchdog_thread(void *unused)
456{
457 int vsync_cnt_old = 0;
458 int seen_dead = 0;
459 int sleep_time = 5;
460
d3f3bf09 461#if !defined(NDEBUG) || defined(DRC_DBG)
799b0b87 462 // don't interfere with debug
463 return NULL;
464#endif
7c0f51de 465 while (1)
466 {
467 sleep(sleep_time);
468
469 if (stop) {
470 seen_dead = 0;
471 sleep_time = 5;
472 continue;
473 }
474 if (vsync_cnt != vsync_cnt_old) {
475 vsync_cnt_old = vsync_cnt;
476 seen_dead = 0;
477 sleep_time = 2;
478 continue;
479 }
480
481 seen_dead++;
482 sleep_time = 1;
483 if (seen_dead > 1)
484 fprintf(stderr, "watchdog: seen_dead %d\n", seen_dead);
485 if (seen_dead > 4) {
486 fprintf(stderr, "watchdog: lockup detected, aborting\n");
487 // we can't do any cleanup here really, the main thread is
488 // likely touching resources and would crash anyway
489 abort();
490 }
491 }
492}
493
494void pl_start_watchdog(void)
495{
496 pthread_attr_t attr;
497 pthread_t tid;
498 int ret;
499
500 pthread_attr_init(&attr);
501 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
502
503 ret = pthread_create(&tid, &attr, watchdog_thread, NULL);
504 if (ret != 0)
505 fprintf(stderr, "could not start watchdog: %d\n", ret);
506}
507
4c08b9e7 508void pl_init(void)
509{
24de2dd4 510 extern unsigned int hSyncCount; // from psxcounters
3ece2f0c 511 extern unsigned int frame_counter;
24de2dd4 512
321ca84d 513 pl_vout_w = pl_vout_h = 256;
514 pl_vout_bpp = 16;
515
faf2b2aa 516 tsdev = pl_gun_ts_init();
24de2dd4 517
518 pl_rearmed_cbs.gpu_hcnt = &hSyncCount;
3ece2f0c 519 pl_rearmed_cbs.gpu_frame_count = &frame_counter;
4c08b9e7 520}