Mercurial > hg > Game > Cerium
annotate Renderer/Engine/viewerSDL.cc @ 1079:7823233584da draft
single cpu run on Mac OS X
author | one@zeus.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Sat, 18 Dec 2010 11:04:58 +0900 |
parents | 78552463c06a |
children |
rev | line source |
---|---|
539 | 1 #include "viewerSDL.h" |
2 #include "Func.h" | |
3 #include "TaskManager.h" | |
728 | 4 #include "viewer_types.h" |
993
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
5 #include "fb.h" |
539 | 6 |
984 | 7 #define UGA 1 |
8 | |
539 | 9 extern void post2runLoop(void *); |
10 | |
728 | 11 #define default_sdl_flag SDL_INIT_TIMER | SDL_INIT_JOYSTICK |
539 | 12 |
728 | 13 ViewerSDL::ViewerSDL() {} |
14 ViewerSDL::~ViewerSDL() {} | |
15 | |
993
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
16 #define DEVICE_NAME "/dev/fb0" |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
17 #define DIV_BYTE 8 |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
18 |
728 | 19 Uint32 * |
20 ViewerSDL::video_init(TaskManager *manager, int bpp, int width, int height) | |
539 | 21 { |
997 | 22 |
23 #if defined(__linux__) | |
994 | 24 |
993
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
25 int fd_framebuffer ; |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
26 struct fb_var_screeninfo vinfo; |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
27 struct fb_fix_screeninfo finfo; |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
28 |
994 | 29 // 読み書き用にファイルを開く |
993
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
30 fd_framebuffer = open( DEVICE_NAME , O_RDWR); |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
31 if ( !fd_framebuffer ) { |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
32 send_current_error_msg("Framebuffer device open error !"); |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
33 exit(1); |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
34 } |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
35 send_current_information("The framebuffer device was opened !"); |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
36 |
994 | 37 // 固定スクリーン情報取得 |
993
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
38 if ( ioctl( fd_framebuffer , FBIOGET_FSCREENINFO , &finfo ) ) { |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
39 send_current_error_msg("Fixed information not gotton !"); |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
40 exit(2); |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
41 } |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
42 |
994 | 43 // 変動スクリーン情報取得 |
993
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
44 if ( ioctl( fd_framebuffer , FBIOGET_VSCREENINFO , &vinfo ) ) { |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
45 send_current_error_msg("Variable information not gotton !"); |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
46 exit(3); |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
47 } |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
48 |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
49 close(fd_framebuffer); |
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
50 |
997 | 51 width = vinfo.xres; |
52 height = vinfo.yres; | |
53 bpp = vinfo.bits_per_pixel; | |
993
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
54 |
997 | 55 #endif |
993
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
56 |
539 | 57 Uint32 sdl_flag = default_sdl_flag | SDL_INIT_VIDEO; |
58 Uint32 *p; | |
993
d3b20d63057e
sdl mode not worked yet.
yutaka@charles.cr.ie.u-ryukyu.ac.jp
parents:
988
diff
changeset
|
59 |
539 | 60 if (SDL_Init(sdl_flag) < 0) { |
61 fprintf(stderr,"Couldn't initialize SDL: %s\n", SDL_GetError()); | |
62 exit(1); | |
63 } | |
64 | |
996 | 65 screen = SDL_SetVideoMode(width, height, bpp, SDL_HWSURFACE); |
539 | 66 if (screen == NULL) { |
994 | 67 fprintf(stderr, "Couldn't set SDL mode: %s\n", SDL_GetError()); |
539 | 68 SDL_Quit(); |
69 exit(1); | |
70 } | |
996 | 71 |
895
b662e9dd26b0
add alignment of classes in SPU
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
728
diff
changeset
|
72 this->width = screen->w; |
b662e9dd26b0
add alignment of classes in SPU
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
728
diff
changeset
|
73 this->height = screen->h; |
b662e9dd26b0
add alignment of classes in SPU
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
728
diff
changeset
|
74 this->bpp = screen->format->BitsPerPixel; |
539 | 75 |
76 p = (Uint32*)manager->allocate(screen->pitch*height); | |
77 | |
728 | 78 return p; |
539 | 79 } |
80 | |
81 void | |
82 ViewerSDL::clean_pixels() | |
83 { | |
84 //bzero(pixels, sizeof(int)*width*height); | |
996 | 85 |
994 | 86 //SDL_FillRect(screen,NULL,SDL_MapRGB(screen->format,0,0,0)); |
539 | 87 } |
88 | |
89 void | |
728 | 90 ViewerSDL::clear_screen() |
539 | 91 { |
994 | 92 |
984 | 93 #if !UGA |
539 | 94 SDL_BlitSurface(bitmap, NULL, screen, NULL); |
95 SDL_UpdateRect(screen, 0, 0, 0, 0); | |
984 | 96 #endif |
994 | 97 |
984 | 98 } |
99 | |
100 uint32_t * | |
101 ViewerSDL::flip_screen(uint32_t *old) | |
102 { | |
103 #if UGA | |
994 | 104 |
105 bitmap = SDL_CreateRGBSurfaceFrom((void *)old, | |
106 screen->w, screen->h, | |
107 screen->format->BitsPerPixel, | |
108 screen->pitch, | |
109 //redMask, greenMask, blueMask, alphaMask); | |
110 redMask, greenMask, blueMask, 0); | |
111 | |
984 | 112 SDL_BlitSurface(bitmap,NULL,screen,NULL); |
113 SDL_UpdateRect(screen,0,0,0,0); | |
994 | 114 |
984 | 115 #endif |
994 | 116 |
984 | 117 return old; |
539 | 118 } |
119 | |
120 void | |
728 | 121 ViewerSDL::free_device() |
539 | 122 { |
123 free(bitmap->pixels); | |
124 SDL_FreeSurface(bitmap); | |
125 } |