Mercurial > hg > Members > kono > Cerium
comparison Renderer/test_render/main.cpp @ 283:55ea4465b1a2
fix test_render
author | e065746@localhost.localdomain |
---|---|
date | Fri, 05 Jun 2009 16:49:12 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
282:ef061be0baff | 283:55ea4465b1a2 |
---|---|
1 #include "TaskManager.h" | |
2 #include "viewer.h" | |
3 #include "viewerSDL.h" | |
4 #include "viewerFB.h" | |
5 #include "Func.h" | |
6 | |
7 /* prototype */ | |
8 static int init(int argc, char *argv[]); | |
9 static void TMend(void); | |
10 | |
11 extern void task_initialize(); | |
12 | |
13 Viewer *screen; | |
14 | |
15 static int sg_number = 0; | |
16 | |
17 static const char *help_str = "Usage: ./test_nogl [OPTION]\n\ | |
18 -cpu Number of SPE (default 1)\n\ | |
19 -width, -height window size (default 640x480)\n\ | |
20 -sg Draw SceneGraph\n\ | |
21 0: Joystick の 丸ボタン(Keyboard だとx) を押すと、キューブが二つに分かれる\n\ | |
22 1: 0 のキューブが大きい版\n\ | |
23 2: テクスチャテスト:576x384\n\ | |
24 3: テクスチャテスト:1024x768\n\ | |
25 4: テクスチャテスト:2048x1536\n\ | |
26 5: 地球が動き、その周りを月が自転、公転する\n\ | |
27 6 以降: キューブが跳ね返りながら、勝手にキューブが増えて行く\n"; | |
28 | |
29 int | |
30 init(int argc, char *argv[]) | |
31 { | |
32 int bpp = 32; | |
33 int width = 640; | |
34 int height = 480; | |
35 int spenum = 1; | |
36 const char *xml = "xml_file/cube.xml"; | |
37 video_type vtype = VTYPE_SDL; | |
38 | |
39 for(int i = 1; argv[i]; ++i) | |
40 { | |
41 if (strcmp(argv[i], "-bpp") == 0) { | |
42 bpp = atoi(argv[++i]); | |
43 } | |
44 if (strcmp(argv[i], "-width") == 0) { | |
45 width = atoi(argv[++i]); | |
46 } | |
47 if (strcmp(argv[i], "-height") == 0) { | |
48 height = atoi(argv[++i]); | |
49 } | |
50 if (strcmp(argv[i], "-xml") == 0) { | |
51 xml = argv[++i]; | |
52 } | |
53 if (strcmp(argv[i], "-sg") == 0) { | |
54 sg_number = (atoi)(argv[++i]); | |
55 } | |
56 if (strcmp(argv[i], "-cpu") == 0) { | |
57 spenum = atoi(argv[++i]); | |
58 } | |
59 if (strcmp(argv[i], "-help") == 0) { | |
60 printf("%s\n", help_str); | |
61 return -1; | |
62 } | |
63 if (strcmp(argv[i], "-video") == 0) { | |
64 if (strcmp(argv[i+1], "sdl") == 0) { | |
65 vtype = VTYPE_SDL; | |
66 } else if (strcmp(argv[i+1], "fb") == 0) { | |
67 vtype = VTYPE_FB; | |
68 } | |
69 i++; | |
70 } | |
71 } | |
72 | |
73 if (vtype == VTYPE_SDL) { | |
74 screen = new ViewerSDL(bpp, width, height, spenum); | |
75 } else if (vtype == VTYPE_FB) { | |
76 screen = new ViewerFB(bpp, width, height, spenum); | |
77 } | |
78 | |
79 screen->video_init(); | |
80 screen->run_init(xml, sg_number); | |
81 | |
82 manager->set_TMend(TMend); | |
83 | |
84 return 0; | |
85 } | |
86 | |
87 int | |
88 TMmain(int argc, char *argv[]) | |
89 { | |
90 task_initialize(); | |
91 | |
92 return init(argc, argv); | |
93 | |
94 //return 0; | |
95 } | |
96 | |
97 void | |
98 TMend(void) | |
99 { | |
100 printf("test_nogl end\n"); | |
101 } |