X-Git-Url: http://git.mutantstargoat.com?a=blobdiff_plain;f=src%2Fgfx.cc;fp=src%2Fgfx.cc;h=0000000000000000000000000000000000000000;hb=6dc42c0e7292d6d94de640ddd7de3ee5c808e9c2;hp=7d3595c1ca3ff679b3b76c30c6c5b8f469106f2e;hpb=4047a2dc058e7e54e4ff95311fb556ae8eeeedb9;p=winnie diff --git a/src/gfx.cc b/src/gfx.cc deleted file mode 100644 index 7d3595c..0000000 --- a/src/gfx.cc +++ /dev/null @@ -1,219 +0,0 @@ -#include -#include -#include -#include - -#include -#include -#include -#include - -#include - -#include "gfx.h" - -#define FRAMEBUFFER_SIZE(xsz, ysz, bpp) ((xsz) * (ysz) * (bpp) / CHAR_BIT) - -static unsigned char *framebuffer; -static int dev_fd = -1; - -static Rect screen_rect; -static int color_depth; //bits per pixel - -bool init_gfx() -{ - if((dev_fd = open("/dev/fb0", O_RDWR)) == -1) { - fprintf(stderr, "Cannot open /dev/fb0 : %s\n", strerror(errno)); - return false; - } - - fb_var_screeninfo sinfo; - if(ioctl(dev_fd, FBIOGET_VSCREENINFO, &sinfo) == -1) { - close(dev_fd); - dev_fd = -1; - fprintf(stderr, "Unable to get screen info : %s\n", strerror(errno)); - return false; - } - - printf("width : %d height : %d\n : bpp : %d\n", sinfo.xres, sinfo.yres, sinfo.bits_per_pixel); - printf("virtual w: %d virtual h: %d\n", sinfo.xres_virtual, sinfo.yres_virtual); - - screen_rect.x = screen_rect.y = 0; - screen_rect.width = sinfo.xres_virtual; - screen_rect.height = sinfo.yres_virtual; - color_depth = sinfo.bits_per_pixel; - - int sz = FRAMEBUFFER_SIZE(screen_rect.width, screen_rect.height, color_depth); - framebuffer = (unsigned char*)mmap(0, sz, PROT_READ | PROT_WRITE, MAP_SHARED, dev_fd, 0); - - if(framebuffer == (void*)-1) { - close(dev_fd); - dev_fd = -1; - fprintf(stderr, "Cannot map the framebuffer to memory : %s\n", strerror(errno)); - return false; - } - - return true; -} - -void destroy_gfx() -{ - clear_screen(0, 0, 0); - - if(dev_fd != -1) { - close(dev_fd); - } - - dev_fd = -1; - - munmap(framebuffer, FRAMEBUFFER_SIZE(screen_rect.width, screen_rect.height, color_depth)); - framebuffer = 0; -} - -unsigned char *get_framebuffer() -{ - return framebuffer; -} - -Rect get_screen_size() -{ - return screen_rect; -} - -int get_color_depth() -{ - return color_depth; -} - -void clear_screen(int r, int g, int b) -{ - fill_rect(screen_rect, r, g, b); -} - -void fill_rect(const Rect &rect, int r, int g, int b) -{ - Rect drect = rect; - - if(drect.x < 0) { - drect.x = 0; - } - - if(drect.y < 0) { - drect.y = 0; - } - - unsigned char *fb = framebuffer + (drect.x + screen_rect.width * drect.y) * 4; - for(int i=0; i= dest_rect.width) { - width -= xend - dest_rect.width; - } - - int yend = dest_y + height; - if(yend >= dest_rect.height) { - height -= yend - dest_rect.height; - } - - if(width <= 0 || height <= 0) { - return; - } - - unsigned char *sptr = src_img + (src_rect.y * src_rect.width + src_rect.x) * 4; - unsigned char *dptr = dest_img + (dest_y * dest_rect.width + dest_x) * 4; - - for(int i=0; i= dest_rect.width) { - width -= xend - dest_rect.width; - } - - int yend = dest_y + height; - if(yend >= dest_rect.height) { - height -= yend - dest_rect.height; - } - - if(width <= 0 || height <= 0) { - return; - } - - unsigned char *sptr = src_img + (src_rect.y * src_rect.width + src_rect.x) * 4; - unsigned char *dptr = dest_img + (dest_y * dest_rect.width + dest_x) * 4; - - for(int i=0; i