annotate scn2k/scn2k_impl.cc @ 50:35ce1a30f3f9

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