Skip to content

Commit

Permalink
[update] Judge
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeme committed Oct 16, 2021
1 parent 7467b9f commit eb06f55
Showing 1 changed file with 34 additions and 13 deletions.
47 changes: 34 additions & 13 deletions src/plugin/Judge.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,22 +46,19 @@ public static function run()
if (!self::jury()) {
self::setLock(mt_rand(60, 120) * 60);
}
//
// 任务
if (empty(self::$wait_case)) {
// 获取任务
// 获取
$case_id = self::caseObtain();
self::caseCheck($case_id);
// 如果没有设置时间 就设置个默认时间 可能在一秒钟内处理完 所以 <=
if (self::getLock() <= time()) {
self::setLock(1 * 60 + 5);
}
} else {
// 执行
$case = array_pop(self::$wait_case);
self::vote($case['id'], $case['vote']);
// 如果没有设置时间 就设置个默认时间 可能在一秒钟内处理完 所以 <=
if (self::getLock() <= time()) {
self::setLock(mt_rand(15, 30) * 60);
}
}
// 如果没有设置时间 就设置个默认时间 可能在一秒钟内处理完 所以 <=
if (self::getLock() <= time()) {
self::setLock(mt_rand(15, 30) * 60);
}

}
Expand All @@ -74,13 +71,14 @@ public static function run()
*/
private static function caseCheck($case_id)
{
if ($case_id == "") {
if ($case_id == '') {
return true;
}
$case_info = self::caseInfo($case_id);
$case_opinion = self::caseOpinion($case_id);
if (!$case_opinion && empty($case_opinion)) {
$vote_info = $case_info[array_rand($case_info)];
// $vote_info = $case_info[array_rand($case_info)];
$vote_info = $case_info[self::probability()];

} else {
$vote_info = $case_opinion[array_rand($case_opinion)];
Expand All @@ -89,6 +87,7 @@ private static function caseCheck($case_id)
$vote_text = $vote_info['vote_text'];
Log::info("案件 $case_id 的预测投票结果:$vote($vote_text)");
array_push(self::$wait_case, ["id" => $case_id, 'vote' => $vote]);
self::setLock(1 * 60 + 5);
}

/**
Expand All @@ -112,7 +111,8 @@ private static function vote(string $case_id, int $vote)
];
$raw = Curl::post('pc', $url, $payload, $headers);
$de_raw = json_decode($raw, true);
//{"code":0,"message":"0","ttl":1}
// {"code":0,"message":"0","ttl":1}
// {"code":25018,"message":"不能进行此操作","ttl":1}
if (isset($de_raw['code']) && $de_raw['code']) {
Log::warning("案件 $case_id 投票失败 $raw");
} else {
Expand Down Expand Up @@ -303,4 +303,25 @@ private static function randInt(int $max = 17): string
return implode("", $temp);
}

/**
* @use 概率
* @return int
*/
private static function probability(): int
{
$result = 0;
$prize_arr = [0 => 25, 1 => 40, 2 => 25, 3 => 10];
// 概率数组的总概率精度
$sum = array_sum($prize_arr);
// 概率数组循环
foreach ($prize_arr as $key => $value) {
if (mt_rand(1, $sum) <= $value) {
$result = $key;
break;
}
$sum -= $value;
}
return $result;
}

}

0 comments on commit eb06f55

Please sign in to comment.