|
|
|
@ -623,21 +623,45 @@ public class FireManSkillPanelController : MonoBehaviour
|
|
|
|
|
if (InputManager.GuidanceList.Count > 0 && |
|
|
|
|
(Mathf.Abs(guidendpos.x - safepos.x) < 10 && Mathf.Abs(guidendpos.z - safepos.z) < 10)) |
|
|
|
|
{ |
|
|
|
|
//引导命令 |
|
|
|
|
GuideLodeCmdArgs arg = new GuideLodeCmdArgs(); |
|
|
|
|
arg.pathpointList = InputManager.GuidanceList; |
|
|
|
|
arg.FireManID = SelectFireMan.GetComponent<BaseGameObjInfo>().gameObjID; |
|
|
|
|
arg.TrappedID = SelectFireMan.GetComponent<FiremanMoveTrapped>().GuidanceTrapped.GetComponent<BaseGameObjInfo>().gameObjID; |
|
|
|
|
TrappedMoveFollowGuidePointCommand.Instance.Execute(SelectFireMan.GetComponent<BaseGameObjInfo>().gameObjID, arg); |
|
|
|
|
InputManager.skill = false; |
|
|
|
|
InputManager.IsGuidance = false; |
|
|
|
|
InputManager.GuidanceList.Clear(); |
|
|
|
|
for (int i = 0; i < p_Hitpoint.childCount; i++) |
|
|
|
|
//if (SelectFireMan.GetComponent<FiremanMoveTrapped>().GuidanceTrapped.GetComponent<TrappedMoveFree>().HasPath(InputManager.GuidanceList)) |
|
|
|
|
{ |
|
|
|
|
Destroy(p_Hitpoint.GetChild(i).gameObject); |
|
|
|
|
//引导命令 |
|
|
|
|
GuideLodeCmdArgs arg = new GuideLodeCmdArgs(); |
|
|
|
|
arg.pathpointList = InputManager.GuidanceList; |
|
|
|
|
arg.FireManID = SelectFireMan.GetComponent<BaseGameObjInfo>().gameObjID; |
|
|
|
|
arg.TrappedID = SelectFireMan.GetComponent<FiremanMoveTrapped>().GuidanceTrapped.GetComponent<BaseGameObjInfo>().gameObjID; |
|
|
|
|
TrappedMoveFollowGuidePointCommand.Instance.Execute(SelectFireMan.GetComponent<BaseGameObjInfo>().gameObjID, arg); |
|
|
|
|
InputManager.skill = false; |
|
|
|
|
InputManager.IsGuidance = false; |
|
|
|
|
InputManager.GuidanceList.Clear(); |
|
|
|
|
for (int i = 0; i < p_Hitpoint.childCount; i++) |
|
|
|
|
{ |
|
|
|
|
Destroy(p_Hitpoint.GetChild(i).gameObject); |
|
|
|
|
} |
|
|
|
|
SelectFireMan.GetComponent<FiremanMoveTrapped>().GuidanceTrapped = null; |
|
|
|
|
SelectFireMan.GetComponent<FireManControl>().workType = FireManSkills.None; |
|
|
|
|
} |
|
|
|
|
SelectFireMan.GetComponent<FiremanMoveTrapped>().GuidanceTrapped = null; |
|
|
|
|
SelectFireMan.GetComponent<FireManControl>().workType = FireManSkills.None; |
|
|
|
|
//else |
|
|
|
|
//{ |
|
|
|
|
// InputManager.GuidanceList.Clear(); |
|
|
|
|
// for (int i = 0; i < p_Hitpoint.childCount; i++) |
|
|
|
|
// { |
|
|
|
|
// Destroy(p_Hitpoint.GetChild(i).gameObject); |
|
|
|
|
// } |
|
|
|
|
// LoadPromptWin.Instance.LoadTextPromptWindow("不能将伤员引导至安全区,请重新规划路线", 3f); |
|
|
|
|
|
|
|
|
|
// InputManager.skill = false; |
|
|
|
|
// SelectFireMan.GetComponent<FireManControl>().workType = FireManSkills.None; |
|
|
|
|
// InputManager.GuidanceList.Clear(); |
|
|
|
|
// InputManager.IsGuidance = false; |
|
|
|
|
// if (SelectFireMan.GetComponent<FiremanMoveTrapped>().GuidanceTrapped != null) |
|
|
|
|
// { |
|
|
|
|
// //SelectFireMan.GetComponent<FiremanMoveTrapped>().GuidanceTrapped.GetComponent<TrappedMoveFree>().Guidance = false; |
|
|
|
|
// SelectFireMan.GetComponent<FiremanMoveTrapped>().GuidanceTrapped.GetComponent<TrappedMoveFree>().CancelGuidance(); |
|
|
|
|
// SelectFireMan.GetComponent<FiremanMoveTrapped>().GuidanceTrapped = null; |
|
|
|
|
// } |
|
|
|
|
// SelectFireMan.GetComponent<FireManControl>().workType = FireManSkills.None; |
|
|
|
|
//} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|