-
Notifications
You must be signed in to change notification settings - Fork 9
/
selecter.cpp
518 lines (453 loc) · 14.2 KB
/
selecter.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
//
// AYA version 5
//
// 出力の選択を行なうクラス CSelecter
// - 主処理部
// written by umeici. 2004
//
#if defined(WIN32) || defined(_WIN32_WCE)
# include "stdafx.h"
#endif
#include "selecter.h"
#include "globaldef.h"
#include "sysfunc.h"
#include "ayavm.h"
#include "wsex.h"
#include "messages.h"
//////////DEBUG/////////////////////////
#ifdef _WINDOWS
#ifdef _DEBUG
#include <crtdbg.h>
#define new new( _NORMAL_BLOCK, __FILE__, __LINE__)
#endif
#endif
////////////////////////////////////////
/* -----------------------------------------------------------------------
* CSelecterコンストラクタ
* -----------------------------------------------------------------------
*/
CSelecter::CSelecter(CAyaVM *pvmr, CDuplEvInfo *dc, ptrdiff_t aid) : pvm(pvmr), duplctl(dc), aindex(aid)
{
areanum = 0;
CVecValue addvv;
values.emplace_back(addvv);
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::AddArea
* 機能概要: 新しい出力格納用の領域を用意します
* -----------------------------------------------------------------------
*/
void CSelecter::AddArea(void)
{
// 追加前の領域が空だった場合はダミーの空文字列を追加
if (!values[areanum].array.size())
Append(CValue());
// 領域を追加
CVecValue addvv;
values.emplace_back(addvv);
areanum++;
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::Append
* 機能概要: 候補値を追加します
* -----------------------------------------------------------------------
*/
void CSelecter::Append(const CValue &value)
{
//空文字列はやっぱり追加しないとまずい
//if (value.GetType() == F_TAG_STRING && !value.s_value.size())
// return;
if (value.GetType() == F_TAG_VOID)
return;
values[areanum].array.emplace_back(value);
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::Output
* 機能概要: 各領域から値を抽出して出力を作成し返します
* 引数 : duplctl 重複回避情報へのポインタ
* NULLに場合はランダム選択で動作します
*
* ランダム選択はこのクラスで処理します。
* nonoverlao/sequential選択はCDuplEvInfoクラスに任せます。
* -----------------------------------------------------------------------
*/
CValue CSelecter::Output()
{
// switch選択
if (aindex >= BRACE_SWITCH_OUT_OF_RANGE) {
pvm->sysfunction().SetLso(aindex);
return ChoiceByIndex();
}
// 領域が1つしかなく、かつ候補が存在しない場合は出力なし
if (!areanum && !values[0].array.size()) {
pvm->sysfunction().SetLso(-1);
return CValue(F_TAG_NOP, 0/*dmy*/);
}
// 最後の領域が空だった場合はダミーの空文字列を追加
if (!values[areanum].array.size())
Append(CValue());
// ランダム選択
if (duplctl == NULL)
return ChoiceRandom();
// 重複回避制御付き選択
if (duplctl->GetType() & CHOICETYPE_SPECOUT_FILTER)
switch(duplctl->GetType()){
case CHOICETYPE_VOID:
return CValue(F_TAG_NOP, 0/*dmy*/);
case CHOICETYPE_ALL:
return StructString();
case CHOICETYPE_LAST:
return *values.rbegin()->array.rbegin();
}
switch ( duplctl->GetType() & CHOICETYPE_SELECT_FILTER ) {
case CHOICETYPE_NONOVERLAP_FLAG:
return duplctl->Choice(*pvm, areanum, values, CHOICETYPE_NONOVERLAP_FLAG);
case CHOICETYPE_SEQUENTIAL_FLAG:
return duplctl->Choice(*pvm, areanum, values, CHOICETYPE_SEQUENTIAL_FLAG);
case CHOICETYPE_ARRAY_FLAG:
return StructArray();
case CHOICETYPE_RANDOM_FLAG:
default:
return ChoiceRandom();
};
}
size_t CSelecter::OutputNum()
{
// switch選択
if (aindex >= BRACE_SWITCH_OUT_OF_RANGE) {
pvm->sysfunction().SetLso(aindex);
return 1;
}
// 領域が1つしかなく、かつ候補が存在しない場合は出力なし
if (!areanum && !values[0].array.size()) {
pvm->sysfunction().SetLso(-1);
return 0;
}
// 最後の領域が空だった場合はダミーの空文字列を追加
if (!values[areanum].array.size())
Append(CValue());
// ランダム選択
if (duplctl == NULL)
return ChoiceRandom_NumGet();
// 重複回避制御付き選択
if (duplctl->GetType() & CHOICETYPE_SPECOUT_FILTER)
switch(duplctl->GetType()){
case CHOICETYPE_VOID:
return 0;
case CHOICETYPE_ALL:
case CHOICETYPE_LAST:
return 1;
}
switch ( duplctl->GetType() & CHOICETYPE_SELECT_FILTER ) {
case CHOICETYPE_NONOVERLAP_FLAG:
return duplctl->GetNum(*pvm, areanum, values, CHOICETYPE_NONOVERLAP_FLAG);
case CHOICETYPE_SEQUENTIAL_FLAG:
return duplctl->GetNum(*pvm, areanum, values, CHOICETYPE_SEQUENTIAL_FLAG);
case CHOICETYPE_ARRAY_FLAG:
return 1;
case CHOICETYPE_RANDOM_FLAG:
default:
return ChoiceRandom_NumGet();
};
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::ChoiceRandom
* 機能概要: 各領域からランダムに値を抽出して出力を作成し返します
*
* 格納領域が一つしかない場合はそれをそのまま出すので値の型が保護されます。
* 領域が複数ある場合はそれらは文字列として結合されますので、文字列型での出力となります。
* -----------------------------------------------------------------------
*/
CValue CSelecter::ChoiceRandom(void)
{
if (areanum) {
yaya::string_t result;
for(size_t i = 0; i <= areanum; i++)
result += ChoiceRandom1(i).GetValueString();
return CValue(result);
}
else
return ChoiceRandom1(0);
}
size_t CSelecter::ChoiceRandom_NumGet(void)
{
if (areanum) {
size_t aret=0;
for (size_t i = 0; i <= areanum; i++)
aret *= values[i].array.size();
return aret;
}
else
return values[0].array.size();
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::ChoiceRandom1
* 機能概要: 指定された領域からランダムに値を抽出します
* -----------------------------------------------------------------------
*/
CValue CSelecter::ChoiceRandom1(size_t index)
{
if ( ! values[index].array.size() ) {
return CValue();
}
size_t choice = pvm->genrand_uint(values[index].array.size());
pvm->sysfunction().SetLso(choice);
return values[index].array[choice];
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::ChoiceByIndex
* 機能概要: 各領域から指定位置の値を抽出して出力を作成し返します
*
* 格納領域が一つしかない場合はそれをそのまま出すので値の型が保護されます。
* 領域が複数ある場合はそれらは文字列として結合されますので、文字列型での出力となります。
*
* 指定より候補数が少ない場合は空文字列が出力されます。
* -----------------------------------------------------------------------
*/
CValue CSelecter::ChoiceByIndex()
{
// 最後の領域が空だった場合はダミーの空文字列を追加
if (!values[areanum].array.size())
Append(CValue());
// 主処理
if (areanum) {
yaya::string_t result;
for(size_t i = 0; i <= areanum; i++)
result += ChoiceByIndex1(i).GetValueString();
return CValue(result);
}
else
return ChoiceByIndex1(0);
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::ChoiceByIndex
* 機能概要: 指定された領域から指定位置の値を抽出します
* -----------------------------------------------------------------------
*/
CValue CSelecter::ChoiceByIndex1(size_t index)
{
size_t num = values[index].array.size();
if (!num)
return CValue();
return (aindex >= 0 && (size_t)aindex < num) ? values[index].array[aindex] : CValue();
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::StructArray
* 機能概要: 各領域の値を結合した汎用配列を作成し返します
* -----------------------------------------------------------------------
*/
CValue CSelecter::StructArray()
{
if (areanum) {
CValue result(F_TAG_ARRAY, 0/*dmy*/);
for(size_t i = 0; i <= areanum; i++) {
result = result + StructArray1(i);
// result = result + StructArray1(i).GetValueString();
}
return result;
}
else {
return StructArray1(0);
}
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::StructArray1
* 機能概要: 指定された領域の値を結合した汎用配列を作成します
* -----------------------------------------------------------------------
*/
CValue CSelecter::StructArray1(size_t index)
{
CValue result(F_TAG_ARRAY, 0/*dmy*/);
for(size_t i = 0; i < values[index].array.size(); ++i) {
const CValue &target = values[index].array[i];
int valtype = target.GetType();
if (valtype == F_TAG_ARRAY) {
result.array().insert(result.array().end(), target.array().begin(), target.array().end());
}
else {
result.array().emplace_back(CValueSub(target));
}
}
return result;
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::StructString
* 機能概要: 各領域の値を結合した文字列を作成し返します
* -----------------------------------------------------------------------
*/
CValue CSelecter::StructString()
{
if (areanum) {
CValue result(F_TAG_STRING, 0/*dmy*/);
for(size_t i = 0; i <= areanum; i++) {
result.s_value += StructString1(i).s_value;
}
return result;
}
else {
return StructString1(0);
}
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::StructString1
* 機能概要: 指定された領域の値を結合した文字列を作成します
* -----------------------------------------------------------------------
*/
CValue CSelecter::StructString1(size_t index)
{
CValue result(F_TAG_STRING, 0/*dmy*/);
for(size_t i = 0; i < values[index].array.size(); ++i) {
const CValue &target = values[index].array[i];
int valtype = target.GetType();
if (valtype == F_TAG_STRING) {
result.s_value += target.s_value;
}
else {
result.s_value += target.GetValueString();
}
}
return result;
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::GetDefaultBlockChoicetype
* 機能概要: { } の出力タイプ未指定の時の標準タイプ
* -----------------------------------------------------------------------
*/
choicetype_t CSelecter::GetDefaultBlockChoicetype(choicetype_t nowtype)
{
unsigned int choicetype = 0;
if (nowtype & CHOICETYPE_SPECOUT_FILTER) {
return nowtype;
}
else {
if (nowtype & CHOICETYPE_ARRAY_FLAG) {
choicetype = CHOICETYPE_ARRAY_FLAG;
}
else {
choicetype = CHOICETYPE_RANDOM_FLAG;
}
}
unsigned int outtype = CHOICETYPE_PICKONE_FLAG;
if (nowtype & CHOICETYPE_POOL_FLAG) {
outtype = CHOICETYPE_POOL_FLAG;
}
else if (nowtype & CHOICETYPE_PICKONE_FLAG) {
outtype = CHOICETYPE_PICKONE_FLAG;
}
else if (nowtype & CHOICETYPE_MELT_FLAG) {
outtype = CHOICETYPE_MELT_FLAG;
}
return static_cast<choicetype_t>(outtype | choicetype);
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::StringToChoiceType
* 機能概要: 文字列->choicetype_t
* -----------------------------------------------------------------------
*/
choicetype_t CSelecter::StringToChoiceType(const yaya::string_t& ctypestr, CAyaVM &vm, const yaya::string_t& dicfilename, size_t linecount)
{
unsigned int outtype = CHOICETYPE_PICKONE_FLAG;
yaya::string_t checkstr = ctypestr;
if ( checkstr.find(L"pool") != yaya::string_t::npos ) {
outtype = CHOICETYPE_POOL_FLAG;
yaya::ws_replace(checkstr,L"pool",L"");
}
else if ( checkstr.find(L"melt") != yaya::string_t::npos ) {
outtype = CHOICETYPE_MELT_FLAG;
yaya::ws_replace(checkstr,L"melt",L"");
}
else if ( checkstr.find(L"void") != yaya::string_t::npos ) {
outtype = CHOICETYPE_VOID_FLAG;
yaya::ws_replace(checkstr,L"void",L"");
}
else if ( checkstr.find(L"all") != yaya::string_t::npos ) {
outtype = CHOICETYPE_ALL_FLAG;
yaya::ws_replace(checkstr,L"all",L"");
}
else if ( checkstr.find(L"last") != yaya::string_t::npos ) {
outtype = CHOICETYPE_LAST_FLAG;
yaya::ws_replace(checkstr,L"last",L"");
}
unsigned int choicetype = 0;
if (! (outtype & CHOICETYPE_SPECOUT_FILTER) ) {
choicetype = CHOICETYPE_RANDOM_FLAG;
if ( checkstr.find(L"sequential") != yaya::string_t::npos ) {
choicetype = CHOICETYPE_SEQUENTIAL_FLAG;
yaya::ws_replace(checkstr,L"sequential",L"");
}
else if ( checkstr.find(L"array") != yaya::string_t::npos ) {
choicetype = CHOICETYPE_ARRAY_FLAG;
yaya::ws_replace(checkstr,L"array",L"");
}
else if ( checkstr.find(L"nonoverlap") != yaya::string_t::npos ) {
choicetype = CHOICETYPE_NONOVERLAP_FLAG;
yaya::ws_replace(checkstr,L"nonoverlap",L"");
}
else {
yaya::ws_replace(checkstr,L"random",L"");
}
}
yaya::ws_replace(checkstr,L"_",L"");
if ( checkstr.size() > 0 ) {
//なにか余分なものがあったぞ
vm.logger().Error(E_E, 30, ctypestr, dicfilename, linecount);
}
return static_cast<choicetype_t>(outtype | choicetype);
}
/* -----------------------------------------------------------------------
* 関数名 : CSelecter::ChoiceTypeToString
* 機能概要: choicetype_t->文字列
* -----------------------------------------------------------------------
*/
yaya::string_t CSelecter::ChoiceTypeToString(choicetype_t ctype)
{
yaya::string_t aret;
switch (ctype & CHOICETYPE_OUTPUT_FILTER)
{
case CHOICETYPE_POOL_FLAG:
break;
case CHOICETYPE_MELT_FLAG:
aret += L"melt";
break;
case CHOICETYPE_VOID_FLAG:
return L"void";
case CHOICETYPE_ALL_FLAG:
return L"all";
case CHOICETYPE_LAST_FLAG:
return L"last";
case CHOICETYPE_PICKONE_FLAG:
break;
default:
return L"unknown";
}
aret += L'_';
switch (ctype & CHOICETYPE_SELECT_FILTER)
{
case CHOICETYPE_SEQUENTIAL_FLAG:
aret += L"sequential";
break;
case CHOICETYPE_ARRAY_FLAG:
aret += L"array";
break;
case CHOICETYPE_NONOVERLAP_FLAG:
aret += L"nonoverlap";
break;
case CHOICETYPE_RANDOM_FLAG:
aret += L"random";
break;
default:
return L"unknown";
}
aret += L'_';
switch (ctype & CHOICETYPE_OUTPUT_FILTER)
{
case CHOICETYPE_POOL_FLAG:
aret += L"pool";
break;
}
size_t beg = aret.find_first_not_of(L'_');
size_t end = aret.find_last_not_of(L'_');
size_t siz = end - beg + 1;
aret = aret.substr(beg, siz);
return aret;
}