public static NodeMessageManager GetInstance() { if (_instance == null) { _instance = new NodeMessageManager(); } return(_instance); }
public void Dispose() { NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.None, OnNone); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetGuideComplete, GetGuideComplete); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetFocusView, GetFocusView); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetDialogueState, GetDialogueState); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.BattleReady, BattleReady); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.CurMapNode, CurMapNode); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetPathObjAction, GetPathObjAction); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetParticipantNum, GetParticipantNum); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetNeedSetSkill, GetNeedSetSkill); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetGuideType, GetGuideType); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetFuncIsOpen, GetFuncIsOpen); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetFuncBtnAction, GetFuncBtnAction); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetFindGate, GetFindGate); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetMengBanState, GetMengBanState); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetChallengeDiedAction, GetChallengeDiedAction);//GetChallengeLevel NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetChallengeLevel, GetChallengeLevel); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.CheckBattleIsFailed, CheckBattleIsFailed); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.OnLessThanLevel, OnLessThanLevel); NodeMessageManager.GetInstance().RemoveCondition(/*_groupId,*/ NodeMessageManager.GetGuideFailState, GetGuideFailState); }
void DispatchConditionReceipt(string em, string paramater) { NodeMessageManager.GetInstance().DispatchConditionReceipt(/*_groupId,*/ em, paramater); }
public void DispatchExecute() { isExecuteReceipt = false; NodeMessageManager.GetInstance().DispatchExecute(/*GroupID,*/ ExecuteCmd, ExecuteParameter, ExecuteReceipt); }
public void DispatchCondition() { isConditionReceipt = false; isConditionSucess = false; NodeMessageManager.GetInstance().DispatchCondition(/*GroupID,*/ ConditionCmd, ConditionParameter, ConditionReceipt); }