frontend: make -psxout cmd arg override config
[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"
72228559 27#include "pcnt.h"
69af03a2 28#include "../libpcsxcore/new_dynarec/new_dynarec.h"
799b0b87 29#include "../libpcsxcore/psemu_plugin_defs.h"
b60f2812 30
b60f2812 31void *pl_fbdev_buf;
bce6b056 32int pl_frame_interval;
3e215238 33int in_type, in_keystate, in_a1[2] = { 127, 127 }, in_a2[2] = { 127, 127 };
72228559 34static int pl_fbdev_w, pl_fbdev_h, pl_fbdev_bpp;
bce6b056 35static int flip_cnt, vsync_cnt, flips_per_sec, tick_per_sec;
36static float vsps_cur;
c89cd762 37static int plugin_skip_advice;
cefe86b7 38static int vsync_usec_time;
907b1e90 39// P.E.Op.S.
40extern int UseFrameSkip;
41extern float fps_skip;
72228559 42
43static int get_cpu_ticks(void)
44{
45 static unsigned long last_utime;
46 static int fd;
47 unsigned long utime, ret;
48 char buf[128];
49
50 if (fd == 0)
51 fd = open("/proc/self/stat", O_RDONLY);
52 lseek(fd, 0, SEEK_SET);
53 buf[0] = 0;
54 read(fd, buf, sizeof(buf));
55 buf[sizeof(buf) - 1] = 0;
56
57 sscanf(buf, "%*d %*s %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u %*u %lu", &utime);
58 ret = utime - last_utime;
59 last_utime = utime;
60 return ret;
61}
62
8f892648 63static void print_hud(void)
64{
65 if (pl_fbdev_bpp == 16)
66 pl_text_out16(2, pl_fbdev_h - 10, "%s", hud_msg);
67}
68
72228559 69static void print_fps(void)
70{
71 if (pl_fbdev_bpp == 16)
bce6b056 72 pl_text_out16(2, pl_fbdev_h - 10, "%2d %4.1f", flips_per_sec, vsps_cur);
72228559 73}
74
75static void print_cpu_usage(void)
76{
77 if (pl_fbdev_bpp == 16)
78 pl_text_out16(pl_fbdev_w - 28, pl_fbdev_h - 10, "%3d", tick_per_sec);
79}
b60f2812 80
297b3d63 81void *pl_fbdev_set_mode(int w, int h, int bpp)
69af03a2 82{
d352cde2 83 void *ret;
b60f2812 84
72228559 85 if (w == pl_fbdev_w && h == pl_fbdev_h && bpp == pl_fbdev_bpp)
7947ab55 86 return pl_fbdev_buf;
72228559 87
69af03a2 88 pl_fbdev_w = w;
72228559 89 pl_fbdev_h = h;
90 pl_fbdev_bpp = bpp;
d352cde2 91
92 vout_fbdev_clear(layer_fb);
69af03a2 93 ret = vout_fbdev_resize(layer_fb, w, h, bpp, 0, 0, 0, 0, 3);
d352cde2 94 if (ret == NULL)
69af03a2 95 fprintf(stderr, "failed to set mode\n");
d352cde2 96 else
97 pl_fbdev_buf = ret;
98
bd6267e6 99 menu_notify_mode_change(w, h, bpp);
3c70c47b 100
297b3d63 101 return pl_fbdev_buf;
69af03a2 102}
103
ffd0d743 104void *pl_fbdev_flip(void)
69af03a2 105{
72228559 106 flip_cnt++;
297b3d63 107
108 if (pl_fbdev_buf != NULL) {
8f892648 109 if (hud_msg[0] != 0)
110 print_hud();
111 else if (g_opts & OPT_SHOWFPS)
297b3d63 112 print_fps();
8f892648 113
297b3d63 114 if (g_opts & OPT_SHOWCPU)
115 print_cpu_usage();
116 }
72228559 117
69af03a2 118 // let's flip now
119 pl_fbdev_buf = vout_fbdev_flip(layer_fb);
ffd0d743 120 return pl_fbdev_buf;
b60f2812 121}
122
6d1a1ac2 123int pl_fbdev_open(void)
124{
cefe86b7 125 struct timeval now;
126
6d1a1ac2 127 pl_fbdev_buf = vout_fbdev_flip(layer_fb);
128 omap_enable_layer(1);
cefe86b7 129
130 // try to align redraws to vsync
131 vout_fbdev_wait_vsync(layer_fb);
132 gettimeofday(&now, 0);
133 vsync_usec_time = now.tv_usec;
134 while (vsync_usec_time >= pl_frame_interval)
135 vsync_usec_time -= pl_frame_interval;
136
6d1a1ac2 137 return 0;
138}
139
140void pl_fbdev_close(void)
b60f2812 141{
6d1a1ac2 142 omap_enable_layer(0);
b60f2812 143}
144
29a8c4f3 145void *pl_prepare_screenshot(int *w, int *h, int *bpp)
146{
147 *w = pl_fbdev_w;
148 *h = pl_fbdev_h;
149 *bpp = pl_fbdev_bpp;
150
151 return pl_fbdev_buf;
152}
153
15d46930 154static void update_input(void)
155{
156 int actions[IN_BINDTYPE_COUNT] = { 0, };
8f892648 157 unsigned int emu_act;
15d46930 158
159 in_update(actions);
799b0b87 160 if (in_type == PSE_PAD_TYPE_ANALOGPAD)
161 in_update_analogs();
8f892648 162 emu_act = actions[IN_BINDTYPE_EMU];
163 if (emu_act) {
164 int which = 0;
165 for (; !(emu_act & 1); emu_act >>= 1, which++)
166 ;
167 emu_act = which;
168 }
169 emu_set_action(emu_act);
170
799b0b87 171 in_keystate = actions[IN_BINDTYPE_PLAYER12];
447783f8 172
173#ifdef X11
1bd9ee68 174 extern int x11_update_keys(void);
799b0b87 175 in_keystate |= x11_update_keys();
447783f8 176#endif
15d46930 177}
178
bce6b056 179#define MAX_LAG_FRAMES 3
180
181#define tvdiff(tv, tv_old) \
182 ((tv.tv_sec - tv_old.tv_sec) * 1000000 + tv.tv_usec - tv_old.tv_usec)
183// assumes us < 1000000
184#define tvadd(tv, us) { \
185 tv.tv_usec += us; \
186 if (tv.tv_usec >= 1000000) { \
187 tv.tv_usec -= 1000000; \
188 tv.tv_sec++; \
189 } \
190}
191
72228559 192/* called on every vsync */
193void pl_frame_limit(void)
194{
bce6b056 195 static struct timeval tv_old, tv_expect;
7c0f51de 196 static int vsync_cnt_prev;
bce6b056 197 struct timeval now;
cefe86b7 198 int diff, usadj;
bce6b056 199
200 vsync_cnt++;
72228559 201
15d46930 202 /* doing input here because the pad is polled
203 * thousands of times per frame for some reason */
204 update_input();
205
72228559 206 pcnt_end(PCNT_ALL);
bce6b056 207 gettimeofday(&now, 0);
72228559 208
bce6b056 209 if (now.tv_sec != tv_old.tv_sec) {
210 diff = tvdiff(now, tv_old);
211 vsps_cur = 0.0f;
212 if (0 < diff && diff < 2000000)
7c0f51de 213 vsps_cur = 1000000.0f * (vsync_cnt - vsync_cnt_prev) / diff;
214 vsync_cnt_prev = vsync_cnt;
72228559 215 flips_per_sec = flip_cnt;
7c0f51de 216 flip_cnt = 0;
bce6b056 217 tv_old = now;
bd6267e6 218 if (g_opts & OPT_SHOWCPU)
219 tick_per_sec = get_cpu_ticks();
8f892648 220
221 if (hud_new_msg > 0) {
222 hud_new_msg--;
223 if (hud_new_msg == 0)
224 hud_msg[0] = 0;
225 }
72228559 226 }
227#ifdef PCNT
228 static int ya_vsync_count;
229 if (++ya_vsync_count == PCNT_FRAMES) {
bce6b056 230 pcnt_print(vsps_cur);
72228559 231 ya_vsync_count = 0;
232 }
233#endif
234
c89cd762 235 tvadd(tv_expect, pl_frame_interval);
236 diff = tvdiff(tv_expect, now);
237 if (diff > MAX_LAG_FRAMES * pl_frame_interval || diff < -MAX_LAG_FRAMES * pl_frame_interval) {
238 //printf("pl_frame_limit reset, diff=%d, iv %d\n", diff, pl_frame_interval);
239 tv_expect = now;
240 diff = 0;
cefe86b7 241 // try to align with vsync
242 usadj = vsync_usec_time;
243 while (usadj < tv_expect.tv_usec - pl_frame_interval)
244 usadj += pl_frame_interval;
245 tv_expect.tv_usec = usadj;
c89cd762 246 }
247
248 if (!(g_opts & OPT_NO_FRAMELIM) && diff > pl_frame_interval) {
249 // yay for working usleep on pandora!
250 //printf("usleep %d\n", diff - pl_frame_interval / 2);
251 usleep(diff - pl_frame_interval / 2);
252 }
253
3e215238 254 if (UseFrameSkip) {
255 if (diff < -pl_frame_interval) {
256 // P.E.Op.S. makes skip decision based on this
257 fps_skip = 1.0f;
258 plugin_skip_advice = 1;
259 }
260 else if (diff >= 0) {
261 fps_skip = 100.0f;
262 plugin_skip_advice = 0;
263 }
bce6b056 264 }
72228559 265
266 pcnt_start(PCNT_ALL);
267}
268
69af03a2 269static void pl_text_out16_(int x, int y, const char *text)
b60f2812 270{
69af03a2 271 int i, l, len = strlen(text), w = pl_fbdev_w;
272 unsigned short *screen = (unsigned short *)pl_fbdev_buf + x + y * w;
273 unsigned short val = 0xffff;
274
275 for (i = 0; i < len; i++, screen += 8)
276 {
277 for (l = 0; l < 8; l++)
278 {
279 unsigned char fd = fontdata8x8[text[i] * 8 + l];
280 unsigned short *s = screen + l * w;
281 if (fd&0x80) s[0] = val;
282 if (fd&0x40) s[1] = val;
283 if (fd&0x20) s[2] = val;
284 if (fd&0x10) s[3] = val;
285 if (fd&0x08) s[4] = val;
286 if (fd&0x04) s[5] = val;
287 if (fd&0x02) s[6] = val;
288 if (fd&0x01) s[7] = val;
289 }
290 }
b60f2812 291}
292
69af03a2 293void pl_text_out16(int x, int y, const char *texto, ...)
b60f2812 294{
69af03a2 295 va_list args;
296 char buffer[256];
297
298 va_start(args, texto);
299 vsnprintf(buffer, sizeof(buffer), texto, args);
300 va_end(args);
301
302 pl_text_out16_(x, y, buffer);
b60f2812 303}
304
201c21e2 305static void pl_get_layer_pos(int *x, int *y, int *w, int *h)
306{
307 *x = g_layer_x;
308 *y = g_layer_y;
309 *w = g_layer_w;
310 *h = g_layer_h;
311}
312
313const struct rearmed_cbs pl_rearmed_cbs = {
314 pl_get_layer_pos,
ffd0d743 315 pl_fbdev_open,
316 pl_fbdev_set_mode,
317 pl_fbdev_flip,
318 pl_fbdev_close,
c89cd762 319 &plugin_skip_advice,
201c21e2 320};
321
7c0f51de 322/* watchdog */
323static void *watchdog_thread(void *unused)
324{
325 int vsync_cnt_old = 0;
326 int seen_dead = 0;
327 int sleep_time = 5;
328
799b0b87 329#ifndef NDEBUG
330 // don't interfere with debug
331 return NULL;
332#endif
7c0f51de 333 while (1)
334 {
335 sleep(sleep_time);
336
337 if (stop) {
338 seen_dead = 0;
339 sleep_time = 5;
340 continue;
341 }
342 if (vsync_cnt != vsync_cnt_old) {
343 vsync_cnt_old = vsync_cnt;
344 seen_dead = 0;
345 sleep_time = 2;
346 continue;
347 }
348
349 seen_dead++;
350 sleep_time = 1;
351 if (seen_dead > 1)
352 fprintf(stderr, "watchdog: seen_dead %d\n", seen_dead);
353 if (seen_dead > 4) {
354 fprintf(stderr, "watchdog: lockup detected, aborting\n");
355 // we can't do any cleanup here really, the main thread is
356 // likely touching resources and would crash anyway
357 abort();
358 }
359 }
360}
361
362void pl_start_watchdog(void)
363{
364 pthread_attr_t attr;
365 pthread_t tid;
366 int ret;
367
368 pthread_attr_init(&attr);
369 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
370
371 ret = pthread_create(&tid, &attr, watchdog_thread, NULL);
372 if (ret != 0)
373 fprintf(stderr, "could not start watchdog: %d\n", ret);
374}
375