Ins_TaskStep.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. <?php
  2. namespace loyalsoft;
  3. /**
  4. * 任务步骤, 用于任务卡功能(三组合一)
  5. * @author gwang(wanggangzero@qq.com)
  6. */
  7. class Ins_TaskStep extends Object_ext {
  8. /**
  9. * @var type 查询用的id
  10. */
  11. public $typeId = 0;
  12. /**
  13. * @var int 计数器
  14. */
  15. public $cur = 0;
  16. /**
  17. * @var int start/finish act已执行(0:startAct未执行,1:StartAct已执行且finishAct未执行,2:finishAct已执行)
  18. */
  19. public $actState = 0;
  20. /**
  21. * @return \sm_task_step mo 获取对应的模板数据
  22. */
  23. public function mo() {
  24. $mo = GameConfig::task_step_getItem($this->typeId);
  25. my_Assert(null != $mo, ErrCode::err_const_no);
  26. return $mo;
  27. }
  28. /**
  29. * @return int 计数最大值
  30. */
  31. public function max() {
  32. return $this->mo()->num;
  33. }
  34. /**
  35. * @return string[] 参数数组
  36. */
  37. private function paras() {
  38. return explode(',', $this->mo()->paras);
  39. }
  40. /**
  41. * @return float 当前进度
  42. */
  43. public function progress() {
  44. return $this->cur / $this->max();
  45. }
  46. /**
  47. * 是否完成
  48. * @return bool
  49. */
  50. public function isFinish() {
  51. return $this->cur >= $this->max();
  52. }
  53. /**
  54. * 执行任务完成事件
  55. */
  56. public function doFinishAct() {
  57. // if ($this->mo()->finishact > 0) {
  58. // $act = GameConfig::eventAction_getItem($this->mo()->finishact);
  59. // $this->execAct($act);
  60. // }
  61. $this->actState = 2;
  62. }
  63. /**
  64. *
  65. * @param \sm_eventAction $act
  66. */
  67. private function execAct($act) {
  68. my_Assert($act, ErrCode::err_const_no);
  69. switch ($act->cmd) {
  70. case Enum_EventActionType::StartPlotScene: # 触发场景剧情,
  71. case Enum_EventActionType::StartPlotNPC: # 触发NPC剧情
  72. $paras = explode(',', $act->parameters); # 解析下参数
  73. $arr = GameConfig::plot_getItem($paras[0], $paras[1]); # 查找对应的剧情
  74. foreach ($arr as $plot) {
  75. isEditor() and $plot = new \sm_plot();
  76. if (!empty($plot->presentItem)) {
  77. StoreProc::AddMultiItemInStore($plot->presentItem);
  78. }
  79. if (!empty($plot->recycleItem)) {
  80. $val = explode(",", $plot->recycleItem);
  81. my_Assert(count($val) > 1, "解析回收道具字符串出错");
  82. StoreProc::removeItemFromStore(ctx()->store, $val[0], $val[1]);
  83. }
  84. }
  85. break;
  86. case Enum_EventActionType::UnlockBuild: # 解锁建筑
  87. ctx()->privateState->unlockedBuild[] = $act->parameters;
  88. break;
  89. }
  90. }
  91. /**
  92. * 执行任务开始事件
  93. */
  94. public function doStartAct() {
  95. // if ($this->mo()->startact > 0) {
  96. // $act = GameConfig::eventAction_getItem($this->mo()->startact);
  97. // $this->execAct($act);
  98. // }
  99. $this->actState = 1;
  100. }
  101. /**
  102. * 构造函数
  103. * @param type $args
  104. */
  105. public function __construct($args) {
  106. if (isInt($args)) {
  107. $this->typeId = $args;
  108. } else {
  109. parent::__construct($args);
  110. }
  111. }
  112. /**
  113. * 是否状态型任务---2022-7-29最新备注:add类型的只能动作触发-不能在这里添加类型 ;set类型只动作触发不添加在这,要是满足条件就完成任务就添加在这
  114. * @param type $cmd
  115. */
  116. function isStatusType() {
  117. return $this->mo()->cmd == Enum_TaskCmdType::GainItem # 获取道具
  118. || $this->mo()->cmd == Enum_TaskCmdType::HeroLevelUpTo # 唤灵师等级达到x级
  119. || $this->mo()->cmd == Enum_TaskCmdType::WeaponLevelUp # 唤灵师突破升星
  120. || $this->mo()->cmd == Enum_TaskCmdType::YanlingLevelUp # 将指定言灵升级到指定等级
  121. || $this->mo()->cmd == Enum_TaskCmdType::CommanderLevelUpTo # 指挥官等级
  122. || $this->mo()->cmd == Enum_TaskCmdType::HeroWearingYanling # 唤灵师装备了任意言灵
  123. || $this->mo()->cmd == Enum_TaskCmdType::HeroWearingWeapon_Except#唤灵师装备了除(xx)外的武器
  124. || $this->mo()->cmd == Enum_TaskCmdType::UserOwnXYanlingWithQualityN # 拥有言灵
  125. || $this->mo()->cmd == Enum_TaskCmdType::HeroGradeUpTo_status #武器突破升星
  126. | $this->mo()->cmd == Enum_TaskCmdType::passEndlessCarbonN; #武器突破升星
  127. //|| $this->mo()->cmd == Enum_TaskCmdType::UpgradeXYanlingToNStar;#言灵突破升星
  128. }
  129. /**
  130. * 自动对齐可能出现统计失误的状态型任务计数
  131. * @return boolean 是否有修改
  132. */
  133. function autoCalcStatusCur() {
  134. if ($this->isStatusType()) {
  135. $mo = $this->mo();
  136. if ($mo != null) {
  137. $cur = $this->calcStatusCur();
  138. if ($cur > $this->max()) {
  139. $cur = $this->max();
  140. }
  141. if ($this->cur != $cur) {
  142. $this->cur = $cur;
  143. return true;
  144. }
  145. }
  146. }
  147. return false;
  148. }
  149. /**
  150. * @return int 计算状态类的进度
  151. */
  152. function calcStatusCur() {
  153. $mo = $this->mo();
  154. $paras = $this->paras();
  155. $para0 = "";
  156. $para1 = "";
  157. $para2 = "";
  158. if (count($paras) >= 1) {
  159. $para0 = $paras[0];
  160. }
  161. if (count($paras) >= 2) {
  162. $para1 = $paras[1];
  163. }
  164. if (count($paras) >= 3) {
  165. $para2 = $paras[2];
  166. }
  167. switch ($mo->cmd) {
  168. case Enum_TaskCmdType::GainItem: # 收集道具
  169. $store = new Info_Store(ctx()->store);
  170. return $store->GetItemCount($para0);
  171. case Enum_TaskCmdType::CommanderLevelUpTo:
  172. $lvl = ctx()->base()->level;
  173. return $lvl;
  174. case Enum_TaskCmdType::HeroLevelUpTo:
  175. $heros = new Info_UserGameHero(ctx()->heros);
  176. $hero = $heros->GetHeroByMoID($para0);
  177. if (null != $hero) {
  178. return $hero->level;
  179. }
  180. break;
  181. case Enum_TaskCmdType::HeroGradeUpTo_status: #唤灵师进行一个突破升星
  182. $heros = new Info_UserGameHero(ctx()->heros);
  183. $hero = $heros->GetHeroByMoID(101005);
  184. if (null != $hero) {
  185. return $hero->curStar;
  186. }
  187. break;
  188. case Enum_TaskCmdType::UserOwnXYanlingWithQualityN: # 拥有x个n品质的言灵
  189. $store = new Info_Store(ctx()->store);
  190. $num = 0;
  191. foreach ($store->yanling as $uid => $yanlingvo) {
  192. $yanlingvo = new Ins_YanLin($yanlingvo);
  193. // var_dump($yanlingvo);
  194. $itemMo = GameConfig::item_base_getItem($yanlingvo->typeId);
  195. my_Assert(null != $itemMo, ErrCode::err_const_no);
  196. if ($itemMo->quality >= $para0) {
  197. $num++;
  198. }
  199. }
  200. // CLog::info("当前拥有$num 个对应品质的言灵.");
  201. return $num;
  202. case Enum_TaskCmdType::WeaponLevelUp: # 将特定的武器升级到X级(num 等级数,paras:武器id)
  203. $equipment = ctx()->store->equipment;
  204. $n = 0;
  205. foreach ($equipment as $eUid => $equip) {
  206. if ($equip->typeId == $para0 && $n < $equip->level) {
  207. $n = $equip->level;
  208. }
  209. }
  210. return $n;
  211. case Enum_TaskCmdType::YanlingLevelUp: #将任意言灵突破到N星
  212. $yanling = ctx()->store->yanling;
  213. $lv = 0;
  214. foreach ($yanling as $yUid => $yl) {
  215. // if ($yl->typeId == $para0 && $lv < $equip->level) {
  216. // $lv = $yl->level;
  217. // //break;
  218. // }
  219. if ($yl->level >= $lv) {
  220. $lv = $yl->level;
  221. }
  222. }
  223. return $lv;
  224. case Enum_TaskCmdType::HeroWearingYanling: # 检查唤灵师是否已经装备了言灵
  225. // isEditor() and $hero = new Ins_UserHero();
  226. $heros = new Info_UserGameHero(ctx()->heros);
  227. $hero = $heros->GetHeroByMoID($para0);
  228. if (null != $hero) {
  229. foreach ($hero->yanling as $pos => $item) {
  230. if (isset($item) && $item->itemuid > 0) {
  231. return 1; # 找到言灵
  232. }
  233. }
  234. }
  235. return 0;
  236. case Enum_TaskCmdType::HeroWearingWeapon_Except: # 检查唤灵师是否已经装备了武器(xx)除外
  237. // isEditor() and $hero = new Ins_UserHero();
  238. $heros = new Info_UserGameHero(ctx()->heros);
  239. $hero = $heros->GetHeroByMoID($para0);
  240. if (null != $hero) {
  241. if (isset($hero->equip->weapon->itemuid) #
  242. && $hero->equip->weapon->itemuid > 0) {#
  243. $eqid = $hero->equip->weapon->itemuid;
  244. $store = new Info_Store(ctx()->store);
  245. if (property_exists($store->equipment, $eqid)) {
  246. $equip = $store->equipment->$eqid;
  247. if ($equip->typeId != $para1) {
  248. return 1; # 找到武器
  249. }
  250. }
  251. }
  252. }
  253. return 0;
  254. case Enum_TaskCmdType::passEndlessCarbonN: # 通关无尽塔X层
  255. // isEditor() and $hero = new Ins_UserHero();
  256. $num = ctx()->privateState->endlessTower - 1;
  257. return $num;
  258. default:
  259. break;
  260. }
  261. return 0;
  262. }
  263. /**
  264. * 检查任务条件(与petmini采用相同的参数和判定方法2020年12月12日11:38:02)
  265. * @param Ins_TaskEventArgs $taskCardEvent
  266. * @return bool
  267. */
  268. public function check_new($taskCardEvent) {
  269. // echoLine(" check: " . json_encode($taskCardEvent));
  270. // CLog::info("{$this->typeId} checking: " . json_encode($taskCardEvent));
  271. if ($taskCardEvent->taskType != $this->mo()->cmd) { # 事件类型匹配
  272. return false;
  273. }
  274. if ($this->isStatusType()) { # 状态检查类任务
  275. return $this->autoCalcStatusCur();
  276. }
  277. if ($this->isFinish()) {
  278. return false;
  279. }
  280. if (strlen($this->mo()->paras) <= 0) { # 无参数
  281. return true;
  282. }
  283. $paras = $this->paras();
  284. $index = 0;
  285. foreach ($taskCardEvent->paras as $para) { # 其他任务, 执行参数判定
  286. if ($index < count($paras)) {
  287. if (strpos($para, "|") !== false) { # 某个条件是"或"的关系, 即有多重可能值, 满足其一即可
  288. $paraList = explode("|", $para);
  289. foreach ($paraList as $paraItem) {
  290. if ($paraItem == $paras[$index]) {
  291. continue; # 满足某一个即可, 继续判断下一个条件.
  292. }
  293. }
  294. } else { # only one, 不存在"或"的判定
  295. if ($para != $paras[$index]) { # 直接匹配
  296. return false; # 一但没匹配上, 直接返回false就好了.
  297. }
  298. }
  299. } # 参数中多余的数据就直接跳过,不比较了(因为自己不需要判断那么多参数)
  300. $index++;
  301. }
  302. return true; # 走到最后则判定满足条件.
  303. }
  304. /**
  305. * 推进任务进度(采用和petmini相同的推进算法,2020年12月12日11:38:22)
  306. * @param Ins_TaskEventArgs $taskParam
  307. */
  308. public function propel($taskParam) {
  309. // var_dump($taskParam);
  310. switch ($taskParam->ope) {
  311. case Enum_PropelType::set:
  312. $this->cur = $taskParam->val;
  313. break;
  314. case Enum_PropelType::add:
  315. $this->cur += $taskParam->val;
  316. break;
  317. case Enum_PropelType::inc:
  318. $this->cur += 1;
  319. break;
  320. case Enum_PropelType::max:
  321. if ($taskParam->val > $this->cur) {
  322. $this->cur = $taskParam->val;
  323. }
  324. break;
  325. case Enum_PropelType::stat:
  326. break;
  327. }
  328. }
  329. }