-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinc-turn.cgi
384 lines (333 loc) · 10.5 KB
/
inc-turn.cgi
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
use utf8;
# ターン処理 2004/02/28 由來
require (GetPath($ITEM_DIR,"event"));
Lock();
DataRead();
ReadGuild();
ReadGuildData();
$now=$NOW_TIME+$TZ_JST-$DATE_REVISE_TIME;
$lasttime=$DTlasttime+$TZ_JST-$DATE_REVISE_TIME;
$temptimenow=$DTlasttime;
#1spanごとに処理を繰り返すための準備
undef @timespan;
while(int($lasttime/$ONE_DAY_TIME)<int($now/$ONE_DAY_TIME))
{
push(@timespan,[1,$ONE_DAY_TIME-($lasttime%$ONE_DAY_TIME)]);
$lasttime+=$ONE_DAY_TIME-($lasttime%$ONE_DAY_TIME);
}
push(@timespan,[0,$now-$lasttime]);
$lasttime+=$now-$lasttime;
$DTlasttime=$lasttime-$TZ_JST+$DATE_REVISE_TIME;
$now=$now-$TZ_JST+$DATE_REVISE_TIME;
OutError("error:$DTlasttime,$now,".(($DTlasttime-$now)/60)."<HR>$disp") if $DTlasttime!=$now;
#処理開始
foreach $TM (@timespan)
{
my $dateupdate=$TM->[0];
my $timespan=$TM->[1];
$TIMESPAN=$timespan;
next if $timespan<=0; # -1があることを確認したので。原因がわからないのでここで対応。
#店舗・商品別来客数計算処理
my $itemranksum=0;
foreach my $ITEM (@ITEM)
{$itemranksum+=$ITEM->{popular};}
my $dtranksum=0;
foreach my $DT (@DT)
{
my $group=-1;
foreach my $cnt(0..$DT->{showcasecount}-1)
{
# 専門店判定
my $itemno=$DT->{showcase}[$cnt];
if($itemno && ($group!=-1 && $group!=$ITEM[$itemno]->{type}))
{$group=-1; last}
$group=$ITEM[$itemno]->{type} if $itemno;
#アイテム別購入人数算出
my $price=$DT->{price}[$cnt];
if($itemno>0 && $price>0 && $DT->{item}[$itemno-1])
{
$ITEM[$itemno]->{buypeoplebase}+=($ITEM[$itemno]->{price}/$price)**($cnt==0?4:3);
}
}
$DT->{temprank}=$DT->{rank};
if($group!=-1){$DT->{temprank}+=1000;}
$dtranksum+=$DT->{temprank};
}
foreach $cnt (1..$MAX_ITEM)
{
next if !$ITEM[$cnt]->{popular};
my $ITEM=$ITEM[$cnt];
$ITEM->{buypeople}=$DTpeople*$SALE_SPEED/$ITEM->{popular}*$timespan/86400;
}
# 需要/供給バランス取得
GetMarketStatus();
#店舗別売上処理ループ
my $salesumall=0;
my $nowranking=0;
my $peopleup=0;
my $peopledown=0;
my $peopleupsalerate=($DTpeople/100000)**2; #もともと1.5
foreach my $DT (@DT)
{
$nowranking++;
my $rankdown=0;
my $rankup=0;
my $salesum=0;
my %showcaseitemno=();
$DT->{_sale_count_}={}; # @@item funcs 作業用
foreach $cnt (0..$DT->{showcasecount}-1)
{
$itemno=$DT->{showcase}[$cnt];
if($itemno && $DT->{item}[$itemno-1])
{
#維持費計算用データセット
$showcaseitemno{$itemno}++;
#購買客数計算
$rank=$DT->{temprank};
$rank=99 if $rank<100;
my $ichioshi=$cnt==0 ? 4:3;
my $buypeopletemp=$ITEM[$itemno]->{buypeople}
*(($ITEM[$itemno]->{price}/$DT->{price}[$cnt])**($cnt==0?4:3))
/($ITEM[$itemno]->{buypeoplebase}+1);
$buypeople=$rank / ($dtranksum/($#DT+1)) * $buypeopletemp;
#売上数決定
my $sale=0;
$rank=($ITEM[$itemno]->{price}/$DT->{price}[$cnt]);
$rank/=($DT->{price}[$cnt]-$ITEM[$itemno]->{price})/10000 if $rank<1;
if($buypeople>0)
{$sale=$buypeople/2*0+rand($buypeople * ($rank>1?1:$rank));}
if($sale<1 && $sale>0)
{if(rand(1/$sale)<1){$sale=1;}}
$sale=int($sale);
#売上数1以上の場合の処理
if($sale>0)
{
my $itembox=\$DT->{item}[$itemno-1];
#所持数で補正
if($sale>$$itembox){$sale=$$itembox;}
#人気UP/DOWN
my $rankupmulti=((10-($DT->{rank}/1000))**2)/5;
#需要供給バランスよる人気UP
my $pricerate=$ITEM[$itemno]->{marketprice}/$DT->{price}[$cnt];
$pricerate=2 if $pricerate>2;
my $rankupsale=rand($rankupmulti/$ITEM[$itemno]->{uppoint}*$ITEM[$itemno]->{point}/10*$sale*$pricerate);
$rankupsale=$timespan/3 if $rankupsale>$timespan/3; # 5分間で最大1%上昇のリミット処理
$rankup+=$rankupsale;
#売上処理
my $saleprice=$sale*$DT->{price}[$cnt];
my($taxrate,$tax)=GetSaleTax($itemno,$sale,$saleprice,GetUserTaxRate($DT,$DTTaxrate));
$DT->{money}+=$saleprice-$tax; #直接資金に変更
$DT->{trush}+=$saleprice; #ごみ
$DT->{saletoday}+=$saleprice;
$DT->{item}[$itemno-1]-=$sale;
$DT->{itemtoday}{$itemno}+=$sale;
$DT->{taxtoday}+=$tax;
#売り切れ時の人気DOWN
if($DT->{item}[$itemno-1]==0)
{
$rankdown+=($DT->{rank}/100)**3/1000; #人気に応じてダウン
}
#人口増加(削除)
#@@item funcs 作業用処理
my $_sale_count_=$DT->{_sale_count_}{$itemno}||={};
$_sale_count_->{count}+=$sale;
$_sale_count_->{price}+=$saleprice;
}
$salesum+=$sale;
}
}
$salesumall+=$salesum;
#時間経過による無条件人気DOWN
$rankdown+=sqrt($timespan)*(($DT->{rank}/1000)**$POP_DOWN_RATE)/(5**$POP_DOWN_RATE*20)*$DT->{showcasecount};
$rankper=0.75 + ( $DT->{trush} / 10000000 ); #ごみによる変動
$rankdown=$rankdown * $rankper;
#時間経過による無条件人口DOWN(削除)
#$rankdownと$rankupによる人気UP/DOWN処理
my $rankupdown=abs($rankup-$rankdown);
if($rankupdown<1 && $rankdown>0)
{if(rand(1/$rankupdown)<1){$rankupdown=1;}}
$DT->{rank}+=int($rankup>$rankdown ? $rankupdown:-$rankupdown);
if($DT->{rank}<0){$DT->{rank}=0;}
if($DT->{rank}>10000){$DT->{rank}=10000;}
#維持費計算&蓄積
my $costsum=0;
foreach my $idx (1..$MAX_ITEM)
{
next if !$DT->{item}[$idx-1];
my $cnt=$DT->{item}[$idx-1];
$cnt/=10 if $showcaseitemno{$idx};
$costsum+=$ITEM[$idx]->{cost}*$cnt;
}
$DT->{costtoday}+=$costsum*$timespan/86400;
$DT->{trush}+=int($costsum*$timespan/86400); #ごみ
}
#$peopledownと$peopleupによる人口UP/DOWN処理(削除)
#@@item 処理準備
@item::DT=@DT;
$item::DT=$DT;
@item::ITEM=@ITEM;
$item::TIMESPAN=$TIMESPAN;
RequireFile('inc-item.cgi');
#@@item funct 処理
require "$ITEM_DIR/functurn.cgi" if $DEFINE_FUNCTURN;
my @itemt=sort {$a->{no}<=>$b->{no}} grep($_->{functurn},@ITEM);
foreach my $item (@itemt)
{
my $file="$ITEM_DIR/item-t/$item->{no}$FILE_EXT";
$item::TURN_ITEMNO=$item->{no};
$item::TURN_ITEM=$item;
@item::TURN_DT=grep($_->{item}[$item->{no}-1],@DT);
my $func="item::".$item->{functurn};
my $funcexists=defined &$func;
require $file if -e $file;
&$func($item,@item::TURN_DT);
undef &$func if !$funcexists;
delete $INC{$file};
}
undef $item::TURN_ITEMNO;
undef $item::TURN_ITEM;
undef @item::TURN_DT;
#@@item funcs 処理
require "$ITEM_DIR/funcsale.cgi" if $DEFINE_FUNCSALE;
my @items=grep($_->{funcsale},@ITEM);
foreach my $item (sort @items)
{
my $file="$ITEM_DIR/item-s/$item->{no}$FILE_EXT";
$item::SALE_ITEMNO=$item->{no};
$item::SALE_ITEM=$item;
@item::SALE_DT=grep($_->{_sale_count_}{$item->{no}},@DT);
next if !@item::SALE_DT;
my $func="item::".$item->{funcsale};
my $funcexists=defined &$func;
require $file if -e $file;
foreach my $DT (@item::SALE_DT)
{
my $_sale_count_=$DT->{_sale_count_}{$item->{no}};
last if 'last' eq &$func($item,$DT,$_sale_count_->{count},$_sale_count_->{price});
}
undef &$func if !$funcexists;
delete $INC{$file};
}
foreach(@DT){delete $_->{_sale_count_}} # @@item funcs 作業用削除
undef $item::SALE_ITEMNO;
undef $item::SALE_ITEM;
undef @item::SALE_DT;
undef $item::TIMESPAN;
SortDT();
#決算処理
RequireFile('inc-period.cgi') if $dateupdate && scalar(@DT);
#市場商品数のUP/DOWN処理
foreach my $cnt (1..$MAX_ITEM)
{
next if !$ITEM[$cnt]->{code};
my $ITEM=$ITEM[$cnt];
#UP/DOWN処理
my $add=0;
if($ITEM->{plus}!=0)
{
$add=$timespan/abs($ITEM->{plus})*$DTpeople/(100000/(($MAX_USER+$#DT-1)*0.2+1));
# old pattern $add=$DTpeople/abs($ITEM->{plus})*$timespan/(60*60*24);
if($add>0){$add=$add/2+rand($add/2);}else{$add=0;}
if($add<1 && $add>0){if(rand(1/$add)<1){$add=1;}}
$add=int($add);
$DTwholestore[$cnt-1]+=$ITEM->{plus}>0 ? $add : -$add;
}
}
#市場在庫上限下限チェック&補正
CheckWholeStore();
#イベント終了処理
@event::DT=@DT;
@event::ITEM=@ITEM;
my %group=();
#修正Perl舊版語法
if(%DTevent)
{
foreach my $key (keys(%DTevent))
{
my $E=$EVENT{$key};
if($DTevent{$key}<$temptimenow+$timespan)
{
my $msg;
my $ret=1;
if($E->{endfunc})
{
RequireFile('inc-event.cgi');
my $extfile=GetPath($ITEM_DIR,"event-e",$key);
require $extfile if -e $extfile;
my $func="event::".$E->{endfunc};
($ret,$msg)=&$func(split(/[:,]/,$E->{endfuncparam}));
PushLog(2,0,$msg) if $msg;
undef &$func;
}
if($ret)
{
delete $DTevent{$key};
PushLog(2,0,$E->{endmsg}) if $E->{endmsg};
}
else
{
$group{$E->{group}}=1;
}
}
else
{$group{$E->{group}}=1;}
}
}
#イベント開始処理
foreach my $key (keys(%EVENT))
{
my $E=$EVENT{$key};
next if $group{$E->{group}};
if(rand(100000)<$timespan*$E->{startproba}/864 || $E->{startproba}==0)
{
my $msg;
my $ret=1;
if($E->{startfunc})
{
RequireFile('inc-event.cgi');
my $extfile=GetPath($ITEM_DIR,"event-s",$key);
require $extfile if -e $extfile;
my $func="event::".$E->{startfunc};
($ret,$msg)=&$func(split(/[:,]/,$E->{startfuncparam}));
PushLog(2,0,$msg) if $msg;
undef &$func;
delete $INC{$extfile};
}
if($ret)
{
PushLog(2,0,$E->{startmsg}) if $E->{startmsg};
$DTevent{$key}=$temptimenow+int(rand($timespan))+$E->{basetime}+int(rand($E->{plustime})) if ($E->{basetime}+$E->{plustime});
$group{$E->{group}}=1;
}
}
}
foreach my $key (keys(%DTevent))
{
my $extfile=GetPath($ITEM_DIR,"event-n",$key);
next if !-e $extfile;
require $extfile;
my $E=$EVENT{$key};
my $func="event::".$E->{func};
my($msg)=&$func(split(/[:,]/,$E->{funcparam}));
PushLog(2,0,$msg) if $msg;
undef &$func;
delete $INC{$extfile};
}
$temptimenow+=$timespan;
}
#ギルド定義ファイル更新
my $guildfilelasttime=0;
foreach(GetGuildDirFiles())
{
my $file=$COMMON_DIR."/".$_.".pl"; #拡張子変更
my $time=(stat($file))[9];
$guildfilelasttime=$time if $guildfilelasttime<$time;
}
MakeGuildFile() if (stat(GetPath($GUILD_FILE)))[9]<$guildfilelasttime;
WriteGuildData();
DataWrite();
RenewLog();
DataCommitOrAbort();
undef $TIMESPAN;
UnLock();
1;