Mercurial > hg > Members > kono > Cerium
view Renderer/Engine/main.cc @ 760:24a37fe8419a
first of all commit, not work Rendering/Test/create_task
author | hiroki |
---|---|
date | Thu, 04 Feb 2010 14:46:09 +0900 |
parents | b7376415fa5f |
children | bed529c55eda |
line wrap: on
line source
#include "TaskManager.h" #include "viewer.h" #include "viewerSDL.h" #include "viewerFB.h" #include "Application.h" /* prototype */ extern int init(TaskManager *manager, int argc, char *argv[]); extern void task_initialize(); extern Application *application(); extern int init(TaskManager *manager, int argc, char *argv[]); // 大域変数は禁止 //static Viewer *screen; /* const char *usr_help_str = "Usage: ./test_nogl [OPTION]\n\ -cpu Number of SPE (default 1)\n\ -width, -height window size (default 640x480)\n\ -sg Draw SceneGraph\n\ 0: Joystick の 丸ボタン(Keyboard だとx) を押すと、キューブが二つに分かれる\n\ 1: 0 のキューブが大きい版\n\ 2: テクスチャテスト:576x384\n\ 3: テクスチャテスト:1024x768\n\ 4: テクスチャテスト:2048x1536\n\ 5: 地球が動き、その周りを月が自転、公転する\n\ 6 以降: キューブが跳ね返りながら、勝手にキューブが増えて行く\n"; */ int init(TaskManager *manager, int argc, char *argv[]) { int bpp = 32; int width = 640; int height = 480; int spenum = 1; video_type vtype = VTYPE_SDL; for(int i = 1; argv[i]; ++i) { if (strcmp(argv[i], "-bpp") == 0) { bpp = atoi(argv[++i]); } if (strcmp(argv[i], "-width") == 0) { width = atoi(argv[++i]); } if (strcmp(argv[i], "-height") == 0) { height = atoi(argv[++i]); } if (strcmp(argv[i], "-cpu") == 0) { spenum = atoi(argv[++i]); } if (strcmp(argv[i], "-video") == 0) { if (strcmp(argv[i+1], "sdl") == 0) { vtype = VTYPE_SDL; } else if (strcmp(argv[i+1], "fb") == 0) { vtype = VTYPE_FB; } i++; } } Viewer *screen; if (vtype == VTYPE_SDL) { ViewerDevice *dev = new ViewerSDL(manager); screen = new Viewer(manager, dev, bpp, width, height, spenum); } else if (vtype == VTYPE_FB) { ViewerDevice *dev = new ViewerFB(manager); screen = new Viewer(manager, dev, bpp, width, height, spenum); }else{ ViewerDevice *dev = new ViewerSDL(manager); screen = new Viewer(manager, dev, bpp, width, height, spenum); } screen->run_init(manager, application()); return 0; } #if 0 // These are defined in Application int TMmain(TaskManager *manager, int argc, char *argv[]) { task_initialize(); manager->set_TMend(TMend); return init(manager, argc, argv); } void TMend(TaskManager *manager) { printf("test_nogl end\n"); } #endif /* end */