Mercurial > otakunoraifu
comparison scn2k/test.cc @ 0:223b71206888
Initial import
author | thib |
---|---|
date | Fri, 01 Aug 2008 16:32:45 +0000 |
parents | |
children | 6d1a5b7f0838 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:223b71206888 |
---|---|
1 #include<stdio.h> | |
2 #include<stdlib.h> | |
3 #include<unistd.h> | |
4 | |
5 #include<SDL.h> | |
6 #include<vector> | |
7 | |
8 #include"system/file.h" | |
9 #include"system/system_config.h" | |
10 #include"window/widget.h" | |
11 #include"window/system.h" | |
12 | |
13 #include"music2/music.h" | |
14 | |
15 #include"scn2k.h" | |
16 #include"scn2k_impl.h" | |
17 | |
18 using namespace std; | |
19 | |
20 extern char* diag; | |
21 extern char* diag2; | |
22 | |
23 int main(void) { | |
24 AyuSysConfig config; | |
25 printf("%s\n",setlocale(LC_ALL,"")); | |
26 //file_searcher.InitRoot("/home/uenok/pb"); | |
27 file_searcher.InitRoot("/mnt/KEY/CLANNAD"); | |
28 config.LoadInitFile(); | |
29 | |
30 MuSys mu(config); | |
31 mu.InitMusic(); | |
32 SetFont("msgothic.ttc"); | |
33 | |
34 SDL_Init(SDL_INIT_VIDEO); | |
35 SDL_SetVideoMode(640, 480, 0, SDL_HWSURFACE /*| SDL_FULLSCREEN */); | |
36 System::Main main; | |
37 | |
38 PicContainer* main_panel = main.root.create_node(Rect(0, 0, main.root.width, main.root.height), 0); | |
39 main_panel->show(); | |
40 Scn2k scn(main.event, *main_panel, mu, config); | |
41 // MouseCursor* cursor = new MouseCursor | |
42 // scn.OpenScript(1002, -19482); // ラブ生〜 | |
43 //scn.OpenScript(1002, -18240); // ラブ生シーン開始 | |
44 // scn.OpenScript(1002, -59528); // ラブ生シーン開始 | |
45 // scn.OpenScript(2, 0); | |
46 // scn.OpenScript(320, 0); | |
47 //scn.OpenScript(320, -4269); // オープニング(Chap.2) | |
48 //scn.OpenScript(320, -2523); | |
49 //scn.OpenScript(320, -7549); | |
50 // scn.OpenScript(310, 0); // エンディング(Wed.day) | |
51 //scn.OpenScript(311, 0); // エンディング | |
52 // scn.OpenScript(100, -2244); // 選択肢 | |
53 // scn.OpenScript(100, -9008); // 選択肢 | |
54 //scn.OpenScript(1001, -118520 ); // 選択肢:葛城クン | |
55 // scn.OpenScript(1, 0); // 開始 | |
56 // scn.OpenScript(414,380); // 開始 | |
57 // scn.OpenScript(9142,0); // 開始 | |
58 // config.SetParam("#SEEN_START", 1, 9140); | |
59 //scn.show_textwindow(0); | |
60 | |
61 main.Mainloop(); | |
62 | |
63 mu.FinalizeMusic(); | |
64 | |
65 SDL_Quit(); | |
66 } | |
67 |