root / proj / src / graph.c @ 269
History | View | Annotate | Download (15.1 KB)
1 |
#include <lcom/lcf.h> |
---|---|
2 |
|
3 |
#include "graph.h" |
4 |
|
5 |
#include "errors.h" |
6 |
#include <stdio.h> |
7 |
|
8 |
#define VC_BIOS_SERV 0x10 /** @brief Interrupt service of video card */ |
9 |
#define VBE_CALL 0x4F /** @brief VBE call function specifier */ |
10 |
|
11 |
#define MBYTE_BASE 0x0 /** @brief Base address (zero address) */ |
12 |
#define MBYTE_SIZE 0xFFFFF /** @brief Size of a mebibyte */ |
13 |
|
14 |
// Graphics Functions
|
15 |
#define VBE_CTRL_INFO 0x00 /** @brief Get VBE Controller Information */ |
16 |
#define VBE_MD_INFO 0x01 /** @brief Get VBE Mode Information */ |
17 |
#define SET_VBE_MD 0x02 /** @brief Set VBE Mode */ |
18 |
|
19 |
// Error codes (AH)
|
20 |
#define AH_SUCCESS 0x00 /** @brief Success code on BIOS call */ |
21 |
#define AH_FUNC_CALL_FAIL 0x01 /** @brief Function call failed */ |
22 |
#define AH_FUNC_NOT_SUPP 0x02 /** @brief Function call is not supported in current HW configuration */ |
23 |
#define AH_FUNC_INVALID 0x03 /** @brief Invalid function in current video mode */ |
24 |
|
25 |
/// MACROS
|
26 |
#define FAR2PHYS(n) ((((n)>>12) & 0xFFFFFFF0) + ((n) & 0x0000FFFF)) |
27 |
|
28 |
/// STRUCT
|
29 |
typedef struct __attribute__((packed)) { |
30 |
|
31 |
char VbeSignature[4] ; |
32 |
uint16_t VbeVersion ; |
33 |
uint32_t OemStringPtr ; |
34 |
uint8_t Capabilities[4] ;
|
35 |
uint32_t VideoModePtr ; |
36 |
uint16_t TotalMemory ; |
37 |
|
38 |
uint16_t OemSoftwareRev ; |
39 |
uint32_t OemVendorNamePtr ; |
40 |
uint32_t OemProductNamePtr ; |
41 |
uint32_t OemProductRevPtr ; |
42 |
char Reserved[222] ; |
43 |
|
44 |
char OemData[256] ; |
45 |
} VbeInfoBlock; |
46 |
|
47 |
static vbe_mode_info_t vbe_mem_info;
|
48 |
|
49 |
/// PRIVATE GET
|
50 |
static uint16_t (graph_get_bits_pixel) (void){ return vbe_mem_info.BitsPerPixel; } |
51 |
static phys_bytes (graph_get_phys_addr) (void){ return vbe_mem_info.PhysBasePtr; } |
52 |
static unsigned (graph_get_vram_size) (void){ return vbe_mem_info.XResolution * vbe_mem_info.YResolution * graph_get_bytes_pixel(); } |
53 |
//static uint16_t (graph_get_RedMaskSize) (void){ return vbe_mem_info.RedMaskSize ; }
|
54 |
//static uint16_t (graph_get_GreenMaskSize)(void){ return vbe_mem_info.GreenMaskSize; }
|
55 |
//static uint16_t (graph_get_BlueMaskSize) (void){ return vbe_mem_info.BlueMaskSize ; }
|
56 |
|
57 |
/// PUBLIC GET
|
58 |
uint16_t (graph_get_XRes) (void){ return vbe_mem_info.XResolution; } |
59 |
uint16_t (graph_get_YRes) (void){ return vbe_mem_info.YResolution; } |
60 |
uint16_t (graph_get_bytes_pixel) (void){ return (graph_get_bits_pixel() + 7) >> 3; } |
61 |
|
62 |
///
|
63 |
static int (get_permission)(unsigned int base_addr, unsigned int size) { |
64 |
struct minix_mem_range mmr;
|
65 |
mmr.mr_base = base_addr; |
66 |
mmr.mr_limit = base_addr + size; |
67 |
return sys_privctl(SELF, SYS_PRIV_ADD_MEM, &mmr);
|
68 |
} |
69 |
|
70 |
//static int (get_permissions_first_mbyte)(void) {
|
71 |
// return get_permission(MBYTE_BASE, MBYTE_SIZE);
|
72 |
//}
|
73 |
|
74 |
/// MEMORY
|
75 |
static uint8_t *video_mem = NULL; /** @brief Frame-buffer VM address. */ |
76 |
static uint8_t *video_buf = NULL; /** @brief Primary buffer for drawing before copying to video_mem. */ |
77 |
static mmap_t mem_map;
|
78 |
static int (graph_free_memory)(void) { |
79 |
int r = SUCCESS;
|
80 |
free(video_buf); video_buf = NULL;
|
81 |
r = !lm_free(&mem_map); |
82 |
return r;
|
83 |
} |
84 |
static int (graph_map_vram)(void) { |
85 |
int r;
|
86 |
const unsigned vram_base = graph_get_phys_addr(); |
87 |
const unsigned vram_size = graph_get_vram_size(); |
88 |
if ((r = get_permission(vram_base, vram_size))) {
|
89 |
if (graph_free_memory()) {
|
90 |
printf("%s: lm_free failed\n", __func__);
|
91 |
} |
92 |
panic("%s: sys_privctl (ADD MEM) failed: %d\n", __func__, r);
|
93 |
} |
94 |
|
95 |
video_mem = vm_map_phys(SELF, (void *)vram_base, vram_size);
|
96 |
|
97 |
if (video_mem == MAP_FAILED) {
|
98 |
if (graph_free_memory()) {
|
99 |
printf("%s: lm_free failed\n", __func__);
|
100 |
} |
101 |
panic("%s: couldn't map video memory.", __func__);
|
102 |
} |
103 |
|
104 |
video_buf = malloc(vram_size); |
105 |
|
106 |
return SUCCESS;
|
107 |
} |
108 |
|
109 |
/// INFO GET
|
110 |
static int (vbe_get_mode_information)(uint16_t mode) { |
111 |
memset(&vbe_mem_info, 0, sizeof(vbe_mode_info_t)); // reset values |
112 |
|
113 |
struct reg86 reg_86;
|
114 |
memset(®_86, 0, sizeof(struct reg86)); // reset struct |
115 |
|
116 |
vbe_mode_info_t *virtual_addr = lm_alloc(sizeof(vbe_mode_info_t), &mem_map);
|
117 |
|
118 |
reg_86.intno = VC_BIOS_SERV; |
119 |
reg_86.ah = VBE_CALL; |
120 |
reg_86.al = VBE_MD_INFO; |
121 |
reg_86.cx = mode; |
122 |
reg_86.es = PB2BASE(mem_map.phys); |
123 |
reg_86.di = PB2OFF(mem_map.phys); |
124 |
// BIOS CALL
|
125 |
if (sys_int86(®_86) || reg_86.ah != AH_SUCCESS) {
|
126 |
printf("%s: sys_int86 failed\n", __func__);
|
127 |
if (graph_free_memory()) {
|
128 |
printf("%s: lm_free failed\n", __func__);
|
129 |
} |
130 |
return BIOS_CALL_ERROR;
|
131 |
} |
132 |
|
133 |
memcpy((void*)&vbe_mem_info, (void*)virtual_addr, mem_map.size); |
134 |
return SUCCESS;
|
135 |
} |
136 |
/*
|
137 |
static int (vbe_get_controller_information)(vg_vbe_contr_info_t *info_p) {
|
138 |
memset(info_p, 0, sizeof(vg_vbe_contr_info_t)); // reset values
|
139 |
|
140 |
mmap_t controller_map;
|
141 |
|
142 |
struct reg86 reg_86;
|
143 |
memset(®_86, 0, sizeof(struct reg86)); // reset struct
|
144 |
|
145 |
VbeInfoBlock *virtual_addr = lm_alloc(sizeof(VbeInfoBlock), &controller_map);
|
146 |
|
147 |
uint32_t virtual_base = (uint32_t)(virtual_addr) - controller_map.phys;
|
148 |
|
149 |
virtual_addr->VbeSignature[0] = 'V';
|
150 |
virtual_addr->VbeSignature[1] = 'B';
|
151 |
virtual_addr->VbeSignature[2] = 'E';
|
152 |
virtual_addr->VbeSignature[3] = '2';
|
153 |
|
154 |
|
155 |
reg_86.intno = VC_BIOS_SERV;
|
156 |
reg_86.ah = VBE_CALL;
|
157 |
reg_86.al = VBE_CTRL_INFO;
|
158 |
reg_86.es = PB2BASE(controller_map.phys);
|
159 |
reg_86.di = PB2OFF(controller_map.phys);
|
160 |
// BIOS CALL
|
161 |
if (sys_int86(®_86) || reg_86.ah != AH_SUCCESS) {
|
162 |
printf("%s: sys_int86 failed\n", __func__);
|
163 |
if (!lm_free(&controller_map)) {
|
164 |
printf("%s: lm_free failed\n", __func__);
|
165 |
}
|
166 |
return BIOS_CALL_ERROR;
|
167 |
}
|
168 |
|
169 |
info_p->VBESignature[0] = virtual_addr->VbeSignature[0];
|
170 |
info_p->VBESignature[1] = virtual_addr->VbeSignature[1];
|
171 |
info_p->VBESignature[2] = virtual_addr->VbeSignature[2];
|
172 |
info_p->VBESignature[3] = virtual_addr->VbeSignature[3];
|
173 |
|
174 |
uint8_t lsb, msb;
|
175 |
util_get_LSB(virtual_addr->VbeVersion, &lsb);
|
176 |
util_get_MSB(virtual_addr->VbeVersion, &msb);
|
177 |
info_p->VBEVersion[0] = lsb;
|
178 |
info_p->VBEVersion[1] = msb;
|
179 |
|
180 |
info_p->TotalMemory = (virtual_addr->TotalMemory << 6);
|
181 |
|
182 |
// Convert Far Far Pointer to Virtual Address
|
183 |
|
184 |
uint32_t phys_ptr = FAR2PHYS(virtual_addr->OemStringPtr);
|
185 |
uint32_t virtual_ptr = phys_ptr + virtual_base;
|
186 |
info_p->OEMString = (char*)(virtual_ptr);
|
187 |
|
188 |
phys_ptr = FAR2PHYS(virtual_addr->VideoModePtr);
|
189 |
virtual_ptr = phys_ptr + virtual_base;
|
190 |
info_p->VideoModeList = (uint16_t*)(virtual_ptr);
|
191 |
|
192 |
phys_ptr = FAR2PHYS(virtual_addr->OemVendorNamePtr);
|
193 |
virtual_ptr = phys_ptr + virtual_base;
|
194 |
info_p->OEMVendorNamePtr = (char*)(virtual_ptr);
|
195 |
|
196 |
phys_ptr = FAR2PHYS(virtual_addr->OemProductNamePtr);
|
197 |
virtual_ptr = phys_ptr + virtual_base;
|
198 |
info_p->OEMProductNamePtr = (char*)(virtual_ptr);
|
199 |
|
200 |
phys_ptr = FAR2PHYS(virtual_addr->OemProductRevPtr);
|
201 |
virtual_ptr = phys_ptr + virtual_base;
|
202 |
info_p->OEMProductRevPtr = (char*)(virtual_ptr);
|
203 |
|
204 |
if (!lm_free(&controller_map)) {
|
205 |
printf("%s: lm_free failed\n", __func__);
|
206 |
return LCF_ERROR;
|
207 |
}
|
208 |
|
209 |
return SUCCESS;
|
210 |
}
|
211 |
*/
|
212 |
|
213 |
/// INIT
|
214 |
/**
|
215 |
* @brief
|
216 |
* @param mode
|
217 |
* @return
|
218 |
*/
|
219 |
static int (graph_set_mode)(uint16_t mode) { |
220 |
struct reg86 reg_86;
|
221 |
|
222 |
memset(®_86, 0, sizeof(struct reg86)); // reset struct |
223 |
|
224 |
// Set Reg86
|
225 |
reg_86.intno = VC_BIOS_SERV; |
226 |
reg_86.ah = VBE_CALL; |
227 |
reg_86.al = SET_VBE_MD; |
228 |
reg_86.bx = mode | LINEAR_FRAME_BUFFER_MD; |
229 |
|
230 |
// BIOS CALL
|
231 |
if (sys_int86(®_86) || reg_86.ah != AH_SUCCESS) {
|
232 |
printf("%s: sys_int86 failed\n", __func__);
|
233 |
return BIOS_CALL_ERROR;
|
234 |
} |
235 |
|
236 |
return SUCCESS;
|
237 |
} |
238 |
int (graph_init)(uint16_t mode){
|
239 |
if (vbe_get_mode_information(mode)) {
|
240 |
printf("%s: failed to get information for mode %x.\n", __func__, mode);
|
241 |
return 1; |
242 |
} |
243 |
|
244 |
graph_map_vram(); // if function fails it aborts program
|
245 |
|
246 |
if (graph_set_mode(mode)) {
|
247 |
printf("%s: failed to set graphic mode %x.\n", __func__, mode);
|
248 |
return 1; |
249 |
}; |
250 |
return SUCCESS;
|
251 |
} |
252 |
|
253 |
/// CLEANUP
|
254 |
int (graph_cleanup)(void){ |
255 |
int r = SUCCESS;
|
256 |
if ((r = vg_exit()))
|
257 |
printf("%s: vg_exit failed to exit to text mode.\n", __func__);
|
258 |
if ((r = graph_free_memory()))
|
259 |
printf("%s: lm_free failed\n", __func__);
|
260 |
return r;
|
261 |
} |
262 |
|
263 |
/// PIXEL DRAWING
|
264 |
int (graph_set_pixel)(uint16_t x, uint16_t y, uint32_t color) {
|
265 |
//pixels are certain to be inside can reduce lag
|
266 |
/*if (x < 0 || vbe_mem_info.XResolution <= x || y < 0 || vbe_mem_info.YResolution <= y) {
|
267 |
//printf("%s: invalid pixel.\n", __func__);
|
268 |
return OUT_OF_RANGE;
|
269 |
}*/
|
270 |
unsigned int pos = (x + y * vbe_mem_info.XResolution) * 3/*graph_get_bytes_pixel()*/; |
271 |
memcpy(video_buf + pos, &color, 3/*graph_get_bytes_pixel()*/); |
272 |
return SUCCESS;
|
273 |
} |
274 |
void (graph_set_pixel_pos)(unsigned pos, uint32_t color){ |
275 |
memcpy(video_buf + pos, &color, graph_get_bytes_pixel()); |
276 |
} |
277 |
int (graph_clear_screen)(void){ memset(video_buf, 0, graph_get_vram_size()); return SUCCESS; } |
278 |
int (graph_draw)(void){ memcpy(video_mem, video_buf, graph_get_vram_size()); return SUCCESS; } |
279 |
|
280 |
///SPRITE
|
281 |
#include "sprite.h" |
282 |
|
283 |
#include "utils.h" |
284 |
#include "fast_math.h" |
285 |
#include <math.h> |
286 |
|
287 |
struct basic_sprite{
|
288 |
uint8_t *map; |
289 |
uint16_t w, h; |
290 |
int16_t u0, v0; |
291 |
}; |
292 |
basic_sprite_t* (basic_sprite_ctor)(const char **xpm, int16_t u0, int16_t v0){ |
293 |
basic_sprite_t *ret = malloc(sizeof(basic_sprite_t));
|
294 |
if(ret == NULL) return NULL; |
295 |
enum xpm_image_type type = XPM_8_8_8_8;
|
296 |
xpm_image_t img; |
297 |
ret->map = xpm_load((xpm_map_t)xpm, type, &img); |
298 |
if(ret->map == NULL){ |
299 |
basic_sprite_dtor(ret); |
300 |
return NULL; |
301 |
} |
302 |
ret->w = img.width; |
303 |
ret->h = img.height; |
304 |
ret->u0 = u0; |
305 |
ret->v0 = v0; |
306 |
return ret;
|
307 |
} |
308 |
void (basic_sprite_dtor)(basic_sprite_t *p){
|
309 |
if(p == NULL) return; |
310 |
free(p->map); |
311 |
free(p); |
312 |
} |
313 |
const uint8_t* (basic_sprite_get_map)(const basic_sprite_t *p){ return p->map; } |
314 |
uint16_t (basic_sprite_get_w) (const basic_sprite_t *p){ return p->w ; } |
315 |
uint16_t (basic_sprite_get_h) (const basic_sprite_t *p){ return p->h ; } |
316 |
int16_t (basic_sprite_get_u0) (const basic_sprite_t *p){ return p->u0 ; } |
317 |
int16_t (basic_sprite_get_v0) (const basic_sprite_t *p){ return p->v0 ; } |
318 |
|
319 |
/*
|
320 |
struct basic_sprite_alpha{
|
321 |
uint8_t *map;
|
322 |
uint16_t w, h;
|
323 |
int16_t u0, v0;
|
324 |
};
|
325 |
basic_sprite_alpha_t* (basic_sprite_alpha_ctor)(const char **xpm, int16_t u0, int16_t v0){
|
326 |
basic_sprite_alpha_t *ret = malloc(sizeof(basic_sprite_t));
|
327 |
if(ret == NULL) return NULL;
|
328 |
enum xpm_image_type type = XPM_8_8_8_8;
|
329 |
xpm_image_t img;
|
330 |
ret->map = NULL;
|
331 |
uint8_t *m = xpm_load((xpm_map_t)xpm, type, &img);
|
332 |
if(m == NULL){
|
333 |
basic_sprite_alpha_dtor(ret);
|
334 |
return NULL;
|
335 |
}
|
336 |
ret->map = m;
|
337 |
if(ret->map == NULL){
|
338 |
basic_sprite_alpha_dtor(ret);
|
339 |
return NULL;
|
340 |
}
|
341 |
ret->w = img.width;
|
342 |
ret->h = img.height;
|
343 |
ret->u0 = u0;
|
344 |
ret->v0 = v0;
|
345 |
return ret;
|
346 |
}
|
347 |
void (basic_sprite_alpha_dtor)(basic_sprite_alpha_t *p){
|
348 |
if(p == NULL) return;
|
349 |
free(p->map);
|
350 |
free(p);
|
351 |
}
|
352 |
const uint8_t* (basic_sprite_alpha_get_map)(const basic_sprite_alpha_t *p){ return p->map; }
|
353 |
uint16_t (basic_sprite_alpha_get_w) (const basic_sprite_alpha_t *p){ return p->w ; }
|
354 |
uint16_t (basic_sprite_alpha_get_h) (const basic_sprite_alpha_t *p){ return p->h ; }
|
355 |
int16_t (basic_sprite_alpha_get_u0) (const basic_sprite_alpha_t *p){ return p->u0 ; }
|
356 |
int16_t (basic_sprite_alpha_get_v0) (const basic_sprite_alpha_t *p){ return p->v0 ; }
|
357 |
*/
|
358 |
|
359 |
struct sprite{
|
360 |
const basic_sprite_t *bsp;
|
361 |
int16_t x, y; //position in screen
|
362 |
double theta, s, c;
|
363 |
double scale;
|
364 |
}; |
365 |
sprite_t* (sprite_ctor)(const basic_sprite_t *bsp){
|
366 |
sprite_t *ret = malloc(sizeof(sprite_t));
|
367 |
if(ret == NULL) return NULL; |
368 |
ret->bsp = bsp; |
369 |
ret->x = 0;
|
370 |
ret->y = 0;
|
371 |
sprite_set_angle(ret, 0.0); |
372 |
ret->scale = 1.0; |
373 |
return ret;
|
374 |
} |
375 |
void (sprite_dtor)(sprite_t *p){
|
376 |
if(p == NULL) return; |
377 |
free(p); |
378 |
} |
379 |
void (sprite_set_pos) (sprite_t *p, int16_t x , int16_t y ){ p->x = x; p->y = y; }
|
380 |
void (sprite_set_angle) (sprite_t *p, double angle ){ p->theta = angle; p->c = fm_cos(p->theta); p->s = fm_sin(p->theta); } |
381 |
void (sprite_set_scale) (sprite_t *p, double scale ){ p->scale = scale; } |
382 |
int16_t (sprite_get_x)(const sprite_t *p){ return p->x; } |
383 |
int16_t (sprite_get_y)(const sprite_t *p){ return p->y; } |
384 |
double (sprite_get_angle)(const sprite_t *p){ return p->theta; } |
385 |
uint16_t (sprite_get_w)(const sprite_t *p){ return basic_sprite_get_w(p->bsp); } |
386 |
uint16_t (sprite_get_h)(const sprite_t *p){ return basic_sprite_get_h(p->bsp); } |
387 |
void (sprite_src2pic)(const sprite_t *p, int16_t x, int16_t y, int16_t *u, int16_t *v){ |
388 |
double dx = (x - p->x)/p->scale;
|
389 |
double dy = (y - p->y)/p->scale;
|
390 |
int16_t du = dx*p->c - dy*p->s - 0.5; |
391 |
int16_t dv = dx*p->s + dy*p->c - 0.5; |
392 |
*u = du + basic_sprite_get_u0(p->bsp); |
393 |
*v = dv + basic_sprite_get_v0(p->bsp); |
394 |
} |
395 |
void (sprite_pic2src)(const sprite_t *p, int16_t u, int16_t v, int16_t *x, int16_t *y){ |
396 |
int16_t du = u - basic_sprite_get_u0(p->bsp); |
397 |
int16_t dv = v - basic_sprite_get_v0(p->bsp); |
398 |
double dx = du*p->c + dv*p->s;
|
399 |
double dy = -du*p->s + dv*p->c;
|
400 |
*x = dx*p->scale + 0.5 + p->x; |
401 |
*y = dy*p->scale + 0.5 + p->y; |
402 |
} |
403 |
void (sprite_draw)(const sprite_t *p){ |
404 |
const uint16_t w = basic_sprite_get_w(p->bsp);
|
405 |
const uint16_t h = basic_sprite_get_h(p->bsp);
|
406 |
int16_t xmin, xmax, ymin, ymax; { |
407 |
int16_t x, y; |
408 |
sprite_pic2src(p, 0, 0, &x, &y); |
409 |
xmin = x; xmax = x; ymin = y; ymax = y; |
410 |
sprite_pic2src(p, w, 0, &x, &y);
|
411 |
xmin = min(x, xmin); xmax = max(x, xmax); ymin = min(y, ymin); ymax = max(y, ymax); |
412 |
sprite_pic2src(p, 0, h, &x, &y);
|
413 |
xmin = min(x, xmin); xmax = max(x, xmax); ymin = min(y, ymin); ymax = max(y, ymax); |
414 |
sprite_pic2src(p, w, h, &x, &y); |
415 |
xmin = min(x, xmin); xmax = max(x, xmax); ymin = min(y, ymin); ymax = max(y, ymax); |
416 |
xmin = max(xmin-(int16_t)p->scale-2, 0); xmax = min(xmax+(int16_t)p->scale+2, graph_get_XRes()); |
417 |
ymin = max(ymin-(int16_t)p->scale-2, 0); ymax = min(ymax+(int16_t)p->scale+2, graph_get_YRes()); |
418 |
} |
419 |
const uint8_t *map = basic_sprite_get_map(p->bsp);
|
420 |
const uint16_t bytes_pixel = 3/*graph_get_bytes_pixel()*/; |
421 |
for(int16_t u, v, y = ymin; y < ymax; ++y){
|
422 |
uint8_t *place = video_buf + (xmin + y*graph_get_XRes())*bytes_pixel; |
423 |
for(int16_t x = xmin; x < xmax; ++x, place += bytes_pixel){
|
424 |
sprite_src2pic(p, x, y, &u, &v); |
425 |
if(0 <= u && u < w && 0 <= v && v < h){ |
426 |
const uint8_t *c_p = map+(v*w+u)*4; |
427 |
if(*(c_p+3) < ALPHA_THRESHOLD) //alpha |
428 |
memcpy(place, c_p, bytes_pixel); |
429 |
} |
430 |
} |
431 |
} |
432 |
} |