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