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