using System.Collections; using System.Collections.Generic; using UnityEngine; using AX.MessageSystem; using System; using AX.InputSystem; using AX.NetworkSystem; public class ForcibleEntryCtrl : MonoBehaviour { public List FireManOnRightPos = new List(); private void Awake() { MessageDispatcher.AddListener("FORCIBLE_ENTRY_COMMAND", ForcibleExect); } private void OnDestroy() { MessageDispatcher.RemoveListener("FORCIBLE_ENTRY_COMMAND", ForcibleExect); } private void ForcibleExect(IMessage obj) { var info = (ForcibleEntryCmdArgs)obj.Data; if (gameObject.GetComponent().gameObjID == info.gameObjID) { GameObject fireMan = EntitiesManager.Instance.GetEntityByID(info.fireManID); if (FireManOnRightPos.Contains(fireMan)) { if (fireMan.GetComponent().workType == FireManSkills.ForcibleEntry) { if (fireMan.GetComponent().HasEquip("无齿锯")) { EntitiesManager.Instance.DeleteObj(gameObject); LoadPromptWin.Instance.LoadTextPromptWindow("破拆成功", 1f); //这里暂时用的是物品删除的同步 if (GameSettings.othersSettings.mode != Mode.DisasterManagement) { BaseNetworkSyncDate arg = new BaseNetworkSyncDate(); arg.SendUserID = CurrentUserInfo.mySelf.Id; arg.gameObjID = gameObject.GetComponent().gameObjID; NetworkManager.Default.SendAsync("OBJ_DELECT_SYNC", arg); } } else { LoadPromptWin.Instance.LoadTextPromptWindow("未装备无齿锯", 1f); } } else { LoadPromptWin.Instance.LoadTextPromptWindow("请选择破拆技能", 1f); } } else { LoadPromptWin.Instance.LoadTextPromptWindow("请站在正确的破拆位置", 1f); } } } }