root / proj / libs / graph / src / graph.c @ 306
History | View | Annotate | Download (15.7 KB)
1 | 178 | up20180642 | #include <lcom/lcf.h> |
---|---|---|---|
2 | |||
3 | 168 | up20180642 | #include "graph.h" |
4 | 183 | up20180642 | |
5 | 168 | up20180642 | #include "errors.h" |
6 | #include <stdio.h> |
||
7 | |||
8 | 253 | up20180642 | #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 | 174 | up20180642 | /// 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 | 168 | up20180642 | static vbe_mode_info_t vbe_mem_info;
|
48 | |||
49 | 174 | up20180642 | /// 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 | 208 | up20180642 | /// 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 | 174 | up20180642 | static int (get_permission)(unsigned int base_addr, unsigned int size) { |
64 | 168 | up20180642 | 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 | 174 | up20180642 | //static int (get_permissions_first_mbyte)(void) {
|
71 | 168 | up20180642 | // return get_permission(MBYTE_BASE, MBYTE_SIZE);
|
72 | //}
|
||
73 | |||
74 | 174 | up20180642 | /// MEMORY
|
75 | 178 | up20180642 | static uint8_t *video_mem = NULL; /** @brief Frame-buffer VM address. */ |
76 | 174 | up20180642 | 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 | 168 | up20180642 | } |
94 | |||
95 | 174 | up20180642 | video_mem = vm_map_phys(SELF, (void *)vram_base, vram_size);
|
96 | 168 | up20180642 | |
97 | 174 | up20180642 | 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 | 168 | up20180642 | return SUCCESS;
|
107 | } |
||
108 | |||
109 | 174 | up20180642 | /// INFO GET
|
110 | static int (vbe_get_mode_information)(uint16_t mode) { |
||
111 | 168 | up20180642 | 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 | 174 | up20180642 | /*
|
137 | static int (vbe_get_controller_information)(vg_vbe_contr_info_t *info_p) {
|
||
138 | 168 | up20180642 | 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 | 174 | up20180642 | */
|
212 | 168 | up20180642 | |
213 | 174 | up20180642 | /// INIT
|
214 | /**
|
||
215 | * @brief
|
||
216 | * @param mode
|
||
217 | * @return
|
||
218 | */
|
||
219 | static int (graph_set_mode)(uint16_t mode) { |
||
220 | 168 | up20180642 | 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 | 174 | up20180642 | 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 | 168 | up20180642 | |
244 | 174 | up20180642 | 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 | 168 | up20180642 | int (graph_set_pixel)(uint16_t x, uint16_t y, uint32_t color) {
|
265 | 250 | up20180655 | //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 | 173 | up20180655 | //printf("%s: invalid pixel.\n", __func__);
|
268 | 168 | up20180642 | return OUT_OF_RANGE;
|
269 | 250 | up20180655 | }*/
|
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 | 168 | up20180642 | return SUCCESS;
|
273 | } |
||
274 | 208 | up20180642 | void (graph_set_pixel_pos)(unsigned pos, uint32_t color){ |
275 | 207 | up20180642 | memcpy(video_buf + pos, &color, graph_get_bytes_pixel()); |
276 | 168 | up20180642 | } |
277 | 208 | up20180642 | 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 | 174 | up20180642 | |
280 | 211 | up20180642 | ///SPRITE
|
281 | #include "utils.h" |
||
282 | #include "fast_math.h" |
||
283 | #include <math.h> |
||
284 | |||
285 | struct basic_sprite{
|
||
286 | uint8_t *map; |
||
287 | uint16_t w, h; |
||
288 | int16_t u0, v0; |
||
289 | }; |
||
290 | basic_sprite_t* (basic_sprite_ctor)(const char **xpm, int16_t u0, int16_t v0){ |
||
291 | basic_sprite_t *ret = malloc(sizeof(basic_sprite_t));
|
||
292 | if(ret == NULL) return NULL; |
||
293 | enum xpm_image_type type = XPM_8_8_8_8;
|
||
294 | xpm_image_t img; |
||
295 | ret->map = xpm_load((xpm_map_t)xpm, type, &img); |
||
296 | if(ret->map == NULL){ |
||
297 | 216 | up20180642 | basic_sprite_dtor(ret); |
298 | 211 | up20180642 | return NULL; |
299 | } |
||
300 | ret->w = img.width; |
||
301 | ret->h = img.height; |
||
302 | ret->u0 = u0; |
||
303 | ret->v0 = v0; |
||
304 | return ret;
|
||
305 | } |
||
306 | void (basic_sprite_dtor)(basic_sprite_t *p){
|
||
307 | if(p == NULL) return; |
||
308 | free(p->map); |
||
309 | free(p); |
||
310 | } |
||
311 | const uint8_t* (basic_sprite_get_map)(const basic_sprite_t *p){ return p->map; } |
||
312 | uint16_t (basic_sprite_get_w) (const basic_sprite_t *p){ return p->w ; } |
||
313 | uint16_t (basic_sprite_get_h) (const basic_sprite_t *p){ return p->h ; } |
||
314 | int16_t (basic_sprite_get_u0) (const basic_sprite_t *p){ return p->u0 ; } |
||
315 | int16_t (basic_sprite_get_v0) (const basic_sprite_t *p){ return p->v0 ; } |
||
316 | |||
317 | 216 | up20180642 | /*
|
318 | struct basic_sprite_alpha{
|
||
319 | uint8_t *map;
|
||
320 | uint16_t w, h;
|
||
321 | int16_t u0, v0;
|
||
322 | };
|
||
323 | basic_sprite_alpha_t* (basic_sprite_alpha_ctor)(const char **xpm, int16_t u0, int16_t v0){
|
||
324 | basic_sprite_alpha_t *ret = malloc(sizeof(basic_sprite_t));
|
||
325 | if(ret == NULL) return NULL;
|
||
326 | enum xpm_image_type type = XPM_8_8_8_8;
|
||
327 | xpm_image_t img;
|
||
328 | ret->map = NULL;
|
||
329 | uint8_t *m = xpm_load((xpm_map_t)xpm, type, &img);
|
||
330 | if(m == NULL){
|
||
331 | basic_sprite_alpha_dtor(ret);
|
||
332 | return NULL;
|
||
333 | }
|
||
334 | ret->map = m;
|
||
335 | if(ret->map == NULL){
|
||
336 | basic_sprite_alpha_dtor(ret);
|
||
337 | return NULL;
|
||
338 | }
|
||
339 | ret->w = img.width;
|
||
340 | ret->h = img.height;
|
||
341 | ret->u0 = u0;
|
||
342 | ret->v0 = v0;
|
||
343 | return ret;
|
||
344 | }
|
||
345 | void (basic_sprite_alpha_dtor)(basic_sprite_alpha_t *p){
|
||
346 | if(p == NULL) return;
|
||
347 | free(p->map);
|
||
348 | free(p);
|
||
349 | }
|
||
350 | const uint8_t* (basic_sprite_alpha_get_map)(const basic_sprite_alpha_t *p){ return p->map; }
|
||
351 | uint16_t (basic_sprite_alpha_get_w) (const basic_sprite_alpha_t *p){ return p->w ; }
|
||
352 | uint16_t (basic_sprite_alpha_get_h) (const basic_sprite_alpha_t *p){ return p->h ; }
|
||
353 | int16_t (basic_sprite_alpha_get_u0) (const basic_sprite_alpha_t *p){ return p->u0 ; }
|
||
354 | int16_t (basic_sprite_alpha_get_v0) (const basic_sprite_alpha_t *p){ return p->v0 ; }
|
||
355 | */
|
||
356 | |||
357 | 211 | up20180642 | struct sprite{
|
358 | const basic_sprite_t *bsp;
|
||
359 | int16_t x, y; //position in screen
|
||
360 | 306 | up20180642 | int16_t su0, sv0; |
361 | float theta, s, c;
|
||
362 | float scale;
|
||
363 | uint8_t *sbuf; |
||
364 | 211 | up20180642 | }; |
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 | 306 | up20180642 | ret->sbuf = NULL;
|
370 | 211 | up20180642 | ret->x = 0;
|
371 | ret->y = 0;
|
||
372 | sprite_set_angle(ret, 0.0); |
||
373 | 306 | up20180642 | sprite_set_scale(ret, 1.0); |
374 | 211 | up20180642 | return ret;
|
375 | } |
||
376 | void (sprite_dtor)(sprite_t *p){
|
||
377 | if(p == NULL) return; |
||
378 | 306 | up20180642 | free(p->sbuf); |
379 | 211 | up20180642 | free(p); |
380 | } |
||
381 | void (sprite_set_pos) (sprite_t *p, int16_t x , int16_t y ){ p->x = x; p->y = y; }
|
||
382 | void (sprite_set_angle) (sprite_t *p, double angle ){ p->theta = angle; p->c = fm_cos(p->theta); p->s = fm_sin(p->theta); } |
||
383 | 306 | up20180642 | void (sprite_set_scale) (sprite_t *p, double scale ){ |
384 | if(p->scale == scale) return; |
||
385 | p->scale = scale; |
||
386 | |||
387 | p->su0 = p->bsp->u0*p->scale; |
||
388 | p->sv0 = p->bsp->u0*p->scale; |
||
389 | |||
390 | const uint16_t W = basic_sprite_get_w(p->bsp),
|
||
391 | H = basic_sprite_get_h(p->bsp); |
||
392 | uint16_t sW = W*scale, sH = H*scale; |
||
393 | p->sbuf = realloc(p->sbuf, sW*sH*4);
|
||
394 | const uint8_t *map = basic_sprite_get_map(p->bsp);
|
||
395 | for(uint16_t sx = 0; sx < sW; ++sx){ |
||
396 | for(uint16_t sy = 0; sy < sH; ++sy){ |
||
397 | uint16_t x = sx/scale, y = sy/scale; |
||
398 | if(x > W || y > H) continue; |
||
399 | memcpy(p->sbuf+4*(sx+sy*sW), map+4*(x+y*W), 4); |
||
400 | } |
||
401 | } |
||
402 | } |
||
403 | 211 | up20180642 | int16_t (sprite_get_x)(const sprite_t *p){ return p->x; } |
404 | int16_t (sprite_get_y)(const sprite_t *p){ return p->y; } |
||
405 | 231 | up20180655 | double (sprite_get_angle)(const sprite_t *p){ return p->theta; } |
406 | 216 | up20180642 | uint16_t (sprite_get_w)(const sprite_t *p){ return basic_sprite_get_w(p->bsp); } |
407 | uint16_t (sprite_get_h)(const sprite_t *p){ return basic_sprite_get_h(p->bsp); } |
||
408 | 306 | up20180642 | void (sprite_src2sbuf)(const sprite_t *p, int16_t x, int16_t y, int16_t *u, int16_t *v){ |
409 | if(p->theta == 0.0){ |
||
410 | *u = x - p->x + p->su0; |
||
411 | *v = y - p->y + p->sv0; |
||
412 | }else{
|
||
413 | float dx = x - p->x;
|
||
414 | float dy = y - p->y;
|
||
415 | int16_t du = dx*p->c - dy*p->s - 0.5f; |
||
416 | int16_t dv = dx*p->s + dy*p->c - 0.5f; |
||
417 | *u = du + p->su0; |
||
418 | *v = dv + p->sv0; |
||
419 | } |
||
420 | 211 | up20180642 | } |
421 | 306 | up20180642 | void (sprite_sbuf2src)(const sprite_t *p, int16_t u, int16_t v, int16_t *x, int16_t *y){ |
422 | int16_t du = u - p->su0; |
||
423 | int16_t dv = v - p->sv0; |
||
424 | 211 | up20180642 | double dx = du*p->c + dv*p->s;
|
425 | double dy = -du*p->s + dv*p->c;
|
||
426 | 306 | up20180642 | *x = dx + 0.5 + p->x; |
427 | *y = dy + 0.5 + p->y; |
||
428 | 211 | up20180642 | } |
429 | 306 | up20180642 | |
430 | 211 | up20180642 | void (sprite_draw)(const sprite_t *p){ |
431 | 306 | up20180642 | const uint16_t sw = p->scale*basic_sprite_get_w(p->bsp);
|
432 | const uint16_t sh = p->scale*basic_sprite_get_h(p->bsp);
|
||
433 | 211 | up20180642 | int16_t xmin, xmax, ymin, ymax; { |
434 | int16_t x, y; |
||
435 | 306 | up20180642 | sprite_sbuf2src(p, 0 , 0 , &x, &y); |
436 | 211 | up20180642 | xmin = x; xmax = x; ymin = y; ymax = y; |
437 | 306 | up20180642 | sprite_sbuf2src(p, sw, 0 , &x, &y);
|
438 | 211 | up20180642 | xmin = min(x, xmin); xmax = max(x, xmax); ymin = min(y, ymin); ymax = max(y, ymax); |
439 | 306 | up20180642 | sprite_sbuf2src(p, 0 , sh, &x, &y);
|
440 | 211 | up20180642 | xmin = min(x, xmin); xmax = max(x, xmax); ymin = min(y, ymin); ymax = max(y, ymax); |
441 | 306 | up20180642 | sprite_sbuf2src(p, sw, sh, &x, &y); |
442 | 211 | up20180642 | xmin = min(x, xmin); xmax = max(x, xmax); ymin = min(y, ymin); ymax = max(y, ymax); |
443 | 306 | up20180642 | xmin = max(xmin-2, 0); xmax = min(xmax+2, graph_get_XRes()); |
444 | ymin = max(ymin-2, 0); ymax = min(ymax+2, graph_get_YRes()); |
||
445 | 211 | up20180642 | } |
446 | 250 | up20180655 | const uint16_t bytes_pixel = 3/*graph_get_bytes_pixel()*/; |
447 | 211 | up20180642 | for(int16_t u, v, y = ymin; y < ymax; ++y){
|
448 | 212 | up20180642 | uint8_t *place = video_buf + (xmin + y*graph_get_XRes())*bytes_pixel; |
449 | for(int16_t x = xmin; x < xmax; ++x, place += bytes_pixel){
|
||
450 | 306 | up20180642 | sprite_src2sbuf(p, x, y, &u, &v); |
451 | //u = x; v = y;
|
||
452 | if(0 <= u && u < sw && 0 <= v && v < sh){ |
||
453 | const uint8_t *c_p = p->sbuf+(v*sw+u)*4; |
||
454 | if(*(c_p+3) < ALPHA_THRESHOLD){ //alpha |
||
455 | 212 | up20180642 | memcpy(place, c_p, bytes_pixel); |
456 | 306 | up20180642 | } |
457 | 211 | up20180642 | } |
458 | } |
||
459 | } |
||
460 | } |