X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=fbgfx;a=blobdiff_plain;f=src%2Fmain.c;h=4d63726f3307514d854b2f01f82687c79ddb6f95;hp=9e27509ce98aacbb6923fbf621786d2131d8c312;hb=55eb7990ac9033d9a0185dc9238365b5624be64e;hpb=047042f3d08b2eb272256f0e17b2391c85756f49 diff --git a/src/main.c b/src/main.c index 9e27509..4d63726 100644 --- a/src/main.c +++ b/src/main.c @@ -3,36 +3,42 @@ #include #include "fbgfx.h" #include "fbevents.h" -#include "tunnel.h" #include "timer.h" - -unsigned long start_msec, time_msec, num_frames; +#include "screen.h" +#include "screen.h" +#include "demo.h" static void keyboard(int key, int pressed, void *cls); static void mouse(int bn, int pressed, int x, int y, void *cls); static void motion(int x, int y, void *cls); -static void *vmem; -static int xsz, ysz, depth; +static long start_msec, num_frames; static int quit; int main(void) { - fbgfx_save_video_mode(); - if(!(vmem = fbgfx_get_video_mode(&xsz, &ysz, &depth))) { - return 1; - } + int i, trybpp[] = {16, 32, 24, 16, 0}; - /*if(!(vmem = fbgfx_set_video_mode(xsz, ysz, 16))) { - return 1; + fbgfx_save_video_mode(); + fbgfx_get_video_mode(&fb_width, &fb_height, &fb_depth); + + for(i=0; trybpp[i]; i++) { + if(!(fb_pixels = fbgfx_set_video_mode(fb_width, fb_height, trybpp[i]))) { + continue; + } + fbgfx_get_video_mode(&fb_width, &fb_height, &fb_depth); + if(fb_depth == trybpp[i]) { + break; + } + fprintf(stderr, "failed to set color fb_depth: %dbpp\n", trybpp[i]); } - fbgfx_get_video_mode(&xsz, &ysz, &depth); - if(depth != 16) { - fprintf(stderr, "failed to set color depth: 16bpp\n"); + if(trybpp[i] == 0) { + fprintf(stderr, "no usable color fb_depths found\n"); goto end; - }*/ + } + if(fbev_init() == -1) { goto end; } @@ -40,9 +46,11 @@ int main(void) fbev_mbutton(mouse, 0); fbev_mmotion(motion, 0); - if(init_tunnel(xsz, ysz, depth) == -1) { + if(scr_init() == -1) { goto end; } + scr_change(scr_lookup("console"), 0); + scr_change(scr_lookup("tunnel"), 4000); start_msec = get_time_msec(); for(;;) { @@ -51,13 +59,14 @@ int main(void) time_msec = get_time_msec() - start_msec; - draw_tunnel(vmem); + scr_update(); + scr_draw(); ++num_frames; } time_msec = get_time_msec() - start_msec; end: - destroy_tunnel(); + scr_shutdown(); fbev_shutdown(); fbgfx_restore_video_mode(); if(num_frames && time_msec) {