Compare commits
92
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1f556cf88c | ||
|
|
76625cf472 | ||
|
|
84fee0f1f2 | ||
|
|
9f81c760d0 | ||
|
|
f26ac8c37b | ||
|
|
7cffa68d04 | ||
|
|
01094d376f | ||
|
|
77ec4c6572 | ||
|
|
3e5727a166 | ||
|
|
91e56644b4 | ||
|
|
e0b7a3d763 | ||
|
|
6a25f03687 | ||
|
|
104f306deb | ||
|
|
09c21cd466 | ||
|
|
5b89797f57 | ||
|
|
ab1cc5146d | ||
|
|
2483a7723f | ||
|
|
367db15d93 | ||
|
|
30e02aac08 | ||
|
|
ce5ddf05fe | ||
|
|
475837bca0 | ||
|
|
bd0ae25afd | ||
|
|
688de08feb | ||
|
|
83b550adbe | ||
|
|
fa89bae7d9 | ||
|
|
456246362f | ||
|
|
b472440ec1 | ||
|
|
7b5613d032 | ||
|
|
f5b3b985ce | ||
|
|
515298700a | ||
|
|
41d7566acb | ||
|
|
f4196263fa | ||
|
|
6bc69ac467 | ||
|
|
15b2c8b8e6 | ||
|
|
8e1d33e880 | ||
|
|
797902552d | ||
|
|
f3d2dcdad2 | ||
|
|
928478a8ad | ||
|
|
5023ee800b | ||
|
|
4a70625487 | ||
|
|
26327b5c8c | ||
|
|
372f47760b | ||
|
|
3111a5eb71 | ||
|
|
74f914488b | ||
|
|
a8d219afec | ||
|
|
4b4a7ffdf0 | ||
|
|
98e2e2f125 | ||
|
|
05000ae954 | ||
|
|
85bf53f317 | ||
|
|
d65407079e | ||
|
|
a8c9946aa9 | ||
|
|
1e5b2de913 | ||
|
|
747ab3d563 | ||
|
|
82ffbba661 | ||
|
|
3f08876079 | ||
|
|
5622839ffa | ||
|
|
4b3ab5e31c | ||
|
|
f774a28e2a | ||
|
|
61bdb8da01 | ||
|
|
c117ada117 | ||
|
|
1f0d0f992d | ||
|
|
6445b77b90 | ||
|
|
6d935733e6 | ||
|
|
cfd0a2d26f | ||
|
|
749e8f673b | ||
|
|
4812f324e0 | ||
|
|
085f34b307 | ||
|
|
622ce7b780 | ||
|
|
34b1fc9c5e | ||
|
|
9cc27c40aa | ||
|
|
eece1cbae5 | ||
|
|
7e6770b5e7 | ||
|
|
a0c032c2c6 | ||
|
|
3d12de3838 | ||
|
|
477b77b59f | ||
|
|
04a7a34fcc | ||
|
|
86f1805160 | ||
|
|
d573e9f98a | ||
|
|
3ad16d96be | ||
|
|
d8870caf29 | ||
|
|
7c9d5d34f6 | ||
|
|
5268ce9b71 | ||
|
|
e395c98a6c | ||
|
|
d5897e2a49 | ||
|
|
c82003f982 | ||
|
|
5447274aa8 | ||
|
|
688162ffbf | ||
|
|
220d1d821d | ||
|
|
2b16c3c1a9 | ||
|
|
d731acdaef | ||
|
|
3511b159a8 | ||
|
|
87294d5477 |
@@ -29,6 +29,7 @@ d_pic/*.jpg
|
|||||||
d_pic/*.gif
|
d_pic/*.gif
|
||||||
d_pic/*.png
|
d_pic/*.png
|
||||||
d_pic/*.webp
|
d_pic/*.webp
|
||||||
|
d_pic/*.avif
|
||||||
d_pic/uploaded_image
|
d_pic/uploaded_image
|
||||||
|
|
||||||
/dist_js
|
/dist_js
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ $rootDB->insert('member', [
|
|||||||
'token_valid_until' => '2999-01-01 00:00:00',
|
'token_valid_until' => '2999-01-01 00:00:00',
|
||||||
'pw' => $finalPassword,
|
'pw' => $finalPassword,
|
||||||
'salt' => $userSalt,
|
'salt' => $userSalt,
|
||||||
'grade' => 6,
|
'grade' => 7,
|
||||||
'name' => $nickname,
|
'name' => $nickname,
|
||||||
'reg_date' => $nowDate
|
'reg_date' => $nowDate
|
||||||
]);
|
]);
|
||||||
|
|||||||
@@ -92,4 +92,14 @@ CREATE TABLE `login_token` (
|
|||||||
INDEX `by_date` (`user_id`, `expire_date`)
|
INDEX `by_date` (`user_id`, `expire_date`)
|
||||||
)
|
)
|
||||||
COLLATE='utf8mb4_general_ci'
|
COLLATE='utf8mb4_general_ci'
|
||||||
ENGINE=Aria;
|
ENGINE=Aria;
|
||||||
|
|
||||||
|
CREATE TABLE `banned_member` (
|
||||||
|
`no` INT NOT NULL AUTO_INCREMENT,
|
||||||
|
`hashed_email` VARCHAR(128) NOT NULL COLLATE 'utf8mb4_general_ci' COMMENT 'SHA512(salt | email | salt )',
|
||||||
|
`info` TEXT NULL COLLATE 'utf8mb4_general_ci' COMMENT '부가정보',
|
||||||
|
PRIMARY KEY (`no`),
|
||||||
|
UNIQUE INDEX `email` (`hashed_email`(128))
|
||||||
|
)
|
||||||
|
COLLATE='utf8mb4_general_ci'
|
||||||
|
ENGINE = Aria;
|
||||||
+1
-1
@@ -6,7 +6,7 @@ include "func.php";
|
|||||||
//로그인 검사
|
//로그인 검사
|
||||||
$session = Session::requireGameLogin()->setReadOnly();
|
$session = Session::requireGameLogin()->setReadOnly();
|
||||||
|
|
||||||
if($session->userGrade < 5) {
|
if($session->userGrade < 6) {
|
||||||
die(requireAdminPermissionHTML());
|
die(requireAdminPermissionHTML());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ include "func.php";
|
|||||||
//로그인 검사
|
//로그인 검사
|
||||||
$session = Session::requireGameLogin()->setReadOnly();
|
$session = Session::requireGameLogin()->setReadOnly();
|
||||||
|
|
||||||
if ($session->userGrade < 5) {
|
if ($session->userGrade < 6) {
|
||||||
header('location:_admin1.php');
|
header('location:_admin1.php');
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -7,7 +7,7 @@ include "func.php";
|
|||||||
//로그인 검사
|
//로그인 검사
|
||||||
$session = Session::requireGameLogin()->setReadOnly();
|
$session = Session::requireGameLogin()->setReadOnly();
|
||||||
|
|
||||||
if ($session->userGrade < 5) {
|
if ($session->userGrade < 6) {
|
||||||
die(requireAdminPermissionHTML());
|
die(requireAdminPermissionHTML());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ $msg = Util::getPost('msg', 'string');
|
|||||||
//로그인 검사
|
//로그인 검사
|
||||||
$session = Session::requireLogin()->loginGame()->setReadOnly();
|
$session = Session::requireLogin()->loginGame()->setReadOnly();
|
||||||
|
|
||||||
if ($session->userGrade < 5) {
|
if ($session->userGrade < 6) {
|
||||||
header('location:_admin2.php');
|
header('location:_admin2.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -20,7 +20,7 @@ if ($type2 < 0 || $type2 > 6) {
|
|||||||
//로그인 검사
|
//로그인 검사
|
||||||
$session = Session::requireGameLogin()->setReadOnly();
|
$session = Session::requireGameLogin()->setReadOnly();
|
||||||
|
|
||||||
if ($session->userGrade < 5) {
|
if ($session->userGrade < 6) {
|
||||||
die(requireAdminPermissionHTML());
|
die(requireAdminPermissionHTML());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ $nation = Util::getPost('nation', 'int');
|
|||||||
$session = Session::requireGameLogin()->setReadOnly();
|
$session = Session::requireGameLogin()->setReadOnly();
|
||||||
$userID = Session::getUserID();
|
$userID = Session::getUserID();
|
||||||
|
|
||||||
if ($session->userGrade < 5) {
|
if ($session->userGrade < 6) {
|
||||||
header('location:_admin5.php');
|
header('location:_admin5.php');
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -37,7 +37,7 @@ if ($reqQueryType === null || !key_exists($reqQueryType, $queryMap)) {
|
|||||||
//로그인 검사
|
//로그인 검사
|
||||||
$session = Session::requireGameLogin()->setReadOnly();
|
$session = Session::requireGameLogin()->setReadOnly();
|
||||||
|
|
||||||
if ($session->userGrade < 5) {
|
if ($session->userGrade < 6) {
|
||||||
die(requireAdminPermissionHTML());
|
die(requireAdminPermissionHTML());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -12,7 +12,7 @@ $type = 0;
|
|||||||
//로그인 검사
|
//로그인 검사
|
||||||
$session = Session::requireGameLogin()->setReadOnly();
|
$session = Session::requireGameLogin()->setReadOnly();
|
||||||
|
|
||||||
if ($session->userGrade < 5) {
|
if ($session->userGrade < 6) {
|
||||||
die(requireAdminPermissionHTML());
|
die(requireAdminPermissionHTML());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ include "func.php";
|
|||||||
//로그인 검사
|
//로그인 검사
|
||||||
$session = Session::requireGameLogin()->setReadOnly();
|
$session = Session::requireGameLogin()->setReadOnly();
|
||||||
|
|
||||||
if ($session->userGrade < 5) {
|
if ($session->userGrade < 6) {
|
||||||
die('권한 부족');
|
die('권한 부족');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -177,7 +177,7 @@ $templates = new \League\Plates\Engine('templates');
|
|||||||
$valid = 1;
|
$valid = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($userGrade >= 5) {
|
if ($userGrade >= 6) {
|
||||||
$valid = true;
|
$valid = true;
|
||||||
$showDetailedInfo = true;
|
$showDetailedInfo = true;
|
||||||
}
|
}
|
||||||
@@ -275,7 +275,7 @@ $templates = new \League\Plates\Engine('templates');
|
|||||||
$ourGeneral = false;
|
$ourGeneral = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($userGrade == 6) {
|
if ($userGrade == 7) {
|
||||||
$ourGeneral = true;
|
$ourGeneral = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-57
@@ -125,63 +125,7 @@ $globalBetTotal = array_sum($globalBet);
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table align=center class='tb_layout bg0'>
|
<table align=center class='tb_layout bg0'>
|
||||||
<?php if ($session->userGrade >= 5) : ?>
|
<?php if ($me['no'] > 0 && $me['tournament'] == 0 && $admin['tournament'] == 1) : ?>
|
||||||
<form method=post action=c_tournament.php>
|
|
||||||
<tr>
|
|
||||||
<td colspan=8><input type=textarea size=150 style=color:white;background-color:black; name=msg><input type=submit name=btn value='메시지'></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td colspan=8>
|
|
||||||
<button type="button" class="btn btn-secondary" onclick='location.reload()'>갱신</button>
|
|
||||||
<?php if ($admin['tournament'] == 0) : ?>
|
|
||||||
<select name=trig size=1 style=color:white;background-color:black;>
|
|
||||||
<option style=color:white; value=0 <?= !$admin['tnmt_trig'] ? 'selected' : '' ?>>수동진행</option>
|
|
||||||
<option style=color:white; value=1 <?= $admin['tnmt_trig'] ? 'selected' : '' ?>>자동진행</option>
|
|
||||||
</select>
|
|
||||||
<input type=submit name=btn value='자동개최설정'>
|
|
||||||
<?php else : ?>
|
|
||||||
<input type=submit name=btn value='중단' onclick='return confirm("진짜 중단하시겠습니까?")'>
|
|
||||||
<?php endif; ?>
|
|
||||||
|
|
||||||
|
|
||||||
<?php switch ($admin['tournament']) {
|
|
||||||
case 1:
|
|
||||||
echo "<input type=submit name=btn value='랜덤투입'>";
|
|
||||||
echo "<input type=submit name=btn value='랜덤전부투입'>";
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
echo "<input type=submit name=btn value='예선'><input type=submit name=btn value='예선전부'>";
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
echo "<input type=submit name=btn value='추첨'><input type=submit name=btn value='추첨전부'>";
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
echo "<input type=submit name=btn value='본선'><input type=submit name=btn value='본선전부'>";
|
|
||||||
break;
|
|
||||||
case 5:
|
|
||||||
echo "<input type=submit name=btn value='배정'>";
|
|
||||||
break;
|
|
||||||
case 6:
|
|
||||||
echo "<input type=submit name=btn value='베팅마감'>";
|
|
||||||
break;
|
|
||||||
case 7:
|
|
||||||
echo "<input type=submit name=btn value='16강'>";
|
|
||||||
break;
|
|
||||||
case 8:
|
|
||||||
echo "<input type=submit name=btn value='8강'>";
|
|
||||||
break;
|
|
||||||
case 9:
|
|
||||||
echo "<input type=submit name=btn value='4강'>";
|
|
||||||
break;
|
|
||||||
case 10:
|
|
||||||
echo "<input type=submit name=btn value='결승'>";
|
|
||||||
break;
|
|
||||||
} ?>
|
|
||||||
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</form>
|
|
||||||
<?php elseif ($me['no'] > 0 && $me['tournament'] == 0 && $admin['tournament'] == 1) : ?>
|
|
||||||
<form method=post action=c_tournament.php>
|
<form method=post action=c_tournament.php>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan=8><button type="button" class="btn btn-secondary" onclick='location.reload()'>갱신</button><button type="submit" class="btn btn-sammo-base2" onclick='return confirm("참가비 금<?= $admin['develcost'] ?>이 필요합니다. 참가하시겠습니까?")'>참가</button><input type='hidden' name='btn' value='참가'/></td>
|
<td colspan=8><button type="button" class="btn btn-secondary" onclick='location.reload()'>갱신</button><button type="submit" class="btn btn-sammo-base2" onclick='return confirm("참가비 금<?= $admin['develcost'] ?>이 필요합니다. 참가하시겠습니까?")'>참가</button><input type='hidden' name='btn' value='참가'/></td>
|
||||||
|
|||||||
+6
-5
@@ -112,7 +112,7 @@ function GetImageURL($imgsvr, $filepath = '')
|
|||||||
function checkLimit($refreshScore = null)
|
function checkLimit($refreshScore = null)
|
||||||
{
|
{
|
||||||
$session = Session::getInstance();
|
$session = Session::getInstance();
|
||||||
if ($session->userGrade >= 4) {
|
if ($session->userGrade >= 6) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1009,7 +1009,7 @@ function increaseRefresh($type = "", $cnt = 1)
|
|||||||
$isunited = $gameStor->isunited;
|
$isunited = $gameStor->isunited;
|
||||||
$opentime = $gameStor->opentime;
|
$opentime = $gameStor->opentime;
|
||||||
|
|
||||||
if ($userGrade == 6) {
|
if ($userGrade >= 6) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ($isunited == 2) {
|
if ($isunited == 2) {
|
||||||
@@ -1107,7 +1107,7 @@ function CheckOverhead()
|
|||||||
$gameStor = KVStorage::getStorage($db, 'game_env');
|
$gameStor = KVStorage::getStorage($db, 'game_env');
|
||||||
[$turnterm, $refreshLimit] = $gameStor->getValuesAsArray(['turnterm', 'refreshLimit']);
|
[$turnterm, $refreshLimit] = $gameStor->getValuesAsArray(['turnterm', 'refreshLimit']);
|
||||||
|
|
||||||
$nextRefreshLimit = Util::round(pow($turnterm, 0.6) * 3) * 10;
|
$nextRefreshLimit = Util::round(pow($turnterm, 0.6) * 3) * GameConst::$refreshLimitCoef;
|
||||||
|
|
||||||
|
|
||||||
if ($nextRefreshLimit != $refreshLimit) {
|
if ($nextRefreshLimit != $refreshLimit) {
|
||||||
@@ -1669,8 +1669,6 @@ function tryUniqueItemLottery(RandUtil $rng, General $general, string $acquireTy
|
|||||||
$prob = 1 / ($genCount * $itemTypeCnt * 0.7 / 3); // 투표율 70%, 설문조사 한번에 2~3개 등장
|
$prob = 1 / ($genCount * $itemTypeCnt * 0.7 / 3); // 투표율 70%, 설문조사 한번에 2~3개 등장
|
||||||
} else if ($acquireType == '랜덤 임관') {
|
} else if ($acquireType == '랜덤 임관') {
|
||||||
$prob = 1 / ($genCount * $itemTypeCnt / 10 / 2); // 랜임시 2개(10%) 등장(200명중 20명 랜임시도?)
|
$prob = 1 / ($genCount * $itemTypeCnt / 10 / 2); // 랜임시 2개(10%) 등장(200명중 20명 랜임시도?)
|
||||||
} else if ($acquireType == '건국') {
|
|
||||||
$prob = 1 / ($genCount * $itemTypeCnt / 10 / 4); // 건국시 4개(20%) 등장(200명시 20국 정도 됨)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$prob *= GameConst::$uniqueTrialCoef;
|
$prob *= GameConst::$uniqueTrialCoef;
|
||||||
@@ -1684,6 +1682,9 @@ function tryUniqueItemLottery(RandUtil $rng, General $general, string $acquireTy
|
|||||||
//포인트로 랜덤 유니크 획득
|
//포인트로 랜덤 유니크 획득
|
||||||
$prob = 1;
|
$prob = 1;
|
||||||
}
|
}
|
||||||
|
else if ($acquireType == '건국') {
|
||||||
|
$prob = 1; // 건국시 100%
|
||||||
|
}
|
||||||
|
|
||||||
foreach (Util::range($maxCnt) as $_idx) {
|
foreach (Util::range($maxCnt) as $_idx) {
|
||||||
if ($rng->nextBool($prob)) {
|
if ($rng->nextBool($prob)) {
|
||||||
|
|||||||
@@ -481,6 +481,13 @@ function setNationCommand(int $generalID, array $turnList, string $command, ?arr
|
|||||||
}
|
}
|
||||||
|
|
||||||
_setNationCommand($commandObj, $turnList);
|
_setNationCommand($commandObj, $turnList);
|
||||||
|
|
||||||
|
if($general->getNPCType() < 2){
|
||||||
|
//유저장인 경우에는 턴 리필
|
||||||
|
$general->updateVarWithLimit('killturn', $env['killturn'], $general->getVar('killturn'));
|
||||||
|
$general->applyDB($db);
|
||||||
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'result'=>true,
|
'result'=>true,
|
||||||
'brief'=>$commandObj->getBrief(),
|
'brief'=>$commandObj->getBrief(),
|
||||||
|
|||||||
@@ -457,6 +457,29 @@ function buildWarUnitTriggerClass(?string $type, WarUnit $unit, ?array $args = n
|
|||||||
return $class->newInstanceArgs(array_merge([$unit], $args));
|
return $class->newInstanceArgs(array_merge([$unit], $args));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getStaticEventClass(string $type){
|
||||||
|
static $basePath = __NAMESPACE__.'\\StaticEvent\\';
|
||||||
|
$classPath = ($basePath.$type);
|
||||||
|
|
||||||
|
if(class_exists($classPath)){
|
||||||
|
return $classPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new \InvalidArgumentException("{$type}은 StaticEvent가 아님");
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildStaticEventClass(?string $type):BaseStaticEvent{
|
||||||
|
static $cache = [];
|
||||||
|
if(key_exists($type, $cache)){
|
||||||
|
return $cache[$type];
|
||||||
|
}
|
||||||
|
|
||||||
|
$class = getStaticEventClass($type);
|
||||||
|
$obj = new $class();
|
||||||
|
$cache[$type] = $obj;
|
||||||
|
return $obj;
|
||||||
|
}
|
||||||
|
|
||||||
function getGeneralPoolClass(string $type){
|
function getGeneralPoolClass(string $type){
|
||||||
static $basePath = __NAMESPACE__.'\\GeneralPool\\';
|
static $basePath = __NAMESPACE__.'\\GeneralPool\\';
|
||||||
$classPath = ($basePath.$type);
|
$classPath = ($basePath.$type);
|
||||||
|
|||||||
+2
-2
@@ -7,10 +7,10 @@ include "func.php";
|
|||||||
|
|
||||||
$session = Session::requireLogin();
|
$session = Session::requireLogin();
|
||||||
|
|
||||||
if ($session->userGrade < 5) {
|
if ($session->userGrade < 6) {
|
||||||
die('관리자 아님');
|
die('관리자 아님');
|
||||||
}
|
}
|
||||||
if ($session->userGrade == 5) {
|
if ($session->userGrade == 6) {
|
||||||
die('DB 리셋 권한을 가지고 있지 않습니다.');
|
die('DB 리셋 권한을 가지고 있지 않습니다.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ else{
|
|||||||
$availableNextCall = $session->availableNextCallGetCityList??'2000-01-01 00:00:00';
|
$availableNextCall = $session->availableNextCallGetCityList??'2000-01-01 00:00:00';
|
||||||
$now = new \DateTimeImmutable();
|
$now = new \DateTimeImmutable();
|
||||||
|
|
||||||
if($now <= new \DateTimeImmutable($availableNextCall) && $session->userGrade < 5){
|
if($now <= new \DateTimeImmutable($availableNextCall) && $session->userGrade < 6){
|
||||||
Json::die([
|
Json::die([
|
||||||
'result'=>false,
|
'result'=>false,
|
||||||
'reason'=>"도시 목록은 10초에 한번 갱신 가능합니다.\n다음 시간 : ".$availableNextCall
|
'reason'=>"도시 목록은 10초에 한번 갱신 가능합니다.\n다음 시간 : ".$availableNextCall
|
||||||
|
|||||||
+14
-2
@@ -24,9 +24,9 @@ $userID = Session::getUserID();
|
|||||||
|
|
||||||
$db = DB::db();
|
$db = DB::db();
|
||||||
$gameStor = KVStorage::getStorage($db, 'game_env');
|
$gameStor = KVStorage::getStorage($db, 'game_env');
|
||||||
$gameStor->cacheValues(['startyear', 'year', 'month', 'scenario']);
|
$gameStor->cacheValues(['startyear', 'year', 'month', 'scenario', 'killturn']);
|
||||||
|
|
||||||
$me = $db->queryFirstRow('SELECT no,nation,officer_level,penalty from general where owner=%i', $userID);
|
$me = $db->queryFirstRow('SELECT no,npc,nation,officer_level,penalty from general where owner=%i', $userID);
|
||||||
$myOfficerLevel = $me['officer_level'];
|
$myOfficerLevel = $me['officer_level'];
|
||||||
$nationID = $me['nation'];
|
$nationID = $me['nation'];
|
||||||
$myPenalty = Json::decode($me['penalty'] ?? '{}');
|
$myPenalty = Json::decode($me['penalty'] ?? '{}');
|
||||||
@@ -342,6 +342,10 @@ if ($action == "임명") {
|
|||||||
'reason' => $result
|
'reason' => $result
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
//수뇌의 삭턴 리필
|
||||||
|
$db->update('general', [
|
||||||
|
'killturn' => $db->sqleval('GREATEST(%b, %i)', 'killturn', $gameStor->getValue('killturn')),
|
||||||
|
], 'no=%i', $me['no']);
|
||||||
Json::die([
|
Json::die([
|
||||||
'result' => true,
|
'result' => true,
|
||||||
'reason' => 'success'
|
'reason' => 'success'
|
||||||
@@ -356,6 +360,10 @@ if ($action == "임명") {
|
|||||||
'reason' => $result
|
'reason' => $result
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
//수뇌의 삭턴 리필
|
||||||
|
$db->update('general', [
|
||||||
|
'killturn' => $db->sqleval('GREATEST(%b, %i)', 'killturn', $gameStor->getValue('killturn')),
|
||||||
|
], 'no=%i', $me['no']);
|
||||||
Json::die([
|
Json::die([
|
||||||
'result' => true,
|
'result' => true,
|
||||||
'reason' => 'success'
|
'reason' => 'success'
|
||||||
@@ -376,6 +384,10 @@ if ($action == "추방") {
|
|||||||
'reason' => $result
|
'reason' => $result
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
//수뇌의 삭턴 리필
|
||||||
|
$db->update('general', [
|
||||||
|
'killturn' => $db->sqleval('GREATEST(%b, %i)', 'killturn', $gameStor->getValue('killturn')),
|
||||||
|
], 'no=%i', $me['no']);
|
||||||
Json::die([
|
Json::die([
|
||||||
'result' => true,
|
'result' => true,
|
||||||
'reason' => 'success'
|
'reason' => 'success'
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ include('func.php');
|
|||||||
|
|
||||||
$session = Session::requireLogin([])->setReadOnly();
|
$session = Session::requireLogin([])->setReadOnly();
|
||||||
|
|
||||||
if(Session::getInstance()->userGrade < 5){
|
if(Session::getInstance()->userGrade < 6){
|
||||||
Json::die([
|
Json::die([
|
||||||
'reason'=>'권한이 부족합니다.'
|
'reason'=>'권한이 부족합니다.'
|
||||||
]);
|
]);
|
||||||
|
|||||||
@@ -1,430 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace sammo;
|
|
||||||
|
|
||||||
use sammo\DTO\VoteInfo;
|
|
||||||
use sammo\Enums\GeneralQueryMode;
|
|
||||||
|
|
||||||
include "lib.php";
|
|
||||||
include "func.php";
|
|
||||||
|
|
||||||
$session = Session::requireLogin()->loginGame()->setReadOnly();
|
|
||||||
$userID = Session::getUserID();
|
|
||||||
|
|
||||||
increaseRefresh("메인", 1);
|
|
||||||
|
|
||||||
$db = DB::db();
|
|
||||||
$gameStor = KVStorage::getStorage($db, 'game_env');
|
|
||||||
|
|
||||||
if (!$userID) {
|
|
||||||
header('Location:..');
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
|
|
||||||
//턴 실행.
|
|
||||||
TurnExecutionHelper::executeAllCommand();
|
|
||||||
|
|
||||||
if (!$session->isGameLoggedIn()) {
|
|
||||||
header('Location:..');
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
|
|
||||||
$me = $db->queryFirstRow(
|
|
||||||
'SELECT no,refresh_score,turntime,newmsg,newvote,`officer_level` FROM `general`
|
|
||||||
LEFT JOIN general_access_log AS l ON `general`.no = l.general_id WHERE owner = %i',
|
|
||||||
$userID
|
|
||||||
);
|
|
||||||
|
|
||||||
//그새 사망이면
|
|
||||||
if ($me === null) {
|
|
||||||
$session->logoutGame();
|
|
||||||
header('Location: ../');
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
|
|
||||||
$gameStor->cacheAll(true);
|
|
||||||
|
|
||||||
if ($me['newmsg'] == 1 || $me['newvote'] == 1) {
|
|
||||||
$db->update('general', [
|
|
||||||
'newmsg' => 0,
|
|
||||||
'newvote' => 0
|
|
||||||
], 'owner=%i', $userID);
|
|
||||||
}
|
|
||||||
|
|
||||||
$plock = boolval($db->queryFirstField('SELECT plock FROM plock WHERE `type`="GAME" LIMIT 1'));
|
|
||||||
|
|
||||||
$limitState = checkLimit($me['refresh_score']);
|
|
||||||
if ($limitState >= 2) {
|
|
||||||
printLimitMsg($me['turntime']);
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
$generalObj = General::createObjFromDB($me['no'], null, GeneralQueryMode::FullWithAccessLog);
|
|
||||||
$generalObj->setRawCity($db->queryFirstRow('SELECT * FROM city WHERE city = %i', $generalObj->getCityID()));
|
|
||||||
$scenario = $gameStor->scenario_text;
|
|
||||||
|
|
||||||
$nationID = $generalObj->getNationID();
|
|
||||||
if ($nationID) {
|
|
||||||
$nationStor = KVStorage::getStorage($db, $nationID, 'nation_env');
|
|
||||||
$nationStor->cacheAll();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($gameStor->extended_general == 0) {
|
|
||||||
$extend = "표준";
|
|
||||||
} else {
|
|
||||||
$extend = "확장";
|
|
||||||
}
|
|
||||||
if ($gameStor->fiction == 0) {
|
|
||||||
$fiction = "사실";
|
|
||||||
} else {
|
|
||||||
$fiction = "가상";
|
|
||||||
}
|
|
||||||
if ($gameStor->npcmode == 0) {
|
|
||||||
$npcmode = "불가능";
|
|
||||||
} else if ($gameStor->npcmode == 1) {
|
|
||||||
$npcmode = "가능";
|
|
||||||
} else {
|
|
||||||
$npcmode = "선택 생성";
|
|
||||||
}
|
|
||||||
$color = "cyan";
|
|
||||||
$serverName = UniqueConst::$serverName;
|
|
||||||
$serverCnt = $gameStor->server_cnt;
|
|
||||||
|
|
||||||
$auctionCount = $db->queryFirstField('SELECT count(*) FROM ng_auction WHERE finished = 0');
|
|
||||||
$isTournamentActive = $gameStor->tournament > 0;
|
|
||||||
$isTournamentApplicationOpen = $gameStor->tournament == 1;
|
|
||||||
$isBettingActive = $gameStor->tournament == 6;
|
|
||||||
|
|
||||||
$myNationStatic = getNationStaticInfo($generalObj->getNationID());
|
|
||||||
$nationColorType = substr($myNationStatic['color'] ?? '#000000', 1);
|
|
||||||
|
|
||||||
$autorunUser = ($gameStor->autorun_user) ?? [];
|
|
||||||
$otherTextInfo = [];
|
|
||||||
|
|
||||||
if ($gameStor->join_mode == 'onlyRandom') {
|
|
||||||
$otherTextInfo[] = '랜덤 임관 전용';
|
|
||||||
}
|
|
||||||
if ($autorunUser['limit_minutes'] ?? false) {
|
|
||||||
$otherTextInfo[] = getAutorunInfo($autorunUser);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$otherTextInfo) {
|
|
||||||
$otherTextInfo = '표준';
|
|
||||||
} else {
|
|
||||||
$otherTextInfo = join(', ', $otherTextInfo);
|
|
||||||
}
|
|
||||||
|
|
||||||
$lastVoteID = $gameStor->lastVote;
|
|
||||||
$lastVote = null;
|
|
||||||
if ($lastVoteID) {
|
|
||||||
$voteStor = KVStorage::getStorage($db, 'vote');
|
|
||||||
$lastVote = VoteInfo::fromArray($voteStor->getValue("vote_{$lastVoteID}"));
|
|
||||||
if ($lastVote->endDate && $lastVote->endDate < TimeUtil::now()) {
|
|
||||||
$lastVote = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<title><?= $serverName ?>: 메인</title>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="color-scheme" content="dark">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=500" />
|
|
||||||
<?= WebUtil::printJS('../d_shared/common_path.js') ?>
|
|
||||||
<?= WebUtil::printJS('d_shared/base_map.js') ?>
|
|
||||||
<?= WebUtil::printCSS('../d_shared/common.css') ?>
|
|
||||||
<?= WebUtil::printDist('vue', 'v_main', true) ?>
|
|
||||||
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css" />
|
|
||||||
<?= WebUtil::printCSS('css/map.css') ?>
|
|
||||||
<?= WebUtil::printStaticValues([
|
|
||||||
//deprecated, staticValues를 이용할 것
|
|
||||||
'serverName' => $serverName,
|
|
||||||
'serverCnt' => $serverCnt,
|
|
||||||
'serverNick' => DB::prefix(),
|
|
||||||
'serverID' => UniqueConst::$serverID,
|
|
||||||
'maxTurn' => GameConst::$maxTurn,
|
|
||||||
'maxPushTurn' => 12,
|
|
||||||
'serverNow' => TimeUtil::now(false),
|
|
||||||
'lastExecuted' => $gameStor->turntime,
|
|
||||||
'isLocked' => $plock,
|
|
||||||
'isTournamentActive' => $isTournamentActive,
|
|
||||||
'isBettingActive' => $isBettingActive,
|
|
||||||
'staticValues' => [
|
|
||||||
'serverName' => $serverName,
|
|
||||||
'serverCnt' => $serverCnt,
|
|
||||||
'serverNick' => DB::prefix(),
|
|
||||||
'serverID' => UniqueConst::$serverID,
|
|
||||||
'maxTurn' => GameConst::$maxTurn,
|
|
||||||
'maxPushTurn' => 12,
|
|
||||||
'serverNow' => TimeUtil::now(false),
|
|
||||||
'lastExecuted' => $gameStor->turntime,
|
|
||||||
'isLocked' => $plock,
|
|
||||||
'isTournamentActive' => $isTournamentActive,
|
|
||||||
'isBettingActive' => $isBettingActive,
|
|
||||||
'mapName' => GameConst::$mapName,
|
|
||||||
'unitSet' => GameConst::$unitSet,
|
|
||||||
]
|
|
||||||
]) ?>
|
|
||||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body class="img_back sam-color-<?= $nationColorType ?>">
|
|
||||||
<div id="container" class="bg0">
|
|
||||||
<div class="row toolbars gx-0">
|
|
||||||
<div class="buttonPlate"><?= allButton($gameStor->npcmode == 1) ?></button></div>
|
|
||||||
</div>
|
|
||||||
<div class="tb_layout row gx-0">
|
|
||||||
<div id="server_title" class="row py-2 center">
|
|
||||||
<h3>삼국지 모의전투 HiDCHe <?= $serverName . $serverCnt ?>기 <span class="avoid-wrap">(<font color=cyan><?= $scenario ?></font>)</span></h3>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row center gx-0">
|
|
||||||
<div class="s-border-t col py-2 col-8 col-lg-4" style="color:<?= $color ?>;">
|
|
||||||
<?= $scenario ?>
|
|
||||||
</div>
|
|
||||||
<div class="s-border-t col py-2 col-4 col-lg-2" style="color:<?= $color ?>;">
|
|
||||||
NPC 수, 상성 : <?= $extend ?>,<?= $fiction ?>
|
|
||||||
</div>
|
|
||||||
<div class="s-border-t col py-2 col-4 col-lg-2" style="color:<?= $color ?>;">
|
|
||||||
NPC선택 : <?= $npcmode ?>
|
|
||||||
</div>
|
|
||||||
<div class="s-border-t col py-2 col-4 col-lg-2" style="color:<?= $color ?>;">
|
|
||||||
토너먼트 : <?= getTournamentTermText($gameStor->turnterm) ?>
|
|
||||||
</div>
|
|
||||||
<div class="s-border-t col py-2 col-4 col-lg-2" style="color:<?= $color ?>;">
|
|
||||||
기타 설정: <?= $otherTextInfo ?>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="s-border-t col py-2 col-8 col-lg-4"><?= info(2) ?></div>
|
|
||||||
<div class="s-border-t col py-2 col-4 col-lg-2">전체 접속자 수 : <?= $gameStor->online_user_cnt ?> 명</div>
|
|
||||||
<div class="s-border-t col py-2 col-4 col-lg-2">턴당 갱신횟수 : <?= $gameStor->refreshLimit ?>회</div>
|
|
||||||
<div class="s-border-t col py-2 col-8 col-lg-4"><?= info(3) ?></div>
|
|
||||||
<div class="s-border-t py-2 col col-6 col-lg-4">
|
|
||||||
<?php if ($isTournamentActive) : ?>
|
|
||||||
↑<span style='color:cyan'><?= (['전력전', '통솔전', '일기토', '설전',])[$gameStor->tnmt_type] ?? '' ?> <?= getTournament($gameStor->tournament) ?> <?= getTournamentTime() ?></span>↑
|
|
||||||
<?php else : ?>
|
|
||||||
<span style='color:magenta'>현재 토너먼트 경기 없음</span>
|
|
||||||
<?php endif; ?>
|
|
||||||
</div>
|
|
||||||
<div class="s-border-t py-2 col col-6 col-lg-2">
|
|
||||||
<div style="display:inline-block;"><?= $plock ? ("<span style='color:magenta;'>동작 시각: " . substr($gameStor->turntime, 5, 14) . "</span>") : ("<span style='color:cyan;'>동작 시각: " . substr($gameStor->turntime, 5, 14) . "</span>") ?></div>
|
|
||||||
</div>
|
|
||||||
<div class="s-border-t py-2 col col-6 col-lg-2">
|
|
||||||
<?php if ($auctionCount > 0) : ?>
|
|
||||||
<span style='color:cyan'><?= $auctionCount ?>건</span> 거래 진행중
|
|
||||||
<?php else : ?>
|
|
||||||
<span style='color:magenta'>진행중 거래 없음</span>
|
|
||||||
<?php endif; ?>
|
|
||||||
</div>
|
|
||||||
<div class="s-border-t py-2 col col-6 col-lg-4 vote-cell">
|
|
||||||
<?php
|
|
||||||
?>
|
|
||||||
<?php if ($lastVote === null) : ?>
|
|
||||||
<span style='color:magenta'>진행중 설문 없음</span>
|
|
||||||
<?php else : ?>
|
|
||||||
<span style='color:cyan'>설문 진행중</span> : <span><?= $lastVote->title ?></span>
|
|
||||||
<?php endif; ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row gx-0">
|
|
||||||
<div class="col s-border-t px-2 py-2">접속중인 국가: <?= $gameStor->online_nation ?></div>
|
|
||||||
</div>
|
|
||||||
<div class="row gx-0">
|
|
||||||
<div class="col s-border-t px-2 py-2">운영자 메세지 : <span style='color:yellow;'><?= $gameStor->msg ?></span></div>
|
|
||||||
</div>
|
|
||||||
<div class="row gx-0">
|
|
||||||
<div class="col s-border-t py-2" id="nation-msg-position">
|
|
||||||
<div class="px-2">【 국가방침 】</div>
|
|
||||||
<div id='nation-msg-box'>
|
|
||||||
<div id='nation-msg'><?= nationMsg($generalObj) ?></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row gx-0">
|
|
||||||
<div class="col s-border-t px-2 py-2">
|
|
||||||
【 접속자 】<?= onlinegen($generalObj) ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<?php if ($session->userGrade >= 5) : ?>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col">
|
|
||||||
<a href='_admin1.php' target='_blank'><button type='button'>게임관리</button></a>
|
|
||||||
<a href='_admin2.php' target='_blank'><button type='button'>회원관리</button></a>
|
|
||||||
<a href='_admin4.php' target='_blank'><button type='button'>멀티관리</button></a>
|
|
||||||
<a href='_admin5.php' target='_blank'><button type='button'>일제정보</button></a>
|
|
||||||
<a href='_admin7.php' target='_blank'><button type='button'>로그정보</button></a>
|
|
||||||
<a href='_admin8.php' target='_blank'><button type='button'>외교정보</button></a>
|
|
||||||
<a href='_119.php' target='_blank'><button type='button'>119</button></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<?php elseif ($session->userGrade == 4) : ?>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col">
|
|
||||||
<a href='_119.php' target='_blank'><button type='button'>119</button></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<?php endif; ?>
|
|
||||||
<div id="map_view" class="gx-0">
|
|
||||||
<div id="mapZone" class="view-item"><?= getMapHtml() ?></div>
|
|
||||||
<div class="view-item" id="reservedCommandZone">
|
|
||||||
<div id="reservedCommandList"></div>
|
|
||||||
<div id="actionMiniPlate" class="gx-0 row">
|
|
||||||
<div class="col">
|
|
||||||
<div class="gx-1 row">
|
|
||||||
<div class="col-8 d-grid"><button type='button' class='btn btn-sammo-base2 refreshPage'>갱 신</button></div>
|
|
||||||
<div class="col-4 d-grid"><button type='button' class='btn btn-sammo-base2' onclick="location.replace('../')">로비로</button></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div id="cityInfo" class="view-item" style="border:none;text-align:center;"><?= cityInfo($generalObj) ?></div>
|
|
||||||
<div id="nation-position"><?php myNationInfo($generalObj); ?></div>
|
|
||||||
<div id="general-position"><?php generalInfo($generalObj); ?></div>
|
|
||||||
<div id="generalCommandButton" class="row gx-0">
|
|
||||||
<div class="buttonPlate bg2">
|
|
||||||
?></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div id="actionMiniPlateSub" class="gx-0 row">
|
|
||||||
<div class="col">
|
|
||||||
<div class="gx-1 row">
|
|
||||||
<div class="col-3 d-grid"><button type='button' class="btn btn-dark" onclick="scrollHardTo('reservedCommandList')">명령으로</button></div>
|
|
||||||
<div class="col-5 d-grid"><button type='button' class='btn btn-sammo-base2 refreshPage'>갱 신</button></div>
|
|
||||||
<div class="col-4 d-grid"><button type='button' class='btn btn-sammo-base2' onclick="location.replace('../')">로비로</button></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row gx-0">
|
|
||||||
<div class="col-lg-6" id="general_public_record-position">
|
|
||||||
<div class="bg1 center s-border-tb"><b>장수 동향</b></div>
|
|
||||||
<div id="general_public_record" style="text-align:left;"><?= formatHistoryToHTML(getGlobalActionLogRecent(15)) ?></div>
|
|
||||||
</div>
|
|
||||||
<div class="col-lg-6" id="general_log-position">
|
|
||||||
<div class="bg1 center s-border-tb"><b>개인 기록</b></div>
|
|
||||||
<div id="general_log" style="text-align:left;"><?= formatHistoryToHTML(getGeneralActionLogRecent($me['no'], 15)) ?></div>
|
|
||||||
</div>
|
|
||||||
<div class="col-12" id="world_history-position">
|
|
||||||
<div class="bg1 center s-border-tb"><b>중원 정세</b></div>
|
|
||||||
<div id="world_history" colspan=2 style="text-align:left;"><?= formatHistoryToHTML(getGlobalHistoryLogRecent(15)) ?></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row toolbars gx-0">
|
|
||||||
<div class="buttonPlate"><?= allButton($gameStor->npcmode == 1) ?></div>
|
|
||||||
|
|
||||||
<div id="message_board" class="row gx-0">
|
|
||||||
<div class="message_input_form bg0 gx-0 row">
|
|
||||||
<div id="mailbox_list-col" class="col-6 col-lg-2 d-grid">
|
|
||||||
<select id="mailbox_list" size="1" class="form-control bg-dark text-white">
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div id="msg_input-col" class="col-12 col-lg-8 d-grid">
|
|
||||||
<input type="text" id="msg_input" maxlength="99" class="form-control">
|
|
||||||
</div>
|
|
||||||
<div id="msg_submit-col" class="col-6 col-lg-2 d-grid"><button id="msg_submit" class="btn btn-primary">서신전달&갱신</button></div>
|
|
||||||
</div>
|
|
||||||
<div class="col-lg-6 board_side bg0"><a id="public_talk_position"></a>
|
|
||||||
<div class="board_header bg0">전체 메시지(최고99자)</div>
|
|
||||||
<section class="public_message">
|
|
||||||
<div class="d-grid"><button type="button" class="load_old_message btn btn-secondary" data-msg_type="public">이전 메시지 불러오기</button></div>
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
<div class="col-lg-6 board_side bg0"><a id="national_talk_position"></a>
|
|
||||||
<div class="board_header bg0">국가 메시지(최고99자)</div>
|
|
||||||
<section class="national_message">
|
|
||||||
<div class="d-grid"><button type="button" class="load_old_message btn btn-secondary" data-msg_type="national">이전 메시지 불러오기</button></div>
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
<div class="col-lg-6 board_side bg0"><a id="private_talk_position"></a>
|
|
||||||
<div class="board_header bg0">개인 메시지(최고99자)</div>
|
|
||||||
<section class="private_message">
|
|
||||||
<div class="d-grid"><button type="button" class="load_old_message btn btn-secondary" data-msg_type="private">이전 메시지 불러오기</button></div>
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
<div class="col-lg-6 board_side bg0"><a id="diplomacy_talk_position"></a>
|
|
||||||
<div class="board_header bg0">외교 메시지(최고99자)</div>
|
|
||||||
<section class="diplomacy_message">
|
|
||||||
<div class="d-grid"><button type="button" class="load_old_message btn btn-secondary" data-msg_type="diplomacy">이전 메시지 불러오기</button></div>
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row toolbars gx-0">
|
|
||||||
<div class="buttonPlate"><?= allButton($gameStor->npcmode == 1) ?></div><?= banner() ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<?php
|
|
||||||
if ($limitState == 1) {
|
|
||||||
MessageBox("접속제한이 얼마 남지 않았습니다!");
|
|
||||||
}
|
|
||||||
if ($me['newmsg'] == 1) {
|
|
||||||
MessageBox("새로운 서신이 도착했습니다!");
|
|
||||||
}
|
|
||||||
if ($me['newvote'] == 1) {
|
|
||||||
$develcost = $gameStor->develcost * 5;
|
|
||||||
MessageBox("설문조사에 참여하시면 금{$develcost}과 유니크템을 드립니다! (우측 상단 설문조사 메뉴)");
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
<nav class="navbar navbar-expand fixed-bottom navbar-dark bg-dark d-sm-block d-lg-none p-0" id="navbar500">
|
|
||||||
<div class="container-fluid px-0">
|
|
||||||
<div class="collapse navbar-collapse">
|
|
||||||
<ul class="navbar-nav me-auto mx-auto">
|
|
||||||
<li class="nav-item dropup">
|
|
||||||
<div class="dropdown-toggle text-white btn btn-sammo-base2" id="navbarGlobal" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
||||||
외부 메뉴
|
|
||||||
</div>
|
|
||||||
<ul class="dropdown-menu dropdown-menu-start" aria-labelledby="navbarGlobal" id="navbarGlobalItems">
|
|
||||||
<?= allButton($gameStor->npcmode == 1, ['btnBegin' => '<li>', 'btnEnd' => '</li>', 'btnClass' => 'dropdown-item']) ?>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item dropup">
|
|
||||||
<div class="dropdown-toggle btn btn-sammo-nation" id="navbarNation" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
||||||
국가 메뉴
|
|
||||||
</div>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="navbarNation" id="navbarNationItems">
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item dropup">
|
|
||||||
<div class="dropdown-toggle text-white btn btn-dark" id="navbarQuick" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
||||||
빠른 이동
|
|
||||||
</div>
|
|
||||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown" id="navbarQuickItems">
|
|
||||||
<li><a class="dropdown-item disabled">국가 정보</a></button></li>
|
|
||||||
<hr class="dropdown-divider">
|
|
||||||
</hr>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('nation-msg-position')" class="dropdown-item">방침</button></li>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('reservedCommandList')" class="dropdown-item">명령</button></li>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('nation-position')" class="dropdown-item">국가</button></li>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('general-position')" class="dropdown-item">장수</button></li>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('cityInfo')" class="dropdown-item">도시</button></li>
|
|
||||||
<li><a class="dropdown-item disabled">동향 정보</a></button></li>
|
|
||||||
<hr class="dropdown-divider">
|
|
||||||
</hr>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('mapZone')" class="dropdown-item">지도</button></li>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('general_public_record-position')" class="dropdown-item">동향</button></li>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('general_log-position')" class="dropdown-item">개인</button></li>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('world_history-position')" class="dropdown-item">정세</button></li>
|
|
||||||
<li><span> </span></li>
|
|
||||||
<li><a class="dropdown-item disabled">메시지</a></button></li>
|
|
||||||
<hr class="dropdown-divider">
|
|
||||||
</hr>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('public_talk_position')" class="dropdown-item">전체</button></li>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('national_talk_position')" class="dropdown-item">국가</button></li>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('private_talk_position')" class="dropdown-item">개인</button></li>
|
|
||||||
<li><button type="button" onclick="scrollHardTo('diplomacy_talk_position')" class="dropdown-item">외교</button></li>
|
|
||||||
<li><button type='button' class='btn btn-sammo-base2' onclick="location.replace('../')">로비로</button></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="refreshPage btn btn-sammo-base2 text-white" role="button">갱신</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
+10
-7
@@ -718,14 +718,17 @@ function ConquerCity(array $admin, General $general, array $city, array $defende
|
|||||||
$attackerLogger->pushGlobalHistoryLog("<M><b>【긴급천도】</b></><D><b>{$defenderNationName}</b></>{$josaYi} 수도가 함락되어 <G><b>$minCityName</b></>{$josaRo} 긴급천도하였습니다.");
|
$attackerLogger->pushGlobalHistoryLog("<M><b>【긴급천도】</b></><D><b>{$defenderNationName}</b></>{$josaYi} 수도가 함락되어 <G><b>$minCityName</b></>{$josaRo} 긴급천도하였습니다.");
|
||||||
|
|
||||||
$moveLog = "수도가 함락되어 <G><b>$minCityName</b></>{$josaRo} <M>긴급천도</>합니다.";
|
$moveLog = "수도가 함락되어 <G><b>$minCityName</b></>{$josaRo} <M>긴급천도</>합니다.";
|
||||||
//아국 수뇌부에게 로그 전달
|
foreach ($db->queryAllLists(
|
||||||
foreach ($db->queryFirstColumn(
|
'SELECT no, officer_level FROM general WHERE nation=%i',
|
||||||
'SELECT no FROM general WHERE nation=%i AND officer_level>=5',
|
|
||||||
$defenderNationID
|
$defenderNationID
|
||||||
) as $defenderChiefID) {
|
) as [$defenderGeneralID, $defenderGeneralChiefLevel]) {
|
||||||
$chiefLogger = new ActionLogger($defenderChiefID, $defenderNationID, $year, $month);
|
$defenderLogger = new ActionLogger($defenderGeneralID, $defenderNationID, $year, $month);
|
||||||
$chiefLogger->pushGeneralActionLog($moveLog, ActionLogger::PLAIN);
|
$defenderLogger->pushGeneralActionLog($moveLog, ActionLogger::PLAIN);
|
||||||
$chiefLogger->flush();
|
if($defenderGeneralChiefLevel >= 5){
|
||||||
|
$defenderLogger->pushGeneralActionLog("수뇌는 <G><b>{$minCityName}</b></>{$josaRo} 집합되었습니다.");
|
||||||
|
}
|
||||||
|
|
||||||
|
$defenderLogger->flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
//천도
|
//천도
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ class GeneralList extends \sammo\BaseAPI
|
|||||||
$availableNextCall = $session->availableNextCallGetGeneralList ?? '2000-01-01 00:00:00';
|
$availableNextCall = $session->availableNextCallGetGeneralList ?? '2000-01-01 00:00:00';
|
||||||
$now = new \DateTimeImmutable();
|
$now = new \DateTimeImmutable();
|
||||||
|
|
||||||
if ($now <= new \DateTimeImmutable($availableNextCall) && $session->userGrade < 5) {
|
if ($now <= new \DateTimeImmutable($availableNextCall) && $session->userGrade < 6) {
|
||||||
return "장수 리스트는 10초에 한번 갱신 가능합니다.\n다음 시간 : " . $availableNextCall;
|
return "장수 리스트는 10초에 한번 갱신 가능합니다.\n다음 시간 : " . $availableNextCall;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,183 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace sammo\API\InheritAction;
|
||||||
|
|
||||||
|
use sammo\Session;
|
||||||
|
use DateTimeInterface;
|
||||||
|
use sammo\DB;
|
||||||
|
use sammo\Enums\APIRecoveryType;
|
||||||
|
use sammo\Enums\RankColumn;
|
||||||
|
use sammo\GameConst;
|
||||||
|
use sammo\General;
|
||||||
|
use sammo\KVStorage;
|
||||||
|
use sammo\LiteHashDRBG;
|
||||||
|
use sammo\RandUtil;
|
||||||
|
use sammo\UniqueConst;
|
||||||
|
use sammo\UserLogger;
|
||||||
|
use sammo\Util;
|
||||||
|
use sammo\Validator;
|
||||||
|
|
||||||
|
class ResetStat extends \sammo\BaseAPI
|
||||||
|
{
|
||||||
|
public function validateArgs(): ?string
|
||||||
|
{
|
||||||
|
$v = new Validator($this->args);
|
||||||
|
$v->rule('required', [
|
||||||
|
'leadership',
|
||||||
|
'strength',
|
||||||
|
'intel',
|
||||||
|
])
|
||||||
|
->rule('int', [
|
||||||
|
'leadership',
|
||||||
|
'strength',
|
||||||
|
'intel',
|
||||||
|
])
|
||||||
|
->rule('min', [
|
||||||
|
'leadership',
|
||||||
|
'strength',
|
||||||
|
'intel'
|
||||||
|
], GameConst::$defaultStatMin)
|
||||||
|
->rule('max', [
|
||||||
|
'leadership',
|
||||||
|
'strength',
|
||||||
|
'intel'
|
||||||
|
], GameConst::$defaultStatMax)
|
||||||
|
->rule('integerArray', 'inheritBonusStat');
|
||||||
|
|
||||||
|
if (!$v->validate()) {
|
||||||
|
return $v->errorStr();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getRequiredSessionMode(): int
|
||||||
|
{
|
||||||
|
//General.aux 쓰므로 lock;
|
||||||
|
return static::REQ_GAME_LOGIN;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function launch(Session $session, ?DateTimeInterface $modifiedSince, ?string $reqEtag): null | string | array | APIRecoveryType
|
||||||
|
{
|
||||||
|
$userID = $session->userID;
|
||||||
|
$generalID = $session->generalID;
|
||||||
|
|
||||||
|
|
||||||
|
$leadership = $this->args['leadership'];
|
||||||
|
$strength = $this->args['strength'];
|
||||||
|
$intel = $this->args['intel'];
|
||||||
|
$inheritBonusStat = $this->args['inheritBonusStat'] ?? null;
|
||||||
|
|
||||||
|
if ($leadership + $strength + $intel != GameConst::$defaultStatTotal) {
|
||||||
|
return "능력치 총합이 " . GameConst::$defaultStatTotal . "이 아닙니다. 다시 입력해주세요!";
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($inheritBonusStat) {
|
||||||
|
if (count($inheritBonusStat) != 3) {
|
||||||
|
return "보너스 능력치가 잘못 지정되었습니다. 다시 입력해주세요!";
|
||||||
|
}
|
||||||
|
foreach ($inheritBonusStat as $stat) {
|
||||||
|
if ($stat < 0) {
|
||||||
|
return "보너스 능력치가 음수입니다. 다시 입력해주세요!";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$sum = array_sum($inheritBonusStat);
|
||||||
|
if ($sum == 0) {
|
||||||
|
$inheritBonusStat = null;
|
||||||
|
} else if ($sum < 3 || $sum > 5) {
|
||||||
|
return "보너스 능력치 합이 잘못 지정되었습니다. 다시 입력해주세요!";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$general = General::createObjFromDB($generalID);
|
||||||
|
if ($userID != $general->getVar('owner')) {
|
||||||
|
return '로그인 상태가 이상합니다. 다시 로그인해 주세요.';
|
||||||
|
}
|
||||||
|
$userLogger = new UserLogger($userID);
|
||||||
|
|
||||||
|
if($general->getNPCType() != 0){
|
||||||
|
return 'NPC는 능력치 초기화를 할 수 없습니다.';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$db = DB::db();
|
||||||
|
$gameStor = KVStorage::getStorage($db, 'game_env');
|
||||||
|
$gameStor->cacheValues([
|
||||||
|
'isunited',
|
||||||
|
'season',
|
||||||
|
]);
|
||||||
|
if ($gameStor->isunited) {
|
||||||
|
return '이미 천하가 통일되었습니다.';
|
||||||
|
}
|
||||||
|
$userStor = KVStorage::getStorage($db, "user_{$userID}");
|
||||||
|
|
||||||
|
$lastUserStatReset = $userStor->getValue('last_stat_reset') ?? [];
|
||||||
|
$gameSeason = $gameStor->getValue('season');
|
||||||
|
|
||||||
|
if (array_search($gameSeason, $lastUserStatReset) !== false) {
|
||||||
|
return '이번 시즌에 이미 능력치를 초기화하셨습니다.';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$inheritStor = KVStorage::getStorage($db, "inheritance_{$userID}");
|
||||||
|
$previousPoint = ($inheritStor->getValue('previous') ?? [0, 0])[0];
|
||||||
|
$reqAmount = 0;
|
||||||
|
if ($inheritBonusStat !== null) {
|
||||||
|
$reqAmount += GameConst::$inheritBornStatPoint;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($previousPoint < $reqAmount) {
|
||||||
|
return '충분한 유산 포인트를 가지고 있지 않습니다.';
|
||||||
|
}
|
||||||
|
|
||||||
|
$userLogger->push("통솔 {$leadership}, 무력 {$strength}, 지력 {$intel} 스탯 재설정", "inheritPoint");
|
||||||
|
|
||||||
|
if ($inheritBonusStat) {
|
||||||
|
$pleadership = $inheritBonusStat[0] ?? 0;
|
||||||
|
$pstrength = $inheritBonusStat[1] ?? 0;
|
||||||
|
$pintel = $inheritBonusStat[2] ?? 0;
|
||||||
|
$userLogger->push("{$reqAmount}로 통솔 {$pleadership}, 무력 {$pstrength}, 지력 {$pintel} 보너스 능력치 적용", "inheritPoint");
|
||||||
|
} else {
|
||||||
|
$rng = new RandUtil(new LiteHashDRBG(Util::simpleSerialize(
|
||||||
|
UniqueConst::$hiddenSeed,
|
||||||
|
'ResetStat',
|
||||||
|
$userID,
|
||||||
|
)));
|
||||||
|
$pleadership = 0;
|
||||||
|
$pstrength = 0;
|
||||||
|
$pintel = 0;
|
||||||
|
foreach (Util::range($rng->nextRangeInt(3, 5)) as $statIdx) {
|
||||||
|
switch ($rng->choiceUsingWeight([$leadership, $strength, $intel])) {
|
||||||
|
case 0:
|
||||||
|
$pleadership++;
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
$pstrength++;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
$pintel++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$userLogger->push("통솔 {$pleadership}, 무력 {$pstrength}, 지력 {$pintel} 보너스 능력치 적용", "inheritPoint");
|
||||||
|
}
|
||||||
|
|
||||||
|
$leadership += $pleadership;
|
||||||
|
$strength += $pstrength;
|
||||||
|
$intel += $pintel;
|
||||||
|
|
||||||
|
$lastUserStatReset[] = $gameSeason;
|
||||||
|
|
||||||
|
|
||||||
|
$general->setVar('leadership', $leadership);
|
||||||
|
$general->setVar('strength', $strength);
|
||||||
|
$general->setVar('intel', $intel);
|
||||||
|
|
||||||
|
$userLogger->flush();
|
||||||
|
|
||||||
|
$inheritStor->setValue('previous', [$previousPoint - $reqAmount, null]);
|
||||||
|
$userStor->setValue('last_stat_reset', $lastUserStatReset);
|
||||||
|
$general->increaseRankVar(RankColumn::inherit_point_spent_dynamic, $reqAmount);
|
||||||
|
$general->applyDB($db);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -50,7 +50,7 @@ class UploadImage extends \sammo\BaseAPI
|
|||||||
}
|
}
|
||||||
|
|
||||||
$extension = ltrim($contentType, 'image/');
|
$extension = ltrim($contentType, 'image/');
|
||||||
$validExtensions = ['png', 'jpeg', 'jpg', 'gif', 'webp'];
|
$validExtensions = ['png', 'jpeg', 'jpg', 'gif', 'webp', 'avif'];
|
||||||
if (!in_array(strtolower($extension), $validExtensions)) {
|
if (!in_array(strtolower($extension), $validExtensions)) {
|
||||||
return '지원하지 않는 이미지 파일입니다: ' . $contentType;
|
return '지원하지 않는 이미지 파일입니다: ' . $contentType;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ use sammo\Session;
|
|||||||
use DateTimeInterface;
|
use DateTimeInterface;
|
||||||
use sammo\DB;
|
use sammo\DB;
|
||||||
use sammo\Enums\APIRecoveryType;
|
use sammo\Enums\APIRecoveryType;
|
||||||
|
use sammo\Enums\GeneralLiteQueryMode;
|
||||||
|
use sammo\GeneralLite;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class ExitTroop extends \sammo\BaseAPI
|
class ExitTroop extends \sammo\BaseAPI
|
||||||
{
|
{
|
||||||
@@ -24,23 +27,35 @@ class ExitTroop extends \sammo\BaseAPI
|
|||||||
$generalID = $session->generalID;
|
$generalID = $session->generalID;
|
||||||
$db = DB::db();
|
$db = DB::db();
|
||||||
|
|
||||||
$troopID = $db->queryFirstField('SELECT troop FROM general WHERE no = %i', $generalID);
|
$me = GeneralLite::createObjFromDB($generalID, ['troop'], GeneralLiteQueryMode::Lite);
|
||||||
|
if (!$me) {
|
||||||
|
return '장수 정보를 불러올 수 없습니다.';
|
||||||
|
}
|
||||||
|
|
||||||
|
$troopID = $me->getVar('troop');
|
||||||
if($troopID == 0){
|
if($troopID == 0){
|
||||||
return '부대에 소속되어 있지 않습니다.';
|
return '부대에 소속되어 있지 않습니다.';
|
||||||
}
|
}
|
||||||
|
|
||||||
if($generalID != $troopID){
|
if($troopID != $generalID){
|
||||||
$db->update('general', [
|
StaticEventHandler::handleEvent($me, null, $this::class, [
|
||||||
'troop' => 0,
|
"isTroopLeader" => false,
|
||||||
], '`no` = %i', $generalID);
|
], $this->args);
|
||||||
|
$me->setVar('troop', 0);
|
||||||
|
$me->applyDB($db);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
//부대장이다.
|
//부대장이다.
|
||||||
|
StaticEventHandler::handleEvent($me, null, $this::class, [
|
||||||
|
"isTroopLeader" => true,
|
||||||
|
], $this->args);
|
||||||
$db->update('general', [
|
$db->update('general', [
|
||||||
'troop' => 0,
|
'troop' => 0,
|
||||||
], '`troop` = %i', $troopID);
|
], '`troop` = %i', $troopID);
|
||||||
$db->delete('troop', 'troop_leader = %i', $troopID);
|
$db->delete('troop', 'troop_leader = %i', $troopID);
|
||||||
|
$me->setVar('troop', 0);
|
||||||
|
$me->applyDB($db);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ use sammo\Session;
|
|||||||
use DateTimeInterface;
|
use DateTimeInterface;
|
||||||
use sammo\DB;
|
use sammo\DB;
|
||||||
use sammo\Enums\APIRecoveryType;
|
use sammo\Enums\APIRecoveryType;
|
||||||
|
use sammo\Enums\GeneralLiteQueryMode;
|
||||||
|
use sammo\GeneralLite;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
use sammo\StringUtil;
|
use sammo\StringUtil;
|
||||||
use sammo\Validator;
|
use sammo\Validator;
|
||||||
|
|
||||||
@@ -32,16 +35,22 @@ class JoinTroop extends \sammo\BaseAPI
|
|||||||
|
|
||||||
public function launch(Session $session, ?DateTimeInterface $modifiedSince, ?string $reqEtag): null | string | array | APIRecoveryType
|
public function launch(Session $session, ?DateTimeInterface $modifiedSince, ?string $reqEtag): null | string | array | APIRecoveryType
|
||||||
{
|
{
|
||||||
$userID = $session->userID;
|
$generalID = $session->generalID;
|
||||||
$troopID = $this->args['troopID'];
|
$troopID = $this->args['troopID'];
|
||||||
|
|
||||||
$db = DB::db();
|
$db = DB::db();
|
||||||
$me = $db->queryFirstRow('SELECT `no`,nation,`troop`,`officer_level`,permission,penalty FROM general WHERE `owner`=%i', $userID);
|
|
||||||
if ($me['troop'] != 0) {
|
$me = GeneralLite::createObjFromDB($generalID, ['troop'], GeneralLiteQueryMode::Lite);
|
||||||
|
if(!$me){
|
||||||
|
return '장수 정보를 불러올 수 없습니다.';
|
||||||
|
}
|
||||||
|
|
||||||
|
if($me->getVar('troop') != 0){
|
||||||
return '이미 부대에 소속되어 있습니다.';
|
return '이미 부대에 소속되어 있습니다.';
|
||||||
}
|
}
|
||||||
$nationID = $me['nation'];
|
|
||||||
if ($nationID == 0) {
|
$nationID = $me->getNationID();
|
||||||
|
if($nationID == 0){
|
||||||
return '국가에 소속되어 있지 않습니다.';
|
return '국가에 소속되어 있지 않습니다.';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -49,11 +58,10 @@ class JoinTroop extends \sammo\BaseAPI
|
|||||||
if (!$troopExists) {
|
if (!$troopExists) {
|
||||||
return '부대가 올바르지 않습니다.';
|
return '부대가 올바르지 않습니다.';
|
||||||
}
|
}
|
||||||
$generalID = $me['no'];
|
|
||||||
|
|
||||||
$db->update('general', [
|
$me->setVar('troop', $troopID);
|
||||||
'troop' => $troopID,
|
StaticEventHandler::handleEvent($me, null, $this::class, [], $this->args);
|
||||||
], '`no` = %i AND `troop` = %i', $generalID, 0);
|
$me->applyDB($db);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ use sammo\Session;
|
|||||||
use DateTimeInterface;
|
use DateTimeInterface;
|
||||||
use sammo\DB;
|
use sammo\DB;
|
||||||
use sammo\Enums\APIRecoveryType;
|
use sammo\Enums\APIRecoveryType;
|
||||||
|
use sammo\Enums\GeneralLiteQueryMode;
|
||||||
|
use sammo\GeneralLite;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
use sammo\Validator;
|
use sammo\Validator;
|
||||||
|
|
||||||
class KickFromTroop extends \sammo\BaseAPI
|
class KickFromTroop extends \sammo\BaseAPI
|
||||||
@@ -37,7 +40,8 @@ class KickFromTroop extends \sammo\BaseAPI
|
|||||||
$generalID = $this->args['generalID'];
|
$generalID = $this->args['generalID'];
|
||||||
$db = DB::db();
|
$db = DB::db();
|
||||||
|
|
||||||
$troopID = $db->queryFirstField('SELECT troop FROM general WHERE no = %i', $generalID);
|
$destGeneral = GeneralLite::createObjFromDB($generalID, ['troop'], GeneralLiteQueryMode::Lite);
|
||||||
|
$troopID = $destGeneral->getVar('troop');
|
||||||
if($troopID == 0){
|
if($troopID == 0){
|
||||||
return '부대에 소속되어 있지 않습니다.';
|
return '부대에 소속되어 있지 않습니다.';
|
||||||
}
|
}
|
||||||
@@ -50,9 +54,10 @@ class KickFromTroop extends \sammo\BaseAPI
|
|||||||
return '부대장을 추방할 수 없습니다.';
|
return '부대장을 추방할 수 없습니다.';
|
||||||
}
|
}
|
||||||
|
|
||||||
$db->update('general', [
|
StaticEventHandler::handleEvent($destGeneral, null, $this::class, [], $this->args);
|
||||||
'troop' => 0,
|
$destGeneral->setVar('troop', 0);
|
||||||
], '`no` = %i AND `troop` = %i', $generalID, $troopID);
|
$destGeneral->applyDB($db);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ use sammo\Session;
|
|||||||
use DateTimeInterface;
|
use DateTimeInterface;
|
||||||
use sammo\DB;
|
use sammo\DB;
|
||||||
use sammo\Enums\APIRecoveryType;
|
use sammo\Enums\APIRecoveryType;
|
||||||
|
use sammo\Enums\GeneralLiteQueryMode;
|
||||||
|
use sammo\GeneralLite;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
use sammo\StringUtil;
|
use sammo\StringUtil;
|
||||||
use sammo\Validator;
|
use sammo\Validator;
|
||||||
|
|
||||||
@@ -32,24 +35,23 @@ class NewTroop extends \sammo\BaseAPI
|
|||||||
|
|
||||||
public function launch(Session $session, ?DateTimeInterface $modifiedSince, ?string $reqEtag): null | string | array | APIRecoveryType
|
public function launch(Session $session, ?DateTimeInterface $modifiedSince, ?string $reqEtag): null | string | array | APIRecoveryType
|
||||||
{
|
{
|
||||||
$userID = $session->userID;
|
$generalID = $session->generalID;
|
||||||
$troopName = StringUtil::neutralize($this->args['troopName']);
|
$troopName = StringUtil::neutralize($this->args['troopName']);
|
||||||
if(!$troopName){
|
if(!$troopName){
|
||||||
return '부대 이름이 없습니다.';
|
return '부대 이름이 없습니다.';
|
||||||
}
|
}
|
||||||
|
|
||||||
$db = DB::db();
|
$db = DB::db();
|
||||||
$me = $db->queryFirstRow('SELECT `no`,nation,`troop`,`officer_level`,permission,penalty FROM general WHERE `owner`=%i', $userID);
|
$me = GeneralLite::createObjFromDB($generalID, ['troop'], GeneralLiteQueryMode::Lite);
|
||||||
if($me['troop'] != 0){
|
$troopID = $me->getVar('troop');
|
||||||
|
if($troopID != 0){
|
||||||
return '이미 부대에 소속되어 있습니다.';
|
return '이미 부대에 소속되어 있습니다.';
|
||||||
}
|
}
|
||||||
$nationID = $me['nation'];
|
$nationID = $me->getNationID();
|
||||||
if($nationID == 0){
|
if($nationID == 0){
|
||||||
return '국가에 소속되어 있지 않습니다.';
|
return '국가에 소속되어 있지 않습니다.';
|
||||||
}
|
}
|
||||||
|
|
||||||
$generalID = $me['no'];
|
|
||||||
|
|
||||||
$db->insert('troop', [
|
$db->insert('troop', [
|
||||||
'name'=>$troopName,
|
'name'=>$troopName,
|
||||||
'troop_leader'=>$generalID,
|
'troop_leader'=>$generalID,
|
||||||
@@ -60,9 +62,9 @@ class NewTroop extends \sammo\BaseAPI
|
|||||||
return '부대가 생성되지 않았습니다. 버그일 수 있습니다.';
|
return '부대가 생성되지 않았습니다. 버그일 수 있습니다.';
|
||||||
}
|
}
|
||||||
|
|
||||||
$db->update('general', [
|
$me->setVar('troop', $generalID);
|
||||||
'troop'=>$generalID
|
StaticEventHandler::handleEvent($me, null, $this::class, [], $this->args);
|
||||||
], '`no` = %i', $generalID);
|
$me->applyDB($db);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ use sammo\Session;
|
|||||||
use DateTimeInterface;
|
use DateTimeInterface;
|
||||||
use sammo\DB;
|
use sammo\DB;
|
||||||
use sammo\Enums\APIRecoveryType;
|
use sammo\Enums\APIRecoveryType;
|
||||||
|
use sammo\Enums\GeneralLiteQueryMode;
|
||||||
|
use sammo\GeneralLite;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
use sammo\StringUtil;
|
use sammo\StringUtil;
|
||||||
use sammo\Validator;
|
use sammo\Validator;
|
||||||
|
|
||||||
@@ -36,13 +39,12 @@ class SetTroopName extends \sammo\BaseAPI
|
|||||||
|
|
||||||
public function launch(Session $session, ?DateTimeInterface $modifiedSince, ?string $reqEtag): null | string | array | APIRecoveryType
|
public function launch(Session $session, ?DateTimeInterface $modifiedSince, ?string $reqEtag): null | string | array | APIRecoveryType
|
||||||
{
|
{
|
||||||
$userID = $session->userID;
|
$generalID = $session->generalID;
|
||||||
$db = DB::db();
|
$db = DB::db();
|
||||||
$me = $db->queryFirstRow('SELECT `no`,nation,`officer_level`,permission,penalty FROM general WHERE `owner`=%i', $userID);
|
$me = GeneralLite::createObjFromDB($generalID, ['troop', 'permission', 'penalty'], GeneralLiteQueryMode::Lite);
|
||||||
$permission = checkSecretPermission($me, false);
|
$permission = checkSecretPermission($me->getRaw(), false);
|
||||||
$troopID = $this->args['troopID'];
|
$troopID = $this->args['troopID'];
|
||||||
|
|
||||||
$generalID = $me['no'];
|
|
||||||
if($generalID != $troopID && $permission < 4){
|
if($generalID != $troopID && $permission < 4){
|
||||||
return "권한이 부족합니다.";
|
return "권한이 부족합니다.";
|
||||||
}
|
}
|
||||||
@@ -52,7 +54,7 @@ class SetTroopName extends \sammo\BaseAPI
|
|||||||
return '부대 이름이 없습니다.';
|
return '부대 이름이 없습니다.';
|
||||||
}
|
}
|
||||||
|
|
||||||
$nationID = $me['nation'];
|
$nationID = $me->getNationID();
|
||||||
$db->update('troop', [
|
$db->update('troop', [
|
||||||
'name'=>$troopName
|
'name'=>$troopName
|
||||||
], 'troop_leader=%i AND `nation`=%i',$troopID, $nationID);
|
], 'troop_leader=%i AND `nation`=%i',$troopID, $nationID);
|
||||||
@@ -60,6 +62,7 @@ class SetTroopName extends \sammo\BaseAPI
|
|||||||
if($db->affectedRows() == 0){
|
if($db->affectedRows() == 0){
|
||||||
return '부대가 없습니다.';
|
return '부대가 없습니다.';
|
||||||
}
|
}
|
||||||
|
StaticEventHandler::handleEvent($me, null, $this::class, [], $this->args);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ use sammo\DB;
|
|||||||
use sammo\DTO\VoteInfo;
|
use sammo\DTO\VoteInfo;
|
||||||
use sammo\Enums\APIRecoveryType;
|
use sammo\Enums\APIRecoveryType;
|
||||||
use sammo\KVStorage;
|
use sammo\KVStorage;
|
||||||
|
use sammo\RootDB;
|
||||||
use sammo\Session;
|
use sammo\Session;
|
||||||
use sammo\TimeUtil;
|
use sammo\TimeUtil;
|
||||||
use sammo\Util;
|
use sammo\Util;
|
||||||
@@ -93,6 +94,8 @@ class NewVote extends \sammo\BaseAPI
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$userName = $session->userName;
|
||||||
|
|
||||||
$db = DB::db();
|
$db = DB::db();
|
||||||
$gameStor = KVStorage::getStorage($db, 'game_env');
|
$gameStor = KVStorage::getStorage($db, 'game_env');
|
||||||
|
|
||||||
@@ -108,9 +111,11 @@ class NewVote extends \sammo\BaseAPI
|
|||||||
|
|
||||||
$multipleOptions = Util::valueFit($multipleOptions, 0, count($options));
|
$multipleOptions = Util::valueFit($multipleOptions, 0, count($options));
|
||||||
|
|
||||||
|
|
||||||
$voteInfo = new VoteInfo(
|
$voteInfo = new VoteInfo(
|
||||||
id: $voteID,
|
id: $voteID,
|
||||||
title: $title,
|
title: $title,
|
||||||
|
opener: $userName ?? '[SYSTEM]',
|
||||||
multipleOptions: $multipleOptions,
|
multipleOptions: $multipleOptions,
|
||||||
startDate: $now,
|
startDate: $now,
|
||||||
endDate: $endDate,
|
endDate: $endDate,
|
||||||
|
|||||||
@@ -19,10 +19,14 @@ class che_저지_삼황내문 extends \sammo\BaseItem{
|
|||||||
if($unit->isAttacker()){
|
if($unit->isAttacker()){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if($unit->getPhase() >= 2){
|
|
||||||
|
if($unit->getPhase() > 0){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if($unit->getPhase() == 1 && $unit->rng->nextBool(0.5)){
|
if($unit->hasActivatedSkillOnLog('저지') >= 2){
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
if($unit->hasActivatedSkillOnLog('저지') == 1 && $unit->getPhase() == 0 && $unit->rng->nextBool(0.5)){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,52 @@
|
|||||||
|
<?php
|
||||||
|
namespace sammo\ActionItem;
|
||||||
|
use \sammo\iAction;
|
||||||
|
use \sammo\General;
|
||||||
|
use \sammo\SpecialityHelper;
|
||||||
|
use \sammo\GameUnitConst;
|
||||||
|
use \sammo\WarUnit;
|
||||||
|
use \sammo\WarUnitCity;
|
||||||
|
use sammo\RandUtil;
|
||||||
|
use \sammo\WarUnitTriggerCaller;
|
||||||
|
use \sammo\BaseWarUnitTrigger;
|
||||||
|
use sammo\WarUnitTrigger\event_충차아이템소모;
|
||||||
|
|
||||||
|
class event_충차 extends \sammo\BaseItem{
|
||||||
|
|
||||||
|
protected $rawName = '충차';
|
||||||
|
protected $name = '충차';
|
||||||
|
protected $info = '[전투] 성벽 공격 시 대미지 +50%, 2회용';
|
||||||
|
protected $cost = 2000;
|
||||||
|
protected $consumable = true;
|
||||||
|
protected $buyable = true;
|
||||||
|
protected $reqSecu = 3000;
|
||||||
|
|
||||||
|
|
||||||
|
const REMAIN_KEY = 'remain충차';
|
||||||
|
|
||||||
|
function onArbitraryAction(General $general, RandUtil $rng, string $actionType, ?string $phase = null, $aux = null): ?array
|
||||||
|
{
|
||||||
|
if($actionType != '장비매매'){
|
||||||
|
return $aux;
|
||||||
|
}
|
||||||
|
if($phase != '구매'){
|
||||||
|
return $aux;
|
||||||
|
}
|
||||||
|
|
||||||
|
$general->setAuxVar(static::REMAIN_KEY, 2);
|
||||||
|
return $aux;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getWarPowerMultiplier(WarUnit $unit):array{
|
||||||
|
if($unit->getOppose() instanceof WarUnitCity){
|
||||||
|
return [1.5, 1];
|
||||||
|
}
|
||||||
|
return [1, 1];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getBattlePhaseSkillTriggerList(WarUnit $unit):?WarUnitTriggerCaller{
|
||||||
|
return new WarUnitTriggerCaller(
|
||||||
|
new event_충차아이템소모($unit, BaseWarUnitTrigger::TYPE_CONSUMABLE_ITEM)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -29,7 +29,7 @@ class che_병가 extends \sammo\BaseNation{
|
|||||||
return $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function onCalcNationalIncome(string $type, $amount):int{
|
public function onCalcNationalIncome(string $type, $amount){
|
||||||
if($type == 'pop' && $amount > 0){
|
if($type == 'pop' && $amount > 0){
|
||||||
return $amount * 0.8;
|
return $amount * 0.8;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace sammo\ActionScenarioEffect;
|
||||||
|
|
||||||
|
use \sammo\iAction;
|
||||||
|
|
||||||
|
class event_UnlimitedDefenceThresholdChange implements iAction
|
||||||
|
{
|
||||||
|
use \sammo\DefaultAction;
|
||||||
|
|
||||||
|
public function onCalcDomestic(string $turnType, string $varType, float $value, $aux = null): float
|
||||||
|
{
|
||||||
|
if ($turnType == 'changeDefenceTrain') {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return $value;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
namespace sammo;
|
||||||
|
|
||||||
|
abstract class BaseStaticEvent {
|
||||||
|
|
||||||
|
function __construct(){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract function run(GeneralLite|General $general, null|GeneralLite|General $destGeneral, array $env, array $params): bool | string;
|
||||||
|
}
|
||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
CityConst,
|
CityConst,
|
||||||
ActionLogger,
|
ActionLogger,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -96,6 +97,7 @@ class che_NPC능동 extends Command\GeneralCommand{
|
|||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
}
|
}
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -12,8 +12,7 @@ use function sammo\tryUniqueItemLottery;
|
|||||||
|
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\CityConst;
|
use sammo\CityConst;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
|
|
||||||
class che_강행 extends Command\GeneralCommand
|
class che_강행 extends Command\GeneralCommand
|
||||||
{
|
{
|
||||||
@@ -158,8 +157,8 @@ class che_강행 extends Command\GeneralCommand
|
|||||||
$general->increaseVar('leadership_exp', 1);
|
$general->increaseVar('leadership_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
|
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -15,6 +16,7 @@ use \sammo\Constraint\Constraint;
|
|||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\CityConst;
|
use sammo\CityConst;
|
||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
|
use sammo\Enums\PenaltyKey;
|
||||||
|
|
||||||
use function sammo\refreshNationStaticInfo;
|
use function sammo\refreshNationStaticInfo;
|
||||||
use function sammo\getAllNationStaticInfo;
|
use function sammo\getAllNationStaticInfo;
|
||||||
@@ -44,6 +46,7 @@ class che_거병 extends Command\GeneralCommand{
|
|||||||
ConstraintHelper::BeNeutral(),
|
ConstraintHelper::BeNeutral(),
|
||||||
ConstraintHelper::BeOpeningPart($relYear+1),
|
ConstraintHelper::BeOpeningPart($relYear+1),
|
||||||
ConstraintHelper::AllowJoinAction(),
|
ConstraintHelper::AllowJoinAction(),
|
||||||
|
ConstraintHelper::NoPenalty(PenaltyKey::NoFoundNation),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -174,6 +177,7 @@ class che_거병 extends Command\GeneralCommand{
|
|||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
|
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ use function \sammo\getAllNationStaticInfo;
|
|||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
use sammo\Enums\PenaltyKey;
|
use sammo\Enums\PenaltyKey;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
use function sammo\buildNationTypeClass;
|
use function sammo\buildNationTypeClass;
|
||||||
use function sammo\genGenericUniqueRNGFromGeneral;
|
use function sammo\genGenericUniqueRNGFromGeneral;
|
||||||
@@ -202,8 +203,10 @@ class che_건국 extends Command\GeneralCommand
|
|||||||
refreshNationStaticInfo();
|
refreshNationStaticInfo();
|
||||||
|
|
||||||
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
||||||
|
$general->increaseInheritancePoint(InheritanceKey::unifier, 250);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(genGenericUniqueRNGFromGeneral($general, static::$actionName), $general, '건국');
|
tryUniqueItemLottery(genGenericUniqueRNGFromGeneral($general, static::$actionName), $general, '건국');
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -112,6 +113,7 @@ class che_견문 extends Command\GeneralCommand{
|
|||||||
$general->addExperience($exp);
|
$general->addExperience($exp);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
|
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -178,6 +179,7 @@ class che_군량매매 extends Command\GeneralCommand{
|
|||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
|
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -95,6 +96,7 @@ class che_귀환 extends Command\GeneralCommand{
|
|||||||
$general->increaseVar('leadership_exp', 1);
|
$general->increaseVar('leadership_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
|
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|||||||
@@ -6,7 +6,8 @@ use \sammo\{
|
|||||||
General,
|
General,
|
||||||
ActionLogger,
|
ActionLogger,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command, GameConst
|
Command, GameConst,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function sammo\{
|
use function sammo\{
|
||||||
@@ -134,6 +135,7 @@ class che_기술연구 extends che_상업투자{
|
|||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -126,6 +127,7 @@ class che_단련 extends Command\GeneralCommand{
|
|||||||
$general->increaseVar($incStat, 1);
|
$general->increaseVar($incStat, 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ use \sammo\{
|
|||||||
General,
|
General,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command,
|
Command,
|
||||||
ScoutMessage
|
ScoutMessage,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\getAllNationStaticInfo;
|
use function \sammo\getAllNationStaticInfo;
|
||||||
@@ -169,6 +170,7 @@ class che_등용 extends Command\GeneralCommand
|
|||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
|
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ use \sammo\{
|
|||||||
General,
|
General,
|
||||||
GameConst,
|
GameConst,
|
||||||
Command,
|
Command,
|
||||||
|
StaticEventHandler,
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
@@ -207,6 +208,7 @@ class che_등용수락 extends Command\GeneralCommand{
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
$destGeneral->applyDB($db);
|
$destGeneral->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -22,8 +22,7 @@ use \sammo\Constraint\ConstraintHelper;
|
|||||||
use sammo\CityConst;
|
use sammo\CityConst;
|
||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
use sammo\MustNotBeReachedException;
|
use sammo\MustNotBeReachedException;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
|
|
||||||
class che_랜덤임관 extends Command\GeneralCommand
|
class che_랜덤임관 extends Command\GeneralCommand
|
||||||
{
|
{
|
||||||
@@ -281,6 +280,7 @@ class che_랜덤임관 extends Command\GeneralCommand
|
|||||||
$general->addExperience($exp);
|
$general->addExperience($exp);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(genGenericUniqueRNGFromGeneral($general, static::$actionName), $general, '랜덤 임관');
|
tryUniqueItemLottery(genGenericUniqueRNGFromGeneral($general, static::$actionName), $general, '랜덤 임관');
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ use \sammo\{
|
|||||||
GameConst,
|
GameConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
GameUnitConst,
|
GameUnitConst,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -97,6 +98,7 @@ class che_모반시도 extends Command\GeneralCommand{
|
|||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
$lordGeneral->applyDB($db);
|
$lordGeneral->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ use function \sammo\getAllNationStaticInfo;
|
|||||||
|
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
use function sammo\buildNationTypeClass;
|
use function sammo\buildNationTypeClass;
|
||||||
use function sammo\genGenericUniqueRNGFromGeneral;
|
use function sammo\genGenericUniqueRNGFromGeneral;
|
||||||
@@ -216,6 +217,7 @@ class che_무작위건국 extends Command\GeneralCommand
|
|||||||
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(genGenericUniqueRNGFromGeneral($general, static::$actionName), $general, '건국');
|
tryUniqueItemLottery(genGenericUniqueRNGFromGeneral($general, static::$actionName), $general, '건국');
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ use \sammo\{
|
|||||||
GameConst,
|
GameConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
GameUnitConst,
|
GameUnitConst,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\getDomesticExpLevelBonus;
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
@@ -148,6 +149,7 @@ class che_물자조달 extends Command\GeneralCommand{
|
|||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
|
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -124,6 +125,7 @@ class che_방랑 extends Command\GeneralCommand{
|
|||||||
refreshNationStaticInfo();
|
refreshNationStaticInfo();
|
||||||
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -1,13 +1,18 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use \sammo\{
|
use \sammo\{
|
||||||
DB, Util, JosaUtil,
|
DB,
|
||||||
|
Util,
|
||||||
|
JosaUtil,
|
||||||
General,
|
General,
|
||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst,
|
||||||
|
GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\tryUniqueItemLottery;
|
use function \sammo\tryUniqueItemLottery;
|
||||||
@@ -16,15 +21,18 @@ use \sammo\Constraint\Constraint;
|
|||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|
||||||
|
|
||||||
class che_사기진작 extends Command\GeneralCommand{
|
class che_사기진작 extends Command\GeneralCommand
|
||||||
|
{
|
||||||
static protected $actionName = '사기진작';
|
static protected $actionName = '사기진작';
|
||||||
|
|
||||||
protected function argTest():bool{
|
protected function argTest(): bool
|
||||||
|
{
|
||||||
$this->arg = null;
|
$this->arg = null;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function init(){
|
protected function init()
|
||||||
|
{
|
||||||
|
|
||||||
$general = $this->generalObj;
|
$general = $this->generalObj;
|
||||||
|
|
||||||
@@ -33,13 +41,13 @@ class che_사기진작 extends Command\GeneralCommand{
|
|||||||
|
|
||||||
[$reqGold, $reqRice] = $this->getCost();
|
[$reqGold, $reqRice] = $this->getCost();
|
||||||
|
|
||||||
$this->minConditionConstraints=[
|
$this->minConditionConstraints = [
|
||||||
ConstraintHelper::NotBeNeutral(),
|
ConstraintHelper::NotBeNeutral(),
|
||||||
ConstraintHelper::NotWanderingNation(),
|
ConstraintHelper::NotWanderingNation(),
|
||||||
ConstraintHelper::OccupiedCity(),
|
ConstraintHelper::OccupiedCity(),
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->fullConditionConstraints=[
|
$this->fullConditionConstraints = [
|
||||||
ConstraintHelper::NotBeNeutral(),
|
ConstraintHelper::NotBeNeutral(),
|
||||||
ConstraintHelper::NotWanderingNation(),
|
ConstraintHelper::NotWanderingNation(),
|
||||||
ConstraintHelper::OccupiedCity(),
|
ConstraintHelper::OccupiedCity(),
|
||||||
@@ -48,31 +56,35 @@ class che_사기진작 extends Command\GeneralCommand{
|
|||||||
ConstraintHelper::ReqGeneralRice($reqRice),
|
ConstraintHelper::ReqGeneralRice($reqRice),
|
||||||
ConstraintHelper::ReqGeneralAtmosMargin(GameConst::$maxAtmosByCommand),
|
ConstraintHelper::ReqGeneralAtmosMargin(GameConst::$maxAtmosByCommand),
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCommandDetailTitle():string{
|
public function getCommandDetailTitle(): string
|
||||||
|
{
|
||||||
$name = $this->getName();
|
$name = $this->getName();
|
||||||
//[$reqGold, $reqRice] = $this->getCost();
|
//[$reqGold, $reqRice] = $this->getCost();
|
||||||
|
|
||||||
return "{$name}(통솔경험, 자금↓)";
|
return "{$name}(통솔경험, 자금↓)";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCost():array{
|
public function getCost(): array
|
||||||
|
{
|
||||||
$general = $this->generalObj;
|
$general = $this->generalObj;
|
||||||
return [Util::round($general->getVar('crew')/100), 0];
|
return [Util::round($general->getVar('crew') / 100), 0];
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getPreReqTurn():int{
|
public function getPreReqTurn(): int
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getPostReqTurn():int{
|
public function getPostReqTurn(): int
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function run(\Sammo\RandUtil $rng):bool{
|
public function run(\Sammo\RandUtil $rng): bool
|
||||||
if(!$this->hasFullConditionMet()){
|
{
|
||||||
|
if (!$this->hasFullConditionMet()) {
|
||||||
throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도');
|
throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -81,7 +93,11 @@ class che_사기진작 extends Command\GeneralCommand{
|
|||||||
$general = $this->generalObj;
|
$general = $this->generalObj;
|
||||||
$date = $general->getTurnTime($general::TURNTIME_HM);
|
$date = $general->getTurnTime($general::TURNTIME_HM);
|
||||||
|
|
||||||
$score = Util::round($general->getLeadership() * 100 / $general->getVar('crew') * GameConst::$atmosDelta);
|
$score = Util::clamp(
|
||||||
|
Util::round($general->getLeadership() * 100 / $general->getVar('crew') * GameConst::$atmosDelta),
|
||||||
|
0,
|
||||||
|
Util::clamp(GameConst::$maxAtmosByCommand - $general->getVar('atmos'), 0),
|
||||||
|
);
|
||||||
$scoreText = number_format($score, 0);
|
$scoreText = number_format($score, 0);
|
||||||
|
|
||||||
$sideEffect = Util::valueFit(intval($general->getVar('train') * GameConst::$trainSideEffectByAtmosTurn), 0);
|
$sideEffect = Util::valueFit(intval($general->getVar('train') * GameConst::$trainSideEffectByAtmosTurn), 0);
|
||||||
@@ -93,7 +109,7 @@ class che_사기진작 extends Command\GeneralCommand{
|
|||||||
$exp = 100;
|
$exp = 100;
|
||||||
$ded = 70;
|
$ded = 70;
|
||||||
|
|
||||||
$general->increaseVarWithLimit('atmos', $score, 0, GameConst::$maxAtmosByCommand);
|
$general->increaseVar('atmos', $score);
|
||||||
$general->setVar('train', $sideEffect);
|
$general->setVar('train', $sideEffect);
|
||||||
|
|
||||||
$general->addDex($general->getCrewTypeObj(), $score, false);
|
$general->addDex($general->getCrewTypeObj(), $score, false);
|
||||||
@@ -106,11 +122,10 @@ class che_사기진작 extends Command\GeneralCommand{
|
|||||||
$general->increaseVar('leadership_exp', 1);
|
$general->increaseVar('leadership_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ use \sammo\{
|
|||||||
LastTurn,
|
LastTurn,
|
||||||
GameUnitConst,
|
GameUnitConst,
|
||||||
Command,
|
Command,
|
||||||
RandUtil
|
RandUtil,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\getDomesticExpLevelBonus;
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
@@ -218,6 +219,7 @@ class che_상업투자 extends Command\GeneralCommand{
|
|||||||
$general->increaseVar(static::$statKey.'_exp', 1);
|
$general->increaseVar(static::$statKey.'_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -21,6 +21,9 @@ use \sammo\Constraint\Constraint;
|
|||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\GeneralQueryMode;
|
use sammo\Enums\GeneralQueryMode;
|
||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
|
use sammo\Enums\PenaltyKey;
|
||||||
|
use sammo\Json;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_선양 extends Command\GeneralCommand
|
class che_선양 extends Command\GeneralCommand
|
||||||
{
|
{
|
||||||
@@ -110,6 +113,14 @@ class che_선양 extends Command\GeneralCommand
|
|||||||
$date = $general->getTurnTime($general::TURNTIME_HM);
|
$date = $general->getTurnTime($general::TURNTIME_HM);
|
||||||
|
|
||||||
$destGeneral = $this->destGeneralObj;
|
$destGeneral = $this->destGeneralObj;
|
||||||
|
$destGeneralPenaltyList = JSON::decode($destGeneral->getVar('penalty'));
|
||||||
|
$penaltyKeyList = [PenaltyKey::NoChief, PenaltyKey::NoFoundNation, PenaltyKey::NoAmbassador];
|
||||||
|
foreach ($penaltyKeyList as $penaltyKey) {
|
||||||
|
if (key_exists($penaltyKey->value, $destGeneralPenaltyList)) {
|
||||||
|
$general->getLogger()->pushGeneralActionLog("선양할 수 없는 장수입니다.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$generalName = $general->getName();
|
$generalName = $general->getName();
|
||||||
$destGeneralName = $destGeneral->getName();
|
$destGeneralName = $destGeneral->getName();
|
||||||
@@ -138,6 +149,7 @@ class che_선양 extends Command\GeneralCommand
|
|||||||
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
$destGeneral->applyDB($db);
|
$destGeneral->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -80,6 +81,7 @@ class che_소집해제 extends Command\GeneralCommand{
|
|||||||
$general->addDedication($ded);
|
$general->addDedication($ded);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -13,8 +13,7 @@ use function sammo\getDexLevelList;
|
|||||||
use function \sammo\tryUniqueItemLottery;
|
use function \sammo\tryUniqueItemLottery;
|
||||||
|
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
|
|
||||||
class che_숙련전환 extends Command\GeneralCommand
|
class che_숙련전환 extends Command\GeneralCommand
|
||||||
{
|
{
|
||||||
@@ -179,6 +178,7 @@ class che_숙련전환 extends Command\GeneralCommand
|
|||||||
$general->increaseVar('leadership_exp', 2);
|
$general->increaseVar('leadership_exp', 2);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -69,6 +70,7 @@ class che_요양 extends Command\GeneralCommand{
|
|||||||
$general->addDedication($ded);
|
$general->addDedication($ded);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -4,7 +4,8 @@ namespace sammo\Command\General;
|
|||||||
use \sammo\{
|
use \sammo\{
|
||||||
DB,
|
DB,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
@@ -75,6 +76,7 @@ class che_은퇴 extends Command\GeneralCommand{
|
|||||||
$logger->pushGeneralActionLog("은퇴하였습니다. <1>$date</>");
|
$logger->pushGeneralActionLog("은퇴하였습니다. <1>$date</>");
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -12,8 +12,7 @@ use function sammo\tryUniqueItemLottery;
|
|||||||
|
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\CityConst;
|
use sammo\CityConst;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
|
|
||||||
class che_이동 extends Command\GeneralCommand
|
class che_이동 extends Command\GeneralCommand
|
||||||
{
|
{
|
||||||
@@ -164,6 +163,7 @@ class che_이동 extends Command\GeneralCommand
|
|||||||
$general->increaseVar('leadership_exp', 1);
|
$general->increaseVar('leadership_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
|
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ use function \sammo\pickGeneralFromPool;
|
|||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_인재탐색 extends Command\GeneralCommand
|
class che_인재탐색 extends Command\GeneralCommand
|
||||||
{
|
{
|
||||||
@@ -218,6 +219,7 @@ class che_인재탐색 extends Command\GeneralCommand
|
|||||||
$general->increaseVar($incStat, 3);
|
$general->increaseVar($incStat, 3);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ use \sammo\{
|
|||||||
GameConst,
|
GameConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command,
|
Command,
|
||||||
KVStorage
|
KVStorage,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\tryUniqueItemLottery;
|
use function \sammo\tryUniqueItemLottery;
|
||||||
@@ -175,6 +176,7 @@ class che_임관 extends Command\GeneralCommand
|
|||||||
$general->addExperience($exp);
|
$general->addExperience($exp);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,8 @@ use \sammo\{
|
|||||||
GameUnitConst,
|
GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command,
|
Command,
|
||||||
KVStorage
|
KVStorage,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\buildItemClass;
|
use function \sammo\buildItemClass;
|
||||||
@@ -196,6 +197,7 @@ class che_장비매매 extends Command\GeneralCommand
|
|||||||
$general->addExperience($exp);
|
$general->addExperience($exp);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ use \sammo\{
|
|||||||
LastTurn,
|
LastTurn,
|
||||||
Command,
|
Command,
|
||||||
Json,
|
Json,
|
||||||
KVStorage
|
KVStorage,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function sammo\getAllNationStaticInfo;
|
use function sammo\getAllNationStaticInfo;
|
||||||
@@ -170,6 +171,7 @@ class che_장수대상임관 extends Command\GeneralCommand{
|
|||||||
$general->addExperience($exp);
|
$general->addExperience($exp);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ use \sammo\{
|
|||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command,
|
Command,
|
||||||
MustNotBeReachedException
|
MustNotBeReachedException,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\tryUniqueItemLottery;
|
use function \sammo\tryUniqueItemLottery;
|
||||||
@@ -121,6 +122,7 @@ class che_전투태세 extends Command\GeneralCommand{
|
|||||||
$general->increaseVar('leadership_exp', 3);
|
$general->increaseVar('leadership_exp', 3);
|
||||||
$this->setResultTurn($turnResult);
|
$this->setResultTurn($turnResult);
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\tryUniqueItemLottery;
|
use function \sammo\tryUniqueItemLottery;
|
||||||
@@ -103,6 +104,7 @@ class che_전투특기초기화 extends Command\GeneralCommand{
|
|||||||
$logger->pushGeneralActionLog("새로운 {$specialName}를 가질 준비가 되었습니다. <1>$date</>");
|
$logger->pushGeneralActionLog("새로운 {$specialName}를 가질 준비가 되었습니다. <1>$date</>");
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
@@ -98,6 +99,7 @@ class che_접경귀환 extends Command\GeneralCommand{
|
|||||||
//TODO: InstantAction일때에만 설정하지 않는게 나은데..
|
//TODO: InstantAction일때에만 설정하지 않는게 나은데..
|
||||||
//$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
//$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ use \sammo\{
|
|||||||
LastTurn,
|
LastTurn,
|
||||||
GameUnitConst,
|
GameUnitConst,
|
||||||
Command,
|
Command,
|
||||||
RandUtil
|
RandUtil,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\getDomesticExpLevelBonus;
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
@@ -188,6 +189,7 @@ class che_정착장려 extends Command\GeneralCommand{
|
|||||||
$general->increaseVar(static::$statKey.'_exp', 1);
|
$general->increaseVar(static::$statKey.'_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ use \sammo\{
|
|||||||
LastTurn,
|
LastTurn,
|
||||||
GameUnitConst,
|
GameUnitConst,
|
||||||
Command,
|
Command,
|
||||||
RandUtil
|
RandUtil,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\getDomesticExpLevelBonus;
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
@@ -188,6 +189,7 @@ class che_주민선정 extends Command\GeneralCommand{
|
|||||||
$general->increaseVar(static::$statKey.'_exp', 1);
|
$general->increaseVar(static::$statKey.'_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ use \sammo\Command;
|
|||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\GeneralQueryMode;
|
use sammo\Enums\GeneralQueryMode;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
use function sammo\tryUniqueItemLottery;
|
use function sammo\tryUniqueItemLottery;
|
||||||
|
|
||||||
@@ -170,6 +171,7 @@ class che_증여 extends Command\GeneralCommand
|
|||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
|
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\tryUniqueItemLottery;
|
use function \sammo\tryUniqueItemLottery;
|
||||||
@@ -103,6 +104,7 @@ class che_집합 extends Command\GeneralCommand{
|
|||||||
$general->increaseVar('leadership_exp', 1);
|
$general->increaseVar('leadership_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ use function sammo\getTechLevel;
|
|||||||
|
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\MustNotBeReachedException;
|
use sammo\MustNotBeReachedException;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_징병 extends Command\GeneralCommand
|
class che_징병 extends Command\GeneralCommand
|
||||||
{
|
{
|
||||||
@@ -226,6 +227,7 @@ class che_징병 extends Command\GeneralCommand
|
|||||||
$general->increaseVar('leadership_exp', 1);
|
$general->increaseVar('leadership_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->setAuxVar('armType', $reqCrewType->armType);
|
$general->setAuxVar('armType', $reqCrewType->armType);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
@@ -254,8 +256,11 @@ class che_징병 extends Command\GeneralCommand
|
|||||||
$ownCities = [];
|
$ownCities = [];
|
||||||
$ownRegions = [];
|
$ownRegions = [];
|
||||||
|
|
||||||
foreach (DB::db()->query('SELECT city, region from city where nation = %i', $general->getNationID()) as $city) {
|
foreach (DB::db()->query('SELECT city, region, secu, level from city where nation = %i', $general->getNationID()) as $city) {
|
||||||
$ownCities[$city['city']] = 1;
|
$ownCities[$city['city']] = [
|
||||||
|
'secu' => $city['secu'],
|
||||||
|
'level' => $city['level'],
|
||||||
|
];
|
||||||
$ownRegions[$city['region']] = 1;
|
$ownRegions[$city['region']] = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -271,23 +276,19 @@ class che_징병 extends Command\GeneralCommand
|
|||||||
'values' => [],
|
'values' => [],
|
||||||
];
|
];
|
||||||
|
|
||||||
$crewTypes = [];
|
|
||||||
foreach (GameUnitConst::byType($armType) as $unit) {
|
foreach (GameUnitConst::byType($armType) as $unit) {
|
||||||
$crewObj = new \stdClass;
|
$crewObj = new \stdClass;
|
||||||
|
|
||||||
$crewObj->id = $unit->id;
|
$crewObj->id = $unit->id;
|
||||||
$crewObj->reqTech = $unit->reqTech;
|
/** @var ?\sammo\GameUnitConstraints\ReqTech */
|
||||||
$crewObj->reqYear = $unit->reqYear;
|
$reqTechObj = $unit->reqConstraints['reqTech'] ?? null;
|
||||||
|
$crewObj->reqTech = $reqTechObj ? $reqTechObj->reqTech : 0;
|
||||||
|
|
||||||
/*
|
/** @var ?\sammo\GameUnitConstraint\ReqMinRelYear */
|
||||||
if ($unit->reqTech == 0) {
|
$reqMinRelYearObj = $unit->reqConstraints['reqMinRelYear'] ?? null;
|
||||||
$crewObj->bgcolor = 'green';
|
$crewObj->reqYear = $reqMinRelYearObj ? $reqMinRelYearObj->reqMinRelYear : 0;
|
||||||
} else {
|
|
||||||
$crewObj->bgcolor = 'limegreen';
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
$crewObj->notAvailable = !$unit->isValid($ownCities, $ownRegions, $relativeYear, $tech);
|
$crewObj->notAvailable = !$unit->isValid($general, $ownCities, $ownRegions, $relativeYear, $tech);
|
||||||
|
|
||||||
$crewObj->baseRice = $general->onCalcDomestic($this->getName(), 'rice', $unit->riceWithTech($tech), ['armType' => $unit->armType]);
|
$crewObj->baseRice = $general->onCalcDomestic($this->getName(), 'rice', $unit->riceWithTech($tech), ['armType' => $unit->armType]);
|
||||||
$crewObj->baseCost = $general->onCalcDomestic($this->getName(), 'cost', $unit->costWithTech($tech), ['armType' => $unit->armType]);
|
$crewObj->baseCost = $general->onCalcDomestic($this->getName(), 'cost', $unit->costWithTech($tech), ['armType' => $unit->armType]);
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ use function \sammo\searchDistance;
|
|||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\CityConst;
|
use sammo\CityConst;
|
||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_첩보 extends Command\GeneralCommand
|
class che_첩보 extends Command\GeneralCommand
|
||||||
{
|
{
|
||||||
@@ -212,6 +213,7 @@ class che_첩보 extends Command\GeneralCommand
|
|||||||
$general->addDedication($ded);
|
$general->addDedication($ded);
|
||||||
$general->increaseVar('leadership_exp', 1);
|
$general->increaseVar('leadership_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ use sammo\CityConst;
|
|||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
use sammo\LiteHashDRBG;
|
use sammo\LiteHashDRBG;
|
||||||
use sammo\RandUtil;
|
use sammo\RandUtil;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
use sammo\UniqueConst;
|
use sammo\UniqueConst;
|
||||||
|
|
||||||
class che_출병 extends Command\GeneralCommand
|
class che_출병 extends Command\GeneralCommand
|
||||||
@@ -253,6 +254,7 @@ class che_출병 extends Command\GeneralCommand
|
|||||||
|
|
||||||
processWar($warRngSeed, $general, $this->nation, $this->destCity);
|
processWar($warRngSeed, $general, $this->nation, $this->destCity);
|
||||||
|
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -122,6 +123,7 @@ class che_하야 extends Command\GeneralCommand{
|
|||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ use \sammo\{
|
|||||||
Command,
|
Command,
|
||||||
Json,
|
Json,
|
||||||
KVStorage,
|
KVStorage,
|
||||||
|
StaticEventHandler,
|
||||||
TurnExecutionHelper
|
TurnExecutionHelper
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -109,6 +110,7 @@ class che_해산 extends Command\GeneralCommand{
|
|||||||
foreach($nationGenerals as $oldGeneral){
|
foreach($nationGenerals as $oldGeneral){
|
||||||
$oldGeneral->applyDB($db);
|
$oldGeneral->applyDB($db);
|
||||||
}
|
}
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
// 이벤트 핸들러 동작
|
// 이벤트 핸들러 동작
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ use \sammo\Command;
|
|||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
use function sammo\tryUniqueItemLottery;
|
use function sammo\tryUniqueItemLottery;
|
||||||
|
|
||||||
@@ -146,6 +147,7 @@ class che_헌납 extends Command\GeneralCommand
|
|||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ use sammo\CityConst;
|
|||||||
use sammo\Enums\GeneralQueryMode;
|
use sammo\Enums\GeneralQueryMode;
|
||||||
use sammo\Enums\RankColumn;
|
use sammo\Enums\RankColumn;
|
||||||
use sammo\RandUtil;
|
use sammo\RandUtil;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_화계 extends Command\GeneralCommand
|
class che_화계 extends Command\GeneralCommand
|
||||||
{
|
{
|
||||||
@@ -74,12 +75,15 @@ class che_화계 extends Command\GeneralCommand
|
|||||||
|
|
||||||
$maxGenScore = 0;
|
$maxGenScore = 0;
|
||||||
$probCorrection = 0;
|
$probCorrection = 0;
|
||||||
|
$affectGeneralCount = 0;
|
||||||
foreach ($destCityGeneralList as $destGeneral) {
|
foreach ($destCityGeneralList as $destGeneral) {
|
||||||
/** @var General $destGeneral */
|
/** @var General $destGeneral */
|
||||||
if ($destGeneral->getNationID() != $destNationID) {
|
if ($destGeneral->getNationID() != $destNationID) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$affectGeneralCount++;
|
||||||
|
|
||||||
if ($statType === 'leadership') {
|
if ($statType === 'leadership') {
|
||||||
$genScore = $destGeneral->getLeadership();
|
$genScore = $destGeneral->getLeadership();
|
||||||
} else if ($statType === 'strength') {
|
} else if ($statType === 'strength') {
|
||||||
@@ -95,7 +99,7 @@ class che_화계 extends Command\GeneralCommand
|
|||||||
|
|
||||||
$prob = $maxGenScore / GameConst::$sabotageProbCoefByStat;
|
$prob = $maxGenScore / GameConst::$sabotageProbCoefByStat;
|
||||||
$prob += $probCorrection;
|
$prob += $probCorrection;
|
||||||
$prob += (log(count($destCityGeneralList) + 1, 2) - 1.25) * GameConst::$sabotageDefenceCoefByGeneralCnt;
|
$prob += (log($affectGeneralCount + 1, 2) - 1.25) * GameConst::$sabotageDefenceCoefByGeneralCnt;
|
||||||
|
|
||||||
$prob += $destCity['secu'] / $destCity['secu_max'] / 5; //최대 20%p
|
$prob += $destCity['secu'] / $destCity['secu_max'] / 5; //최대 20%p
|
||||||
$prob += $destCity['supply'] ? 0.1 : 0;
|
$prob += $destCity['supply'] ? 0.1 : 0;
|
||||||
@@ -329,6 +333,7 @@ class che_화계 extends Command\GeneralCommand
|
|||||||
$general->increaseVar($statType . '_exp', 1);
|
$general->increaseVar($statType . '_exp', 1);
|
||||||
$general->increaseRankVar(RankColumn::firenum, 1);
|
$general->increaseRankVar(RankColumn::firenum, 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,18 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use \sammo\{
|
use \sammo\{
|
||||||
DB, Util, JosaUtil,
|
DB,
|
||||||
|
Util,
|
||||||
|
JosaUtil,
|
||||||
General,
|
General,
|
||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst,
|
||||||
|
GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\tryUniqueItemLottery;
|
use function \sammo\tryUniqueItemLottery;
|
||||||
@@ -17,66 +22,73 @@ use \sammo\Constraint\ConstraintHelper;
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
class che_훈련 extends Command\GeneralCommand{
|
class che_훈련 extends Command\GeneralCommand
|
||||||
|
{
|
||||||
static protected $actionName = '훈련';
|
static protected $actionName = '훈련';
|
||||||
|
|
||||||
protected function argTest():bool{
|
protected function argTest(): bool
|
||||||
|
{
|
||||||
$this->arg = null;
|
$this->arg = null;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function init(){
|
protected function init()
|
||||||
|
{
|
||||||
|
|
||||||
$general = $this->generalObj;
|
$general = $this->generalObj;
|
||||||
|
|
||||||
$this->setCity();
|
$this->setCity();
|
||||||
$this->setNation();
|
$this->setNation();
|
||||||
|
|
||||||
$this->minConditionConstraints=[
|
$this->minConditionConstraints = [
|
||||||
ConstraintHelper::NotBeNeutral(),
|
ConstraintHelper::NotBeNeutral(),
|
||||||
ConstraintHelper::NotWanderingNation(),
|
ConstraintHelper::NotWanderingNation(),
|
||||||
ConstraintHelper::OccupiedCity(),
|
ConstraintHelper::OccupiedCity(),
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->fullConditionConstraints=[
|
$this->fullConditionConstraints = [
|
||||||
ConstraintHelper::NotBeNeutral(),
|
ConstraintHelper::NotBeNeutral(),
|
||||||
ConstraintHelper::NotWanderingNation(),
|
ConstraintHelper::NotWanderingNation(),
|
||||||
ConstraintHelper::OccupiedCity(),
|
ConstraintHelper::OccupiedCity(),
|
||||||
ConstraintHelper::ReqGeneralCrew(),
|
ConstraintHelper::ReqGeneralCrew(),
|
||||||
ConstraintHelper::ReqGeneralTrainMargin(GameConst::$maxTrainByCommand),
|
ConstraintHelper::ReqGeneralTrainMargin(GameConst::$maxTrainByCommand),
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCommandDetailTitle():string{
|
public function getCommandDetailTitle(): string
|
||||||
|
{
|
||||||
$name = $this->getName();
|
$name = $this->getName();
|
||||||
[$reqGold, $reqRice] = $this->getCost();
|
[$reqGold, $reqRice] = $this->getCost();
|
||||||
|
|
||||||
$title = "{$name}(통솔경험";
|
$title = "{$name}(통솔경험";
|
||||||
if($reqGold > 0){
|
if ($reqGold > 0) {
|
||||||
$title .= ", 자금{$reqGold}";
|
$title .= ", 자금{$reqGold}";
|
||||||
}
|
}
|
||||||
if($reqRice > 0){
|
if ($reqRice > 0) {
|
||||||
$title .= ", 군량{$reqRice}";
|
$title .= ", 군량{$reqRice}";
|
||||||
}
|
}
|
||||||
$title .= ')';
|
$title .= ')';
|
||||||
return $title;
|
return $title;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCost():array{
|
public function getCost(): array
|
||||||
|
{
|
||||||
return [0, 0];
|
return [0, 0];
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getPreReqTurn():int{
|
public function getPreReqTurn(): int
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getPostReqTurn():int{
|
public function getPostReqTurn(): int
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function run(\Sammo\RandUtil $rng):bool{
|
public function run(\Sammo\RandUtil $rng): bool
|
||||||
if(!$this->hasFullConditionMet()){
|
{
|
||||||
|
if (!$this->hasFullConditionMet()) {
|
||||||
throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도');
|
throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -85,7 +97,11 @@ class che_훈련 extends Command\GeneralCommand{
|
|||||||
$general = $this->generalObj;
|
$general = $this->generalObj;
|
||||||
$date = $general->getTurnTime($general::TURNTIME_HM);
|
$date = $general->getTurnTime($general::TURNTIME_HM);
|
||||||
|
|
||||||
$score = Util::round($general->getLeadership() * 100 / $general->getVar('crew') * GameConst::$trainDelta);
|
$score = Util::clamp(
|
||||||
|
Util::round($general->getLeadership() * 100 / $general->getVar('crew') * GameConst::$trainDelta),
|
||||||
|
0,
|
||||||
|
Util::clamp(GameConst::$maxTrainByCommand - $general->getVar('train'), 0)
|
||||||
|
);
|
||||||
$scoreText = number_format($score, 0);
|
$scoreText = number_format($score, 0);
|
||||||
|
|
||||||
$sideEffect = Util::valueFit(intval($general->getVar('atmos') * GameConst::$atmosSideEffectByTraining), 0);
|
$sideEffect = Util::valueFit(intval($general->getVar('atmos') * GameConst::$atmosSideEffectByTraining), 0);
|
||||||
@@ -97,7 +113,7 @@ class che_훈련 extends Command\GeneralCommand{
|
|||||||
$exp = 100;
|
$exp = 100;
|
||||||
$ded = 70;
|
$ded = 70;
|
||||||
|
|
||||||
$general->increaseVarWithLimit('train', $score, 0, GameConst::$maxTrainByCommand);
|
$general->increaseVar('train', $score);
|
||||||
$general->setVar('atmos', $sideEffect);
|
$general->setVar('atmos', $sideEffect);
|
||||||
|
|
||||||
$general->addDex($general->getCrewTypeObj(), $score, false);
|
$general->addDex($general->getCrewTypeObj(), $score, false);
|
||||||
@@ -107,11 +123,10 @@ class che_훈련 extends Command\GeneralCommand{
|
|||||||
$general->increaseVar('leadership_exp', 1);
|
$general->increaseVar('leadership_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ use function \sammo\getAllNationStaticInfo;
|
|||||||
|
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
use function sammo\buildNationTypeClass;
|
use function sammo\buildNationTypeClass;
|
||||||
use function sammo\genGenericUniqueRNGFromGeneral;
|
use function sammo\genGenericUniqueRNGFromGeneral;
|
||||||
@@ -201,6 +202,7 @@ class cr_건국 extends Command\GeneralCommand
|
|||||||
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(genGenericUniqueRNGFromGeneral($general, static::$actionName), $general, '건국');
|
tryUniqueItemLottery(genGenericUniqueRNGFromGeneral($general, static::$actionName), $general, '건국');
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ use \sammo\{
|
|||||||
ActionLogger,
|
ActionLogger,
|
||||||
GameConst, GameUnitConst,
|
GameConst, GameUnitConst,
|
||||||
LastTurn,
|
LastTurn,
|
||||||
Command
|
Command,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\tryUniqueItemLottery;
|
use function \sammo\tryUniqueItemLottery;
|
||||||
@@ -105,6 +106,7 @@ class cr_맹훈련 extends Command\GeneralCommand{
|
|||||||
$general->increaseVar('leadership_exp', 1);
|
$general->increaseVar('leadership_exp', 1);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->checkStatChange();
|
$general->checkStatChange();
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
tryUniqueItemLottery(\sammo\genGenericUniqueRNGFromGeneral($general, static::$actionName), $general);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ use \sammo\Util;
|
|||||||
use \sammo\JosaUtil;
|
use \sammo\JosaUtil;
|
||||||
use \sammo\LastTurn;
|
use \sammo\LastTurn;
|
||||||
use \sammo\DB;
|
use \sammo\DB;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class 휴식 extends Command\GeneralCommand{
|
class 휴식 extends Command\GeneralCommand{
|
||||||
static protected $actionName = '휴식';
|
static protected $actionName = '휴식';
|
||||||
@@ -39,6 +40,7 @@ class 휴식 extends Command\GeneralCommand{
|
|||||||
$logger->pushGeneralActionLog("아무것도 실행하지 않았습니다. <1>$date</>");
|
$logger->pushGeneralActionLog("아무것도 실행하지 않았습니다. <1>$date</>");
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn());
|
$this->setResultTurn(new LastTurn());
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB(DB::db());
|
$general->applyDB(DB::db());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,8 @@ use \sammo\{
|
|||||||
MessageTarget,
|
MessageTarget,
|
||||||
Message,
|
Message,
|
||||||
CityConst,
|
CityConst,
|
||||||
CityHelper
|
CityHelper,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -201,6 +202,7 @@ class che_감축 extends Command\NationCommand{
|
|||||||
$logger->pushGlobalHistoryLog("<M><b>【감축】</b></><D><b>{$nationName}</b></>{$josaYiNation} <G><b>{$destCityName}</b></>{$josaUl} <M>감축</>하였습니다.");
|
$logger->pushGlobalHistoryLog("<M><b>【감축】</b></><D><b>{$nationName}</b></>{$josaYiNation} <G><b>{$destCityName}</b></>{$josaUl} <M>감축</>하였습니다.");
|
||||||
|
|
||||||
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ use function \sammo\GetNationColors;
|
|||||||
|
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_국기변경 extends Command\NationCommand
|
class che_국기변경 extends Command\NationCommand
|
||||||
{
|
{
|
||||||
@@ -136,6 +137,7 @@ class che_국기변경 extends Command\NationCommand
|
|||||||
$logger->pushGlobalHistoryLog("<S><b>【국기변경】</b></><D><b>{$nationName}</b></>{$josaYiNation} <span style='color:{$color};'><b>국기</b></span>를 변경하였습니다.");
|
$logger->pushGlobalHistoryLog("<S><b>【국기변경】</b></><D><b>{$nationName}</b></>{$josaYiNation} <span style='color:{$color};'><b>국기</b></span>를 변경하였습니다.");
|
||||||
|
|
||||||
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ use \sammo\Constraint\Constraint;
|
|||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
use sammo\Event\Action;
|
use sammo\Event\Action;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_국호변경 extends Command\NationCommand
|
class che_국호변경 extends Command\NationCommand
|
||||||
{
|
{
|
||||||
@@ -154,6 +155,7 @@ class che_국호변경 extends Command\NationCommand
|
|||||||
$logger->pushGlobalHistoryLog("<S><b>【국호변경】</b></><D><b>{$nationName}</b></>{$josaYiNation} 국호를 <D><b>{$newNationName}</b></>{$josaRo} 변경합니다.");
|
$logger->pushGlobalHistoryLog("<S><b>【국호변경】</b></><D><b>{$nationName}</b></>{$josaYiNation} 국호를 <D><b>{$newNationName}</b></>{$josaRo} 변경합니다.");
|
||||||
|
|
||||||
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
$general->increaseInheritancePoint(InheritanceKey::active_action, 1);
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ use function \sammo\getNationStaticInfo;
|
|||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_급습 extends Command\NationCommand
|
class che_급습 extends Command\NationCommand
|
||||||
{
|
{
|
||||||
@@ -191,6 +192,7 @@ class che_급습 extends Command\NationCommand
|
|||||||
$db->update('diplomacy', [
|
$db->update('diplomacy', [
|
||||||
'term' => $db->sqleval('`term` - %i', 3),
|
'term' => $db->sqleval('`term` - %i', 3),
|
||||||
], '(me = %i AND you = %i) OR (you = %i AND me = %i)', $nationID, $destNationID, $nationID, $destNationID);
|
], '(me = %i AND you = %i) OR (you = %i AND me = %i)', $nationID, $destNationID, $nationID, $destNationID);
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ use \sammo\Constraint\Constraint;
|
|||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\GeneralQueryMode;
|
use sammo\Enums\GeneralQueryMode;
|
||||||
use sammo\Enums\MessageType;
|
use sammo\Enums\MessageType;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_몰수 extends Command\NationCommand
|
class che_몰수 extends Command\NationCommand
|
||||||
{
|
{
|
||||||
@@ -212,6 +213,7 @@ class che_몰수 extends Command\NationCommand
|
|||||||
$logger->pushGeneralActionLog("<Y>{$destGeneral->getName()}</>에게서 {$resName} <C>$amountText</>{$josaUl} 몰수했습니다. <1>$date</>");
|
$logger->pushGeneralActionLog("<Y>{$destGeneral->getName()}</>에게서 {$resName} <C>$amountText</>{$josaUl} 몰수했습니다. <1>$date</>");
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
$destGeneral->applyDB($db);
|
$destGeneral->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ use \sammo\Constraint\ConstraintHelper;
|
|||||||
use sammo\Enums\InheritanceKey;
|
use sammo\Enums\InheritanceKey;
|
||||||
use sammo\Event\Action;
|
use sammo\Event\Action;
|
||||||
use sammo\Json;
|
use sammo\Json;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_무작위수도이전 extends Command\NationCommand
|
class che_무작위수도이전 extends Command\NationCommand
|
||||||
{
|
{
|
||||||
@@ -159,6 +160,7 @@ class che_무작위수도이전 extends Command\NationCommand
|
|||||||
$logger->pushGlobalHistoryLog("<S><b>【무작위 수도 이전】</b></><D><b>{$nationName}</b></>{$josaYiNation} <G><b>{$destCityName}</b></>{$josaRo} <M>수도 이전</>하였습니다.");
|
$logger->pushGlobalHistoryLog("<S><b>【무작위 수도 이전】</b></><D><b>{$nationName}</b></>{$josaYiNation} <G><b>{$destCityName}</b></>{$josaRo} <M>수도 이전</>하였습니다.");
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ use \sammo\{
|
|||||||
Command,
|
Command,
|
||||||
Json,
|
Json,
|
||||||
KVStorage,
|
KVStorage,
|
||||||
|
StaticEventHandler,
|
||||||
StringUtil
|
StringUtil
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -255,6 +256,7 @@ class che_물자원조 extends Command\NationCommand
|
|||||||
$general->addExperience(5);
|
$general->addExperience(5);
|
||||||
$general->addDedication(5);
|
$general->addDedication(5);
|
||||||
|
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ use \sammo\{
|
|||||||
GameUnitConst,
|
GameUnitConst,
|
||||||
CityConst,
|
CityConst,
|
||||||
Command,
|
Command,
|
||||||
|
StaticEventHandler,
|
||||||
TimeUtil
|
TimeUtil
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -167,6 +168,7 @@ class che_발령 extends Command\NationCommand
|
|||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
$destGeneral->applyDB($db);
|
$destGeneral->applyDB($db);
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,8 @@ use \sammo\{
|
|||||||
Command,
|
Command,
|
||||||
MessageTarget,
|
MessageTarget,
|
||||||
Message,
|
Message,
|
||||||
CityConst
|
CityConst,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
@@ -164,6 +165,7 @@ class che_백성동원 extends Command\NationCommand
|
|||||||
], 'nation=%i', $nationID);
|
], 'nation=%i', $nationID);
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -0,0 +1,158 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
|
use \sammo\DB;
|
||||||
|
use \sammo\Util;
|
||||||
|
use \sammo\JosaUtil;
|
||||||
|
use \sammo\General;
|
||||||
|
use \sammo\DummyGeneral;
|
||||||
|
use \sammo\ActionLogger;
|
||||||
|
use \sammo\GameConst;
|
||||||
|
use \sammo\LastTurn;
|
||||||
|
use \sammo\GameUnitConst;
|
||||||
|
use \sammo\Command;
|
||||||
|
|
||||||
|
use \sammo\Constraint\Constraint;
|
||||||
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
use sammo\Enums\GeneralQueryMode;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
|
class che_부대탈퇴지시 extends Command\NationCommand
|
||||||
|
{
|
||||||
|
static protected $actionName = '부대 탈퇴 지시';
|
||||||
|
static public $reqArg = true;
|
||||||
|
|
||||||
|
protected function argTest(): bool
|
||||||
|
{
|
||||||
|
if ($this->arg === null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!key_exists('destGeneralID', $this->arg)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$destGeneralID = $this->arg['destGeneralID'];
|
||||||
|
if (!is_int($destGeneralID)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if ($destGeneralID <= 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$this->arg = [
|
||||||
|
'destGeneralID' => $destGeneralID
|
||||||
|
];
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function init()
|
||||||
|
{
|
||||||
|
$this->setCity();
|
||||||
|
$this->setNation();
|
||||||
|
|
||||||
|
$this->minConditionConstraints = [
|
||||||
|
ConstraintHelper::NotBeNeutral(),
|
||||||
|
ConstraintHelper::BeChief(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getBrief(): string
|
||||||
|
{
|
||||||
|
$commandName = $this->getName();
|
||||||
|
$destGeneralName = $this->destGeneralObj->getName();
|
||||||
|
return "【{$destGeneralName}】{$commandName}";
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function initWithArg()
|
||||||
|
{
|
||||||
|
$destGeneral = General::createObjFromDB($this->arg['destGeneralID']);
|
||||||
|
$this->setDestGeneral($destGeneral);
|
||||||
|
|
||||||
|
if($this->arg['destGeneralID'] == $this->getGeneral()->getID()){
|
||||||
|
$this->fullConditionConstraints=[
|
||||||
|
ConstraintHelper::AlwaysFail('본인입니다')
|
||||||
|
];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->fullConditionConstraints = [
|
||||||
|
ConstraintHelper::NotBeNeutral(),
|
||||||
|
ConstraintHelper::BeChief(),
|
||||||
|
ConstraintHelper::ExistsDestGeneral(),
|
||||||
|
ConstraintHelper::FriendlyDestGeneral()
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCost(): array
|
||||||
|
{
|
||||||
|
return [0, 0];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPreReqTurn(): int
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPostReqTurn(): int
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function run(\Sammo\RandUtil $rng): bool
|
||||||
|
{
|
||||||
|
if (!$this->hasFullConditionMet()) {
|
||||||
|
throw new \RuntimeException('불가능한 커맨드를 강제로 실행 시도');
|
||||||
|
}
|
||||||
|
|
||||||
|
$db = DB::db();
|
||||||
|
|
||||||
|
$general = $this->generalObj;
|
||||||
|
$generalName = $general->getName();
|
||||||
|
|
||||||
|
$destGeneral = $this->destGeneralObj;
|
||||||
|
$destGeneralName = $destGeneral->getName();
|
||||||
|
$logger = $this->getLogger();
|
||||||
|
|
||||||
|
$troopID = $destGeneral->getVar('troop');
|
||||||
|
if($troopID == 0){
|
||||||
|
$josaUn = JosaUtil::pick($destGeneralName, '은');
|
||||||
|
$logger->pushGeneralActionLog("<Y>{$destGeneralName}</>{$josaUn} 부대원이 아닙니다.");
|
||||||
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if($troopID == $destGeneral->getID()){
|
||||||
|
$josaUn = JosaUtil::pick($destGeneralName, '은');
|
||||||
|
$logger->pushGeneralActionLog("<Y>{$destGeneralName}</>{$josaUn} 부대장입니다.");
|
||||||
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
$destGeneral->setVar('troop', 0);
|
||||||
|
|
||||||
|
$logger->pushGeneralActionLog("<Y>{$destGeneralName}</>에게 부대 탈퇴를 지시했습니다.");
|
||||||
|
$destGeneral->getLogger()->pushGeneralActionLog("<Y>{$generalName}</>에게 부대 탈퇴를 지시 받았습니다.");
|
||||||
|
|
||||||
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
|
$general->applyDB($db);
|
||||||
|
$destGeneral->applyDB($db);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function exportJSVars(): array
|
||||||
|
{
|
||||||
|
$db = DB::db();
|
||||||
|
$nationID = $this->getNationID();
|
||||||
|
$troops = Util::convertArrayToDict($db->query('SELECT * FROM troop WHERE nation=%i', $nationID), 'troop_leader');
|
||||||
|
$destRawGenerals = $db->queryAllLists('SELECT no,name,officer_level,npc,gold,rice,leadership,strength,intel,city,crew,train,atmos,troop FROM general WHERE nation = %i ORDER BY npc,binary(name)', $nationID);
|
||||||
|
return [
|
||||||
|
'procRes' => [
|
||||||
|
'troops' => $troops,
|
||||||
|
'generals' => $destRawGenerals,
|
||||||
|
'generalsKey' => ['no', 'name', 'officerLevel', 'npc', 'gold', 'rice', 'leadership', 'strength', 'intel', 'cityID', 'crew', 'train', 'atmos', 'troopID'],
|
||||||
|
'cities' => \sammo\JSOptionsForCities(),
|
||||||
|
]
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -24,6 +24,7 @@ use sammo\Enums\GeneralQueryMode;
|
|||||||
use sammo\Json;
|
use sammo\Json;
|
||||||
use sammo\KVStorage;
|
use sammo\KVStorage;
|
||||||
use sammo\RandUtil;
|
use sammo\RandUtil;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_불가침수락 extends Command\NationCommand
|
class che_불가침수락 extends Command\NationCommand
|
||||||
{
|
{
|
||||||
@@ -224,6 +225,7 @@ class che_불가침수락 extends Command\NationCommand
|
|||||||
$destLogger->pushGeneralActionLog("<D><b>{$nationName}</b></>{$josaWa} <C>$year</>년 <C>{$month}</>월까지 불가침에 성공했습니다.", ActionLogger::PLAIN);
|
$destLogger->pushGeneralActionLog("<D><b>{$nationName}</b></>{$josaWa} <C>$year</>년 <C>{$month}</>월까지 불가침에 성공했습니다.", ActionLogger::PLAIN);
|
||||||
$destLogger->pushGeneralHistoryLog("<D><b>{$nationName}</b></>{$josaWa} {$year}년 {$month}월까지 불가침 성공");
|
$destLogger->pushGeneralHistoryLog("<D><b>{$nationName}</b></>{$josaWa} {$year}년 {$month}월까지 불가침 성공");
|
||||||
|
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
$destLogger->flush();
|
$destLogger->flush();
|
||||||
|
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ use function \sammo\getNationStaticInfo;
|
|||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\MessageType;
|
use sammo\Enums\MessageType;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_불가침제의 extends Command\NationCommand
|
class che_불가침제의 extends Command\NationCommand
|
||||||
{
|
{
|
||||||
@@ -220,6 +221,7 @@ class che_불가침제의 extends Command\NationCommand
|
|||||||
$msg->send();
|
$msg->send();
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
$destLogger->flush();
|
$destLogger->flush();
|
||||||
|
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ use \sammo\Constraint\Constraint;
|
|||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\GeneralQueryMode;
|
use sammo\Enums\GeneralQueryMode;
|
||||||
use sammo\RandUtil;
|
use sammo\RandUtil;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_불가침파기수락 extends Command\NationCommand
|
class che_불가침파기수락 extends Command\NationCommand
|
||||||
{
|
{
|
||||||
@@ -173,6 +174,7 @@ class che_불가침파기수락 extends Command\NationCommand
|
|||||||
$destLogger->pushGeneralActionLog("<D><b>{$nationName}</b></>{$josaWa}의 불가침 파기에 성공했습니다.", ActionLogger::PLAIN);
|
$destLogger->pushGeneralActionLog("<D><b>{$nationName}</b></>{$josaWa}의 불가침 파기에 성공했습니다.", ActionLogger::PLAIN);
|
||||||
$destLogger->pushGeneralHistoryLog("<D><b>{$nationName}</b></>{$josaWa}의 불가침 파기 성공");
|
$destLogger->pushGeneralHistoryLog("<D><b>{$nationName}</b></>{$josaWa}의 불가침 파기 성공");
|
||||||
|
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
$destLogger->flush();
|
$destLogger->flush();
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ use \sammo\{
|
|||||||
MessageTarget,
|
MessageTarget,
|
||||||
DiplomaticMessage,
|
DiplomaticMessage,
|
||||||
Message,
|
Message,
|
||||||
|
StaticEventHandler,
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\getAllNationStaticInfo;
|
use function \sammo\getAllNationStaticInfo;
|
||||||
@@ -166,6 +167,7 @@ class che_불가침파기제의 extends Command\NationCommand{
|
|||||||
$msg->send();
|
$msg->send();
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
$destLogger->flush();
|
$destLogger->flush();
|
||||||
|
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ use function \sammo\GetImageURL;
|
|||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Enums\MessageType;
|
use sammo\Enums\MessageType;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_선전포고 extends Command\NationCommand
|
class che_선전포고 extends Command\NationCommand
|
||||||
{
|
{
|
||||||
@@ -188,6 +189,7 @@ class che_선전포고 extends Command\NationCommand
|
|||||||
$msg->send();
|
$msg->send();
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
$destLogger->flush();
|
$destLogger->flush();
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,8 @@ use \sammo\{
|
|||||||
Command,
|
Command,
|
||||||
MessageTarget,
|
MessageTarget,
|
||||||
Message,
|
Message,
|
||||||
CityConst
|
CityConst,
|
||||||
|
StaticEventHandler
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\getNationStaticInfo;
|
use function \sammo\getNationStaticInfo;
|
||||||
@@ -191,6 +192,7 @@ class che_수몰 extends Command\NationCommand
|
|||||||
], 'nation=%i', $nationID);
|
], 'nation=%i', $nationID);
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
$this->setResultTurn(new LastTurn($this->getName(), $this->arg, 0));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ use \sammo\KVStorage;
|
|||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
use sammo\StaticEventHandler;
|
||||||
|
|
||||||
class che_의병모집 extends Command\NationCommand
|
class che_의병모집 extends Command\NationCommand
|
||||||
{
|
{
|
||||||
@@ -170,6 +170,7 @@ class che_의병모집 extends Command\NationCommand
|
|||||||
], 'nation=%i', $nationID);
|
], 'nation=%i', $nationID);
|
||||||
|
|
||||||
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
$this->setResultTurn(new LastTurn(static::getName(), $this->arg));
|
||||||
|
StaticEventHandler::handleEvent($this->generalObj, $this->destGeneralObj, $this::class, $this->env, $this->arg ?? []);
|
||||||
$general->applyDB($db);
|
$general->applyDB($db);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user