update in_evdev, fix return from menu
[pcsx_rearmed.git] / frontend / plugin_lib.c
CommitLineData
b60f2812 1/*
2 * (C) notaz, 2010
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>
b60f2812 12
13#include "linux/fbdev.h"
69af03a2 14#include "common/fonts.h"
15#include "common/input.h"
16#include "omap.h"
17#include "../libpcsxcore/new_dynarec/new_dynarec.h"
b60f2812 18
b60f2812 19void *pl_fbdev_buf;
69af03a2 20int keystate;
21static int pl_fbdev_w;
b60f2812 22
23int pl_fbdev_init(void)
24{
69af03a2 25 pl_fbdev_buf = vout_fbdev_flip(layer_fb);
26 return 0;
27}
b60f2812 28
69af03a2 29int pl_fbdev_set_mode(int w, int h, int bpp)
30{
31 int ret;
b60f2812 32
69af03a2 33 pl_fbdev_w = w;
34 printf("set mode %dx%d@%d\n", w, h, bpp);
35 ret = vout_fbdev_resize(layer_fb, w, h, bpp, 0, 0, 0, 0, 3);
36 if (ret)
37 fprintf(stderr, "failed to set mode\n");
38 return ret;
39}
40
41void *pl_fbdev_flip(void)
42{
43 /* doing input here because the pad is polled
44 * thousands of times for some reason */
45 int actions[IN_BINDTYPE_COUNT] = { 0, };
b60f2812 46
69af03a2 47 in_update(actions);
48 if (actions[IN_BINDTYPE_EMU] & PEV_MENU)
49 stop = 1;
50 keystate = ~actions[IN_BINDTYPE_PLAYER12];
b60f2812 51
69af03a2 52 // let's flip now
53 pl_fbdev_buf = vout_fbdev_flip(layer_fb);
54 return pl_fbdev_buf;
b60f2812 55}
56
69af03a2 57void pl_fbdev_finish(void)
b60f2812 58{
b60f2812 59}
60
69af03a2 61static void pl_text_out16_(int x, int y, const char *text)
b60f2812 62{
69af03a2 63 int i, l, len = strlen(text), w = pl_fbdev_w;
64 unsigned short *screen = (unsigned short *)pl_fbdev_buf + x + y * w;
65 unsigned short val = 0xffff;
66
67 for (i = 0; i < len; i++, screen += 8)
68 {
69 for (l = 0; l < 8; l++)
70 {
71 unsigned char fd = fontdata8x8[text[i] * 8 + l];
72 unsigned short *s = screen + l * w;
73 if (fd&0x80) s[0] = val;
74 if (fd&0x40) s[1] = val;
75 if (fd&0x20) s[2] = val;
76 if (fd&0x10) s[3] = val;
77 if (fd&0x08) s[4] = val;
78 if (fd&0x04) s[5] = val;
79 if (fd&0x02) s[6] = val;
80 if (fd&0x01) s[7] = val;
81 }
82 }
b60f2812 83}
84
69af03a2 85void pl_text_out16(int x, int y, const char *texto, ...)
b60f2812 86{
69af03a2 87 va_list args;
88 char buffer[256];
89
90 va_start(args, texto);
91 vsnprintf(buffer, sizeof(buffer), texto, args);
92 va_end(args);
93
94 pl_text_out16_(x, y, buffer);
b60f2812 95}
96