-
Notifications
You must be signed in to change notification settings - Fork 15
/
draw.c
151 lines (134 loc) · 3.33 KB
/
draw.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#include <fcntl.h>
#include <linux/fb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <unistd.h>
#include "draw.h"
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define NLEVELS (1 << 8)
static struct fb_var_screeninfo vinfo; /* linux-specific FB structure */
static struct fb_fix_screeninfo finfo; /* linux-specific FB structure */
static char fbdev[1024]; /* FB device */
static int fd; /* FB device file descriptor */
static void *fb; /* mmap()ed FB memory */
static int bpp; /* bytes per pixel */
static int nr, ng, nb; /* color levels */
static int rl, rr, gl, gr, bl, br; /* shifts per color */
static int xres, yres, xoff, yoff; /* drawing region */
static int fb_len(void)
{
return finfo.line_length * vinfo.yres_virtual;
}
static void fb_cmap_save(int save)
{
static unsigned short red[NLEVELS], green[NLEVELS], blue[NLEVELS];
struct fb_cmap cmap;
if (finfo.visual == FB_VISUAL_TRUECOLOR)
return;
cmap.start = 0;
cmap.len = MAX(nr, MAX(ng, nb));
cmap.red = red;
cmap.green = green;
cmap.blue = blue;
cmap.transp = NULL;
ioctl(fd, save ? FBIOGETCMAP : FBIOPUTCMAP, &cmap);
}
void fb_cmap(void)
{
unsigned short red[NLEVELS], green[NLEVELS], blue[NLEVELS];
struct fb_cmap cmap;
int i;
if (finfo.visual == FB_VISUAL_TRUECOLOR)
return;
for (i = 0; i < nr; i++)
red[i] = (65535 / (nr - 1)) * i;
for (i = 0; i < ng; i++)
green[i] = (65535 / (ng - 1)) * i;
for (i = 0; i < nb; i++)
blue[i] = (65535 / (nb - 1)) * i;
cmap.start = 0;
cmap.len = MAX(nr, MAX(ng, nb));
cmap.red = red;
cmap.green = green;
cmap.blue = blue;
cmap.transp = NULL;
ioctl(fd, FBIOPUTCMAP, &cmap);
}
unsigned fb_mode(void)
{
return ((rl < gl) << 22) | ((rl < bl) << 21) | ((gl < bl) << 20) |
(bpp << 16) | (vinfo.red.length << 8) |
(vinfo.green.length << 4) | (vinfo.blue.length);
}
static void init_colors(void)
{
nr = 1 << vinfo.red.length;
ng = 1 << vinfo.blue.length;
nb = 1 << vinfo.green.length;
rr = 8 - vinfo.red.length;
rl = vinfo.red.offset;
gr = 8 - vinfo.green.length;
gl = vinfo.green.offset;
br = 8 - vinfo.blue.length;
bl = vinfo.blue.offset;
}
int fb_init(char *dev)
{
char *path = dev ? dev : FBDEV;
char *geom = dev ? strchr(dev, ':') : NULL;
if (geom) {
*geom = '\0';
sscanf(geom + 1, "%dx%d%d%d", &xres, &yres, &xoff, &yoff);
}
snprintf(fbdev, sizeof(fbdev), "%s", path);
fd = open(path, O_RDWR);
if (fd < 0)
goto failed;
if (ioctl(fd, FBIOGET_VSCREENINFO, &vinfo) < 0)
goto failed;
if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) < 0)
goto failed;
fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
bpp = (vinfo.bits_per_pixel + 7) >> 3;
fb = mmap(NULL, fb_len(), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (fb == MAP_FAILED)
goto failed;
init_colors();
fb_cmap_save(1);
fb_cmap();
return 0;
failed:
perror("fb_init()");
close(fd);
return 1;
}
void fb_free(void)
{
fb_cmap_save(0);
munmap(fb, fb_len());
close(fd);
}
int fb_rows(void)
{
return yres ? yres : vinfo.yres;
}
int fb_cols(void)
{
return xres ? xres : vinfo.xres;
}
void *fb_mem(int r)
{
return fb + (r + vinfo.yoffset + yoff) * finfo.line_length + (vinfo.xoffset + xoff) * bpp;
}
unsigned fb_val(int r, int g, int b)
{
return ((r >> rr) << rl) | ((g >> gr) << gl) | ((b >> br) << bl);
}
char *fb_dev(void)
{
return fbdev;
}