Skip to content

Commit a9fce3f

Browse files
authored
Merge pull request #21 from DniweTamp/master
Fix CC's msg, move cutin test to its own flow, add build_aem.bat
2 parents e8fdcf3 + 7610837 commit a9fce3f

File tree

5 files changed

+3606
-3577
lines changed

5 files changed

+3606
-3577
lines changed

CutinSelect.flow

+287
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,287 @@
1+
import( "CutinSelect.msg" );
2+
//Cutin Test
3+
void CutinTestDisplay()
4+
{
5+
while (true)
6+
{
7+
MSG_WND_DSP();
8+
int selection = SEL_GENERIC(PartyMemberCutinMenuName, PartyCharacterSelect);
9+
MSG_WND_CLS();
10+
11+
switch ( selection )
12+
{
13+
case -1:
14+
return;
15+
case 0:
16+
RyujiCutinMenu();
17+
break;
18+
case 1:
19+
MorganaCutinMenu();
20+
break;
21+
case 2:
22+
AnnCutinMenu();
23+
break;
24+
case 3:
25+
YusukeCutinMenu();
26+
break;
27+
case 4:
28+
MakotoCutinMenu();
29+
break;
30+
case 5:
31+
HaruCutinMenu();
32+
break;
33+
case 6:
34+
FutabaCutinMenu();
35+
break;
36+
case 7:
37+
AkechiCutinMenu();
38+
break;
39+
case 8:
40+
GoroCutinMenu();
41+
break;
42+
}
43+
}
44+
}
45+
46+
//Ryuji Cutin Select
47+
void RyujiCutinMenu()
48+
{
49+
while (true)
50+
{
51+
MSG_WND_DSP();
52+
int selection = SEL_GENERIC_NOT_HELP(CutinOrientationMenuName, CutinOrientation);
53+
MSG_WND_CLS();
54+
55+
switch ( selection )
56+
{
57+
case -1:
58+
return;
59+
case 0:
60+
MSG_WND_DSP();
61+
MSG( RyujiExpressionRight, 0 );
62+
MSG_WND_CLS();
63+
break;
64+
case 1:
65+
MSG_WND_DSP();
66+
MSG( RyujiExpressionLeft, 0 );
67+
MSG_WND_CLS();
68+
break;
69+
}
70+
}
71+
}
72+
73+
//Morgana Cutin Select
74+
void MorganaCutinMenu()
75+
{
76+
while (true)
77+
{
78+
MSG_WND_DSP();
79+
int selection = SEL_GENERIC_NOT_HELP(CutinOrientationMenuName, CutinOrientation);
80+
MSG_WND_CLS();
81+
82+
switch ( selection )
83+
{
84+
case -1:
85+
return;
86+
case 0:
87+
MSG_WND_DSP();
88+
MSG( MorganaExpressionRight, 0 );
89+
MSG_WND_CLS();
90+
break;
91+
case 1:
92+
MSG_WND_DSP();
93+
MSG( MorganaExpressionLeft, 0 );
94+
MSG_WND_CLS();
95+
break;
96+
}
97+
}
98+
}
99+
100+
//Ann Cutin Select
101+
void AnnCutinMenu()
102+
{
103+
while (true)
104+
{
105+
MSG_WND_DSP();
106+
int selection = SEL_GENERIC_NOT_HELP(CutinOrientationMenuName, CutinOrientation);
107+
MSG_WND_CLS();
108+
109+
switch ( selection )
110+
{
111+
case -1:
112+
return;
113+
case 0:
114+
MSG_WND_DSP();
115+
MSG( AnnExpressionRight, 0 );
116+
MSG_WND_CLS();
117+
break;
118+
case 1:
119+
MSG_WND_DSP();
120+
MSG( AnnExpressionLeft, 0 );
121+
MSG_WND_CLS();
122+
break;
123+
}
124+
}
125+
}
126+
127+
//Yusuke Cutin Select
128+
void YusukeCutinMenu()
129+
{
130+
while (true)
131+
{
132+
MSG_WND_DSP();
133+
int selection = SEL_GENERIC_NOT_HELP(CutinOrientationMenuName, CutinOrientation);
134+
MSG_WND_CLS();
135+
136+
switch ( selection )
137+
{
138+
case -1:
139+
return;
140+
case 0:
141+
MSG_WND_DSP();
142+
MSG( YusukeExpressionRight, 0 );
143+
MSG_WND_CLS();
144+
break;
145+
case 1:
146+
MSG_WND_DSP();
147+
MSG( YusukeExpressionLeft, 0 );
148+
MSG_WND_CLS();
149+
break;
150+
}
151+
}
152+
}
153+
154+
//Makoto Cutin Select
155+
void MakotoCutinMenu()
156+
{
157+
while (true)
158+
{
159+
MSG_WND_DSP();
160+
int selection = SEL_GENERIC_NOT_HELP(CutinOrientationMenuName, CutinOrientation);
161+
MSG_WND_CLS();
162+
163+
switch ( selection )
164+
{
165+
case -1:
166+
return;
167+
case 0:
168+
MSG_WND_DSP();
169+
MSG( MakotoExpressionRight, 0 );
170+
MSG_WND_CLS();
171+
break;
172+
case 1:
173+
MSG_WND_DSP();
174+
MSG( MakotoExpressionLeft, 0 );
175+
MSG_WND_CLS();
176+
break;
177+
}
178+
}
179+
}
180+
181+
//Haru Cutin Select
182+
void HaruCutinMenu()
183+
{
184+
while (true)
185+
{
186+
MSG_WND_DSP();
187+
int selection = SEL_GENERIC_NOT_HELP(CutinOrientationMenuName, CutinOrientation);
188+
MSG_WND_CLS();
189+
190+
switch ( selection )
191+
{
192+
case -1:
193+
return;
194+
case 0:
195+
MSG_WND_DSP();
196+
MSG( HaruExpressionRight, 0 );
197+
MSG_WND_CLS();
198+
break;
199+
case 1:
200+
MSG_WND_DSP();
201+
MSG( HaruExpressionLeft, 0 );
202+
MSG_WND_CLS();
203+
break;
204+
}
205+
}
206+
}
207+
208+
//Futaba Cutin Select
209+
void FutabaCutinMenu()
210+
{
211+
while (true)
212+
{
213+
MSG_WND_DSP();
214+
int selection = SEL_GENERIC_NOT_HELP(CutinOrientationMenuName, CutinOrientation);
215+
MSG_WND_CLS();
216+
217+
switch ( selection )
218+
{
219+
case -1:
220+
return;
221+
case 0:
222+
MSG_WND_DSP();
223+
MSG( FutabaExpressionRight, 0 );
224+
MSG_WND_CLS();
225+
break;
226+
case 1:
227+
MSG_WND_DSP();
228+
MSG( FutabaExpressionLeft, 0 );
229+
MSG_WND_CLS();
230+
break;
231+
}
232+
}
233+
}
234+
235+
//Akechi Cutin Select
236+
void AkechiCutinMenu()
237+
{
238+
while (true)
239+
{
240+
MSG_WND_DSP();
241+
int selection = SEL_GENERIC_NOT_HELP(CutinOrientationMenuName, CutinOrientation);
242+
MSG_WND_CLS();
243+
244+
switch ( selection )
245+
{
246+
case -1:
247+
return;
248+
case 0:
249+
MSG_WND_DSP();
250+
MSG( AkechiExpressionRight, 0 );
251+
MSG_WND_CLS();
252+
break;
253+
case 1:
254+
MSG_WND_DSP();
255+
MSG( AkechiExpressionLeft, 0 );
256+
MSG_WND_CLS();
257+
break;
258+
}
259+
}
260+
}
261+
262+
//Goro Cutin Select
263+
void GoroCutinMenu()
264+
{
265+
while (true)
266+
{
267+
MSG_WND_DSP();
268+
int selection = SEL_GENERIC_NOT_HELP(CutinOrientationMenuName, CutinOrientation);
269+
MSG_WND_CLS();
270+
271+
switch ( selection )
272+
{
273+
case -1:
274+
return;
275+
case 0:
276+
MSG_WND_DSP();
277+
MSG( GoroExpressionRight, 0 );
278+
MSG_WND_CLS();
279+
break;
280+
case 1:
281+
MSG_WND_DSP();
282+
MSG( GoroExpressionLeft, 0 );
283+
MSG_WND_CLS();
284+
break;
285+
}
286+
}
287+
}

0 commit comments

Comments
 (0)