annotate scn2k/scn2k_impl.cc @ 1:b753afeb3f34

Does build under debian testing
author thib
date Fri, 01 Aug 2008 16:34:21 +0000
parents 223b71206888
children 2c890434e30f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
223b71206888 Initial import
thib
parents:
diff changeset
1 /*
223b71206888 Initial import
thib
parents:
diff changeset
2 * Copyright (c) 2004-2006 Kazunori "jagarl" Ueno
223b71206888 Initial import
thib
parents:
diff changeset
3 * All rights reserved.
223b71206888 Initial import
thib
parents:
diff changeset
4 *
223b71206888 Initial import
thib
parents:
diff changeset
5 * Redistribution and use in source and binary forms, with or without
223b71206888 Initial import
thib
parents:
diff changeset
6 * modification, are permitted provided that the following conditions
223b71206888 Initial import
thib
parents:
diff changeset
7 * are met:
223b71206888 Initial import
thib
parents:
diff changeset
8 * 1. Redistributions of source code must retain the above copyright
223b71206888 Initial import
thib
parents:
diff changeset
9 * notice, this list of conditions and the following disclaimer.
223b71206888 Initial import
thib
parents:
diff changeset
10 * 2. Redistributions in binary form must reproduce the above copyright
223b71206888 Initial import
thib
parents:
diff changeset
11 * notice, this list of conditions and the following disclaimer in the
223b71206888 Initial import
thib
parents:
diff changeset
12 * documentation and/or other materials provided with the distribution.
223b71206888 Initial import
thib
parents:
diff changeset
13 * 3. The name of the author may not be used to endorse or promote products
223b71206888 Initial import
thib
parents:
diff changeset
14 * derived from this software without specific prior written permission.
223b71206888 Initial import
thib
parents:
diff changeset
15 *
223b71206888 Initial import
thib
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
223b71206888 Initial import
thib
parents:
diff changeset
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
223b71206888 Initial import
thib
parents:
diff changeset
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
223b71206888 Initial import
thib
parents:
diff changeset
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
223b71206888 Initial import
thib
parents:
diff changeset
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
223b71206888 Initial import
thib
parents:
diff changeset
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
223b71206888 Initial import
thib
parents:
diff changeset
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
223b71206888 Initial import
thib
parents:
diff changeset
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
223b71206888 Initial import
thib
parents:
diff changeset
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
223b71206888 Initial import
thib
parents:
diff changeset
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
223b71206888 Initial import
thib
parents:
diff changeset
26 */
223b71206888 Initial import
thib
parents:
diff changeset
27
223b71206888 Initial import
thib
parents:
diff changeset
28 #include <stdexcept>
223b71206888 Initial import
thib
parents:
diff changeset
29 #include"scn2k_impl.h"
223b71206888 Initial import
thib
parents:
diff changeset
30 #include"system/file.h"
223b71206888 Initial import
thib
parents:
diff changeset
31 #include"system/system_config.h"
223b71206888 Initial import
thib
parents:
diff changeset
32 #include"window/picture.h"
223b71206888 Initial import
thib
parents:
diff changeset
33 #include"window/system.h"
223b71206888 Initial import
thib
parents:
diff changeset
34
223b71206888 Initial import
thib
parents:
diff changeset
35 // #define DEBUG 1
223b71206888 Initial import
thib
parents:
diff changeset
36
223b71206888 Initial import
thib
parents:
diff changeset
37 using namespace std;
223b71206888 Initial import
thib
parents:
diff changeset
38
223b71206888 Initial import
thib
parents:
diff changeset
39 /**********************************************
223b71206888 Initial import
thib
parents:
diff changeset
40 ** Scn2k
223b71206888 Initial import
thib
parents:
diff changeset
41 */
223b71206888 Initial import
thib
parents:
diff changeset
42
223b71206888 Initial import
thib
parents:
diff changeset
43 void kconv(const unsigned char* src, unsigned char* dest);
223b71206888 Initial import
thib
parents:
diff changeset
44 void kconv_rev(const unsigned char* src, unsigned char* dest);
223b71206888 Initial import
thib
parents:
diff changeset
45 string kconv(const string& s);
223b71206888 Initial import
thib
parents:
diff changeset
46 string kconv_rev(const string& s);
223b71206888 Initial import
thib
parents:
diff changeset
47
223b71206888 Initial import
thib
parents:
diff changeset
48 Scn2k::Scn2k(Event::Container& _event, PicContainer& _parent, class MuSys& mu, AyuSysConfig& _config) :
223b71206888 Initial import
thib
parents:
diff changeset
49 Event::Time(_event),
223b71206888 Initial import
thib
parents:
diff changeset
50 event(_event),
223b71206888 Initial import
thib
parents:
diff changeset
51 parent(_parent),
223b71206888 Initial import
thib
parents:
diff changeset
52 config(_config),
223b71206888 Initial import
thib
parents:
diff changeset
53 text_exec(_event, _parent, config),
223b71206888 Initial import
thib
parents:
diff changeset
54 grp_exec(_event, _parent, flag, flag.cgm_data, mu, config)
223b71206888 Initial import
thib
parents:
diff changeset
55 {
223b71206888 Initial import
thib
parents:
diff changeset
56 system_version = 0;
223b71206888 Initial import
thib
parents:
diff changeset
57 skip_mode = SKIP_NO;
223b71206888 Initial import
thib
parents:
diff changeset
58
223b71206888 Initial import
thib
parents:
diff changeset
59 script_start = 0;
223b71206888 Initial import
thib
parents:
diff changeset
60 script = 0;
223b71206888 Initial import
thib
parents:
diff changeset
61 script_end = 0;
223b71206888 Initial import
thib
parents:
diff changeset
62
223b71206888 Initial import
thib
parents:
diff changeset
63 backlog_script_scn = -1;
223b71206888 Initial import
thib
parents:
diff changeset
64 backlog_script_start = 0;
223b71206888 Initial import
thib
parents:
diff changeset
65 backlog_script_end = 0;
223b71206888 Initial import
thib
parents:
diff changeset
66
223b71206888 Initial import
thib
parents:
diff changeset
67 save_scn = 0;
223b71206888 Initial import
thib
parents:
diff changeset
68 save_point = 0;
223b71206888 Initial import
thib
parents:
diff changeset
69 scn_number = 0;
223b71206888 Initial import
thib
parents:
diff changeset
70 scn_point = 0;
223b71206888 Initial import
thib
parents:
diff changeset
71 cmd_stack_str = cmd_stack_str_orig;
223b71206888 Initial import
thib
parents:
diff changeset
72
223b71206888 Initial import
thib
parents:
diff changeset
73 dialog = 0;
223b71206888 Initial import
thib
parents:
diff changeset
74 dialog_type = CMD_NOP;
223b71206888 Initial import
thib
parents:
diff changeset
75 menu = 0;
223b71206888 Initial import
thib
parents:
diff changeset
76 menu_mouseshown = false;
223b71206888 Initial import
thib
parents:
diff changeset
77
223b71206888 Initial import
thib
parents:
diff changeset
78 /* マウスカーソルを作成 */
223b71206888 Initial import
thib
parents:
diff changeset
79 mouse_type = 0;
223b71206888 Initial import
thib
parents:
diff changeset
80 mouse_surface = 0;
223b71206888 Initial import
thib
parents:
diff changeset
81 mouse_pressed = 0;
223b71206888 Initial import
thib
parents:
diff changeset
82 ShowCursor();
223b71206888 Initial import
thib
parents:
diff changeset
83
223b71206888 Initial import
thib
parents:
diff changeset
84 LoadSys();
223b71206888 Initial import
thib
parents:
diff changeset
85 text_exec.InitWindow();
223b71206888 Initial import
thib
parents:
diff changeset
86 grp_exec.InitSel(config);
223b71206888 Initial import
thib
parents:
diff changeset
87 }
223b71206888 Initial import
thib
parents:
diff changeset
88
223b71206888 Initial import
thib
parents:
diff changeset
89 Scn2k::~Scn2k() {
223b71206888 Initial import
thib
parents:
diff changeset
90 HideCursor();
223b71206888 Initial import
thib
parents:
diff changeset
91 SaveSys();
223b71206888 Initial import
thib
parents:
diff changeset
92 }
223b71206888 Initial import
thib
parents:
diff changeset
93
223b71206888 Initial import
thib
parents:
diff changeset
94 char* Scn2k::OpenScript(int new_scn_number, char*& end, int* call_vec, int& system_version) {
223b71206888 Initial import
thib
parents:
diff changeset
95 char fname[1024];
223b71206888 Initial import
thib
parents:
diff changeset
96 const char* data;
223b71206888 Initial import
thib
parents:
diff changeset
97 char* ret_data;
223b71206888 Initial import
thib
parents:
diff changeset
98 int offset = 0;
223b71206888 Initial import
thib
parents:
diff changeset
99 int scenario_magic;
223b71206888 Initial import
thib
parents:
diff changeset
100
223b71206888 Initial import
thib
parents:
diff changeset
101 sprintf(fname, "SEEN%04d.TXT", new_scn_number);
223b71206888 Initial import
thib
parents:
diff changeset
102 ARCINFO* info = file_searcher.Find(FILESEARCH::SCN, fname, "");
223b71206888 Initial import
thib
parents:
diff changeset
103 if (info == 0) goto err;
223b71206888 Initial import
thib
parents:
diff changeset
104 data = info->Read();
223b71206888 Initial import
thib
parents:
diff changeset
105
223b71206888 Initial import
thib
parents:
diff changeset
106 /* version 確認 */
223b71206888 Initial import
thib
parents:
diff changeset
107 scenario_magic = read_little_endian_int(data + 4);
223b71206888 Initial import
thib
parents:
diff changeset
108 if (scenario_magic != 0x2712 && scenario_magic != 0x1adb2) {
223b71206888 Initial import
thib
parents:
diff changeset
109 fprintf(stderr,"Invalid scenario header : scenario number %d\n",new_scn_number);
223b71206888 Initial import
thib
parents:
diff changeset
110 goto err;
223b71206888 Initial import
thib
parents:
diff changeset
111 }
223b71206888 Initial import
thib
parents:
diff changeset
112 if (read_little_endian_int(data) == 0x1cc) {
223b71206888 Initial import
thib
parents:
diff changeset
113 system_version = 0;
223b71206888 Initial import
thib
parents:
diff changeset
114 offset = 0x1cc + read_little_endian_int(data+0x20) + 4;
223b71206888 Initial import
thib
parents:
diff changeset
115 } else if (read_little_endian_int(data) == 0x1d0) {
223b71206888 Initial import
thib
parents:
diff changeset
116 system_version = 1;
223b71206888 Initial import
thib
parents:
diff changeset
117 offset = read_little_endian_int(data + 0x20);
223b71206888 Initial import
thib
parents:
diff changeset
118 } else {
223b71206888 Initial import
thib
parents:
diff changeset
119 fprintf(stderr,"Invalid scenario header : scenario number %d\n",new_scn_number);
223b71206888 Initial import
thib
parents:
diff changeset
120 goto err;
223b71206888 Initial import
thib
parents:
diff changeset
121 }
223b71206888 Initial import
thib
parents:
diff changeset
122 /* header から subroutine number とりだし */
223b71206888 Initial import
thib
parents:
diff changeset
123 if (call_vec) {
223b71206888 Initial import
thib
parents:
diff changeset
124 int i;
223b71206888 Initial import
thib
parents:
diff changeset
125 for (i=0; i<100; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
126 call_vec[i] = read_little_endian_int(data + 0x34 + i * 4);
223b71206888 Initial import
thib
parents:
diff changeset
127 }
223b71206888 Initial import
thib
parents:
diff changeset
128 }
223b71206888 Initial import
thib
parents:
diff changeset
129 ret_data = new char[info->Size() - offset + 1024];
223b71206888 Initial import
thib
parents:
diff changeset
130 memcpy(ret_data, data+offset, info->Size()-offset);
223b71206888 Initial import
thib
parents:
diff changeset
131 memset(ret_data+info->Size()-offset, 0, 1024);
223b71206888 Initial import
thib
parents:
diff changeset
132 end = ret_data + info->Size() - offset;
223b71206888 Initial import
thib
parents:
diff changeset
133 delete info;
223b71206888 Initial import
thib
parents:
diff changeset
134 return ret_data;
223b71206888 Initial import
thib
parents:
diff changeset
135
223b71206888 Initial import
thib
parents:
diff changeset
136 err:
223b71206888 Initial import
thib
parents:
diff changeset
137 delete info;
223b71206888 Initial import
thib
parents:
diff changeset
138 fprintf(stderr,"Cannot open scenario number %d\n",new_scn_number);
223b71206888 Initial import
thib
parents:
diff changeset
139 throw std::invalid_argument("Scn2k::OpenScript");
223b71206888 Initial import
thib
parents:
diff changeset
140
223b71206888 Initial import
thib
parents:
diff changeset
141 return false;
223b71206888 Initial import
thib
parents:
diff changeset
142 }
223b71206888 Initial import
thib
parents:
diff changeset
143 bool Scn2k::ChangeScript(int new_scn_number, int call_no) {
223b71206888 Initial import
thib
parents:
diff changeset
144 int old_scn_number = scn_number;
223b71206888 Initial import
thib
parents:
diff changeset
145 int old_scn_pt = script - script_start;
223b71206888 Initial import
thib
parents:
diff changeset
146 int scn_pt = 0;
223b71206888 Initial import
thib
parents:
diff changeset
147
223b71206888 Initial import
thib
parents:
diff changeset
148 if (script_start) delete[] script_start;
223b71206888 Initial import
thib
parents:
diff changeset
149 script_start = 0;
223b71206888 Initial import
thib
parents:
diff changeset
150 script = 0;
223b71206888 Initial import
thib
parents:
diff changeset
151 script_end = 0;
223b71206888 Initial import
thib
parents:
diff changeset
152
223b71206888 Initial import
thib
parents:
diff changeset
153 int call_vec[100];
223b71206888 Initial import
thib
parents:
diff changeset
154
223b71206888 Initial import
thib
parents:
diff changeset
155 try {
223b71206888 Initial import
thib
parents:
diff changeset
156 script_start = OpenScript(new_scn_number, script_end, call_vec, system_version);
223b71206888 Initial import
thib
parents:
diff changeset
157 } catch(...) {
223b71206888 Initial import
thib
parents:
diff changeset
158 fprintf(stderr,"\tFrom script %d pt %d\n",old_scn_number, old_scn_pt);
223b71206888 Initial import
thib
parents:
diff changeset
159 throw;
223b71206888 Initial import
thib
parents:
diff changeset
160 }
223b71206888 Initial import
thib
parents:
diff changeset
161 if (call_no > 0 && call_no < 100) {
223b71206888 Initial import
thib
parents:
diff changeset
162 scn_pt = call_vec[call_no];
223b71206888 Initial import
thib
parents:
diff changeset
163 if (scn_pt == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
164 fprintf(stderr,"Invalid subroutine number: scn %d sub %d\n",new_scn_number, call_no);
223b71206888 Initial import
thib
parents:
diff changeset
165 scn_pt = 0;
223b71206888 Initial import
thib
parents:
diff changeset
166 }
223b71206888 Initial import
thib
parents:
diff changeset
167 } else if (call_no < 0) {
223b71206888 Initial import
thib
parents:
diff changeset
168 scn_pt = -call_no; // デバッグ用
223b71206888 Initial import
thib
parents:
diff changeset
169 }
223b71206888 Initial import
thib
parents:
diff changeset
170
223b71206888 Initial import
thib
parents:
diff changeset
171 scn_number = new_scn_number;
223b71206888 Initial import
thib
parents:
diff changeset
172 scn_point = scn_pt;
223b71206888 Initial import
thib
parents:
diff changeset
173 script = script_start + scn_pt;
223b71206888 Initial import
thib
parents:
diff changeset
174 if (script < script_start || script >= script_end)
223b71206888 Initial import
thib
parents:
diff changeset
175 fprintf(stderr,"scn %d pt %d: Cannot jump to %d:%d; fall back to the top\n",old_scn_number, old_scn_pt, scn_number, scn_pt);
223b71206888 Initial import
thib
parents:
diff changeset
176 return true;
223b71206888 Initial import
thib
parents:
diff changeset
177 }
223b71206888 Initial import
thib
parents:
diff changeset
178 bool Scn2k::ReadCmdAt(Cmd& cmd, int scn, int pt) {
223b71206888 Initial import
thib
parents:
diff changeset
179 const char* d;
223b71206888 Initial import
thib
parents:
diff changeset
180 if (scn ==scn_number) {
223b71206888 Initial import
thib
parents:
diff changeset
181 d = script_start + pt;
223b71206888 Initial import
thib
parents:
diff changeset
182 if (d < script_start || d >= script_end) {
223b71206888 Initial import
thib
parents:
diff changeset
183 fprintf(stderr,"Cannot read script at current scn %d pt %d\n", scn, pt);
223b71206888 Initial import
thib
parents:
diff changeset
184 return false;
223b71206888 Initial import
thib
parents:
diff changeset
185 }
223b71206888 Initial import
thib
parents:
diff changeset
186 } else {
223b71206888 Initial import
thib
parents:
diff changeset
187 if (backlog_script_scn != scn) {
223b71206888 Initial import
thib
parents:
diff changeset
188 if (backlog_script_start) delete[] backlog_script_start;
223b71206888 Initial import
thib
parents:
diff changeset
189 backlog_script_start = OpenScript(scn, backlog_script_end, 0, system_version);
223b71206888 Initial import
thib
parents:
diff changeset
190 }
223b71206888 Initial import
thib
parents:
diff changeset
191 d = backlog_script_start + pt;
223b71206888 Initial import
thib
parents:
diff changeset
192 if (d < backlog_script_start || d >= backlog_script_end) {
223b71206888 Initial import
thib
parents:
diff changeset
193 fprintf(stderr,"Cannot read script at scn %d pt %d\n", scn, pt);
223b71206888 Initial import
thib
parents:
diff changeset
194 return false;
223b71206888 Initial import
thib
parents:
diff changeset
195 }
223b71206888 Initial import
thib
parents:
diff changeset
196 }
223b71206888 Initial import
thib
parents:
diff changeset
197
223b71206888 Initial import
thib
parents:
diff changeset
198 cmd.GetCmd(flag, d);
223b71206888 Initial import
thib
parents:
diff changeset
199 return true;
223b71206888 Initial import
thib
parents:
diff changeset
200 }
223b71206888 Initial import
thib
parents:
diff changeset
201
223b71206888 Initial import
thib
parents:
diff changeset
202 extern bool save_req, load_req; // キーボードからセーブ・ロードできるように
223b71206888 Initial import
thib
parents:
diff changeset
203 extern bool pressAreq;
223b71206888 Initial import
thib
parents:
diff changeset
204
223b71206888 Initial import
thib
parents:
diff changeset
205 void Scn2k::Elapsed(unsigned int current_time) {
223b71206888 Initial import
thib
parents:
diff changeset
206 SetWakeup(current_time + 10); // 10msに一回シナリオスクリプト解釈
223b71206888 Initial import
thib
parents:
diff changeset
207 if (script == 0) return;
223b71206888 Initial import
thib
parents:
diff changeset
208 //VarInfo info; info.type = 6; info.number = 0; // PB の「一回ゲームを開始したことがある」フラグ
223b71206888 Initial import
thib
parents:
diff changeset
209 //flag.Set(info,1);
223b71206888 Initial import
thib
parents:
diff changeset
210 //info.type = 0; info.number = 604; // Princess Bride: クリア対象設定フラグ (聖)
223b71206888 Initial import
thib
parents:
diff changeset
211 //flag.Set(info, 1);
223b71206888 Initial import
thib
parents:
diff changeset
212
223b71206888 Initial import
thib
parents:
diff changeset
213
223b71206888 Initial import
thib
parents:
diff changeset
214 Cmd cmd(flag, system_version);
223b71206888 Initial import
thib
parents:
diff changeset
215 int cnt1;
223b71206888 Initial import
thib
parents:
diff changeset
216 int cnt2 = 1000; // flag / jump / flag 系コマンドの最大実行回数
223b71206888 Initial import
thib
parents:
diff changeset
217
223b71206888 Initial import
thib
parents:
diff changeset
218 /* XXX */
223b71206888 Initial import
thib
parents:
diff changeset
219 if (save_req) {
223b71206888 Initial import
thib
parents:
diff changeset
220 save_req = false;
223b71206888 Initial import
thib
parents:
diff changeset
221 load_req = false;
223b71206888 Initial import
thib
parents:
diff changeset
222 cmd.cmd_type = CMD_SAVEREQ;
223b71206888 Initial import
thib
parents:
diff changeset
223 } else if (load_req) {
223b71206888 Initial import
thib
parents:
diff changeset
224 load_req = false;
223b71206888 Initial import
thib
parents:
diff changeset
225 save_req = false;
223b71206888 Initial import
thib
parents:
diff changeset
226 cmd.cmd_type = CMD_LOADREQ;
223b71206888 Initial import
thib
parents:
diff changeset
227 }
223b71206888 Initial import
thib
parents:
diff changeset
228 if (pressAreq) {
223b71206888 Initial import
thib
parents:
diff changeset
229 pressAreq = false;
223b71206888 Initial import
thib
parents:
diff changeset
230 LoadRollback(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
231 return;
223b71206888 Initial import
thib
parents:
diff changeset
232 }
223b71206888 Initial import
thib
parents:
diff changeset
233
223b71206888 Initial import
thib
parents:
diff changeset
234 /* キー入力などに対応 */
223b71206888 Initial import
thib
parents:
diff changeset
235 // メニュー内以外で shift キーが押されたらスキップ開始
223b71206888 Initial import
thib
parents:
diff changeset
236 if ( (skip_mode&SKIP_IN_MENU) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
237 if (event.pressed(KEY_SHIFT)) {
223b71206888 Initial import
thib
parents:
diff changeset
238 if (skip_mode & SKIP_TEXT) {
223b71206888 Initial import
thib
parents:
diff changeset
239 ; // スキップ中ならなにもしない
223b71206888 Initial import
thib
parents:
diff changeset
240 } else {
223b71206888 Initial import
thib
parents:
diff changeset
241 SetSkipMode(SkipMode(SKIP_TEXT | SKIP_GRP_NOEFFEC | SKIPEND_KEY));
223b71206888 Initial import
thib
parents:
diff changeset
242 }
223b71206888 Initial import
thib
parents:
diff changeset
243 } else {
223b71206888 Initial import
thib
parents:
diff changeset
244 if ( skip_mode & SKIPEND_KEY) {
223b71206888 Initial import
thib
parents:
diff changeset
245 if ( (skip_mode & SKIPEND_TEXT) && (skip_mode & SKIP_TEXT)) {
223b71206888 Initial import
thib
parents:
diff changeset
246 SkipMode new_skip_mode = SkipMode(skip_mode & (~SKIPEND_KEY));
223b71206888 Initial import
thib
parents:
diff changeset
247 if ( (new_skip_mode & SKIP_GRP_FAST) || (new_skip_mode & SKIP_GRP_NODRAW)) {
223b71206888 Initial import
thib
parents:
diff changeset
248 new_skip_mode = SkipMode(skip_mode & (~SKIP_GRP_NOEFFEC));
223b71206888 Initial import
thib
parents:
diff changeset
249 }
223b71206888 Initial import
thib
parents:
diff changeset
250 SetSkipMode(new_skip_mode);
223b71206888 Initial import
thib
parents:
diff changeset
251 } else {
223b71206888 Initial import
thib
parents:
diff changeset
252 SetSkipMode(SKIP_NO);
223b71206888 Initial import
thib
parents:
diff changeset
253 }
223b71206888 Initial import
thib
parents:
diff changeset
254 }
223b71206888 Initial import
thib
parents:
diff changeset
255 }
223b71206888 Initial import
thib
parents:
diff changeset
256 }
223b71206888 Initial import
thib
parents:
diff changeset
257
223b71206888 Initial import
thib
parents:
diff changeset
258 for (cnt1=0; cnt1<20; cnt1++) { // 一回につき 20 個のコマンド実行
223b71206888 Initial import
thib
parents:
diff changeset
259 // 他のコマンド実行中なら終了
223b71206888 Initial import
thib
parents:
diff changeset
260 if ( (cmd.cmd_type == CMD_NOP && SysWait(cmd)) ||
223b71206888 Initial import
thib
parents:
diff changeset
261 // (cmd.cmd_type == CMD_NOP && text_exec.Wait(current_time, cmd)) ||
223b71206888 Initial import
thib
parents:
diff changeset
262 // (cmd.cmd_type == CMD_NOP && grp_exec.Wait(current_time, cmd))) {
223b71206888 Initial import
thib
parents:
diff changeset
263 (cmd.cmd_type == CMD_NOP && grp_exec.Wait(current_time, cmd)) ||
223b71206888 Initial import
thib
parents:
diff changeset
264 (cmd.cmd_type == CMD_NOP && text_exec.Wait(current_time, cmd))) {
223b71206888 Initial import
thib
parents:
diff changeset
265 break;
223b71206888 Initial import
thib
parents:
diff changeset
266 }
223b71206888 Initial import
thib
parents:
diff changeset
267 // コマンド読み込み
223b71206888 Initial import
thib
parents:
diff changeset
268 for (; cnt2 > 0; cnt2--) {
223b71206888 Initial import
thib
parents:
diff changeset
269 scn_point = script - script_start;
223b71206888 Initial import
thib
parents:
diff changeset
270 eprintf("%d / %d :", script - script_start, script_end-script_start);
223b71206888 Initial import
thib
parents:
diff changeset
271 // fprintf(stderr,"%d: %d / %d :",scn_number, script - script_start, script_end-script_start);
223b71206888 Initial import
thib
parents:
diff changeset
272 cmd.GetCmd(flag, script);
223b71206888 Initial import
thib
parents:
diff changeset
273 // if (cmd.cmd_type != CMD_NOP) {
223b71206888 Initial import
thib
parents:
diff changeset
274 if (0) {
223b71206888 Initial import
thib
parents:
diff changeset
275 fprintf(stderr,"%d / %d : 0x23 - cmd %02x-%02x:%04x:%02x[%2d] \n",
223b71206888 Initial import
thib
parents:
diff changeset
276 scn_point, script_end-script_start,
223b71206888 Initial import
thib
parents:
diff changeset
277 cmd.cmd1,cmd.cmd2,cmd.cmd3,cmd.cmd4,cmd.argc);
223b71206888 Initial import
thib
parents:
diff changeset
278 int i; for (i=0; i<cmd.args.size(); i++) {
223b71206888 Initial import
thib
parents:
diff changeset
279 if (i == 0) fprintf(stderr,"\t");
223b71206888 Initial import
thib
parents:
diff changeset
280 VarInfo info = cmd.args[i];
223b71206888 Initial import
thib
parents:
diff changeset
281 if (info.type == TYPE_STR || info.type == TYPE_VARSTR)
223b71206888 Initial import
thib
parents:
diff changeset
282 fprintf(stderr,"\"%s\",", cmd.Str(info));
223b71206888 Initial import
thib
parents:
diff changeset
283 else
223b71206888 Initial import
thib
parents:
diff changeset
284 fprintf(stderr,"%d,",info.value);
223b71206888 Initial import
thib
parents:
diff changeset
285 }
223b71206888 Initial import
thib
parents:
diff changeset
286 fprintf(stderr,"\n");
223b71206888 Initial import
thib
parents:
diff changeset
287 }
223b71206888 Initial import
thib
parents:
diff changeset
288 cmd.scn = scn_number;
223b71206888 Initial import
thib
parents:
diff changeset
289 cmd.pos = scn_point;
223b71206888 Initial import
thib
parents:
diff changeset
290 if (cmd.IsError()) break;
223b71206888 Initial import
thib
parents:
diff changeset
291 if (cmd.cmd_type == CMD_NOP) continue;
223b71206888 Initial import
thib
parents:
diff changeset
292 if (cmd.cmd_type == CMD_JMP) {
223b71206888 Initial import
thib
parents:
diff changeset
293 // local jump
223b71206888 Initial import
thib
parents:
diff changeset
294 if (cmd.cmd1 == 0 && cmd.cmd2 == 1 && cmd.cmd3 == 16) {
223b71206888 Initial import
thib
parents:
diff changeset
295 int i;
223b71206888 Initial import
thib
parents:
diff changeset
296 for (i=0; i<cmd.args.size()-1; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
297 VarInfo var;
223b71206888 Initial import
thib
parents:
diff changeset
298 var.type = 11;
223b71206888 Initial import
thib
parents:
diff changeset
299 var.number = i;
223b71206888 Initial import
thib
parents:
diff changeset
300 flag.Set(var, cmd.args[i].value);
223b71206888 Initial import
thib
parents:
diff changeset
301 }
223b71206888 Initial import
thib
parents:
diff changeset
302 cmd.args[0].value = cmd.args[i].value;
223b71206888 Initial import
thib
parents:
diff changeset
303 }
223b71206888 Initial import
thib
parents:
diff changeset
304 if ( cmd.cmd1 == 0 && cmd.cmd2 == 1 && (cmd.cmd3 == 5 || cmd.cmd3 == 8 || cmd.cmd3 == 16) ) { // local call / simple switch
223b71206888 Initial import
thib
parents:
diff changeset
305 int scn_pt = script - script_start;
223b71206888 Initial import
thib
parents:
diff changeset
306 // fprintf(stderr,"\nlocal call %d:%d from %d\n",scn_number,cmd.args[0].value,scn_pt);
223b71206888 Initial import
thib
parents:
diff changeset
307 stack.push_back(StackItem(-1, scn_pt));
223b71206888 Initial import
thib
parents:
diff changeset
308 }
223b71206888 Initial import
thib
parents:
diff changeset
309 if (cmd.cmd1 == 0 && cmd.cmd2 == 1 && cmd.cmd3 == 1) {
223b71206888 Initial import
thib
parents:
diff changeset
310 fprintf(stderr,"*** unsupported: cond 1\n");
223b71206888 Initial import
thib
parents:
diff changeset
311 }
223b71206888 Initial import
thib
parents:
diff changeset
312 script = script_start + cmd.args[0].value;
223b71206888 Initial import
thib
parents:
diff changeset
313 if (script < script_start || script >= script_end) {
223b71206888 Initial import
thib
parents:
diff changeset
314 fprintf(stderr,"scn %d pt %d: Cannot jump to %d; fall back to the top\n",scn_number, cmd.args[0].value);
223b71206888 Initial import
thib
parents:
diff changeset
315 script = script_start;
223b71206888 Initial import
thib
parents:
diff changeset
316 }
223b71206888 Initial import
thib
parents:
diff changeset
317 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
318 continue;
223b71206888 Initial import
thib
parents:
diff changeset
319 }
223b71206888 Initial import
thib
parents:
diff changeset
320 if (flag.Exec(cmd)) continue;
223b71206888 Initial import
thib
parents:
diff changeset
321 break;
223b71206888 Initial import
thib
parents:
diff changeset
322 }
223b71206888 Initial import
thib
parents:
diff changeset
323 if (cmd.IsError()) {
223b71206888 Initial import
thib
parents:
diff changeset
324 fprintf(stderr,"cmd error occured: scn %d pt %d / cur %d",scn_number,scn_point,script-script_start);
223b71206888 Initial import
thib
parents:
diff changeset
325 while(script < script_end) {
223b71206888 Initial import
thib
parents:
diff changeset
326 if (*script == 0x29 && script[1] == 0x0a) {script++;break;}
223b71206888 Initial import
thib
parents:
diff changeset
327 if (*script == 0 && script[1] == 0x0a) {script++;break;}
223b71206888 Initial import
thib
parents:
diff changeset
328 if (*script == 0 && script[1] == 0x23) {script++;break;}
223b71206888 Initial import
thib
parents:
diff changeset
329 script++;
223b71206888 Initial import
thib
parents:
diff changeset
330 fprintf(stderr," -> fall back to %d\n",script-script_start);
223b71206888 Initial import
thib
parents:
diff changeset
331 }
223b71206888 Initial import
thib
parents:
diff changeset
332 const char* dprev = script - 0x60;
223b71206888 Initial import
thib
parents:
diff changeset
333 if (dprev < script_start) dprev = script_start;
223b71206888 Initial import
thib
parents:
diff changeset
334 int ilen = (script-dprev+65)/16;
223b71206888 Initial import
thib
parents:
diff changeset
335 int i; for (i=0; i<ilen; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
336 fprintf(stderr, "%6d: ",dprev-script_start);
223b71206888 Initial import
thib
parents:
diff changeset
337 int j; for (j=0; j<16; j++) {
223b71206888 Initial import
thib
parents:
diff changeset
338 if (dprev >= script_end) break;
223b71206888 Initial import
thib
parents:
diff changeset
339 fprintf(stderr, "%02x ",*(unsigned char*)(dprev));
223b71206888 Initial import
thib
parents:
diff changeset
340 dprev++;
223b71206888 Initial import
thib
parents:
diff changeset
341 }
223b71206888 Initial import
thib
parents:
diff changeset
342 fprintf(stderr, "\n");
223b71206888 Initial import
thib
parents:
diff changeset
343 }
223b71206888 Initial import
thib
parents:
diff changeset
344 break;
223b71206888 Initial import
thib
parents:
diff changeset
345 }
223b71206888 Initial import
thib
parents:
diff changeset
346 if (cmd.cmd_type == CMD_NOP) continue;
223b71206888 Initial import
thib
parents:
diff changeset
347
223b71206888 Initial import
thib
parents:
diff changeset
348 if (cmd.cmd_type == CMD_TEXT && cmd.pos != -1) {
223b71206888 Initial import
thib
parents:
diff changeset
349 set<int>& readflag = text_readflag[scn_number];
223b71206888 Initial import
thib
parents:
diff changeset
350 if (readflag.find(cmd.pos) == readflag.end()) { // 未読テキスト発見
223b71206888 Initial import
thib
parents:
diff changeset
351 readflag.insert(cmd.pos);
223b71206888 Initial import
thib
parents:
diff changeset
352 if (skip_mode & SKIPEND_TEXT) {
223b71206888 Initial import
thib
parents:
diff changeset
353 if (!(skip_mode & SKIPEND_KEY)) SetSkipMode(SKIP_NO);
223b71206888 Initial import
thib
parents:
diff changeset
354 }
223b71206888 Initial import
thib
parents:
diff changeset
355 }
223b71206888 Initial import
thib
parents:
diff changeset
356 }
223b71206888 Initial import
thib
parents:
diff changeset
357 text_exec.Exec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
358 grp_exec.Exec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
359 SysExec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
360 if (cmd.cmd_type == CMD_WAITFRAMEUPDATE) {
223b71206888 Initial import
thib
parents:
diff changeset
361 SetWakeup(Event::Time::FRAME_UPDATE);
223b71206888 Initial import
thib
parents:
diff changeset
362 break;
223b71206888 Initial import
thib
parents:
diff changeset
363 } else if (cmd.cmd_type != CMD_NOP) {
223b71206888 Initial import
thib
parents:
diff changeset
364 #if DEBUG
223b71206888 Initial import
thib
parents:
diff changeset
365 fprintf(stderr,"%d-%d / %d : unsupported command; 0x23 - cmd %02x-%02x:%04x:%02x[%2d] \n",
223b71206888 Initial import
thib
parents:
diff changeset
366 cmd.scn, script - script_start, script_end-script_start,
223b71206888 Initial import
thib
parents:
diff changeset
367 cmd.cmd1,cmd.cmd2,cmd.cmd3,cmd.cmd4,cmd.argc);
223b71206888 Initial import
thib
parents:
diff changeset
368 int i; for (i=0; i<cmd.args.size(); i++) {
223b71206888 Initial import
thib
parents:
diff changeset
369 if (i == 0) fprintf(stderr,"\t");
223b71206888 Initial import
thib
parents:
diff changeset
370 VarInfo info = cmd.args[i];
223b71206888 Initial import
thib
parents:
diff changeset
371 if (info.type == TYPE_STR || info.type == TYPE_VARSTR)
223b71206888 Initial import
thib
parents:
diff changeset
372 fprintf(stderr,"\"%s\",", cmd.Str(info));
223b71206888 Initial import
thib
parents:
diff changeset
373 else
223b71206888 Initial import
thib
parents:
diff changeset
374 fprintf(stderr,"%d,",info.value);
223b71206888 Initial import
thib
parents:
diff changeset
375 }
223b71206888 Initial import
thib
parents:
diff changeset
376 fprintf(stderr,"\n");
223b71206888 Initial import
thib
parents:
diff changeset
377 #endif
223b71206888 Initial import
thib
parents:
diff changeset
378 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
379 }
223b71206888 Initial import
thib
parents:
diff changeset
380 }
223b71206888 Initial import
thib
parents:
diff changeset
381 return;
223b71206888 Initial import
thib
parents:
diff changeset
382 }
223b71206888 Initial import
thib
parents:
diff changeset
383
223b71206888 Initial import
thib
parents:
diff changeset
384 void Scn2k::ShowCursor(void) {
223b71206888 Initial import
thib
parents:
diff changeset
385 HideCursor();
223b71206888 Initial import
thib
parents:
diff changeset
386 char key[1024];
223b71206888 Initial import
thib
parents:
diff changeset
387 sprintf(key, "#MOUSE_CURSOR.%03d.NAME",mouse_type);
223b71206888 Initial import
thib
parents:
diff changeset
388 const char* name = config.GetParaStr(key);
223b71206888 Initial import
thib
parents:
diff changeset
389 if (name == 0 || name[0] == 0) mouse_surface = DEFAULT_MOUSECURSOR;
223b71206888 Initial import
thib
parents:
diff changeset
390 else {
223b71206888 Initial import
thib
parents:
diff changeset
391 mouse_surface = parent.Root().NewSurface(name, COLOR_MASK);
223b71206888 Initial import
thib
parents:
diff changeset
392 }
223b71206888 Initial import
thib
parents:
diff changeset
393 if (mouse_surface == 0) mouse_surface = DEFAULT_MOUSECURSOR;
223b71206888 Initial import
thib
parents:
diff changeset
394 System::Main::SetCursor(mouse_surface, Rect(8, 8, 8+32, 8+32));
223b71206888 Initial import
thib
parents:
diff changeset
395 }
223b71206888 Initial import
thib
parents:
diff changeset
396
223b71206888 Initial import
thib
parents:
diff changeset
397 void Scn2k::HideCursor(void) {
223b71206888 Initial import
thib
parents:
diff changeset
398 if (mouse_surface) {
223b71206888 Initial import
thib
parents:
diff changeset
399 System::Main::SetCursor(0, Rect(0,0));
223b71206888 Initial import
thib
parents:
diff changeset
400 if (mouse_surface != DEFAULT_MOUSECURSOR)
223b71206888 Initial import
thib
parents:
diff changeset
401 parent.Root().DeleteSurface(mouse_surface);
223b71206888 Initial import
thib
parents:
diff changeset
402 mouse_surface = 0;
223b71206888 Initial import
thib
parents:
diff changeset
403 }
223b71206888 Initial import
thib
parents:
diff changeset
404 return;
223b71206888 Initial import
thib
parents:
diff changeset
405 }
223b71206888 Initial import
thib
parents:
diff changeset
406
223b71206888 Initial import
thib
parents:
diff changeset
407 bool Scn2k::SysWait(Cmd& cmd) {
223b71206888 Initial import
thib
parents:
diff changeset
408
223b71206888 Initial import
thib
parents:
diff changeset
409 if (menu) {
223b71206888 Initial import
thib
parents:
diff changeset
410 menu->Exec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
411 if (menu->status & Scn2kMenu::MENU_DELETE || menu->pimpl == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
412 delete menu;
223b71206888 Initial import
thib
parents:
diff changeset
413 menu = 0;
223b71206888 Initial import
thib
parents:
diff changeset
414 if (! menu_mouseshown) HideCursor();
223b71206888 Initial import
thib
parents:
diff changeset
415 else ShowCursor();
223b71206888 Initial import
thib
parents:
diff changeset
416 SetSkipMode(SkipMode(skip_mode & (~SKIP_IN_MENU) ));
223b71206888 Initial import
thib
parents:
diff changeset
417 }
223b71206888 Initial import
thib
parents:
diff changeset
418 if (cmd.cmd_type == CMD_NOP) return true;
223b71206888 Initial import
thib
parents:
diff changeset
419 else return false; /* exec command */
223b71206888 Initial import
thib
parents:
diff changeset
420 }
223b71206888 Initial import
thib
parents:
diff changeset
421 return false;
223b71206888 Initial import
thib
parents:
diff changeset
422 }
223b71206888 Initial import
thib
parents:
diff changeset
423
223b71206888 Initial import
thib
parents:
diff changeset
424 void DllCall_LB(Cmd& cmd, Flags& flags);
223b71206888 Initial import
thib
parents:
diff changeset
425 void Scn2k::SysExec(Cmd& cmd) {
223b71206888 Initial import
thib
parents:
diff changeset
426 if (cmd.cmd_type == CMD_SYSVAR) {
223b71206888 Initial import
thib
parents:
diff changeset
427 int i;
223b71206888 Initial import
thib
parents:
diff changeset
428 for (i=0; i<cmd.args.size(); i++) {
223b71206888 Initial import
thib
parents:
diff changeset
429 if (cmd.args[i].type == TYPE_SYS) {
223b71206888 Initial import
thib
parents:
diff changeset
430 if (cmd.args[i].number == TYPE_SYS_SYS) {
223b71206888 Initial import
thib
parents:
diff changeset
431 flag.SetSys(cmd.args[i].value);
223b71206888 Initial import
thib
parents:
diff changeset
432 } else if (cmd.args[i].number == TYPE_SYS_SKIPMODE) {
223b71206888 Initial import
thib
parents:
diff changeset
433 SetSkipMode(SkipMode(cmd.args[i].value));
223b71206888 Initial import
thib
parents:
diff changeset
434 }
223b71206888 Initial import
thib
parents:
diff changeset
435 } else if (cmd.args[i].type == TYPE_VARSTR) {
223b71206888 Initial import
thib
parents:
diff changeset
436 flag.SetStr(cmd.args[i].number, cmd.Str(cmd.args[i]));
223b71206888 Initial import
thib
parents:
diff changeset
437 } else {
223b71206888 Initial import
thib
parents:
diff changeset
438 flag.Set(cmd.args[i], cmd.args[i].value);
223b71206888 Initial import
thib
parents:
diff changeset
439 }
223b71206888 Initial import
thib
parents:
diff changeset
440 }
223b71206888 Initial import
thib
parents:
diff changeset
441 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
442 }
223b71206888 Initial import
thib
parents:
diff changeset
443 if (cmd.cmd_type == CMD_SAVEPOINT || cmd.cmd_type == CMD_ROLLBACKPOINT) {
223b71206888 Initial import
thib
parents:
diff changeset
444 if (text_exec.backlog_item.scn != -1) {
223b71206888 Initial import
thib
parents:
diff changeset
445 text_exec.backlog.push_back(text_exec.backlog_item);
223b71206888 Initial import
thib
parents:
diff changeset
446 text_exec.backlog_item.Clear();
223b71206888 Initial import
thib
parents:
diff changeset
447 }
223b71206888 Initial import
thib
parents:
diff changeset
448 save_scn = scn_number;
223b71206888 Initial import
thib
parents:
diff changeset
449 save_point = scn_point;
223b71206888 Initial import
thib
parents:
diff changeset
450 if (!new_rollback_save.empty()) {
223b71206888 Initial import
thib
parents:
diff changeset
451 rollback_save.push_back(new_rollback_save);
223b71206888 Initial import
thib
parents:
diff changeset
452 new_rollback_save = "";
223b71206888 Initial import
thib
parents:
diff changeset
453 }
223b71206888 Initial import
thib
parents:
diff changeset
454 if (cmd.cmd_type == CMD_ROLLBACKPOINT) SaveRollback();
223b71206888 Initial import
thib
parents:
diff changeset
455 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
456 }
223b71206888 Initial import
thib
parents:
diff changeset
457 if (cmd.cmd_type == CMD_SAVEREQ || cmd.cmd_type == CMD_SAVE) {
223b71206888 Initial import
thib
parents:
diff changeset
458 Save(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
459 return;
223b71206888 Initial import
thib
parents:
diff changeset
460 }
223b71206888 Initial import
thib
parents:
diff changeset
461 if (cmd.cmd_type == CMD_LOADREQ || cmd.cmd_type == CMD_LOAD) {
223b71206888 Initial import
thib
parents:
diff changeset
462 Load(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
463 return;
223b71206888 Initial import
thib
parents:
diff changeset
464 }
223b71206888 Initial import
thib
parents:
diff changeset
465 if (cmd.cmd_type == CMD_BACKLOGREQ || cmd.cmd_type == CMD_BACKLOGREQ_FWD) {
223b71206888 Initial import
thib
parents:
diff changeset
466 if (menu) {
223b71206888 Initial import
thib
parents:
diff changeset
467 fprintf(stderr,"BACKLOG_REQ requested!!!\n");
223b71206888 Initial import
thib
parents:
diff changeset
468 return;
223b71206888 Initial import
thib
parents:
diff changeset
469 }
223b71206888 Initial import
thib
parents:
diff changeset
470 if (cmd.cmd_type == CMD_BACKLOGREQ_FWD) {
223b71206888 Initial import
thib
parents:
diff changeset
471 cmd.clear(); // backlog mode 以外で fwd を押されてもなにもしない
223b71206888 Initial import
thib
parents:
diff changeset
472 return;
223b71206888 Initial import
thib
parents:
diff changeset
473 }
223b71206888 Initial import
thib
parents:
diff changeset
474 SetSkipMode(SKIP_IN_MENU); // テキストスキップ等はここで中断
223b71206888 Initial import
thib
parents:
diff changeset
475 menu = new Scn2kMenu(Scn2kMenu::MENU_BACKLOG, *this, flag, text_exec, system_version);
223b71206888 Initial import
thib
parents:
diff changeset
476 menu->InitPanel(event, parent);
223b71206888 Initial import
thib
parents:
diff changeset
477 menu->InitTitle(Scn2kSaveTitle(*this));
223b71206888 Initial import
thib
parents:
diff changeset
478 if (mouse_surface) menu_mouseshown = true;
223b71206888 Initial import
thib
parents:
diff changeset
479 else menu_mouseshown = false;
223b71206888 Initial import
thib
parents:
diff changeset
480 ShowCursor();
223b71206888 Initial import
thib
parents:
diff changeset
481 return;
223b71206888 Initial import
thib
parents:
diff changeset
482 }
223b71206888 Initial import
thib
parents:
diff changeset
483 if (cmd.cmd_type == CMD_MENUREQ) {
223b71206888 Initial import
thib
parents:
diff changeset
484 int scn=0, pt=0;
223b71206888 Initial import
thib
parents:
diff changeset
485 config.GetParam("#CANCELCALL", 2, &scn, &pt);
223b71206888 Initial import
thib
parents:
diff changeset
486 if (scn) {
223b71206888 Initial import
thib
parents:
diff changeset
487 // 右クリックされたら global call を行う
223b71206888 Initial import
thib
parents:
diff changeset
488 cmd.cmd_type = CMD_OTHER;
223b71206888 Initial import
thib
parents:
diff changeset
489 cmd.cmd1 = 0;
223b71206888 Initial import
thib
parents:
diff changeset
490 cmd.cmd2 = 1;
223b71206888 Initial import
thib
parents:
diff changeset
491 cmd.cmd3 = 0x0c;
223b71206888 Initial import
thib
parents:
diff changeset
492 cmd.cmd4 = 1;
223b71206888 Initial import
thib
parents:
diff changeset
493 cmd.args.clear();
223b71206888 Initial import
thib
parents:
diff changeset
494 cmd.args.push_back(VarInfo(SCN_INFO_MENU));
223b71206888 Initial import
thib
parents:
diff changeset
495 cmd.args.push_back(0);
223b71206888 Initial import
thib
parents:
diff changeset
496 SetSkipMode(SKIP_IN_MENU); // テキストスキップ等はここで中断
223b71206888 Initial import
thib
parents:
diff changeset
497 }
223b71206888 Initial import
thib
parents:
diff changeset
498 }
223b71206888 Initial import
thib
parents:
diff changeset
499 if (cmd.cmd_type == CMD_SAVECMDGRP || cmd.cmd_type == CMD_SAVECMDGRP_START || cmd.cmd_type == CMD_SAVECMDGRP_ONCE || cmd.cmd_type == CMD_SAVECMD_ONCE) {
223b71206888 Initial import
thib
parents:
diff changeset
500 // 画像コマンド等はスタックに保存し、セーブ時に保存できるようにする
223b71206888 Initial import
thib
parents:
diff changeset
501 if (cmd.cmd_type == CMD_SAVECMDGRP_START) {
223b71206888 Initial import
thib
parents:
diff changeset
502 vector<CmdSimplified>::iterator it, cur;
223b71206888 Initial import
thib
parents:
diff changeset
503 cur = cmd_stack.begin();
223b71206888 Initial import
thib
parents:
diff changeset
504 cmd_stack_str = cmd_stack_str_orig;
223b71206888 Initial import
thib
parents:
diff changeset
505 /* 画像関連コマンド以外を別にする */
223b71206888 Initial import
thib
parents:
diff changeset
506 for (it=cmd_stack.begin(); it != cmd_stack.end(); it++) {
223b71206888 Initial import
thib
parents:
diff changeset
507 if (it->type != CMD_SAVECMDGRP && it->type != CMD_SAVECMDGRP_START && it->type != CMD_SAVECMDGRP_ONCE) {
223b71206888 Initial import
thib
parents:
diff changeset
508 cur->copy(*it, cmd_stack_str);
223b71206888 Initial import
thib
parents:
diff changeset
509 cur++;
223b71206888 Initial import
thib
parents:
diff changeset
510 }
223b71206888 Initial import
thib
parents:
diff changeset
511 }
223b71206888 Initial import
thib
parents:
diff changeset
512 cmd_stack.erase(cur, cmd_stack.end());
223b71206888 Initial import
thib
parents:
diff changeset
513 }
223b71206888 Initial import
thib
parents:
diff changeset
514 if (cmd.cmd_type == CMD_SAVECMD_ONCE || cmd.cmd_type == CMD_SAVECMDGRP_ONCE) { // 同じコマンドがあれば削除する
223b71206888 Initial import
thib
parents:
diff changeset
515 vector<CmdSimplified>::iterator it;
223b71206888 Initial import
thib
parents:
diff changeset
516 for (it = cmd_stack.end(); it != cmd_stack.begin(); ) {
223b71206888 Initial import
thib
parents:
diff changeset
517 --it;
223b71206888 Initial import
thib
parents:
diff changeset
518 if (it->cmd1 == cmd.cmd1 && it->cmd2 == cmd.cmd2 && it->cmd3 == cmd.cmd3 && it->cmd4 == cmd.cmd4) {
223b71206888 Initial import
thib
parents:
diff changeset
519 cmd_stack.erase(it);
223b71206888 Initial import
thib
parents:
diff changeset
520 break;
223b71206888 Initial import
thib
parents:
diff changeset
521 }
223b71206888 Initial import
thib
parents:
diff changeset
522 }
223b71206888 Initial import
thib
parents:
diff changeset
523 }
223b71206888 Initial import
thib
parents:
diff changeset
524 CmdSimplified cmd_item;
223b71206888 Initial import
thib
parents:
diff changeset
525 cmd.write(cmd_item, cmd_stack_str);
223b71206888 Initial import
thib
parents:
diff changeset
526 cmd_stack.push_back(cmd_item);
223b71206888 Initial import
thib
parents:
diff changeset
527 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
528 if (cmd_stack_str > cmd_stack_str_orig + 30000) { // char cmd_stack_str_orig[32768]
223b71206888 Initial import
thib
parents:
diff changeset
529 fprintf(stderr,"Error in Scn2k::SysExec: too long cmdstack (%d): stack string overflow\n",cmd_stack.size());
223b71206888 Initial import
thib
parents:
diff changeset
530 cmd_stack_str = cmd_stack_str_orig;
223b71206888 Initial import
thib
parents:
diff changeset
531 cmd_stack.clear();
223b71206888 Initial import
thib
parents:
diff changeset
532 }
223b71206888 Initial import
thib
parents:
diff changeset
533 }
223b71206888 Initial import
thib
parents:
diff changeset
534 if (cmd.cmd_type != CMD_OTHER) return;
223b71206888 Initial import
thib
parents:
diff changeset
535 if (cmd.cmd1 == 0 && cmd.cmd2 == 1) {
223b71206888 Initial import
thib
parents:
diff changeset
536 if (cmd.cmd3 == 0x0b) { // global jump
223b71206888 Initial import
thib
parents:
diff changeset
537 eprintf("global jump to %d\n",cmd.args[0].value);
223b71206888 Initial import
thib
parents:
diff changeset
538 if (! ChangeScript(cmd.args[0].value, 0)) return; // 読み込めない; abort.
223b71206888 Initial import
thib
parents:
diff changeset
539 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
540 } else if (cmd.cmd3 == 0x0c || cmd.cmd3 == 0x12) { // call (0x12 の方は微妙)
223b71206888 Initial import
thib
parents:
diff changeset
541 int new_scn = cmd.args[0].value;
223b71206888 Initial import
thib
parents:
diff changeset
542 int new_pt = 0;
223b71206888 Initial import
thib
parents:
diff changeset
543 if (cmd.args.size() >= 1) { // subroutine number が付く
223b71206888 Initial import
thib
parents:
diff changeset
544 // 引数が付くのもあるらしい
223b71206888 Initial import
thib
parents:
diff changeset
545 new_pt = cmd.args[1].value;
223b71206888 Initial import
thib
parents:
diff changeset
546 }
223b71206888 Initial import
thib
parents:
diff changeset
547 if (new_scn == SCN_INFO_MENU) { // menu call
223b71206888 Initial import
thib
parents:
diff changeset
548 config.GetParam("#CANCELCALL", 2, &new_scn, &new_pt);
223b71206888 Initial import
thib
parents:
diff changeset
549 stack.push_back(StackItem(SCN_INFO, SCN_INFO_MENU)); // menu call を示す特殊な記号
223b71206888 Initial import
thib
parents:
diff changeset
550 } else {
223b71206888 Initial import
thib
parents:
diff changeset
551 int i;
223b71206888 Initial import
thib
parents:
diff changeset
552 VarInfo var;
223b71206888 Initial import
thib
parents:
diff changeset
553 // ローカル変数を伴う subroutine call
223b71206888 Initial import
thib
parents:
diff changeset
554 var.type = 11;
223b71206888 Initial import
thib
parents:
diff changeset
555 var.number = 0;
223b71206888 Initial import
thib
parents:
diff changeset
556 int saved_vars = 0;
223b71206888 Initial import
thib
parents:
diff changeset
557 for (i=0; i<40; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
558 int val = flag.Get(var.type, i);
223b71206888 Initial import
thib
parents:
diff changeset
559 if (val != 0) {
223b71206888 Initial import
thib
parents:
diff changeset
560 stack.push_back(StackItem(SCN_INFO_LOCALS + i, val));
223b71206888 Initial import
thib
parents:
diff changeset
561 saved_vars++;
223b71206888 Initial import
thib
parents:
diff changeset
562 }
223b71206888 Initial import
thib
parents:
diff changeset
563 }
223b71206888 Initial import
thib
parents:
diff changeset
564 var.type = TYPE_VARLOCSTR;
223b71206888 Initial import
thib
parents:
diff changeset
565 for (i=0; i<3; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
566 string s = flag.Str(var.type, i);
223b71206888 Initial import
thib
parents:
diff changeset
567 if (s.size()) {
223b71206888 Initial import
thib
parents:
diff changeset
568 int sp = stack_strbuffer.size();
223b71206888 Initial import
thib
parents:
diff changeset
569 stack.push_back(StackItem(SCN_INFO_LOCALSTR+i, sp));
223b71206888 Initial import
thib
parents:
diff changeset
570 stack_strbuffer.push_back(s);
223b71206888 Initial import
thib
parents:
diff changeset
571 saved_vars++;
223b71206888 Initial import
thib
parents:
diff changeset
572 }
223b71206888 Initial import
thib
parents:
diff changeset
573 }
223b71206888 Initial import
thib
parents:
diff changeset
574 stack.push_back(StackItem(SCN_INFO, SCN_INFO_LOCALS + saved_vars));
223b71206888 Initial import
thib
parents:
diff changeset
575
223b71206888 Initial import
thib
parents:
diff changeset
576 var.type = 11;
223b71206888 Initial import
thib
parents:
diff changeset
577 var.number = 0;
223b71206888 Initial import
thib
parents:
diff changeset
578 // 特殊な subroutine call なので、余計な情報を引数に渡す
223b71206888 Initial import
thib
parents:
diff changeset
579 for (i=2; i<cmd.args.size(); i++) {
223b71206888 Initial import
thib
parents:
diff changeset
580 flag.Set(var, cmd.args[i].value);
223b71206888 Initial import
thib
parents:
diff changeset
581 // fprintf(stderr,"<%d:%d>=%d;",var.type,var.number,cmd.args[i].value);
223b71206888 Initial import
thib
parents:
diff changeset
582 var.number++;
223b71206888 Initial import
thib
parents:
diff changeset
583 }
223b71206888 Initial import
thib
parents:
diff changeset
584 // fprintf(stderr,"%d; ",stack.size());
223b71206888 Initial import
thib
parents:
diff changeset
585 }
223b71206888 Initial import
thib
parents:
diff changeset
586 int scn_pt = script - script_start;
223b71206888 Initial import
thib
parents:
diff changeset
587 stack.push_back(StackItem(scn_number, scn_pt));
223b71206888 Initial import
thib
parents:
diff changeset
588 // fprintf(stderr,"\nglobal call %d:%d from %d:%d\n",new_scn,new_pt,scn_number,scn_pt);
223b71206888 Initial import
thib
parents:
diff changeset
589 eprintf("global call to %d, %d\n",new_scn, new_pt);
223b71206888 Initial import
thib
parents:
diff changeset
590 if (! ChangeScript(new_scn, new_pt)) return; // 読み込めない; abort.
223b71206888 Initial import
thib
parents:
diff changeset
591 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
592 } else if (cmd.cmd3 == 0x65) { // 文字列の返り値をセットする
223b71206888 Initial import
thib
parents:
diff changeset
593 int arg1 = cmd.args[0].value;
223b71206888 Initial import
thib
parents:
diff changeset
594 string s = cmd.Str(cmd.args[1]);
223b71206888 Initial import
thib
parents:
diff changeset
595 int sp = stack_strbuffer.size();
223b71206888 Initial import
thib
parents:
diff changeset
596 stack.push_back(StackItem(SCN_INFO_RETSTR+arg1, sp));
223b71206888 Initial import
thib
parents:
diff changeset
597 stack_strbuffer.push_back(s);
223b71206888 Initial import
thib
parents:
diff changeset
598 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
599 } else if (cmd.cmd3 == 0x0d || cmd.cmd3 == 0x0a || cmd.cmd3 == 0x11 || cmd.cmd3 == 0x13) { // return (0a: local return) (0x13はよくわからない)
223b71206888 Initial import
thib
parents:
diff changeset
600 // fprintf(stderr,"global return : stack size %d\n",stack.size());
223b71206888 Initial import
thib
parents:
diff changeset
601 if (stack.empty()) {
223b71206888 Initial import
thib
parents:
diff changeset
602 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
603 return; // スタックがおかしい:abort
223b71206888 Initial import
thib
parents:
diff changeset
604 }
223b71206888 Initial import
thib
parents:
diff changeset
605 map<int, string> retstr;
223b71206888 Initial import
thib
parents:
diff changeset
606 while( (!stack.empty()) && stack.back().scn_number >= SCN_INFO_RETSTR) {
223b71206888 Initial import
thib
parents:
diff changeset
607 int ret_num = stack.back().scn_number - SCN_INFO_RETSTR;
223b71206888 Initial import
thib
parents:
diff changeset
608 // fprintf(stderr,"\nRetStr;");
223b71206888 Initial import
thib
parents:
diff changeset
609 string str = stack_strbuffer.back();
223b71206888 Initial import
thib
parents:
diff changeset
610 stack_strbuffer.pop_back();
223b71206888 Initial import
thib
parents:
diff changeset
611 retstr[ret_num] = str;
223b71206888 Initial import
thib
parents:
diff changeset
612 stack.pop_back();
223b71206888 Initial import
thib
parents:
diff changeset
613 }
223b71206888 Initial import
thib
parents:
diff changeset
614 if (stack.empty()) {
223b71206888 Initial import
thib
parents:
diff changeset
615 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
616 return; // スタックがおかしい:abort
223b71206888 Initial import
thib
parents:
diff changeset
617 }
223b71206888 Initial import
thib
parents:
diff changeset
618 StackItem s = stack.back();
223b71206888 Initial import
thib
parents:
diff changeset
619 stack.pop_back();
223b71206888 Initial import
thib
parents:
diff changeset
620 bool localvar_init = false;
223b71206888 Initial import
thib
parents:
diff changeset
621 while( (!stack.empty()) && stack.back().scn_number == SCN_INFO) {
223b71206888 Initial import
thib
parents:
diff changeset
622 int mode = stack.back().scn_pt;
223b71206888 Initial import
thib
parents:
diff changeset
623 stack.pop_back();
223b71206888 Initial import
thib
parents:
diff changeset
624 if (mode == SCN_INFO_MENU) {
223b71206888 Initial import
thib
parents:
diff changeset
625 // fprintf(stderr,"\nInfo Menu;");
223b71206888 Initial import
thib
parents:
diff changeset
626 // menu モード終了
223b71206888 Initial import
thib
parents:
diff changeset
627 SetSkipMode(SkipMode(skip_mode & (~SKIP_IN_MENU) ));
223b71206888 Initial import
thib
parents:
diff changeset
628 } else if (mode >= SCN_INFO_LOCALS && mode <= SCN_INFO_LOCALS+50) {
223b71206888 Initial import
thib
parents:
diff changeset
629 // fprintf(stderr,"\nInfo Local;");
223b71206888 Initial import
thib
parents:
diff changeset
630 int i;
223b71206888 Initial import
thib
parents:
diff changeset
631 // ローカル変数を元に戻す
223b71206888 Initial import
thib
parents:
diff changeset
632 VarInfo var;
223b71206888 Initial import
thib
parents:
diff changeset
633 var.type = 11;
223b71206888 Initial import
thib
parents:
diff changeset
634 var.number = 0;
223b71206888 Initial import
thib
parents:
diff changeset
635 for (i=0; i<40; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
636 var.number = i;
223b71206888 Initial import
thib
parents:
diff changeset
637 flag.Set(var, 0);
223b71206888 Initial import
thib
parents:
diff changeset
638 }
223b71206888 Initial import
thib
parents:
diff changeset
639 var.type = TYPE_VARLOCSTR;
223b71206888 Initial import
thib
parents:
diff changeset
640 for (i=0; i<3; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
641 var.number = i;
223b71206888 Initial import
thib
parents:
diff changeset
642 flag.SetStr(var, "");
223b71206888 Initial import
thib
parents:
diff changeset
643 }
223b71206888 Initial import
thib
parents:
diff changeset
644 int args = mode - SCN_INFO_LOCALS;
223b71206888 Initial import
thib
parents:
diff changeset
645 // fprintf(stderr," args = %d; ",args);
223b71206888 Initial import
thib
parents:
diff changeset
646 for (i=0; i<args; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
647 if (stack.empty() || stack.back().scn_number < SCN_INFO) {
223b71206888 Initial import
thib
parents:
diff changeset
648 fprintf(stderr,"Fatal : Invalid stack found in preserved local variables!\n");
223b71206888 Initial import
thib
parents:
diff changeset
649 break;
223b71206888 Initial import
thib
parents:
diff changeset
650 }
223b71206888 Initial import
thib
parents:
diff changeset
651 var.number = stack.back().scn_number;
223b71206888 Initial import
thib
parents:
diff changeset
652 // fprintf(stderr,"%d:%d; ",stack.back().scn_number,stack.back().scn_pt);
223b71206888 Initial import
thib
parents:
diff changeset
653 if (var.number >= SCN_INFO_LOCALS && var.number < SCN_INFO_LOCALSTR) {
223b71206888 Initial import
thib
parents:
diff changeset
654 var.type = 11;
223b71206888 Initial import
thib
parents:
diff changeset
655 var.number -= SCN_INFO_LOCALS;
223b71206888 Initial import
thib
parents:
diff changeset
656 flag.Set(var, stack.back().scn_pt);
223b71206888 Initial import
thib
parents:
diff changeset
657 } else if (var.number >= SCN_INFO_LOCALSTR && var.number < SCN_INFO_RETSTR) {
223b71206888 Initial import
thib
parents:
diff changeset
658 var.type = TYPE_VARLOCSTR;
223b71206888 Initial import
thib
parents:
diff changeset
659 var.number -= SCN_INFO_LOCALSTR;
223b71206888 Initial import
thib
parents:
diff changeset
660 flag.SetStr(var, stack_strbuffer.back());
223b71206888 Initial import
thib
parents:
diff changeset
661 stack_strbuffer.pop_back();
223b71206888 Initial import
thib
parents:
diff changeset
662 }
223b71206888 Initial import
thib
parents:
diff changeset
663 stack.pop_back();
223b71206888 Initial import
thib
parents:
diff changeset
664 }
223b71206888 Initial import
thib
parents:
diff changeset
665 }
223b71206888 Initial import
thib
parents:
diff changeset
666 // fprintf(stderr,"stack size %d string size %d\n",stack.size(),stack_strbuffer.size());
223b71206888 Initial import
thib
parents:
diff changeset
667 }
223b71206888 Initial import
thib
parents:
diff changeset
668 if (cmd.cmd3 == 0x11 || cmd.cmd3 == 0x13) {
223b71206888 Initial import
thib
parents:
diff changeset
669 // fprintf(stderr,"\nSet RetLocal;");
223b71206888 Initial import
thib
parents:
diff changeset
670 // 返り値をセットする
223b71206888 Initial import
thib
parents:
diff changeset
671 map<int,string>::iterator it;
223b71206888 Initial import
thib
parents:
diff changeset
672 VarInfo var;
223b71206888 Initial import
thib
parents:
diff changeset
673 var.type = TYPE_VARLOCSTR;
223b71206888 Initial import
thib
parents:
diff changeset
674 for (it=retstr.begin(); it!=retstr.end(); it++) {
223b71206888 Initial import
thib
parents:
diff changeset
675 var.number = it->first;
223b71206888 Initial import
thib
parents:
diff changeset
676 flag.SetStr(var, it->second);
223b71206888 Initial import
thib
parents:
diff changeset
677 }
223b71206888 Initial import
thib
parents:
diff changeset
678 var.type = 11;
223b71206888 Initial import
thib
parents:
diff changeset
679 // fprintf(stderr,"return : cmd.cmd3 == 0x11; size %d\n",cmd.args.size());
223b71206888 Initial import
thib
parents:
diff changeset
680 if (cmd.args.size() == 1) {
223b71206888 Initial import
thib
parents:
diff changeset
681 // fprintf(stderr,"return value %d\n",cmd.args[0].value);
223b71206888 Initial import
thib
parents:
diff changeset
682 flag.SetSys(cmd.args[0].value);
223b71206888 Initial import
thib
parents:
diff changeset
683 } else {
223b71206888 Initial import
thib
parents:
diff changeset
684 int i;for (i=0; i<cmd.args.size(); i++) {
223b71206888 Initial import
thib
parents:
diff changeset
685 var.number = i;
223b71206888 Initial import
thib
parents:
diff changeset
686 flag.Set(var, cmd.args[i].value);
223b71206888 Initial import
thib
parents:
diff changeset
687 }
223b71206888 Initial import
thib
parents:
diff changeset
688 }
223b71206888 Initial import
thib
parents:
diff changeset
689 }
223b71206888 Initial import
thib
parents:
diff changeset
690 // fprintf(stderr,"global return : return to %d:%d\n",s.scn_number,s.scn_pt);
223b71206888 Initial import
thib
parents:
diff changeset
691 // fprintf(stderr,"\nglobal return %d:%d from %d:%d\n",s.scn_number,s.scn_pt,scn_number, script - script_start);
223b71206888 Initial import
thib
parents:
diff changeset
692 if (s.scn_number != -1) {
223b71206888 Initial import
thib
parents:
diff changeset
693 if (! ChangeScript(s.scn_number, 0)) return; // 読み込めない; abort.
223b71206888 Initial import
thib
parents:
diff changeset
694 }
223b71206888 Initial import
thib
parents:
diff changeset
695 script = script_start + s.scn_pt;
223b71206888 Initial import
thib
parents:
diff changeset
696 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
697 }
223b71206888 Initial import
thib
parents:
diff changeset
698 } else if (cmd.cmd1 == 2 && cmd.cmd2 == 1 && cmd.cmd3 == 12) { // DLL Call
223b71206888 Initial import
thib
parents:
diff changeset
699 const char* regname = config.GetParaStr("#REGNAME");
223b71206888 Initial import
thib
parents:
diff changeset
700 const char key_lb[] = "KEY\\LittleBusters";
223b71206888 Initial import
thib
parents:
diff changeset
701 if (strcmp(regname, key_lb) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
702 DllCall_LB(cmd, flag);
223b71206888 Initial import
thib
parents:
diff changeset
703 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
704 }
223b71206888 Initial import
thib
parents:
diff changeset
705 } else if (cmd.cmd1 == 0 && cmd.cmd2 == 0x04) { // メニューモード
223b71206888 Initial import
thib
parents:
diff changeset
706 if (cmd.cmd3 == 300 || cmd.cmd3 == 301 || cmd.cmd3 == 302) {
223b71206888 Initial import
thib
parents:
diff changeset
707 // メニューからのreturn
223b71206888 Initial import
thib
parents:
diff changeset
708 cmd.cmd2 = 1;
223b71206888 Initial import
thib
parents:
diff changeset
709 cmd.cmd3 = 0x0d;
223b71206888 Initial import
thib
parents:
diff changeset
710 SysExec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
711 }
223b71206888 Initial import
thib
parents:
diff changeset
712 } else if (cmd.cmd1 == 1 && cmd.cmd2 == 0x04) {
223b71206888 Initial import
thib
parents:
diff changeset
713 if (cmd.cmd3 == 0 && cmd.cmd4 == 0) { // タイトル名設定
223b71206888 Initial import
thib
parents:
diff changeset
714 const char* name = cmd.Str(cmd.args[0]);
223b71206888 Initial import
thib
parents:
diff changeset
715 if (name == 0) name = "";
223b71206888 Initial import
thib
parents:
diff changeset
716 window_title = name;
223b71206888 Initial import
thib
parents:
diff changeset
717 const char* config_name = config.GetParaStr("#CAPTION");
223b71206888 Initial import
thib
parents:
diff changeset
718 if (config_name == 0) config_name = "";
223b71206888 Initial import
thib
parents:
diff changeset
719 string setname = kconv(string(config_name) + " " + window_title);
223b71206888 Initial import
thib
parents:
diff changeset
720 parent.Root().SetWindowCaption(setname.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
721 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
722 } else if (cmd.cmd3 == 0x82 && cmd.cmd4 == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
723 /* cmd.cmd3 == 0x82 : マウスの press 状態クリアかも */
223b71206888 Initial import
thib
parents:
diff changeset
724 event.presscount(MOUSE_LEFT);
223b71206888 Initial import
thib
parents:
diff changeset
725 event.presscount(MOUSE_RIGHT);
223b71206888 Initial import
thib
parents:
diff changeset
726 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
727 } else if (cmd.cmd3 == 0x85 && cmd.cmd4 == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
728 int x,y,left,right;
223b71206888 Initial import
thib
parents:
diff changeset
729 event.MousePos(x,y);
223b71206888 Initial import
thib
parents:
diff changeset
730 if (event.presscount(MOUSE_LEFT)) left = 2;
223b71206888 Initial import
thib
parents:
diff changeset
731 else if (event.pressed(MOUSE_LEFT)) left = 1;
223b71206888 Initial import
thib
parents:
diff changeset
732 else left = 0;
223b71206888 Initial import
thib
parents:
diff changeset
733
223b71206888 Initial import
thib
parents:
diff changeset
734 if (event.presscount(MOUSE_RIGHT)) right = 2;
223b71206888 Initial import
thib
parents:
diff changeset
735 else if (event.pressed(MOUSE_RIGHT)) right = 1;
223b71206888 Initial import
thib
parents:
diff changeset
736 else right = 0;
223b71206888 Initial import
thib
parents:
diff changeset
737
223b71206888 Initial import
thib
parents:
diff changeset
738 // eprintf("mouse pos\n");
223b71206888 Initial import
thib
parents:
diff changeset
739 flag.Set(cmd.args[0], x);
223b71206888 Initial import
thib
parents:
diff changeset
740 flag.Set(cmd.args[1], y);
223b71206888 Initial import
thib
parents:
diff changeset
741 flag.Set(cmd.args[2], left);
223b71206888 Initial import
thib
parents:
diff changeset
742 flag.Set(cmd.args[3], right);
223b71206888 Initial import
thib
parents:
diff changeset
743 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
744 } else if (cmd.cmd3 == 0x15e || cmd.cmd3 == 0x161 || cmd.cmd3 == 0x162 || cmd.cmd3 == 0x14c || cmd.cmd3 == 0x7d1) {
223b71206888 Initial import
thib
parents:
diff changeset
745 /* 15e, 161, 162, 14c, 7d1 : なんらかのシステム情報を返す(skip modeなど?) */
223b71206888 Initial import
thib
parents:
diff changeset
746 /* 7d1: == 1 || 14c: == 1 || (15e==1&&161==1&&162==0) || (press_val == 2) : スキップ中? タイトル画面のアニメーション終了 */
223b71206888 Initial import
thib
parents:
diff changeset
747 flag.SetSys(0);
223b71206888 Initial import
thib
parents:
diff changeset
748 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
749 } else if (cmd.cmd3 == 0x4b0) { // 終了
223b71206888 Initial import
thib
parents:
diff changeset
750 System::Main::Quit();
223b71206888 Initial import
thib
parents:
diff changeset
751 script = 0; script_start = 0; script_end = 0;
223b71206888 Initial import
thib
parents:
diff changeset
752 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
753 cmd.cmd_type = CMD_WAITFRAMEUPDATE;
223b71206888 Initial import
thib
parents:
diff changeset
754 } else if (cmd.cmd3 == 0x4b4 || cmd.cmd3 == 0x4b5) { // 選択肢巻き戻し
223b71206888 Initial import
thib
parents:
diff changeset
755 LoadRollback(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
756 } else if (cmd.cmd3 == 0x58d) {
223b71206888 Initial import
thib
parents:
diff changeset
757 // 前にロード|セーブされた番号を返す。
223b71206888 Initial import
thib
parents:
diff changeset
758 flag.SetSys(-1);
223b71206888 Initial import
thib
parents:
diff changeset
759 } else if (cmd.cmd3 == 0x585) {
223b71206888 Initial import
thib
parents:
diff changeset
760 // 第一引数の記録された日付、タイトルなどが返される
223b71206888 Initial import
thib
parents:
diff changeset
761 // データがないなら sys に 0が、あるなら 1 が返る
223b71206888 Initial import
thib
parents:
diff changeset
762 int y,m,d,wd,h,min,s,ms;
223b71206888 Initial import
thib
parents:
diff changeset
763 string title;
223b71206888 Initial import
thib
parents:
diff changeset
764 fprintf(stderr,"StatSave %d:",cmd.args[0].value+1);
223b71206888 Initial import
thib
parents:
diff changeset
765 if (StatSaveFile(cmd.args[0].value+1,y,m,d,wd,h,min,s,ms,title) == true) {
223b71206888 Initial import
thib
parents:
diff changeset
766 flag.Set(cmd.args[1], y);
223b71206888 Initial import
thib
parents:
diff changeset
767 flag.Set(cmd.args[2], m);
223b71206888 Initial import
thib
parents:
diff changeset
768 flag.Set(cmd.args[3], d);
223b71206888 Initial import
thib
parents:
diff changeset
769 flag.Set(cmd.args[4], wd);
223b71206888 Initial import
thib
parents:
diff changeset
770 flag.Set(cmd.args[5], h);
223b71206888 Initial import
thib
parents:
diff changeset
771 flag.Set(cmd.args[6], min);
223b71206888 Initial import
thib
parents:
diff changeset
772 flag.Set(cmd.args[7], s);
223b71206888 Initial import
thib
parents:
diff changeset
773 flag.Set(cmd.args[8], ms);
223b71206888 Initial import
thib
parents:
diff changeset
774 if (cmd.args[9].type == TYPE_VARSTR) {
223b71206888 Initial import
thib
parents:
diff changeset
775 flag.SetStr(cmd.args[9].number, kconv_rev(title));
223b71206888 Initial import
thib
parents:
diff changeset
776 }
223b71206888 Initial import
thib
parents:
diff changeset
777 flag.SetSys(1);
223b71206888 Initial import
thib
parents:
diff changeset
778 } else {
223b71206888 Initial import
thib
parents:
diff changeset
779 flag.SetSys(0);
223b71206888 Initial import
thib
parents:
diff changeset
780 }
223b71206888 Initial import
thib
parents:
diff changeset
781 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
782 } else if (cmd.cmd3 == 0xc23) { // save
223b71206888 Initial import
thib
parents:
diff changeset
783 Save(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
784 } else if (cmd.cmd3 == 0xc25) { // load
223b71206888 Initial import
thib
parents:
diff changeset
785 Load(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
786 } else if (cmd.cmd3 == 0x4b1 || cmd.cmd3 == 0x4b3) { // menu へ戻る (4b3: バッドエンド)
223b71206888 Initial import
thib
parents:
diff changeset
787 int scn_start;
223b71206888 Initial import
thib
parents:
diff changeset
788 if (config.GetParam("#SEEN_MENU", 1, &scn_start) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
789 ChangeScript(scn_start, 0);
223b71206888 Initial import
thib
parents:
diff changeset
790 save_scn = 0;
223b71206888 Initial import
thib
parents:
diff changeset
791 save_point = 0;
223b71206888 Initial import
thib
parents:
diff changeset
792 window_title = "";
223b71206888 Initial import
thib
parents:
diff changeset
793 const char* window_title_config = config.GetParaStr("#CAPTION");
223b71206888 Initial import
thib
parents:
diff changeset
794 if (window_title_config) window_title = window_title_config;
223b71206888 Initial import
thib
parents:
diff changeset
795 parent.Root().SetWindowCaption(kconv(window_title).c_str());
223b71206888 Initial import
thib
parents:
diff changeset
796 stack.clear();
223b71206888 Initial import
thib
parents:
diff changeset
797 cmd_stack.clear();
223b71206888 Initial import
thib
parents:
diff changeset
798 cmd_stack_str = cmd_stack_str_orig;
223b71206888 Initial import
thib
parents:
diff changeset
799 flag.Load("");
223b71206888 Initial import
thib
parents:
diff changeset
800 text_exec.Load("");
223b71206888 Initial import
thib
parents:
diff changeset
801 grp_exec.Load("");
223b71206888 Initial import
thib
parents:
diff changeset
802 SetSkipMode(SKIP_NO);
223b71206888 Initial import
thib
parents:
diff changeset
803 }
223b71206888 Initial import
thib
parents:
diff changeset
804 } else if (cmd.cmd3 == 0xcc) {
223b71206888 Initial import
thib
parents:
diff changeset
805 eprintf("show mouse cursor\n");
223b71206888 Initial import
thib
parents:
diff changeset
806 ShowCursor();
223b71206888 Initial import
thib
parents:
diff changeset
807 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
808 } else if (cmd.cmd3 == 0xcd) {
223b71206888 Initial import
thib
parents:
diff changeset
809 eprintf("hide mouse cursor\n");
223b71206888 Initial import
thib
parents:
diff changeset
810 HideCursor();
223b71206888 Initial import
thib
parents:
diff changeset
811 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
812 } else if (cmd.cmd3 == 0xcf) {
223b71206888 Initial import
thib
parents:
diff changeset
813 mouse_type = cmd.args[0].value;
223b71206888 Initial import
thib
parents:
diff changeset
814 eprintf("change mouse cursor : %d\n", mouse_type);
223b71206888 Initial import
thib
parents:
diff changeset
815 if (mouse_surface) ShowCursor();
223b71206888 Initial import
thib
parents:
diff changeset
816 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
817 }
223b71206888 Initial import
thib
parents:
diff changeset
818 }
223b71206888 Initial import
thib
parents:
diff changeset
819
223b71206888 Initial import
thib
parents:
diff changeset
820 }
223b71206888 Initial import
thib
parents:
diff changeset
821
223b71206888 Initial import
thib
parents:
diff changeset
822 #include<sys/types.h>
223b71206888 Initial import
thib
parents:
diff changeset
823 #include<sys/stat.h>
223b71206888 Initial import
thib
parents:
diff changeset
824 #include<errno.h>
223b71206888 Initial import
thib
parents:
diff changeset
825 #include<unistd.h>
223b71206888 Initial import
thib
parents:
diff changeset
826
223b71206888 Initial import
thib
parents:
diff changeset
827 // セーブファイルの名前をつくる
223b71206888 Initial import
thib
parents:
diff changeset
828 string Scn2k::MakeSaveFile(void) const {
223b71206888 Initial import
thib
parents:
diff changeset
829 struct stat sstatus;
223b71206888 Initial import
thib
parents:
diff changeset
830 string dir = "~/.xkanon";
223b71206888 Initial import
thib
parents:
diff changeset
831
223b71206888 Initial import
thib
parents:
diff changeset
832 if (dir.c_str()[0] == '~' && dir.c_str()[1] == '/') {
223b71206888 Initial import
thib
parents:
diff changeset
833 char* home = getenv("HOME");
223b71206888 Initial import
thib
parents:
diff changeset
834 if (home != 0) {
223b71206888 Initial import
thib
parents:
diff changeset
835 string new_dir = string(home) + (dir.c_str()+1);
223b71206888 Initial import
thib
parents:
diff changeset
836 dir = new_dir;
223b71206888 Initial import
thib
parents:
diff changeset
837 }
223b71206888 Initial import
thib
parents:
diff changeset
838 }
223b71206888 Initial import
thib
parents:
diff changeset
839 // savepathにファイル名が入っていれば、それをセーブファイルとして使う
223b71206888 Initial import
thib
parents:
diff changeset
840 if (stat(dir.c_str(), &sstatus) == -1) {
223b71206888 Initial import
thib
parents:
diff changeset
841 if (errno != ENOENT) {
223b71206888 Initial import
thib
parents:
diff changeset
842 fprintf(stderr,"Cannot open save file; dir %s is not directory\n",dir.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
843 return "";
223b71206888 Initial import
thib
parents:
diff changeset
844 }
223b71206888 Initial import
thib
parents:
diff changeset
845 if (mkdir(dir.c_str(), S_IRWXU) != 0 && errno != EEXIST) {
223b71206888 Initial import
thib
parents:
diff changeset
846 fprintf(stderr, "Cannot create directory %s ; Please create manually!!\n",dir.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
847 }
223b71206888 Initial import
thib
parents:
diff changeset
848 } else {
223b71206888 Initial import
thib
parents:
diff changeset
849 if ( (sstatus.st_mode & S_IFMT) == S_IFREG) {
223b71206888 Initial import
thib
parents:
diff changeset
850 return dir;
223b71206888 Initial import
thib
parents:
diff changeset
851 }
223b71206888 Initial import
thib
parents:
diff changeset
852 }
223b71206888 Initial import
thib
parents:
diff changeset
853 // ファイル名を作る
223b71206888 Initial import
thib
parents:
diff changeset
854 const char* regname = config.GetParaStr("#REGNAME");
223b71206888 Initial import
thib
parents:
diff changeset
855
223b71206888 Initial import
thib
parents:
diff changeset
856 char* fname = new char[strlen(regname)+1];
223b71206888 Initial import
thib
parents:
diff changeset
857 /* レジストリ名をファイル名として有効なものにする */
223b71206888 Initial import
thib
parents:
diff changeset
858 int i; for (i=0; regname[i]!=0; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
859 char c = regname[i];
223b71206888 Initial import
thib
parents:
diff changeset
860 if (c == '\\' || c == '/' || c == ':' || c <= 0x20) c = '_';
223b71206888 Initial import
thib
parents:
diff changeset
861 fname[i] = tolower(c);
223b71206888 Initial import
thib
parents:
diff changeset
862 }
223b71206888 Initial import
thib
parents:
diff changeset
863 fname[i] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
864 dir += "/save.";
223b71206888 Initial import
thib
parents:
diff changeset
865 dir += fname;
223b71206888 Initial import
thib
parents:
diff changeset
866 return dir;
223b71206888 Initial import
thib
parents:
diff changeset
867 }
223b71206888 Initial import
thib
parents:
diff changeset
868 // セーブファイルの名前をつくる
223b71206888 Initial import
thib
parents:
diff changeset
869 string Scn2kSaveTitle::operator() (int number) const {
223b71206888 Initial import
thib
parents:
diff changeset
870 int y,m,d,wd,h,min,sec,msec;
223b71206888 Initial import
thib
parents:
diff changeset
871 string title;
223b71206888 Initial import
thib
parents:
diff changeset
872 if (! impl.StatSaveFile(number, y,m,d,wd,h,min,sec,msec,title)) {
223b71206888 Initial import
thib
parents:
diff changeset
873 return "";
223b71206888 Initial import
thib
parents:
diff changeset
874 } else {
223b71206888 Initial import
thib
parents:
diff changeset
875 char buf[1024];
223b71206888 Initial import
thib
parents:
diff changeset
876 sprintf(buf, "%2d/%2d %2d:%2d ",m,d,h,min);
223b71206888 Initial import
thib
parents:
diff changeset
877 return string(buf) + title;
223b71206888 Initial import
thib
parents:
diff changeset
878 }
223b71206888 Initial import
thib
parents:
diff changeset
879 };
223b71206888 Initial import
thib
parents:
diff changeset
880
223b71206888 Initial import
thib
parents:
diff changeset
881 void Scn2k::SaveSys(void) {
223b71206888 Initial import
thib
parents:
diff changeset
882 char buf[1024];
223b71206888 Initial import
thib
parents:
diff changeset
883 string save;
223b71206888 Initial import
thib
parents:
diff changeset
884 string path = MakeSaveFile();
223b71206888 Initial import
thib
parents:
diff changeset
885
223b71206888 Initial import
thib
parents:
diff changeset
886 sprintf(buf, "KEY=%s\n", config.GetParaStr("#REGNAME")); save += buf;
223b71206888 Initial import
thib
parents:
diff changeset
887 string save_config;
223b71206888 Initial import
thib
parents:
diff changeset
888 config.DiffOriginal(save_config);
223b71206888 Initial import
thib
parents:
diff changeset
889 save += "CONFIG=";
223b71206888 Initial import
thib
parents:
diff changeset
890 save += save_config;
223b71206888 Initial import
thib
parents:
diff changeset
891 save += "\n";
223b71206888 Initial import
thib
parents:
diff changeset
892 string save_flag; flag.SaveSys(save_flag);
223b71206888 Initial import
thib
parents:
diff changeset
893 save += save_flag;
223b71206888 Initial import
thib
parents:
diff changeset
894 string save_grp; grp_exec.SaveSys(save_grp);
223b71206888 Initial import
thib
parents:
diff changeset
895 save += save_grp;
223b71206888 Initial import
thib
parents:
diff changeset
896 map<int,set<int> >::iterator it;
223b71206888 Initial import
thib
parents:
diff changeset
897 save += "[TextRead]\n";
223b71206888 Initial import
thib
parents:
diff changeset
898 for (it=text_readflag.begin(); it != text_readflag.end(); it++) {
223b71206888 Initial import
thib
parents:
diff changeset
899 set<int>& read_flag = it->second;
223b71206888 Initial import
thib
parents:
diff changeset
900 set<int>::iterator jt;
223b71206888 Initial import
thib
parents:
diff changeset
901 char buf[1024];
223b71206888 Initial import
thib
parents:
diff changeset
902 sprintf(buf,"T<%05d>=",it->first);
223b71206888 Initial import
thib
parents:
diff changeset
903 string save_readflag = buf;
223b71206888 Initial import
thib
parents:
diff changeset
904 for (jt=read_flag.begin(); jt != read_flag.end(); jt++) {
223b71206888 Initial import
thib
parents:
diff changeset
905 sprintf(buf, "%d,", *jt);
223b71206888 Initial import
thib
parents:
diff changeset
906 save_readflag += buf;
223b71206888 Initial import
thib
parents:
diff changeset
907 }
223b71206888 Initial import
thib
parents:
diff changeset
908 save_readflag += "\n";
223b71206888 Initial import
thib
parents:
diff changeset
909 save += save_readflag;
223b71206888 Initial import
thib
parents:
diff changeset
910 }
223b71206888 Initial import
thib
parents:
diff changeset
911
223b71206888 Initial import
thib
parents:
diff changeset
912 path += ".0";
223b71206888 Initial import
thib
parents:
diff changeset
913 FILE* f = fopen(path.c_str(), "w");
223b71206888 Initial import
thib
parents:
diff changeset
914 if (f == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
915 fprintf(stderr,"Cannot open save file %s\n",path.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
916 return;
223b71206888 Initial import
thib
parents:
diff changeset
917 }
223b71206888 Initial import
thib
parents:
diff changeset
918 fwrite(save.c_str(), save.length(), 1, f);
223b71206888 Initial import
thib
parents:
diff changeset
919 fclose(f);
223b71206888 Initial import
thib
parents:
diff changeset
920 return;
223b71206888 Initial import
thib
parents:
diff changeset
921 }
223b71206888 Initial import
thib
parents:
diff changeset
922
223b71206888 Initial import
thib
parents:
diff changeset
923 void Scn2k::LoadSys(void) {
223b71206888 Initial import
thib
parents:
diff changeset
924 char buf[1024];
223b71206888 Initial import
thib
parents:
diff changeset
925 string path = MakeSaveFile();
223b71206888 Initial import
thib
parents:
diff changeset
926 path += ".0";
223b71206888 Initial import
thib
parents:
diff changeset
927 FILE* f = fopen(path.c_str(), "r");
223b71206888 Initial import
thib
parents:
diff changeset
928 if (f == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
929 fprintf(stderr, "Cannot open save file %s\n",path.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
930 } else {
223b71206888 Initial import
thib
parents:
diff changeset
931 fseek(f,0,2);
223b71206888 Initial import
thib
parents:
diff changeset
932 int sz = ftell(f);
223b71206888 Initial import
thib
parents:
diff changeset
933 fseek(f,0,0);
223b71206888 Initial import
thib
parents:
diff changeset
934 char* savedata = new char[sz+1];
223b71206888 Initial import
thib
parents:
diff changeset
935 fread(savedata, sz, 1, f);
223b71206888 Initial import
thib
parents:
diff changeset
936 savedata[sz] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
937 fclose(f);
223b71206888 Initial import
thib
parents:
diff changeset
938
223b71206888 Initial import
thib
parents:
diff changeset
939 sprintf(buf, "KEY=%s\n", config.GetParaStr("#REGNAME"));
223b71206888 Initial import
thib
parents:
diff changeset
940 if (strncmp(savedata, buf, strlen(buf)) != 0) {
223b71206888 Initial import
thib
parents:
diff changeset
941 fprintf(stderr,"Invalid header in save file %s: it must be started with \"%s\"\n",buf);
223b71206888 Initial import
thib
parents:
diff changeset
942 } else {
223b71206888 Initial import
thib
parents:
diff changeset
943 char* config_str = strstr(savedata, "\nCONFIG=");
223b71206888 Initial import
thib
parents:
diff changeset
944 if (config_str) {
223b71206888 Initial import
thib
parents:
diff changeset
945 config_str += strlen("\nCONFIG=");
223b71206888 Initial import
thib
parents:
diff changeset
946 char* strend = strchr(config_str, '\n');
223b71206888 Initial import
thib
parents:
diff changeset
947 if (strend) {
223b71206888 Initial import
thib
parents:
diff changeset
948 int l = strend - config_str;
223b71206888 Initial import
thib
parents:
diff changeset
949 char* config_copy = new char[l+1];
223b71206888 Initial import
thib
parents:
diff changeset
950 strncpy(config_copy, config_str, l);
223b71206888 Initial import
thib
parents:
diff changeset
951 config_copy[l] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
952 config.PatchOriginal(config_copy);
223b71206888 Initial import
thib
parents:
diff changeset
953 delete[] config_copy;
223b71206888 Initial import
thib
parents:
diff changeset
954 }
223b71206888 Initial import
thib
parents:
diff changeset
955 }
223b71206888 Initial import
thib
parents:
diff changeset
956 flag.LoadSys(savedata);
223b71206888 Initial import
thib
parents:
diff changeset
957 grp_exec.LoadSys(savedata);
223b71206888 Initial import
thib
parents:
diff changeset
958 char* save = strstr(savedata, "\n[TextRead]\n");
223b71206888 Initial import
thib
parents:
diff changeset
959 if (save) {
223b71206888 Initial import
thib
parents:
diff changeset
960 save += strlen("\n[TextRead]\n");
223b71206888 Initial import
thib
parents:
diff changeset
961 do {
223b71206888 Initial import
thib
parents:
diff changeset
962 if (save[0] == '[') break; // next section
223b71206888 Initial import
thib
parents:
diff changeset
963 char* next_save = strchr(save, '\n');
223b71206888 Initial import
thib
parents:
diff changeset
964 if (next_save) {
223b71206888 Initial import
thib
parents:
diff changeset
965 *next_save++ = 0;
223b71206888 Initial import
thib
parents:
diff changeset
966 }
223b71206888 Initial import
thib
parents:
diff changeset
967 // T<XXXXX>=YYY,YYY,YYY,...
223b71206888 Initial import
thib
parents:
diff changeset
968 if (strncmp(save,"T<",2) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
969 int scn_num = atoi(save+2);
223b71206888 Initial import
thib
parents:
diff changeset
970 set<int>& read_flag = text_readflag[scn_num];
223b71206888 Initial import
thib
parents:
diff changeset
971 save += strlen("T<XXXXX>=");
223b71206888 Initial import
thib
parents:
diff changeset
972 while(save && *save) {
223b71206888 Initial import
thib
parents:
diff changeset
973 if (save[0] >= '0' && save[0] <= '9') {
223b71206888 Initial import
thib
parents:
diff changeset
974 int num = atoi(save);
223b71206888 Initial import
thib
parents:
diff changeset
975 read_flag.insert(num);
223b71206888 Initial import
thib
parents:
diff changeset
976 }
223b71206888 Initial import
thib
parents:
diff changeset
977 save = strchr(save, ',');
223b71206888 Initial import
thib
parents:
diff changeset
978 if (save) save++;
223b71206888 Initial import
thib
parents:
diff changeset
979 }
223b71206888 Initial import
thib
parents:
diff changeset
980 }
223b71206888 Initial import
thib
parents:
diff changeset
981 save = next_save;
223b71206888 Initial import
thib
parents:
diff changeset
982 } while(save);
223b71206888 Initial import
thib
parents:
diff changeset
983 }
223b71206888 Initial import
thib
parents:
diff changeset
984
223b71206888 Initial import
thib
parents:
diff changeset
985 }
223b71206888 Initial import
thib
parents:
diff changeset
986 delete[] savedata;
223b71206888 Initial import
thib
parents:
diff changeset
987 }
223b71206888 Initial import
thib
parents:
diff changeset
988
223b71206888 Initial import
thib
parents:
diff changeset
989 /* 初期化 */
223b71206888 Initial import
thib
parents:
diff changeset
990 int scn_start; config.GetParam("#SEEN_START", 1, &scn_start);
223b71206888 Initial import
thib
parents:
diff changeset
991 ChangeScript(scn_start, 0);
223b71206888 Initial import
thib
parents:
diff changeset
992 save_scn = 0;
223b71206888 Initial import
thib
parents:
diff changeset
993 save_point = 0;
223b71206888 Initial import
thib
parents:
diff changeset
994 window_title = "";
223b71206888 Initial import
thib
parents:
diff changeset
995 const char* window_title_config = config.GetParaStr("#CAPTION");
223b71206888 Initial import
thib
parents:
diff changeset
996 if (window_title_config) window_title = window_title_config;
223b71206888 Initial import
thib
parents:
diff changeset
997 parent.Root().SetWindowCaption(kconv(window_title).c_str());
223b71206888 Initial import
thib
parents:
diff changeset
998 stack.clear();
223b71206888 Initial import
thib
parents:
diff changeset
999 cmd_stack.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1000 cmd_stack_str = cmd_stack_str_orig;
223b71206888 Initial import
thib
parents:
diff changeset
1001
223b71206888 Initial import
thib
parents:
diff changeset
1002 return;
223b71206888 Initial import
thib
parents:
diff changeset
1003 }
223b71206888 Initial import
thib
parents:
diff changeset
1004
223b71206888 Initial import
thib
parents:
diff changeset
1005 bool Scn2k::StatSaveFile(int num, int& year, int& month, int& day, int& wday, int& hour,int& min, int& sec, int& msec, string& title) const {
223b71206888 Initial import
thib
parents:
diff changeset
1006 char buf[1024];
223b71206888 Initial import
thib
parents:
diff changeset
1007 string path = MakeSaveFile();
223b71206888 Initial import
thib
parents:
diff changeset
1008 if (num <= 0 || num > 99) return false;
223b71206888 Initial import
thib
parents:
diff changeset
1009 sprintf(buf,".%d",num);
223b71206888 Initial import
thib
parents:
diff changeset
1010 path += buf;
223b71206888 Initial import
thib
parents:
diff changeset
1011
223b71206888 Initial import
thib
parents:
diff changeset
1012 struct stat sb;
223b71206888 Initial import
thib
parents:
diff changeset
1013 if (stat(path.c_str(), &sb) == -1) return false;
223b71206888 Initial import
thib
parents:
diff changeset
1014 struct tm* t = localtime(&sb.st_mtime);
223b71206888 Initial import
thib
parents:
diff changeset
1015 month = t->tm_mon + 1;
223b71206888 Initial import
thib
parents:
diff changeset
1016 day = t->tm_mday;
223b71206888 Initial import
thib
parents:
diff changeset
1017 hour = t->tm_hour;
223b71206888 Initial import
thib
parents:
diff changeset
1018 min = t->tm_min;
223b71206888 Initial import
thib
parents:
diff changeset
1019 /* タイトルの取得 */
223b71206888 Initial import
thib
parents:
diff changeset
1020 FILE* savefile = fopen(path.c_str(), "rb");
223b71206888 Initial import
thib
parents:
diff changeset
1021 if (savefile == 0) return false;
223b71206888 Initial import
thib
parents:
diff changeset
1022 char regname[1024];
223b71206888 Initial import
thib
parents:
diff changeset
1023 sprintf(regname, "KEY=%s\n", config.GetParaStr("#REGNAME"));
223b71206888 Initial import
thib
parents:
diff changeset
1024 fgets(buf,1000,savefile);
223b71206888 Initial import
thib
parents:
diff changeset
1025 if (strncmp(regname, buf, strlen(regname)) != 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1026 fprintf(stderr,"invalid save file %s (registory name is not %s)\n",path.c_str(),regname);
223b71206888 Initial import
thib
parents:
diff changeset
1027 fclose(savefile);
223b71206888 Initial import
thib
parents:
diff changeset
1028 return false;
223b71206888 Initial import
thib
parents:
diff changeset
1029 }
223b71206888 Initial import
thib
parents:
diff changeset
1030 title="none";
223b71206888 Initial import
thib
parents:
diff changeset
1031 while(!feof(savefile)) {
223b71206888 Initial import
thib
parents:
diff changeset
1032 fgets(buf,1000,savefile);
223b71206888 Initial import
thib
parents:
diff changeset
1033 if (strncmp(buf,"Title=",6) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1034 if (buf[strlen(buf)-2] == 0x0a) buf[strlen(buf)-2] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1035 if (strlen(buf) > 20) buf[20] = 0, buf[21] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1036 title = kconv(buf+6);
223b71206888 Initial import
thib
parents:
diff changeset
1037 break;
223b71206888 Initial import
thib
parents:
diff changeset
1038 }
223b71206888 Initial import
thib
parents:
diff changeset
1039 }
223b71206888 Initial import
thib
parents:
diff changeset
1040 fclose(savefile);
223b71206888 Initial import
thib
parents:
diff changeset
1041 return true;
223b71206888 Initial import
thib
parents:
diff changeset
1042 }
223b71206888 Initial import
thib
parents:
diff changeset
1043
223b71206888 Initial import
thib
parents:
diff changeset
1044 void Scn2k::SaveRollback(void) {
223b71206888 Initial import
thib
parents:
diff changeset
1045 fprintf(stderr,"Save rollback\n");
223b71206888 Initial import
thib
parents:
diff changeset
1046 new_rollback_save = "";
223b71206888 Initial import
thib
parents:
diff changeset
1047 string save_sys; SaveImpl(save_sys);
223b71206888 Initial import
thib
parents:
diff changeset
1048 string save_flag; flag.Save(save_flag);
223b71206888 Initial import
thib
parents:
diff changeset
1049 string save_text; text_exec.Save(save_text, true);
223b71206888 Initial import
thib
parents:
diff changeset
1050 string save_grp; grp_exec.Save(save_grp);
223b71206888 Initial import
thib
parents:
diff changeset
1051 new_rollback_save += save_sys;
223b71206888 Initial import
thib
parents:
diff changeset
1052 new_rollback_save += save_flag;
223b71206888 Initial import
thib
parents:
diff changeset
1053 new_rollback_save += save_text;
223b71206888 Initial import
thib
parents:
diff changeset
1054 new_rollback_save += save_grp;
223b71206888 Initial import
thib
parents:
diff changeset
1055 }
223b71206888 Initial import
thib
parents:
diff changeset
1056
223b71206888 Initial import
thib
parents:
diff changeset
1057 void Scn2k::LoadRollback(Cmd& cmd) {
223b71206888 Initial import
thib
parents:
diff changeset
1058 if (rollback_save.empty()) return;
223b71206888 Initial import
thib
parents:
diff changeset
1059 new_rollback_save = "";
223b71206888 Initial import
thib
parents:
diff changeset
1060 string savedata = rollback_save.back();
223b71206888 Initial import
thib
parents:
diff changeset
1061 rollback_save.pop_back();
223b71206888 Initial import
thib
parents:
diff changeset
1062 LoadImpl(savedata.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1063 flag.Load(savedata.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1064 text_exec.Load(savedata.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1065 grp_exec.Load(savedata.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1066
223b71206888 Initial import
thib
parents:
diff changeset
1067 /* 画面の回復など */
223b71206888 Initial import
thib
parents:
diff changeset
1068 SetSkipMode(SKIP_NO);
223b71206888 Initial import
thib
parents:
diff changeset
1069 vector<CmdSimplified>::iterator it;
223b71206888 Initial import
thib
parents:
diff changeset
1070 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1071 for (it = cmd_stack.begin(); it != cmd_stack.end(); it++) {
223b71206888 Initial import
thib
parents:
diff changeset
1072 cmd.read(*it);
223b71206888 Initial import
thib
parents:
diff changeset
1073 cmd.cmd_type = CMD_OTHER;
223b71206888 Initial import
thib
parents:
diff changeset
1074 flag.Exec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1075 text_exec.Exec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1076 grp_exec.Exec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1077 }
223b71206888 Initial import
thib
parents:
diff changeset
1078 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1079 return;
223b71206888 Initial import
thib
parents:
diff changeset
1080 }
223b71206888 Initial import
thib
parents:
diff changeset
1081
223b71206888 Initial import
thib
parents:
diff changeset
1082 void Scn2k::Save(Cmd& cmd) {
223b71206888 Initial import
thib
parents:
diff changeset
1083 if (cmd.cmd_type == CMD_SAVEREQ) {
223b71206888 Initial import
thib
parents:
diff changeset
1084 if (menu == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1085 SetSkipMode(SKIP_IN_MENU); // テキストスキップ等はここで中断
223b71206888 Initial import
thib
parents:
diff changeset
1086 menu = new Scn2kMenu(Scn2kMenu::MENU_SAVE, *this, flag, text_exec, system_version);
223b71206888 Initial import
thib
parents:
diff changeset
1087 menu->InitPanel(event, parent);
223b71206888 Initial import
thib
parents:
diff changeset
1088 menu->InitTitle(Scn2kSaveTitle(*this));
223b71206888 Initial import
thib
parents:
diff changeset
1089 if (mouse_surface) menu_mouseshown = true;
223b71206888 Initial import
thib
parents:
diff changeset
1090 else menu_mouseshown = false;
223b71206888 Initial import
thib
parents:
diff changeset
1091 ShowCursor();
223b71206888 Initial import
thib
parents:
diff changeset
1092 return;
223b71206888 Initial import
thib
parents:
diff changeset
1093 }
223b71206888 Initial import
thib
parents:
diff changeset
1094 }
223b71206888 Initial import
thib
parents:
diff changeset
1095 char buf[1024];
223b71206888 Initial import
thib
parents:
diff changeset
1096 string save;
223b71206888 Initial import
thib
parents:
diff changeset
1097 FILE* f = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1098 if (save_scn == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1099 fprintf(stderr,"Cannot decide save point\n");
223b71206888 Initial import
thib
parents:
diff changeset
1100 return; // セーブ位置が保存されてない
223b71206888 Initial import
thib
parents:
diff changeset
1101 }
223b71206888 Initial import
thib
parents:
diff changeset
1102 string path = MakeSaveFile();
223b71206888 Initial import
thib
parents:
diff changeset
1103 int file_number = 1;
223b71206888 Initial import
thib
parents:
diff changeset
1104 if (cmd.args.size() == 1)
223b71206888 Initial import
thib
parents:
diff changeset
1105 file_number = cmd.args[0].value + 1;
223b71206888 Initial import
thib
parents:
diff changeset
1106 if (file_number <= 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1107 fprintf(stderr, "Cannot open save file %s\n",path.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1108 return;
223b71206888 Initial import
thib
parents:
diff changeset
1109 }
223b71206888 Initial import
thib
parents:
diff changeset
1110 sprintf(buf, ".%d",file_number);
223b71206888 Initial import
thib
parents:
diff changeset
1111 path += buf;
223b71206888 Initial import
thib
parents:
diff changeset
1112
223b71206888 Initial import
thib
parents:
diff changeset
1113 /* セーブファイル確認 */
223b71206888 Initial import
thib
parents:
diff changeset
1114
223b71206888 Initial import
thib
parents:
diff changeset
1115 sprintf(buf, "KEY=%s\n", config.GetParaStr("#REGNAME")); save += buf;
223b71206888 Initial import
thib
parents:
diff changeset
1116 string save_sys; SaveImpl(save_sys);
223b71206888 Initial import
thib
parents:
diff changeset
1117 string save_flag; flag.Save(save_flag);
223b71206888 Initial import
thib
parents:
diff changeset
1118 string save_text; text_exec.Save(save_text, false);
223b71206888 Initial import
thib
parents:
diff changeset
1119 string save_grp; grp_exec.Save(save_grp);
223b71206888 Initial import
thib
parents:
diff changeset
1120 save += save_sys;
223b71206888 Initial import
thib
parents:
diff changeset
1121 save += save_flag;
223b71206888 Initial import
thib
parents:
diff changeset
1122 save += save_text;
223b71206888 Initial import
thib
parents:
diff changeset
1123 save += save_grp;
223b71206888 Initial import
thib
parents:
diff changeset
1124 vector<string>::iterator it;
223b71206888 Initial import
thib
parents:
diff changeset
1125 for (it=rollback_save.begin(); it != rollback_save.end(); it++) {
223b71206888 Initial import
thib
parents:
diff changeset
1126 save += "[Rollback Data]\n";
223b71206888 Initial import
thib
parents:
diff changeset
1127 save += *it;
223b71206888 Initial import
thib
parents:
diff changeset
1128 save += "[Rollback End]\n";
223b71206888 Initial import
thib
parents:
diff changeset
1129 }
223b71206888 Initial import
thib
parents:
diff changeset
1130
223b71206888 Initial import
thib
parents:
diff changeset
1131 f = fopen(path.c_str(), "w");
223b71206888 Initial import
thib
parents:
diff changeset
1132 if (f == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1133 fprintf(stderr,"Cannot open save file %s\n",path.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1134 return;
223b71206888 Initial import
thib
parents:
diff changeset
1135 }
223b71206888 Initial import
thib
parents:
diff changeset
1136 fwrite(save.c_str(), save.length(), 1, f);
223b71206888 Initial import
thib
parents:
diff changeset
1137 fclose(f);
223b71206888 Initial import
thib
parents:
diff changeset
1138 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1139 return;
223b71206888 Initial import
thib
parents:
diff changeset
1140 }
223b71206888 Initial import
thib
parents:
diff changeset
1141
223b71206888 Initial import
thib
parents:
diff changeset
1142 void Scn2k::Load(Cmd& cmd) {
223b71206888 Initial import
thib
parents:
diff changeset
1143 if (cmd.cmd_type == CMD_LOADREQ) {
223b71206888 Initial import
thib
parents:
diff changeset
1144 if (menu == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1145 menu = new Scn2kMenu(Scn2kMenu::MENU_LOAD, *this, flag, text_exec, system_version);
223b71206888 Initial import
thib
parents:
diff changeset
1146 menu->InitPanel(event, parent);
223b71206888 Initial import
thib
parents:
diff changeset
1147 menu->InitTitle(Scn2kSaveTitle(*this));
223b71206888 Initial import
thib
parents:
diff changeset
1148 SetSkipMode(SKIP_IN_MENU); // テキストスキップ等はここで中断
223b71206888 Initial import
thib
parents:
diff changeset
1149 if (mouse_surface) menu_mouseshown = true;
223b71206888 Initial import
thib
parents:
diff changeset
1150 else menu_mouseshown = false;
223b71206888 Initial import
thib
parents:
diff changeset
1151 ShowCursor();
223b71206888 Initial import
thib
parents:
diff changeset
1152 return;
223b71206888 Initial import
thib
parents:
diff changeset
1153 }
223b71206888 Initial import
thib
parents:
diff changeset
1154 }
223b71206888 Initial import
thib
parents:
diff changeset
1155 char buf[1024];
223b71206888 Initial import
thib
parents:
diff changeset
1156 string path = MakeSaveFile();
223b71206888 Initial import
thib
parents:
diff changeset
1157 int file_number = 1;
223b71206888 Initial import
thib
parents:
diff changeset
1158 if (cmd.args.size() == 1)
223b71206888 Initial import
thib
parents:
diff changeset
1159 file_number = cmd.args[0].value + 1;
223b71206888 Initial import
thib
parents:
diff changeset
1160 sprintf(buf, ".%d",file_number);
223b71206888 Initial import
thib
parents:
diff changeset
1161 path += buf;
223b71206888 Initial import
thib
parents:
diff changeset
1162 FILE* f = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1163 if (file_number > 0) f = fopen(path.c_str(), "r");
223b71206888 Initial import
thib
parents:
diff changeset
1164 if (f == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1165 fprintf(stderr, "Cannot open save file %s\n",path.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1166 return;
223b71206888 Initial import
thib
parents:
diff changeset
1167 }
223b71206888 Initial import
thib
parents:
diff changeset
1168
223b71206888 Initial import
thib
parents:
diff changeset
1169 fseek(f,0,2);
223b71206888 Initial import
thib
parents:
diff changeset
1170 int sz = ftell(f);
223b71206888 Initial import
thib
parents:
diff changeset
1171 fseek(f,0,0);
223b71206888 Initial import
thib
parents:
diff changeset
1172 char* savedata = new char[sz+1];
223b71206888 Initial import
thib
parents:
diff changeset
1173 fread(savedata, sz, 1, f);
223b71206888 Initial import
thib
parents:
diff changeset
1174 savedata[sz] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1175 fclose(f);
223b71206888 Initial import
thib
parents:
diff changeset
1176
223b71206888 Initial import
thib
parents:
diff changeset
1177 sprintf(buf, "KEY=%s\n", config.GetParaStr("#REGNAME"));
223b71206888 Initial import
thib
parents:
diff changeset
1178 if (strncmp(savedata, buf, strlen(buf)) != 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1179 fprintf(stderr,"Invalid header in save file %s: it must be started with \"%s\"\n",buf);
223b71206888 Initial import
thib
parents:
diff changeset
1180 delete[] savedata;
223b71206888 Initial import
thib
parents:
diff changeset
1181 return;
223b71206888 Initial import
thib
parents:
diff changeset
1182 }
223b71206888 Initial import
thib
parents:
diff changeset
1183 LoadImpl(savedata);
223b71206888 Initial import
thib
parents:
diff changeset
1184 flag.Load(savedata);
223b71206888 Initial import
thib
parents:
diff changeset
1185 text_exec.Load(savedata);
223b71206888 Initial import
thib
parents:
diff changeset
1186 grp_exec.Load(savedata);
223b71206888 Initial import
thib
parents:
diff changeset
1187 rollback_save.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1188 new_rollback_save = "";
223b71206888 Initial import
thib
parents:
diff changeset
1189 char* rollback_data = savedata;
223b71206888 Initial import
thib
parents:
diff changeset
1190 while( (rollback_data = strstr(rollback_data,"[Rollback Data]\n")) != 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1191 rollback_data += strlen("[Rollback Data]\n");
223b71206888 Initial import
thib
parents:
diff changeset
1192 char* rollback_end = strstr(rollback_data, "[Rollback End]\n");
223b71206888 Initial import
thib
parents:
diff changeset
1193 if (rollback_end == 0) rollback_end = rollback_data + strlen(rollback_data);
223b71206888 Initial import
thib
parents:
diff changeset
1194 string s(rollback_data, rollback_end);
223b71206888 Initial import
thib
parents:
diff changeset
1195 rollback_save.push_back(s);
223b71206888 Initial import
thib
parents:
diff changeset
1196 rollback_data = rollback_end;
223b71206888 Initial import
thib
parents:
diff changeset
1197 }
223b71206888 Initial import
thib
parents:
diff changeset
1198
223b71206888 Initial import
thib
parents:
diff changeset
1199 /* 画面の回復など */
223b71206888 Initial import
thib
parents:
diff changeset
1200 SetSkipMode(SKIP_NO);
223b71206888 Initial import
thib
parents:
diff changeset
1201 vector<CmdSimplified>::iterator it;
223b71206888 Initial import
thib
parents:
diff changeset
1202 for (it = cmd_stack.begin(); it != cmd_stack.end(); it++) {
223b71206888 Initial import
thib
parents:
diff changeset
1203 cmd.read(*it);
223b71206888 Initial import
thib
parents:
diff changeset
1204 cmd.cmd_type = CMD_OTHER;
223b71206888 Initial import
thib
parents:
diff changeset
1205 flag.Exec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1206 text_exec.Exec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1207 grp_exec.Exec(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1208 }
223b71206888 Initial import
thib
parents:
diff changeset
1209 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1210 return;
223b71206888 Initial import
thib
parents:
diff changeset
1211 }
223b71206888 Initial import
thib
parents:
diff changeset
1212
223b71206888 Initial import
thib
parents:
diff changeset
1213 void Scn2k::SaveImpl(string& save) {
223b71206888 Initial import
thib
parents:
diff changeset
1214 char buf[1024];
223b71206888 Initial import
thib
parents:
diff changeset
1215
223b71206888 Initial import
thib
parents:
diff changeset
1216 /* save point */
223b71206888 Initial import
thib
parents:
diff changeset
1217 sprintf(buf, "\n[SCENARIO]\nScn=%d\nPoint=%d\n",save_scn, save_point); save += buf;
223b71206888 Initial import
thib
parents:
diff changeset
1218 sprintf(buf, "Title=%s\nMouseType=%d\nMouseShown=1\n",window_title.c_str(), mouse_type); save += buf;
223b71206888 Initial import
thib
parents:
diff changeset
1219 vector<StackItem>::iterator sit;
223b71206888 Initial import
thib
parents:
diff changeset
1220 for (sit=stack.begin(); sit!=stack.end(); sit++) {
223b71206888 Initial import
thib
parents:
diff changeset
1221 if (sit->scn_number == SCN_INFO && sit->scn_pt == SCN_INFO_MENU) break; // メニューに入る直前までのスタックを保存
223b71206888 Initial import
thib
parents:
diff changeset
1222 sprintf(buf, "Stack=%d,%d\n",sit->scn_number,sit->scn_pt);
223b71206888 Initial import
thib
parents:
diff changeset
1223 save += buf;
223b71206888 Initial import
thib
parents:
diff changeset
1224 }
223b71206888 Initial import
thib
parents:
diff changeset
1225 vector<string>::reverse_iterator ssit;
223b71206888 Initial import
thib
parents:
diff changeset
1226 for (ssit=stack_strbuffer.rbegin(); ssit != stack_strbuffer.rend(); ssit++) {
223b71206888 Initial import
thib
parents:
diff changeset
1227 sprintf(buf, "StackStr=%s\n",ssit->c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1228 save += buf;
223b71206888 Initial import
thib
parents:
diff changeset
1229 }
223b71206888 Initial import
thib
parents:
diff changeset
1230 vector<CmdSimplified>::iterator cit;
223b71206888 Initial import
thib
parents:
diff changeset
1231 for (cit=cmd_stack.begin(); cit != cmd_stack.end(); cit++) {
223b71206888 Initial import
thib
parents:
diff changeset
1232 if (cit->type == CMD_SAVECMDGRP || cit->type == CMD_SAVECMDGRP_ONCE || cit->type == CMD_SAVECMDGRP_START) {
223b71206888 Initial import
thib
parents:
diff changeset
1233 save += "CmdG=";
223b71206888 Initial import
thib
parents:
diff changeset
1234 } else {
223b71206888 Initial import
thib
parents:
diff changeset
1235 save += "Cmd=";
223b71206888 Initial import
thib
parents:
diff changeset
1236 }
223b71206888 Initial import
thib
parents:
diff changeset
1237 string s; cit->Save(s);
223b71206888 Initial import
thib
parents:
diff changeset
1238 save += s;
223b71206888 Initial import
thib
parents:
diff changeset
1239 save += "\n";
223b71206888 Initial import
thib
parents:
diff changeset
1240 }
223b71206888 Initial import
thib
parents:
diff changeset
1241 }
223b71206888 Initial import
thib
parents:
diff changeset
1242
223b71206888 Initial import
thib
parents:
diff changeset
1243 void Scn2k::LoadImpl(const char* save) {
223b71206888 Initial import
thib
parents:
diff changeset
1244 char buf[1024];
223b71206888 Initial import
thib
parents:
diff changeset
1245 save_scn = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1246 save_point = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1247 window_title = "";
223b71206888 Initial import
thib
parents:
diff changeset
1248 stack.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1249 cmd_stack.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1250 cmd_stack_str = cmd_stack_str_orig;
223b71206888 Initial import
thib
parents:
diff changeset
1251
223b71206888 Initial import
thib
parents:
diff changeset
1252 save = strstr(save, "\n[SCENARIO]\n");
223b71206888 Initial import
thib
parents:
diff changeset
1253 if (save == 0) return;
223b71206888 Initial import
thib
parents:
diff changeset
1254 save += strlen("\n[SCENARIO]\n");
223b71206888 Initial import
thib
parents:
diff changeset
1255 while(save[0] != 0 && save[0] != '[') { // while next section start
223b71206888 Initial import
thib
parents:
diff changeset
1256 if (strncmp(save, "Scn=", 4) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1257 sscanf(save, "Scn=%d", &save_scn);
223b71206888 Initial import
thib
parents:
diff changeset
1258 } else if (strncmp(save, "Point=", 6) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1259 sscanf(save, "Point=%d", &save_point);
223b71206888 Initial import
thib
parents:
diff changeset
1260 } else if (strncmp(save, "Title=", 6) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1261 save += 6;
223b71206888 Initial import
thib
parents:
diff changeset
1262 char* s = strchr(save, '\n');
223b71206888 Initial import
thib
parents:
diff changeset
1263 if (s == 0) window_title = save;
223b71206888 Initial import
thib
parents:
diff changeset
1264 else window_title.assign(save, s-save);
223b71206888 Initial import
thib
parents:
diff changeset
1265 const char* config_name = config.GetParaStr("#CAPTION");
223b71206888 Initial import
thib
parents:
diff changeset
1266 if (config_name == 0) config_name = "";
223b71206888 Initial import
thib
parents:
diff changeset
1267 string setname = kconv(string(config_name)+" "+window_title);
223b71206888 Initial import
thib
parents:
diff changeset
1268 parent.Root().SetWindowCaption(setname.c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1269 } else if (strncmp(save, "MouseType=", 10) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1270 sscanf(save, "MouseType=%d", &mouse_type);
223b71206888 Initial import
thib
parents:
diff changeset
1271 } else if (strncmp(save, "MouseShown=", 11) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1272 int v;
223b71206888 Initial import
thib
parents:
diff changeset
1273 sscanf(save, "MouseShown=%d", &v);
223b71206888 Initial import
thib
parents:
diff changeset
1274 if (v) ShowCursor();
223b71206888 Initial import
thib
parents:
diff changeset
1275 else HideCursor();
223b71206888 Initial import
thib
parents:
diff changeset
1276 } else if (strncmp(save, "Stack=", 6) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1277 int scn, pt;
223b71206888 Initial import
thib
parents:
diff changeset
1278 sscanf(save, "Stack=%d,%d", &scn, &pt);
223b71206888 Initial import
thib
parents:
diff changeset
1279 stack.push_back( StackItem(scn, pt));
223b71206888 Initial import
thib
parents:
diff changeset
1280 } else if (strncmp(save, "StackStr=", 9) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1281 save += 9;
223b71206888 Initial import
thib
parents:
diff changeset
1282 char* s = strchr(save, '\n');
223b71206888 Initial import
thib
parents:
diff changeset
1283 if (s == 0) stack_strbuffer.push_back("");
223b71206888 Initial import
thib
parents:
diff changeset
1284 else stack_strbuffer.push_back(string(save, s-save));
223b71206888 Initial import
thib
parents:
diff changeset
1285 } else if (strncmp(save, "Cmd=", 4) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1286 CmdSimplified cmd;
223b71206888 Initial import
thib
parents:
diff changeset
1287 cmd.Load(save+4, cmd_stack_str);
223b71206888 Initial import
thib
parents:
diff changeset
1288 cmd_stack.push_back(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1289 } else if (strncmp(save, "CmdG=", 5) == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1290 CmdSimplified cmd;
223b71206888 Initial import
thib
parents:
diff changeset
1291 cmd.Load(save+5, cmd_stack_str);
223b71206888 Initial import
thib
parents:
diff changeset
1292 cmd.type = CMD_SAVECMDGRP;
223b71206888 Initial import
thib
parents:
diff changeset
1293 cmd_stack.push_back(cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1294 }
223b71206888 Initial import
thib
parents:
diff changeset
1295 save = strchr(save, '\n');
223b71206888 Initial import
thib
parents:
diff changeset
1296 if (save != 0) save++;
223b71206888 Initial import
thib
parents:
diff changeset
1297 }
223b71206888 Initial import
thib
parents:
diff changeset
1298 ChangeScript(save_scn, 0);
223b71206888 Initial import
thib
parents:
diff changeset
1299 script = script_start + save_point;
223b71206888 Initial import
thib
parents:
diff changeset
1300 return;
223b71206888 Initial import
thib
parents:
diff changeset
1301 }
223b71206888 Initial import
thib
parents:
diff changeset
1302 void Scn2k::SetSkipMode(SkipMode mode) {
223b71206888 Initial import
thib
parents:
diff changeset
1303 if (skip_mode != mode) {
223b71206888 Initial import
thib
parents:
diff changeset
1304 skip_mode = mode;
223b71206888 Initial import
thib
parents:
diff changeset
1305 text_exec.SetSkipMode(mode);
223b71206888 Initial import
thib
parents:
diff changeset
1306 grp_exec.SetSkipMode(mode);
223b71206888 Initial import
thib
parents:
diff changeset
1307 }
223b71206888 Initial import
thib
parents:
diff changeset
1308 }
223b71206888 Initial import
thib
parents:
diff changeset
1309
223b71206888 Initial import
thib
parents:
diff changeset
1310 /***********************************************************
223b71206888 Initial import
thib
parents:
diff changeset
1311 **
223b71206888 Initial import
thib
parents:
diff changeset
1312 ** DLL Call Implementation
223b71206888 Initial import
thib
parents:
diff changeset
1313 **
223b71206888 Initial import
thib
parents:
diff changeset
1314 **/
223b71206888 Initial import
thib
parents:
diff changeset
1315 static double* lb_ef_param = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1316 void DLLCall_LB_EF00_0(Cmd& cmd, Flags& flags) { // エフェクトの設定
223b71206888 Initial import
thib
parents:
diff changeset
1317 if (lb_ef_param == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1318 lb_ef_param = new double[sizeof(double) * 0x60 * 8];
223b71206888 Initial import
thib
parents:
diff changeset
1319 }
223b71206888 Initial import
thib
parents:
diff changeset
1320 int i,j;
223b71206888 Initial import
thib
parents:
diff changeset
1321 int param_top, param_size;
223b71206888 Initial import
thib
parents:
diff changeset
1322 if (cmd.args[2].value == 1) {
223b71206888 Initial import
thib
parents:
diff changeset
1323 param_top = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1324 param_size = 0x20;
223b71206888 Initial import
thib
parents:
diff changeset
1325 } else {
223b71206888 Initial import
thib
parents:
diff changeset
1326 param_top = cmd.args[3].value;
223b71206888 Initial import
thib
parents:
diff changeset
1327 param_size = cmd.args[4].value;
223b71206888 Initial import
thib
parents:
diff changeset
1328 if (param_top < 0) param_top = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1329 if (param_top > 0x20) param_top = 0x20;
223b71206888 Initial import
thib
parents:
diff changeset
1330 if (param_size+param_top > 0x20) param_size = 0x20 - param_top;
223b71206888 Initial import
thib
parents:
diff changeset
1331 }
223b71206888 Initial import
thib
parents:
diff changeset
1332 for (i=0; i<8; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
1333 double* param = lb_ef_param + i*0x60 + param_top*3;
223b71206888 Initial import
thib
parents:
diff changeset
1334 for (j=0; j<param_size; j++) {
223b71206888 Initial import
thib
parents:
diff changeset
1335 *param++ = random() % 800 - 400;
223b71206888 Initial import
thib
parents:
diff changeset
1336 *param++ = random() % 600 - 300;
223b71206888 Initial import
thib
parents:
diff changeset
1337 *param++ = random() % 700 - 350;
223b71206888 Initial import
thib
parents:
diff changeset
1338 }
223b71206888 Initial import
thib
parents:
diff changeset
1339 }
223b71206888 Initial import
thib
parents:
diff changeset
1340 if (cmd.args[5].value != 1) return;
223b71206888 Initial import
thib
parents:
diff changeset
1341 static int random_dirtable[] = {
223b71206888 Initial import
thib
parents:
diff changeset
1342 0, 2, 1, 3, 0, 2, 1, 3,
223b71206888 Initial import
thib
parents:
diff changeset
1343 1, 3, 2, 0, 1, 3, 2, 0,
223b71206888 Initial import
thib
parents:
diff changeset
1344 0, 0, 0, 0, 3, 1, 2, 0,
223b71206888 Initial import
thib
parents:
diff changeset
1345 3, 1, 3, 1, 0, 2, 3, 1
223b71206888 Initial import
thib
parents:
diff changeset
1346 };
223b71206888 Initial import
thib
parents:
diff changeset
1347 int* dir = &random_dirtable[(random()&3) * 8];
223b71206888 Initial import
thib
parents:
diff changeset
1348 for (i=0; i<8; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
1349 double* param = lb_ef_param + i*0x60;
223b71206888 Initial import
thib
parents:
diff changeset
1350 double x = random()%600 - 300;
223b71206888 Initial import
thib
parents:
diff changeset
1351 double y = random()%480-240;
223b71206888 Initial import
thib
parents:
diff changeset
1352 if (x < 0) x -= 80;
223b71206888 Initial import
thib
parents:
diff changeset
1353 else x += 80;
223b71206888 Initial import
thib
parents:
diff changeset
1354 if (y < 0) y -= 80;
223b71206888 Initial import
thib
parents:
diff changeset
1355 else y += 80;
223b71206888 Initial import
thib
parents:
diff changeset
1356 switch(*dir++) {
223b71206888 Initial import
thib
parents:
diff changeset
1357 case 0:
223b71206888 Initial import
thib
parents:
diff changeset
1358 if (x < 0) x = -x;
223b71206888 Initial import
thib
parents:
diff changeset
1359 if (y < 0) y = -y;
223b71206888 Initial import
thib
parents:
diff changeset
1360 break;
223b71206888 Initial import
thib
parents:
diff changeset
1361 case 1:
223b71206888 Initial import
thib
parents:
diff changeset
1362 if (x > 0) x = -x;
223b71206888 Initial import
thib
parents:
diff changeset
1363 if (y < 0) y = -y;
223b71206888 Initial import
thib
parents:
diff changeset
1364 break;
223b71206888 Initial import
thib
parents:
diff changeset
1365 case 2:
223b71206888 Initial import
thib
parents:
diff changeset
1366 if (x < 0) x = -x;
223b71206888 Initial import
thib
parents:
diff changeset
1367 if (y > 0) y = -y;
223b71206888 Initial import
thib
parents:
diff changeset
1368 break;
223b71206888 Initial import
thib
parents:
diff changeset
1369 case 4:
223b71206888 Initial import
thib
parents:
diff changeset
1370 if (x > 0) x = -x;
223b71206888 Initial import
thib
parents:
diff changeset
1371 if (y > 0) y = -y;
223b71206888 Initial import
thib
parents:
diff changeset
1372 break;
223b71206888 Initial import
thib
parents:
diff changeset
1373 }
223b71206888 Initial import
thib
parents:
diff changeset
1374 param[9] = x*1.2;
223b71206888 Initial import
thib
parents:
diff changeset
1375 param[10] = y*1.2;
223b71206888 Initial import
thib
parents:
diff changeset
1376 param[11] *= 1.2;
223b71206888 Initial import
thib
parents:
diff changeset
1377 param[12] *= -0.08;
223b71206888 Initial import
thib
parents:
diff changeset
1378 param[13] *= -0.08;
223b71206888 Initial import
thib
parents:
diff changeset
1379 param[14] *= -0.08;
223b71206888 Initial import
thib
parents:
diff changeset
1380 param[15] = -param[9];
223b71206888 Initial import
thib
parents:
diff changeset
1381 param[16] = -param[10];
223b71206888 Initial import
thib
parents:
diff changeset
1382 param[17] = -param[11];
223b71206888 Initial import
thib
parents:
diff changeset
1383 }
223b71206888 Initial import
thib
parents:
diff changeset
1384 return;
223b71206888 Initial import
thib
parents:
diff changeset
1385 }
223b71206888 Initial import
thib
parents:
diff changeset
1386 void DLLCall_LB_EF00_1(Cmd& cmd, Flags& flags) { // 計算を行う
223b71206888 Initial import
thib
parents:
diff changeset
1387 if (lb_ef_param == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1388 fprintf(stderr,"Warning : DLLCall_LB_EF00_1 : Script error : effect calculation was called before setting\n");
223b71206888 Initial import
thib
parents:
diff changeset
1389 return;
223b71206888 Initial import
thib
parents:
diff changeset
1390 }
223b71206888 Initial import
thib
parents:
diff changeset
1391 int index = cmd.args[2].value;
223b71206888 Initial import
thib
parents:
diff changeset
1392 int v5_1154 = flags.Get(5, 1154+index);
223b71206888 Initial import
thib
parents:
diff changeset
1393 int j = ((v5_1154) & 0x1f) + index * 0x20;
223b71206888 Initial import
thib
parents:
diff changeset
1394 int k = ((v5_1154+1) & 0x1f) + index * 0x20;
223b71206888 Initial import
thib
parents:
diff changeset
1395 int l = ((v5_1154+2) & 0x1f) + index * 0x20;
223b71206888 Initial import
thib
parents:
diff changeset
1396 int m = ((v5_1154+3) & 0x1f) + index * 0x20;
223b71206888 Initial import
thib
parents:
diff changeset
1397 j *= 3;
223b71206888 Initial import
thib
parents:
diff changeset
1398 k *= 3;
223b71206888 Initial import
thib
parents:
diff changeset
1399 l *= 3;
223b71206888 Initial import
thib
parents:
diff changeset
1400 m *= 3;
223b71206888 Initial import
thib
parents:
diff changeset
1401
223b71206888 Initial import
thib
parents:
diff changeset
1402 // 0 < x < 1
223b71206888 Initial import
thib
parents:
diff changeset
1403 // va - vd は 0-1 の範囲で対称性を持つ3次関数
223b71206888 Initial import
thib
parents:
diff changeset
1404 double x = double(flags.Get(5, 1162 + index)) * 0.001;
223b71206888 Initial import
thib
parents:
diff changeset
1405 double va = (x * x * x)/6;
223b71206888 Initial import
thib
parents:
diff changeset
1406 double vb = (-x*x*x + 3*x*x - 3*x + 1) / 6;
223b71206888 Initial import
thib
parents:
diff changeset
1407 double vc = (3*x*x*x - 6*x*x + 4) / 6;
223b71206888 Initial import
thib
parents:
diff changeset
1408 double vd = (-3*x*x*x+3*x*x+3*x+1) / 6;
223b71206888 Initial import
thib
parents:
diff changeset
1409
223b71206888 Initial import
thib
parents:
diff changeset
1410 double r1 = va * lb_ef_param[m+3] + vd * lb_ef_param[l+3] + vc * lb_ef_param[k+3] + vb * lb_ef_param[j+3];
223b71206888 Initial import
thib
parents:
diff changeset
1411 double r2 = va * lb_ef_param[m+2] + vd * lb_ef_param[l+2] + vc * lb_ef_param[k+2] + vb * lb_ef_param[j+2];
223b71206888 Initial import
thib
parents:
diff changeset
1412 double r3 = va * lb_ef_param[m+1] + vd * lb_ef_param[l+1] + vc * lb_ef_param[k+1] + vb * lb_ef_param[j+1];
223b71206888 Initial import
thib
parents:
diff changeset
1413 if (r1 != 400) {
223b71206888 Initial import
thib
parents:
diff changeset
1414 r2 = r2 * 800 / (400-r1);
223b71206888 Initial import
thib
parents:
diff changeset
1415 r3 = r3 * 700 / (400-r1);
223b71206888 Initial import
thib
parents:
diff changeset
1416 }
223b71206888 Initial import
thib
parents:
diff changeset
1417 VarInfo var;
223b71206888 Initial import
thib
parents:
diff changeset
1418 var.type = 5;
223b71206888 Initial import
thib
parents:
diff changeset
1419 var.number = 1151;
223b71206888 Initial import
thib
parents:
diff changeset
1420 flags.Set(var, int(r2));
223b71206888 Initial import
thib
parents:
diff changeset
1421 var.number = 1152;
223b71206888 Initial import
thib
parents:
diff changeset
1422 flags.Set(var, int(r3));
223b71206888 Initial import
thib
parents:
diff changeset
1423 var.number = 1153;
223b71206888 Initial import
thib
parents:
diff changeset
1424 flags.Set(var, int(r1));
223b71206888 Initial import
thib
parents:
diff changeset
1425 return;
223b71206888 Initial import
thib
parents:
diff changeset
1426 }
223b71206888 Initial import
thib
parents:
diff changeset
1427
223b71206888 Initial import
thib
parents:
diff changeset
1428
223b71206888 Initial import
thib
parents:
diff changeset
1429 void DllCall_LB(Cmd& cmd, Flags& flags) { // リトルバスターズ!の EF00.dll をエミュレート
223b71206888 Initial import
thib
parents:
diff changeset
1430 if (cmd.args[0].value == 1) {
223b71206888 Initial import
thib
parents:
diff changeset
1431 // "EF00.dll"
223b71206888 Initial import
thib
parents:
diff changeset
1432 if (cmd.args[1].value == 0) { // エフェクトの設定
223b71206888 Initial import
thib
parents:
diff changeset
1433 DLLCall_LB_EF00_0(cmd, flags);
223b71206888 Initial import
thib
parents:
diff changeset
1434 } else if (cmd.args[1].value == 1) { // 計算を行う
223b71206888 Initial import
thib
parents:
diff changeset
1435 DLLCall_LB_EF00_1(cmd, flags);
223b71206888 Initial import
thib
parents:
diff changeset
1436 }
223b71206888 Initial import
thib
parents:
diff changeset
1437 } else {
223b71206888 Initial import
thib
parents:
diff changeset
1438 fprintf(stderr,"Unsupported DLL call for DLL<%d>\n",cmd.args[0].value);
223b71206888 Initial import
thib
parents:
diff changeset
1439 }
223b71206888 Initial import
thib
parents:
diff changeset
1440 return;
223b71206888 Initial import
thib
parents:
diff changeset
1441 }
223b71206888 Initial import
thib
parents:
diff changeset
1442
223b71206888 Initial import
thib
parents:
diff changeset
1443 /**********************************************************
223b71206888 Initial import
thib
parents:
diff changeset
1444 **
223b71206888 Initial import
thib
parents:
diff changeset
1445 ** MenuImpl
223b71206888 Initial import
thib
parents:
diff changeset
1446 **
223b71206888 Initial import
thib
parents:
diff changeset
1447 */
223b71206888 Initial import
thib
parents:
diff changeset
1448
223b71206888 Initial import
thib
parents:
diff changeset
1449 #include"window/widget.h"
223b71206888 Initial import
thib
parents:
diff changeset
1450 #include"window/menuitem.h"
223b71206888 Initial import
thib
parents:
diff changeset
1451
223b71206888 Initial import
thib
parents:
diff changeset
1452 void DSurfaceFill(Surface* src, const Rect& rect, int r, int g, int b, int a = 0xff);
223b71206888 Initial import
thib
parents:
diff changeset
1453
223b71206888 Initial import
thib
parents:
diff changeset
1454 struct Scn2kMenuImpl {
223b71206888 Initial import
thib
parents:
diff changeset
1455 Scn2kMenu& interface;
223b71206888 Initial import
thib
parents:
diff changeset
1456 MenuItem* menu;
223b71206888 Initial import
thib
parents:
diff changeset
1457 Event::Container* pevent;
223b71206888 Initial import
thib
parents:
diff changeset
1458 PicContainer* pparent;
223b71206888 Initial import
thib
parents:
diff changeset
1459
223b71206888 Initial import
thib
parents:
diff changeset
1460 virtual void InitPanel(Event::Container& event, PicContainer& parent) = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1461 virtual void InitTitle(const SaveTitle&) = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1462 virtual void Cancel(void) = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1463 virtual void Exec(Cmd& cmd) = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1464 Scn2kMenuImpl(Scn2kMenu& _interface) : interface(_interface) {
223b71206888 Initial import
thib
parents:
diff changeset
1465 menu = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1466 pevent = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1467 pparent = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1468 }
223b71206888 Initial import
thib
parents:
diff changeset
1469 virtual ~Scn2kMenuImpl() {
223b71206888 Initial import
thib
parents:
diff changeset
1470 if (menu) delete menu;
223b71206888 Initial import
thib
parents:
diff changeset
1471 menu = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1472 }
223b71206888 Initial import
thib
parents:
diff changeset
1473 };
223b71206888 Initial import
thib
parents:
diff changeset
1474
223b71206888 Initial import
thib
parents:
diff changeset
1475 struct LoadMenu : Scn2kMenuImpl {
223b71206888 Initial import
thib
parents:
diff changeset
1476 vector<string> title;
223b71206888 Initial import
thib
parents:
diff changeset
1477 vector<int> title_valid;
223b71206888 Initial import
thib
parents:
diff changeset
1478 RadioButton* btn_local;
223b71206888 Initial import
thib
parents:
diff changeset
1479 RadioButton* btn_page;
223b71206888 Initial import
thib
parents:
diff changeset
1480 RadioButton* btn_set;
223b71206888 Initial import
thib
parents:
diff changeset
1481 Scale* btn_scale;
223b71206888 Initial import
thib
parents:
diff changeset
1482 Dialog* awk_dialog;
223b71206888 Initial import
thib
parents:
diff changeset
1483 int btn_page_val, btn_set_val, btn_local_val, select_page, select_value;
223b71206888 Initial import
thib
parents:
diff changeset
1484 LoadMenu(Scn2kMenu& _interface);
223b71206888 Initial import
thib
parents:
diff changeset
1485 ~LoadMenu();
223b71206888 Initial import
thib
parents:
diff changeset
1486 void InitPanel(Event::Container& event, PicContainer& parent);
223b71206888 Initial import
thib
parents:
diff changeset
1487 void InitTitle(const SaveTitle&);
223b71206888 Initial import
thib
parents:
diff changeset
1488 void Cancel(void);
223b71206888 Initial import
thib
parents:
diff changeset
1489 void Exec(Cmd& cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1490 static void ChangeBtnPage(void* pointer, MenuItem* widget);
223b71206888 Initial import
thib
parents:
diff changeset
1491 static void ChangeBtnLocal(void* pointer, MenuItem* widget);
223b71206888 Initial import
thib
parents:
diff changeset
1492 static void ChangeBtnScale(void* pointer, Scale* widget);
223b71206888 Initial import
thib
parents:
diff changeset
1493 static void ChangeBtnSet(void* pointer, MenuItem* widget);
223b71206888 Initial import
thib
parents:
diff changeset
1494 static void ChangeDialog(void* pointer, Dialog* widget);
223b71206888 Initial import
thib
parents:
diff changeset
1495 bool in_setpage;
223b71206888 Initial import
thib
parents:
diff changeset
1496 void SetPage(int new_page);
223b71206888 Initial import
thib
parents:
diff changeset
1497 void SetValue(int new_value);
223b71206888 Initial import
thib
parents:
diff changeset
1498 void PressOk(void);
223b71206888 Initial import
thib
parents:
diff changeset
1499 };
223b71206888 Initial import
thib
parents:
diff changeset
1500 LoadMenu::LoadMenu(Scn2kMenu& _interface) : Scn2kMenuImpl(_interface) {
223b71206888 Initial import
thib
parents:
diff changeset
1501 btn_local = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1502 btn_scale = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1503 btn_set = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1504 btn_page_val = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1505 btn_set_val = -1;
223b71206888 Initial import
thib
parents:
diff changeset
1506 btn_local_val = -1;
223b71206888 Initial import
thib
parents:
diff changeset
1507 awk_dialog = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1508 in_setpage = false;
223b71206888 Initial import
thib
parents:
diff changeset
1509 select_page = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1510 select_value = -1;
223b71206888 Initial import
thib
parents:
diff changeset
1511 }
223b71206888 Initial import
thib
parents:
diff changeset
1512 LoadMenu::~LoadMenu() {
223b71206888 Initial import
thib
parents:
diff changeset
1513 if (awk_dialog) delete awk_dialog;
223b71206888 Initial import
thib
parents:
diff changeset
1514 }
223b71206888 Initial import
thib
parents:
diff changeset
1515 void LoadMenu::InitPanel(Event::Container& event, PicContainer& parent) {
223b71206888 Initial import
thib
parents:
diff changeset
1516 pevent = &event;
223b71206888 Initial import
thib
parents:
diff changeset
1517 pparent = &parent;
223b71206888 Initial import
thib
parents:
diff changeset
1518
223b71206888 Initial import
thib
parents:
diff changeset
1519 if (menu) delete menu;
223b71206888 Initial import
thib
parents:
diff changeset
1520 menu = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1521 menu = new MenuItem(&parent, Rect(80,30,560, 450), 1, 3, 0);
223b71206888 Initial import
thib
parents:
diff changeset
1522 Surface* surface = parent.Root().NewSurface(menu->Pic()->Width(), menu->Pic()->Height(), ALPHA_MASK);
223b71206888 Initial import
thib
parents:
diff changeset
1523 if (interface.type == Scn2kMenu::MENU_LOAD) {
223b71206888 Initial import
thib
parents:
diff changeset
1524 menu->SetLabelTop(new Label(menu->PicNode(), Rect(0,0), true, "Load", 26), Rect(0,0,10,0), Rect(0,0,0,20));
223b71206888 Initial import
thib
parents:
diff changeset
1525 DSurfaceFill(surface, Rect(*surface), 0, 0, 0x80, 0x80);
223b71206888 Initial import
thib
parents:
diff changeset
1526 } else {
223b71206888 Initial import
thib
parents:
diff changeset
1527 menu->SetLabelTop(new Label(menu->PicNode(), Rect(0,0), true, "Save", 26), Rect(0,0,10,0), Rect(0,0,0,20));
223b71206888 Initial import
thib
parents:
diff changeset
1528 DSurfaceFill(surface, Rect(*surface), 0, 0x80, 0, 0x80);
223b71206888 Initial import
thib
parents:
diff changeset
1529 }
223b71206888 Initial import
thib
parents:
diff changeset
1530 menu->Pic()->SetSurface(surface, 0, 0);
223b71206888 Initial import
thib
parents:
diff changeset
1531 menu->Pic()->SetSurfaceFreeFlag();
223b71206888 Initial import
thib
parents:
diff changeset
1532
223b71206888 Initial import
thib
parents:
diff changeset
1533 btn_page = new RadioButton(event, menu->PicNode(), Rect(0, 0, 480, 40), 10, 1, &btn_page_val,
223b71206888 Initial import
thib
parents:
diff changeset
1534 Rect(0,0,0,0), 18, Color(0,0,0),Color(0xff,0,0),Color(0xff,0x80,0));
223b71206888 Initial import
thib
parents:
diff changeset
1535 btn_page->set_func = &ChangeBtnPage;
223b71206888 Initial import
thib
parents:
diff changeset
1536 btn_page->set_pointer = this;
223b71206888 Initial import
thib
parents:
diff changeset
1537 btn_page->SetLabelLeft(new Label(btn_page->PicNode(), Rect(0,0), true, "Page", 18), Rect(0, 0, 180, 0), Rect(0,0));
223b71206888 Initial import
thib
parents:
diff changeset
1538 btn_page->Add(" 1 ");
223b71206888 Initial import
thib
parents:
diff changeset
1539 btn_page->Add(" 2 ");
223b71206888 Initial import
thib
parents:
diff changeset
1540 btn_page->Add(" 3 ");
223b71206888 Initial import
thib
parents:
diff changeset
1541 btn_page->Add(" 4 ");
223b71206888 Initial import
thib
parents:
diff changeset
1542 btn_page->Add(" 5 ");
223b71206888 Initial import
thib
parents:
diff changeset
1543 btn_page->Add(" 6 ");
223b71206888 Initial import
thib
parents:
diff changeset
1544 btn_page->Add(" 7 ");
223b71206888 Initial import
thib
parents:
diff changeset
1545 btn_page->Add(" 8 ");
223b71206888 Initial import
thib
parents:
diff changeset
1546 btn_page->Add(" 9 ");
223b71206888 Initial import
thib
parents:
diff changeset
1547 btn_page->Add(" 10 ");
223b71206888 Initial import
thib
parents:
diff changeset
1548 btn_page->pack();
223b71206888 Initial import
thib
parents:
diff changeset
1549 /*
223b71206888 Initial import
thib
parents:
diff changeset
1550 surface = parent.Root().NewSurface(btn_page->Pic()->Width(), btn_page->Pic()->Height(), ALPHA_MASK);
223b71206888 Initial import
thib
parents:
diff changeset
1551 DSurfaceFill(surface, Rect(*surface), 0xff, 0, 0, 0x80);
223b71206888 Initial import
thib
parents:
diff changeset
1552 btn_page->Pic()->SetSurface(surface, 0, 0);
223b71206888 Initial import
thib
parents:
diff changeset
1553 btn_page->Pic()->SetSurfaceFreeFlag();
223b71206888 Initial import
thib
parents:
diff changeset
1554 */
223b71206888 Initial import
thib
parents:
diff changeset
1555 menu->item[0] = btn_page;
223b71206888 Initial import
thib
parents:
diff changeset
1556 btn_set = new RadioButton(event, menu->PicNode(), Rect(0, 0, 480, 40), 2, 1, &btn_set_val,
223b71206888 Initial import
thib
parents:
diff changeset
1557 Rect(0,0,0,0), 18, Color(0,0,0),Color(0xff,0,0),Color(0xff,0x80,0));
223b71206888 Initial import
thib
parents:
diff changeset
1558 btn_set->set_func = &ChangeBtnSet;
223b71206888 Initial import
thib
parents:
diff changeset
1559 btn_set->set_pointer = this;
223b71206888 Initial import
thib
parents:
diff changeset
1560 btn_set->SetLabelLeft(new Label(btn_set->PicNode(), Rect(0,0)), Rect(0,0,200,0), Rect(0,0));
223b71206888 Initial import
thib
parents:
diff changeset
1561 if (interface.type == Scn2kMenu::MENU_LOAD) {
223b71206888 Initial import
thib
parents:
diff changeset
1562 btn_set->Add(" Load ");
223b71206888 Initial import
thib
parents:
diff changeset
1563 } else {
223b71206888 Initial import
thib
parents:
diff changeset
1564 btn_set->Add(" Save ");
223b71206888 Initial import
thib
parents:
diff changeset
1565 }
223b71206888 Initial import
thib
parents:
diff changeset
1566 btn_set->Add(" Cancel ");
223b71206888 Initial import
thib
parents:
diff changeset
1567 btn_set->pack();
223b71206888 Initial import
thib
parents:
diff changeset
1568 /*
223b71206888 Initial import
thib
parents:
diff changeset
1569 surface = parent.Root().NewSurface(btn_set->Pic()->Width(), btn_set->Pic()->Height(), ALPHA_MASK);
223b71206888 Initial import
thib
parents:
diff changeset
1570 DSurfaceFill(surface, Rect(*surface), 0, 0, 0xff, 0x80);
223b71206888 Initial import
thib
parents:
diff changeset
1571 btn_set->Pic()->SetSurface(surface, 0, 0);
223b71206888 Initial import
thib
parents:
diff changeset
1572 btn_set->Pic()->SetSurfaceFreeFlag();
223b71206888 Initial import
thib
parents:
diff changeset
1573 */
223b71206888 Initial import
thib
parents:
diff changeset
1574 menu->item[2] = btn_set;
223b71206888 Initial import
thib
parents:
diff changeset
1575 // void btn_set_press(void* pointer, MenuItem* widget);
223b71206888 Initial import
thib
parents:
diff changeset
1576 // btn_set->set_func = btn_set_press;
223b71206888 Initial import
thib
parents:
diff changeset
1577 // btn_set->set_pointer = this;
223b71206888 Initial import
thib
parents:
diff changeset
1578 btn_local = new RadioButton(*pevent, menu->PicNode(), Rect(0, 0, 480, 300), 1, 100, &btn_local_val,
223b71206888 Initial import
thib
parents:
diff changeset
1579 Rect(0,0,300,30), 18, Color(0,0,0),Color(0xff,0,0),Color(0xff,0x80,0));
223b71206888 Initial import
thib
parents:
diff changeset
1580 btn_local->set_func = &ChangeBtnLocal;
223b71206888 Initial import
thib
parents:
diff changeset
1581 btn_local->set_pointer = this;
223b71206888 Initial import
thib
parents:
diff changeset
1582 /*
223b71206888 Initial import
thib
parents:
diff changeset
1583 surface = pparent->Root().NewSurface(btn_local->Pic()->Width(), btn_local->Pic()->Height(), ALPHA_MASK);
223b71206888 Initial import
thib
parents:
diff changeset
1584 DSurfaceFill(surface, Rect(*surface), 0, 0xff, 0, 0x80);
223b71206888 Initial import
thib
parents:
diff changeset
1585 btn_local->Pic()->SetSurface(surface, 0, 0);
223b71206888 Initial import
thib
parents:
diff changeset
1586 btn_local->Pic()->SetSurfaceFreeFlag();
223b71206888 Initial import
thib
parents:
diff changeset
1587 */
223b71206888 Initial import
thib
parents:
diff changeset
1588 menu->item[1] = btn_local;
223b71206888 Initial import
thib
parents:
diff changeset
1589 int i;
223b71206888 Initial import
thib
parents:
diff changeset
1590 for (i=0; i<12; i++)
223b71206888 Initial import
thib
parents:
diff changeset
1591 btn_local->Add("",false);
223b71206888 Initial import
thib
parents:
diff changeset
1592 btn_local->pack();
223b71206888 Initial import
thib
parents:
diff changeset
1593 btn_local->show_all();
223b71206888 Initial import
thib
parents:
diff changeset
1594 menu->pack();
223b71206888 Initial import
thib
parents:
diff changeset
1595
223b71206888 Initial import
thib
parents:
diff changeset
1596 PicBase* local_pic = btn_local->Pic();
223b71206888 Initial import
thib
parents:
diff changeset
1597 int local_x2 = local_pic->PosX() + local_pic->Width();
223b71206888 Initial import
thib
parents:
diff changeset
1598 int local_y2 = local_pic->PosY() + local_pic->Height();
223b71206888 Initial import
thib
parents:
diff changeset
1599 btn_scale = new Scale(*pevent, menu->PicNode(), Rect(local_x2-16, local_pic->PosY(), local_x2, local_y2), Color(0xff, 0x80, 0), true);
223b71206888 Initial import
thib
parents:
diff changeset
1600 btn_scale->SetRange(0, 900);
223b71206888 Initial import
thib
parents:
diff changeset
1601 btn_scale->InitCursor(1024/10);
223b71206888 Initial import
thib
parents:
diff changeset
1602 btn_scale->SetValue(0);
223b71206888 Initial import
thib
parents:
diff changeset
1603 btn_scale->change_func = &ChangeBtnScale;
223b71206888 Initial import
thib
parents:
diff changeset
1604 btn_scale->change_pointer = this;
223b71206888 Initial import
thib
parents:
diff changeset
1605
223b71206888 Initial import
thib
parents:
diff changeset
1606 menu->PicNode()->show_all();
223b71206888 Initial import
thib
parents:
diff changeset
1607 }
223b71206888 Initial import
thib
parents:
diff changeset
1608
223b71206888 Initial import
thib
parents:
diff changeset
1609 void LoadMenu::InitTitle(const SaveTitle& title_op) {
223b71206888 Initial import
thib
parents:
diff changeset
1610 title.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1611 int i;
223b71206888 Initial import
thib
parents:
diff changeset
1612 for (i=1; i<=100; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
1613 char buf[100];
223b71206888 Initial import
thib
parents:
diff changeset
1614 sprintf(buf,"%2d:",i);
223b71206888 Initial import
thib
parents:
diff changeset
1615 string t = title_op(i);
223b71206888 Initial import
thib
parents:
diff changeset
1616 string s = string(buf) + t;
223b71206888 Initial import
thib
parents:
diff changeset
1617 if (t.length() == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1618 string s = string(buf) + "--------";
223b71206888 Initial import
thib
parents:
diff changeset
1619 title_valid.push_back(0);
223b71206888 Initial import
thib
parents:
diff changeset
1620 } else {
223b71206888 Initial import
thib
parents:
diff changeset
1621 title_valid.push_back(1);
223b71206888 Initial import
thib
parents:
diff changeset
1622 }
223b71206888 Initial import
thib
parents:
diff changeset
1623 title.push_back(s);
223b71206888 Initial import
thib
parents:
diff changeset
1624 }
223b71206888 Initial import
thib
parents:
diff changeset
1625 if (btn_local==0) return;
223b71206888 Initial import
thib
parents:
diff changeset
1626 for (i=0; i<10; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
1627 TextButton* button = dynamic_cast<TextButton*>(btn_local->item[i]);
223b71206888 Initial import
thib
parents:
diff changeset
1628 if (button) button->SetText(title[i].c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1629 }
223b71206888 Initial import
thib
parents:
diff changeset
1630 }
223b71206888 Initial import
thib
parents:
diff changeset
1631
223b71206888 Initial import
thib
parents:
diff changeset
1632 void LoadMenu::SetPage(int new_page) {
223b71206888 Initial import
thib
parents:
diff changeset
1633 if (new_page < 0) new_page = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1634 if (new_page > 900) new_page = 900;
223b71206888 Initial import
thib
parents:
diff changeset
1635 if (select_page == new_page) return;
223b71206888 Initial import
thib
parents:
diff changeset
1636 if (in_setpage) return;
223b71206888 Initial import
thib
parents:
diff changeset
1637 in_setpage = true;
223b71206888 Initial import
thib
parents:
diff changeset
1638
223b71206888 Initial import
thib
parents:
diff changeset
1639 int prev_page = select_page / 10;
223b71206888 Initial import
thib
parents:
diff changeset
1640 int cur_page = new_page / 10;
223b71206888 Initial import
thib
parents:
diff changeset
1641 int prev_point = select_page%10;
223b71206888 Initial import
thib
parents:
diff changeset
1642 int new_point = new_page%10;
223b71206888 Initial import
thib
parents:
diff changeset
1643 select_page = new_page;
223b71206888 Initial import
thib
parents:
diff changeset
1644 if (prev_page != cur_page) {
223b71206888 Initial import
thib
parents:
diff changeset
1645 int i;
223b71206888 Initial import
thib
parents:
diff changeset
1646 for (i=0; i<12; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
1647 TextButton* button = dynamic_cast<TextButton*>(btn_local->item[i]);
223b71206888 Initial import
thib
parents:
diff changeset
1648 if (button) {
223b71206888 Initial import
thib
parents:
diff changeset
1649 if (cur_page+i < title.size()) button->SetText(title[cur_page+i].c_str());
223b71206888 Initial import
thib
parents:
diff changeset
1650 else button->SetText("----");
223b71206888 Initial import
thib
parents:
diff changeset
1651 }
223b71206888 Initial import
thib
parents:
diff changeset
1652 }
223b71206888 Initial import
thib
parents:
diff changeset
1653 // ボタンの内容を変更する
223b71206888 Initial import
thib
parents:
diff changeset
1654 if (select_value < cur_page || select_value > cur_page+12)
223b71206888 Initial import
thib
parents:
diff changeset
1655 btn_local->SetValue(-1);
223b71206888 Initial import
thib
parents:
diff changeset
1656 else
223b71206888 Initial import
thib
parents:
diff changeset
1657 btn_local->SetValue(select_value - cur_page);
223b71206888 Initial import
thib
parents:
diff changeset
1658 }
223b71206888 Initial import
thib
parents:
diff changeset
1659 if (prev_point != new_point) {
223b71206888 Initial import
thib
parents:
diff changeset
1660 int i;
223b71206888 Initial import
thib
parents:
diff changeset
1661 for (i=0; i<12; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
1662 int old_x = btn_local->item[i]->Pic()->PosX();
223b71206888 Initial import
thib
parents:
diff changeset
1663 btn_local->item[i]->Pic()->Move(old_x, i*30-new_point*3);
223b71206888 Initial import
thib
parents:
diff changeset
1664 }
223b71206888 Initial import
thib
parents:
diff changeset
1665 }
223b71206888 Initial import
thib
parents:
diff changeset
1666 if (btn_page) {
223b71206888 Initial import
thib
parents:
diff changeset
1667 if (select_page%100 == 0) btn_page->SetValue(select_page/100);
223b71206888 Initial import
thib
parents:
diff changeset
1668 else btn_page->SetValue(-1);
223b71206888 Initial import
thib
parents:
diff changeset
1669 }
223b71206888 Initial import
thib
parents:
diff changeset
1670 if (btn_scale) {
223b71206888 Initial import
thib
parents:
diff changeset
1671 btn_scale->SetValue(select_page);
223b71206888 Initial import
thib
parents:
diff changeset
1672 }
223b71206888 Initial import
thib
parents:
diff changeset
1673 in_setpage = false;
223b71206888 Initial import
thib
parents:
diff changeset
1674 return;
223b71206888 Initial import
thib
parents:
diff changeset
1675 }
223b71206888 Initial import
thib
parents:
diff changeset
1676 void LoadMenu::SetValue(int new_value) {
223b71206888 Initial import
thib
parents:
diff changeset
1677 if (in_setpage) return;
223b71206888 Initial import
thib
parents:
diff changeset
1678 in_setpage = true;
223b71206888 Initial import
thib
parents:
diff changeset
1679
223b71206888 Initial import
thib
parents:
diff changeset
1680 if (new_value < 0 || new_value > title.size() ||
223b71206888 Initial import
thib
parents:
diff changeset
1681 (interface.type == Scn2kMenu::MENU_LOAD && title_valid[new_value] == 0) ) { // 無効な選択肢
223b71206888 Initial import
thib
parents:
diff changeset
1682 if (select_value < select_page/10 || select_value > select_page/10+12)
223b71206888 Initial import
thib
parents:
diff changeset
1683 btn_local->SetValue(-1);
223b71206888 Initial import
thib
parents:
diff changeset
1684 else
223b71206888 Initial import
thib
parents:
diff changeset
1685 btn_local->SetValue(select_value-select_page/10);
223b71206888 Initial import
thib
parents:
diff changeset
1686 } else { // 選択肢を変更する
223b71206888 Initial import
thib
parents:
diff changeset
1687 if (select_value == new_value) {
223b71206888 Initial import
thib
parents:
diff changeset
1688 PressOk(); // ダブルクリック
223b71206888 Initial import
thib
parents:
diff changeset
1689 } else {
223b71206888 Initial import
thib
parents:
diff changeset
1690 select_value = new_value;
223b71206888 Initial import
thib
parents:
diff changeset
1691 if (interface.type == Scn2kMenu::MENU_SAVE && title_valid[select_value] == 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1692 PressOk(); // 新しいセーブデータなら無条件に選択
223b71206888 Initial import
thib
parents:
diff changeset
1693 }
223b71206888 Initial import
thib
parents:
diff changeset
1694 }
223b71206888 Initial import
thib
parents:
diff changeset
1695 }
223b71206888 Initial import
thib
parents:
diff changeset
1696
223b71206888 Initial import
thib
parents:
diff changeset
1697 in_setpage = false;
223b71206888 Initial import
thib
parents:
diff changeset
1698 return;
223b71206888 Initial import
thib
parents:
diff changeset
1699 }
223b71206888 Initial import
thib
parents:
diff changeset
1700 void LoadMenu::PressOk(void) {
223b71206888 Initial import
thib
parents:
diff changeset
1701 if (select_value == -1) {
223b71206888 Initial import
thib
parents:
diff changeset
1702 btn_set->SetValue(-1); // なにもしない
223b71206888 Initial import
thib
parents:
diff changeset
1703 return;
223b71206888 Initial import
thib
parents:
diff changeset
1704 }
223b71206888 Initial import
thib
parents:
diff changeset
1705 menu->deactivate();
223b71206888 Initial import
thib
parents:
diff changeset
1706 if (interface.type == Scn2kMenu::MENU_LOAD) {
223b71206888 Initial import
thib
parents:
diff changeset
1707 interface.cmd.cmd_type = CMD_LOAD;
223b71206888 Initial import
thib
parents:
diff changeset
1708 interface.cmd.args.push_back(VarInfo(select_value));
223b71206888 Initial import
thib
parents:
diff changeset
1709 awk_dialog = new Dialog(*pevent, pparent, "ファイルをロードしますか?", true);
223b71206888 Initial import
thib
parents:
diff changeset
1710 awk_dialog->set_pointer = this;
223b71206888 Initial import
thib
parents:
diff changeset
1711 awk_dialog->set_func = ChangeDialog;
223b71206888 Initial import
thib
parents:
diff changeset
1712 } else {// MENU_SAVE
223b71206888 Initial import
thib
parents:
diff changeset
1713 interface.cmd.cmd_type = CMD_SAVE;
223b71206888 Initial import
thib
parents:
diff changeset
1714 interface.cmd.args.push_back(VarInfo(select_value));
223b71206888 Initial import
thib
parents:
diff changeset
1715 if (title_valid[select_value] == 0) { // 新しいセーブデータ
223b71206888 Initial import
thib
parents:
diff changeset
1716 interface.status = Scn2kMenu::MenuStatus(Scn2kMenu::MENU_CMD | Scn2kMenu::MENU_DELETE);
223b71206888 Initial import
thib
parents:
diff changeset
1717 } else { // セーブデータを上書き:確認
223b71206888 Initial import
thib
parents:
diff changeset
1718 awk_dialog = new Dialog(*pevent, pparent, "データを上書きしますか?", true);
223b71206888 Initial import
thib
parents:
diff changeset
1719 awk_dialog->set_pointer = this;
223b71206888 Initial import
thib
parents:
diff changeset
1720 awk_dialog->set_func = ChangeDialog;
223b71206888 Initial import
thib
parents:
diff changeset
1721 }
223b71206888 Initial import
thib
parents:
diff changeset
1722 }
223b71206888 Initial import
thib
parents:
diff changeset
1723 }
223b71206888 Initial import
thib
parents:
diff changeset
1724 void LoadMenu::Cancel(void) {
223b71206888 Initial import
thib
parents:
diff changeset
1725 if (awk_dialog) { // ダイアログのキャンセル
223b71206888 Initial import
thib
parents:
diff changeset
1726 awk_dialog->status = Dialog::CANCEL;
223b71206888 Initial import
thib
parents:
diff changeset
1727 ChangeDialog(this, awk_dialog);
223b71206888 Initial import
thib
parents:
diff changeset
1728 } else { // 一般キャンセル
223b71206888 Initial import
thib
parents:
diff changeset
1729 btn_set->SetValue(1);
223b71206888 Initial import
thib
parents:
diff changeset
1730 }
223b71206888 Initial import
thib
parents:
diff changeset
1731 }
223b71206888 Initial import
thib
parents:
diff changeset
1732 void LoadMenu::Exec(Cmd& cmd) {
223b71206888 Initial import
thib
parents:
diff changeset
1733 }
223b71206888 Initial import
thib
parents:
diff changeset
1734 void LoadMenu::ChangeBtnPage(void* pointer, MenuItem* widget) {
223b71206888 Initial import
thib
parents:
diff changeset
1735 LoadMenu* instance = (LoadMenu*)pointer;
223b71206888 Initial import
thib
parents:
diff changeset
1736 if (instance->btn_page_val == -1) return;
223b71206888 Initial import
thib
parents:
diff changeset
1737 instance->SetPage(instance->btn_page_val*100);
223b71206888 Initial import
thib
parents:
diff changeset
1738 }
223b71206888 Initial import
thib
parents:
diff changeset
1739 void LoadMenu::ChangeBtnScale(void* pointer, Scale* from) {
223b71206888 Initial import
thib
parents:
diff changeset
1740 LoadMenu* instance = (LoadMenu*)pointer;
223b71206888 Initial import
thib
parents:
diff changeset
1741 int value = from->GetValue();
223b71206888 Initial import
thib
parents:
diff changeset
1742 instance->SetPage(value);
223b71206888 Initial import
thib
parents:
diff changeset
1743 }
223b71206888 Initial import
thib
parents:
diff changeset
1744 void LoadMenu::ChangeBtnSet(void* pointer, MenuItem* widget) {
223b71206888 Initial import
thib
parents:
diff changeset
1745 LoadMenu* instance = (LoadMenu*)pointer;
223b71206888 Initial import
thib
parents:
diff changeset
1746 if (instance->btn_set_val == 1) { // cancel
223b71206888 Initial import
thib
parents:
diff changeset
1747 instance->interface.status = Scn2kMenu::MENU_DELETE;
223b71206888 Initial import
thib
parents:
diff changeset
1748 return;
223b71206888 Initial import
thib
parents:
diff changeset
1749 } else if (instance->btn_set_val == 0) { // OK
223b71206888 Initial import
thib
parents:
diff changeset
1750 instance->PressOk();
223b71206888 Initial import
thib
parents:
diff changeset
1751 }
223b71206888 Initial import
thib
parents:
diff changeset
1752 }
223b71206888 Initial import
thib
parents:
diff changeset
1753 void LoadMenu::ChangeDialog(void* pointer, Dialog* widget) {
223b71206888 Initial import
thib
parents:
diff changeset
1754 LoadMenu* instance = (LoadMenu*)pointer;
223b71206888 Initial import
thib
parents:
diff changeset
1755 if (widget->status == Dialog::CANCEL) {
223b71206888 Initial import
thib
parents:
diff changeset
1756 // ダイアログ消去、OK ボタン復帰
223b71206888 Initial import
thib
parents:
diff changeset
1757 delete instance->awk_dialog;
223b71206888 Initial import
thib
parents:
diff changeset
1758 instance->awk_dialog = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1759 instance->menu->activate();
223b71206888 Initial import
thib
parents:
diff changeset
1760 instance->btn_set->SetValue(-1);
223b71206888 Initial import
thib
parents:
diff changeset
1761 return;
223b71206888 Initial import
thib
parents:
diff changeset
1762 } else if (widget->status == Dialog::OK) {
223b71206888 Initial import
thib
parents:
diff changeset
1763 instance->interface.status = Scn2kMenu::MenuStatus(Scn2kMenu::MENU_CMD | Scn2kMenu::MENU_DELETE);
223b71206888 Initial import
thib
parents:
diff changeset
1764 return;
223b71206888 Initial import
thib
parents:
diff changeset
1765 }
223b71206888 Initial import
thib
parents:
diff changeset
1766 }
223b71206888 Initial import
thib
parents:
diff changeset
1767 void LoadMenu::ChangeBtnLocal(void* pointer, MenuItem* widget) {
223b71206888 Initial import
thib
parents:
diff changeset
1768 LoadMenu* instance = (LoadMenu*)pointer;
223b71206888 Initial import
thib
parents:
diff changeset
1769 if (instance->btn_local_val == -1) return;
223b71206888 Initial import
thib
parents:
diff changeset
1770 instance->SetValue( (instance->select_page/10) + instance->btn_local_val);
223b71206888 Initial import
thib
parents:
diff changeset
1771 }
223b71206888 Initial import
thib
parents:
diff changeset
1772
223b71206888 Initial import
thib
parents:
diff changeset
1773 struct BacklogMenu : Scn2kMenuImpl {
223b71206888 Initial import
thib
parents:
diff changeset
1774 Scn2k& scn_impl;
223b71206888 Initial import
thib
parents:
diff changeset
1775 Text& text_exec;
223b71206888 Initial import
thib
parents:
diff changeset
1776 bool backlog_update;
223b71206888 Initial import
thib
parents:
diff changeset
1777 int backlog_cnt;
223b71206888 Initial import
thib
parents:
diff changeset
1778 BacklogMenu(Scn2kMenu& _interface, Scn2k& scn_impl, Text& text_exec);
223b71206888 Initial import
thib
parents:
diff changeset
1779 ~BacklogMenu();
223b71206888 Initial import
thib
parents:
diff changeset
1780 void InitPanel(Event::Container& event, PicContainer& parent);
223b71206888 Initial import
thib
parents:
diff changeset
1781 void InitTitle(const SaveTitle&);
223b71206888 Initial import
thib
parents:
diff changeset
1782 void Cancel(void);
223b71206888 Initial import
thib
parents:
diff changeset
1783 void Exec(Cmd& cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1784 };
223b71206888 Initial import
thib
parents:
diff changeset
1785 BacklogMenu::BacklogMenu(Scn2kMenu& _interface, Scn2k& _scn, Text& parent_text_exec) : Scn2kMenuImpl(_interface), scn_impl(_scn), text_exec(parent_text_exec) {
223b71206888 Initial import
thib
parents:
diff changeset
1786 backlog_cnt = -1;
223b71206888 Initial import
thib
parents:
diff changeset
1787 backlog_update = false;
223b71206888 Initial import
thib
parents:
diff changeset
1788 }
223b71206888 Initial import
thib
parents:
diff changeset
1789 BacklogMenu::~BacklogMenu() {
223b71206888 Initial import
thib
parents:
diff changeset
1790 }
223b71206888 Initial import
thib
parents:
diff changeset
1791 void BacklogMenu::InitPanel(Event::Container& event, PicContainer& parent) {
223b71206888 Initial import
thib
parents:
diff changeset
1792 pevent = &event;
223b71206888 Initial import
thib
parents:
diff changeset
1793 }
223b71206888 Initial import
thib
parents:
diff changeset
1794
223b71206888 Initial import
thib
parents:
diff changeset
1795 void BacklogMenu::InitTitle(const SaveTitle& title_op) {
223b71206888 Initial import
thib
parents:
diff changeset
1796 }
223b71206888 Initial import
thib
parents:
diff changeset
1797 void BacklogMenu::Cancel(void) {
223b71206888 Initial import
thib
parents:
diff changeset
1798 interface.status = Scn2kMenu::MenuStatus(Scn2kMenu::MENU_DELETE);
223b71206888 Initial import
thib
parents:
diff changeset
1799 }
223b71206888 Initial import
thib
parents:
diff changeset
1800 void BacklogMenu::Exec(Cmd& cmd) {
223b71206888 Initial import
thib
parents:
diff changeset
1801 int command_direction = 0; // forward
223b71206888 Initial import
thib
parents:
diff changeset
1802 if (cmd.cmd_type == CMD_NOP) text_exec.Wait(0xffffffffUL, cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1803 if (cmd.cmd_type == CMD_BACKLOGREQ || pevent->presscount(MOUSE_UP)) {
223b71206888 Initial import
thib
parents:
diff changeset
1804 if (cmd.cmd_type == CMD_BACKLOGREQ) cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1805 backlog_cnt++;
223b71206888 Initial import
thib
parents:
diff changeset
1806 backlog_update = false;
223b71206888 Initial import
thib
parents:
diff changeset
1807 command_direction = 1;
223b71206888 Initial import
thib
parents:
diff changeset
1808 }
223b71206888 Initial import
thib
parents:
diff changeset
1809 if (cmd.cmd_type == CMD_BACKLOGREQ_FWD || pevent->presscount(MOUSE_DOWN)) {
223b71206888 Initial import
thib
parents:
diff changeset
1810 if (cmd.cmd_type == CMD_BACKLOGREQ_FWD) cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1811 backlog_cnt--;
223b71206888 Initial import
thib
parents:
diff changeset
1812 backlog_update = false;
223b71206888 Initial import
thib
parents:
diff changeset
1813 if (backlog_cnt == -2 || (
223b71206888 Initial import
thib
parents:
diff changeset
1814 (backlog_cnt == -1 && text_exec.backlog_item.scn == -1 && text_exec.backlog_item.pos == -1)) ){
223b71206888 Initial import
thib
parents:
diff changeset
1815 Cancel();
223b71206888 Initial import
thib
parents:
diff changeset
1816 return;
223b71206888 Initial import
thib
parents:
diff changeset
1817 }
223b71206888 Initial import
thib
parents:
diff changeset
1818 command_direction = -1;
223b71206888 Initial import
thib
parents:
diff changeset
1819 }
223b71206888 Initial import
thib
parents:
diff changeset
1820 if (cmd.cmd_type != CMD_NOP) return;
223b71206888 Initial import
thib
parents:
diff changeset
1821 if (backlog_update) return;
223b71206888 Initial import
thib
parents:
diff changeset
1822 // backlog を最新の状態に更新
223b71206888 Initial import
thib
parents:
diff changeset
1823 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1824 BacklogItem item;
223b71206888 Initial import
thib
parents:
diff changeset
1825
223b71206888 Initial import
thib
parents:
diff changeset
1826 retry:
223b71206888 Initial import
thib
parents:
diff changeset
1827 if (backlog_cnt < -1) backlog_cnt = -1;
223b71206888 Initial import
thib
parents:
diff changeset
1828 if (backlog_cnt >= int(text_exec.backlog.size())) backlog_cnt = text_exec.backlog.size() - 1;
223b71206888 Initial import
thib
parents:
diff changeset
1829
223b71206888 Initial import
thib
parents:
diff changeset
1830 if (backlog_cnt == -1) {
223b71206888 Initial import
thib
parents:
diff changeset
1831 if (text_exec.backlog_item.scn == -1 && text_exec.backlog_item.pos == -1) {
223b71206888 Initial import
thib
parents:
diff changeset
1832 if (text_exec.backlog.size() == 0 || command_direction < 0) {
223b71206888 Initial import
thib
parents:
diff changeset
1833 Cancel();
223b71206888 Initial import
thib
parents:
diff changeset
1834 return;
223b71206888 Initial import
thib
parents:
diff changeset
1835 }
223b71206888 Initial import
thib
parents:
diff changeset
1836 item = text_exec.backlog.back();
223b71206888 Initial import
thib
parents:
diff changeset
1837 backlog_cnt = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1838 } else {
223b71206888 Initial import
thib
parents:
diff changeset
1839 // item = text_exec.backlog.back();
223b71206888 Initial import
thib
parents:
diff changeset
1840 item = text_exec.backlog_item;
223b71206888 Initial import
thib
parents:
diff changeset
1841 }
223b71206888 Initial import
thib
parents:
diff changeset
1842 } else {
223b71206888 Initial import
thib
parents:
diff changeset
1843 item = text_exec.backlog[text_exec.backlog.size()-1-backlog_cnt];
223b71206888 Initial import
thib
parents:
diff changeset
1844 }
223b71206888 Initial import
thib
parents:
diff changeset
1845 if (item.scn == BacklogItem::SaveSelect) { // select marker ; skip this item
223b71206888 Initial import
thib
parents:
diff changeset
1846 if (command_direction == 0) command_direction = 1;
223b71206888 Initial import
thib
parents:
diff changeset
1847 backlog_cnt += command_direction;
223b71206888 Initial import
thib
parents:
diff changeset
1848 goto retry;
223b71206888 Initial import
thib
parents:
diff changeset
1849 }
223b71206888 Initial import
thib
parents:
diff changeset
1850 if (item.scn == 0 && item.pos == -1) ; // not read cmd
223b71206888 Initial import
thib
parents:
diff changeset
1851 else {
223b71206888 Initial import
thib
parents:
diff changeset
1852 scn_impl.ReadCmdAt(cmd, item.scn, item.pos);
223b71206888 Initial import
thib
parents:
diff changeset
1853 }
223b71206888 Initial import
thib
parents:
diff changeset
1854 text_exec.DrawBacklog(item, cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1855 cmd.clear();
223b71206888 Initial import
thib
parents:
diff changeset
1856 backlog_update = true;
223b71206888 Initial import
thib
parents:
diff changeset
1857 }
223b71206888 Initial import
thib
parents:
diff changeset
1858
223b71206888 Initial import
thib
parents:
diff changeset
1859 /*******************************************************************************
223b71206888 Initial import
thib
parents:
diff changeset
1860 **
223b71206888 Initial import
thib
parents:
diff changeset
1861 **
223b71206888 Initial import
thib
parents:
diff changeset
1862 */
223b71206888 Initial import
thib
parents:
diff changeset
1863
223b71206888 Initial import
thib
parents:
diff changeset
1864 Scn2kMenu::Scn2kMenu(MenuType _type, Scn2k& scn_impl, const Flags& flags, Text& text_exec, int system_version) :
223b71206888 Initial import
thib
parents:
diff changeset
1865 cmd(flags, system_version), type(_type) {
223b71206888 Initial import
thib
parents:
diff changeset
1866 pimpl = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1867 status = MENU_CONTINUE;
223b71206888 Initial import
thib
parents:
diff changeset
1868 switch(type) {
223b71206888 Initial import
thib
parents:
diff changeset
1869 case MENU_LOAD: pimpl = new LoadMenu(*this); break;
223b71206888 Initial import
thib
parents:
diff changeset
1870 case MENU_SAVE: pimpl = new LoadMenu(*this); break;
223b71206888 Initial import
thib
parents:
diff changeset
1871 case MENU_BACKLOG: pimpl = new BacklogMenu(*this, scn_impl, text_exec); break;
223b71206888 Initial import
thib
parents:
diff changeset
1872 }
223b71206888 Initial import
thib
parents:
diff changeset
1873 return;
223b71206888 Initial import
thib
parents:
diff changeset
1874 }
223b71206888 Initial import
thib
parents:
diff changeset
1875 Scn2kMenu::~Scn2kMenu() {
223b71206888 Initial import
thib
parents:
diff changeset
1876 if (pimpl) delete pimpl;
223b71206888 Initial import
thib
parents:
diff changeset
1877 pimpl = 0;
223b71206888 Initial import
thib
parents:
diff changeset
1878 }
223b71206888 Initial import
thib
parents:
diff changeset
1879 void Scn2kMenu::InitPanel(Event::Container& event, PicContainer& parent) {
223b71206888 Initial import
thib
parents:
diff changeset
1880 if (pimpl) pimpl->InitPanel(event, parent);
223b71206888 Initial import
thib
parents:
diff changeset
1881 }
223b71206888 Initial import
thib
parents:
diff changeset
1882 void Scn2kMenu::InitTitle(const SaveTitle& t) {
223b71206888 Initial import
thib
parents:
diff changeset
1883 if (pimpl) pimpl->InitTitle(t);
223b71206888 Initial import
thib
parents:
diff changeset
1884 }
223b71206888 Initial import
thib
parents:
diff changeset
1885 void Scn2kMenu::Cancel(void) {
223b71206888 Initial import
thib
parents:
diff changeset
1886 if (pimpl) pimpl->Cancel();
223b71206888 Initial import
thib
parents:
diff changeset
1887 }
223b71206888 Initial import
thib
parents:
diff changeset
1888 void Scn2kMenu::Exec(Cmd& ret_cmd) {
223b71206888 Initial import
thib
parents:
diff changeset
1889 if (pimpl == 0) return;
223b71206888 Initial import
thib
parents:
diff changeset
1890 pimpl->Exec(ret_cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1891 if (pimpl->pevent->presscount(MOUSE_RIGHT)) {
223b71206888 Initial import
thib
parents:
diff changeset
1892 Cancel();
223b71206888 Initial import
thib
parents:
diff changeset
1893 }
223b71206888 Initial import
thib
parents:
diff changeset
1894 if (status & MENU_CMD && cmd.cmd_type != CMD_NOP) {
223b71206888 Initial import
thib
parents:
diff changeset
1895 status = Scn2kMenu::MenuStatus(status & (~Scn2kMenu::MENU_CMD) );
223b71206888 Initial import
thib
parents:
diff changeset
1896 CmdSimplified tmp_cmd;
223b71206888 Initial import
thib
parents:
diff changeset
1897 char cmd_str[32768];
223b71206888 Initial import
thib
parents:
diff changeset
1898 char* tmp_cmd_str = cmd_str;
223b71206888 Initial import
thib
parents:
diff changeset
1899 cmd.write(tmp_cmd, tmp_cmd_str);
223b71206888 Initial import
thib
parents:
diff changeset
1900 ret_cmd.read(tmp_cmd);
223b71206888 Initial import
thib
parents:
diff changeset
1901 }
223b71206888 Initial import
thib
parents:
diff changeset
1902 }
223b71206888 Initial import
thib
parents:
diff changeset
1903 void Scn2kMenu::activate(void) {
223b71206888 Initial import
thib
parents:
diff changeset
1904 if (pimpl && pimpl->menu) pimpl->menu->activate();
223b71206888 Initial import
thib
parents:
diff changeset
1905 }
223b71206888 Initial import
thib
parents:
diff changeset
1906 void Scn2kMenu::deactivate(void) {
223b71206888 Initial import
thib
parents:
diff changeset
1907 if (pimpl && pimpl->menu) pimpl->menu->deactivate();
223b71206888 Initial import
thib
parents:
diff changeset
1908 }
223b71206888 Initial import
thib
parents:
diff changeset
1909