1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111 |
- using CommonAI.Zone.Instance;
- using System;
- using XmdsCommon.Message;
- using XmdsCommon.Plugin;
- using XmdsCommonServer.Plugin.Units;
- using XmdsCommonServer.XLS.Data;
- using CommonAI.Zone.Formula;
- using XmdsCommonServer.Plugin.XmdsSkillTemplate.DamageCalculator;
- using CommonAI.Zone;
- using System.Collections.Generic;
- using CommonLang;
- using XmdsCommonServer.Plugin.Scene;
- using static CommonAI.XmdsConstConfig;
- using XmdsCommonServer.XLS;
- using CommonLang.Log;
- using static XmdsCommonServer.XLS.XLSRandomMonsterSkillLoader;
- using static XmdsCommon.Plugin.GameSkill;
- using CommonAI.Zone.Helper;
- using CommonAI.Data;
- using XmdsCommon.JSGModule.Interface;
- namespace XmdsCommonServer.Plugin
- {
- public class XmdsVirtual_Monster : XmdsVirtual
- {
- private static Logger logger = LoggerFactory.GetLogger("MonsterData");
-
-
-
- protected string[] mDialogWords = null;
-
-
-
- protected int mDialogWordRate = 100;
-
-
-
- protected string[] mDeadDialogWords = null;
-
-
-
- protected int mDeadDialogWordRate = 100;
-
-
-
- private bool mIsBoss = false;
-
-
-
- private byte mMonsterType = 0;
- private bool mIsLvRepress = false;
-
-
-
- private List<int> mAbilityList = null;
-
-
-
- private HashMap<string, PlayerDamageInfo> mSufferDamageInfo = null;
-
-
-
- private bool mIsShare = false;
-
- private byte skillType = 0;
-
- private InstanceUnit mBindAttakPlayer;
-
-
-
- private int backSpeedBuffId = 0;
- public bool IsShare
- {
- get { return mIsShare; }
- set { mIsShare = value;}
- }
- public XmdsVirtual_Monster(InstanceUnit unit) : base(unit)
- {
- mHateSystem.SetFindHeirs(true);
- }
- public override string GetPlayerUUID()
- {
- return mUnit.ID.ToString();
- }
- public override PKLevel GetCurPKLevel()
- {
- return base.GetCurPKLevel();
- }
-
-
-
-
- public static int ParseInt(string str, int dft = 0)
- {
- if (string.IsNullOrEmpty(str))
- {
- return dft;
- }
- System.Text.RegularExpressions.Match m = System.Text.RegularExpressions.Regex.Match(str, @"(\d+)");
- if (m.Groups.Count >= 2)
- {
- try
- {
- return System.Convert.ToInt32(m.Groups[1].Value);
- }
- catch (System.Exception)
- {
- return dft;
- }
- }
- return dft;
- }
- protected override void Init(bool pointLv)
- {
- if (this.mProp.LoadDataConfig == true)
- {
-
- InitMonsterData2(GetCurSceneType(), mUnit.Info.TemplateID, pointLv);
- }
- else
- {
- MonsterVisibleDataB2C edata = new MonsterVisibleDataB2C();
- edata.SenceType = GetCurSceneType();
- edata.MonsterID = mUnit.Info.TemplateID;
- edata.DisplayName = mUnit.Name;
- edata.AttackType = MonsterVisibleDataB2C.MonsterAttackType.Passive;
- edata.Atype = MonsterVisibleDataB2C.MonsterAtype.Monster;
- edata.MType = MonsterVisibleDataB2C.MonsterType.MType0;
- edata.Qcolor = MonsterVisibleDataB2C.MonsterQcolor.Q0;
- edata.hpPlies = (byte)ParseInt(mUnit.Info.UserTag, 1);
- mUnit.SetVisibleInfo(edata);
- }
-
- if(this.mUnit.Info.IsRandomName)
- {
- string randomName = XmdsDataMgr.GetInstance().GetRanomName();
- mUnit.SetDiaplayerName(randomName);
- }
- mHateSystem.OnHandleTargetAddEvent += MHateSystem_OnHandleTargetAddEvent;
- }
- private void MHateSystem_OnHandleTargetAddEvent(CommonAI.Zone.Helper.HateSystem.HateInfo target)
- {
- if (target.Unit != null)
- {
- if ((target.Unit.Virtual as XmdsVirtual).IsPlayerUnit())
- {
- SetCombatState(BattleStatus.PVP);
- }
- else
- {
- SetCombatState(BattleStatus.PVE);
- }
- }
- }
- public override void SetCombatState(BattleStatus value, byte reason = 0, string pvpTriggerID = "")
- {
-
- if (value == BattleStatus.PVP)
- {
- value = BattleStatus.PVE;
- }
- base.SetCombatState(value, reason);
- }
- protected override void OnCombatStateChange(BattleStatus status)
- {
- base.OnCombatStateChange(status);
-
- if (status == BattleStatus.None && this.mUnit.Info.GuardRangeLimit != 0)
- {
- (mUnit as CommonAI.Zone.Instance.InstanceGuard).backToOrgin();
-
- CleanDamageInfo();
- }
- if (status != BattleStatus.None)
- {
- RandomDialogWords();
- }
- }
-
-
-
- public void changeRunSpeed4back()
- {
- if(backSpeedBuffId > 0)
- {
- RemovePropChangeOperation(backSpeedBuffId);
- }
-
- XmdsVirtual.PropChangeOperation pco = this.CreatePropChangeOpertation(null);
- pco.Type = XmdsVirtual.UnitAttributeType.MoveSpeed;
- pco.Value = 5000;
- pco.OpType = XmdsVirtual.PropChangeOperation.OperateType.Percent;
- backSpeedBuffId = AddPropChangeOperation(pco);
- }
- public void onBack2PositionEnd()
- {
- RemovePropChangeOperation(backSpeedBuffId);
- }
- public override void OnUnitDead(XmdsVirtual killer)
- {
-
- var u = mHateSystem.GetHeirs();
- if (u != null)
- {
- mHateSystem.CalAtkAssistantList(mIsShare);
- CheckKillGroup((u.Virtual as XmdsVirtual));
- }
- base.OnUnitDead(killer);
- RandomDeadDialogWords();
- }
- public override int OnHit(XmdsVirtual attacker, AttackSource source)
- {
-
- if (this.mUnit.CurrentState is InstanceUnit.StateBackToPosition)
- {
- source.OutIsDamage = false;
- source.OutClientState = (int)UnitHitEventState.Immunity;
- return 0;
- }
- OnBossHit(attacker, ref source);
- int ret = base.OnHit(attacker, source);
- if (ret > 0)
- {
- OnDamageInfoCheck(attacker, ref source, ret);
- }
- return ret;
- }
- public override void SyncHeirsInfo(string name, int hpPercent, CommonAI.Data.XmdsUnitPro protype)
- {
- if (string.IsNullOrEmpty(name))
- {
- (this.mUnit.VisibleInfo as MonsterVisibleDataB2C).UnitHeirInfo = null;
- SendMonsterHeirInfoChangeEventB2C(null);
- }
- else {
- MonsterVisibleDataB2C.HeirInfo info = new MonsterVisibleDataB2C.HeirInfo();
- info.Name = name;
- info.hpPercent = hpPercent;
- info.ProType = protype;
- SendMonsterHeirInfoChangeEventB2C(info);
- (this.mUnit.VisibleInfo as MonsterVisibleDataB2C).UnitHeirInfo = info;
- }
- }
- private void SendMonsterHeirInfoChangeEventB2C(MonsterVisibleDataB2C.HeirInfo info)
- {
- MonsterHeirInfoChangeEventB2C evt = new MonsterHeirInfoChangeEventB2C();
- evt.UnitHeirInfo = info;
- this.mUnit.queueEvent(evt);
- }
-
- public override bool IsTeamMember(InstanceUnit unit)
- {
- return IsAllies(unit.Virtual as XmdsVirtual);
- }
- protected override bool JudgeChangeCombatStateChange(BattleStatus status, byte reason)
- {
-
- if (status == BattleStatus.None && reason == 0)
- {
- if (mSummonList != null && mSummonList.Count > 0)
- {
- for (int i = 0; i < mSummonList.Count; i++)
- {
- if (mSummonList[i].CombatState != BattleStatus.None)
- {
- return false;
- }
- }
- }
- }
- return base.JudgeChangeCombatStateChange(status, reason);
- }
- protected override void CombatStateConnect(BattleStatus status, byte reason)
- {
- if (mSummonList != null && mSummonList.Count > 0)
- {
- for (int i = 0; i < mSummonList.Count; i++)
- {
- mSummonList[i].SetCombatState(status, reason);
- }
- }
- }
- protected override void Dispose()
- {
- UnInitBossAbilities();
- CleanSummonList();
- DisposeDamageInfo();
- base.Dispose();
- }
- public override int GetVirtualTemplateID()
- {
- MonsterVisibleDataB2C data = (this.mUnit.VisibleInfo as MonsterVisibleDataB2C);
- if (data != null)
- {
- return data.MonsterID;
- }
- else
- {
- return base.GetVirtualTemplateID();
- }
- }
- public void DoUnitStateReset()
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- private void RemoveSelfAndCreate()
- {
- var pos = (this.mUnit as XmdsInstanceMonster).GetOrginPosition();
- float x = 0;
- float y = 0;
- if (pos != null)
- {
- x = pos.X;
- y = pos.Y;
- }
- else
- {
- x = this.mUnit.X;
- y = this.mUnit.Y;
- }
- var u = this.mUnit.Parent.AddUnit(this.mUnit.Info.ID,
- this.mUnit.Name,
- this.mUnit.Force,
- this.mProp.ServerData.BaseInfo.UnitLv,
- x,
- y,
- this.mUnit.Direction, false);
- if (u != null)
- {
- u.UnitTag = this.mUnit.UnitTag;
- }
- this.mUnit.removeFromParent();
- }
- protected override void InitSkillInfo(XmdsUnitData data)
- {
- this.checkSkillData(data);
-
- if (this.skillType > 0)
- {
-
-
-
-
-
- randomMonsterSkillInfo(this.mUnit.Info.ID, this.skillType);
- }
-
- if(this.IsBoss())
- {
- this.mProp.ServerData.Skills.UnitSkills.Add(new GameSkill(XmdsComSrvData.BOSS_CARD_SKILLID, XmdsSkillType.active, false));
- }
- mFinishSkillInit = true;
- mSkillHelper.InitSkill(data.Skills, this);
- if (mAbilityList != null)
- {
- InitAbilityList(mAbilityList);
- }
- }
- #region 共享相关计算.
- private void CheckKillGroup(XmdsVirtual killer)
- {
- if (killer == null) { return; }
- XmdsVirtual_Player ret = killer.GetPlayerUnit();
- if (ret == null) { return; }
- List<string> lt = ret.TeamList as List<string>;
-
- if (lt != null && lt.Count > 0)
- {
- this.mHateSystem.ClearSharedList();
- string uuid = null;
-
- for (int i = 0; i < lt.Count; i++)
- {
- uuid = lt[i];
- var unit = this.mUnit.Parent.getPlayerByUUID(uuid);
- if (unit != null)
- {
- float dist = CMath.getDistance(this.mUnit.X, this.mUnit.Y, unit.X, unit.Y);
-
- if (dist <= XmdsConfig.Instance.SHARED_AWARD_MAX_RANGE)
- {
- this.mHateSystem.AddSharedList(uuid);
- }
- }
- }
- }
- }
- #endregion
- #region SummonUnit.
- private List<XmdsVirtual> mSummonList = new List<XmdsVirtual>();
- public void AddSummonUnitList(XmdsVirtual unit)
- {
- mSummonList.Add(unit);
- unit.mUnit.OnDead += MUnit_OnDead;
- }
- private void MUnit_OnDead(CommonAI.Zone.Instance.InstanceUnit unit, CommonAI.Zone.Instance.InstanceUnit attacker)
- {
- XmdsVirtual v = unit.Virtual as XmdsVirtual;
- if (v != null && mSummonList != null)
- {
- unit.OnDead -= MUnit_OnDead;
- mSummonList.Remove(v);
- }
- }
- public int GetSummonUnitListCount()
- {
- return mSummonList.Count;
- }
- public XmdsVirtual GetFirstTimesupSummonUnit()
- {
- if (mSummonList.Count > 0)
- {
- return mSummonList[0];
- }
- return null;
- }
- public List<XmdsVirtual> GetSummonUnits()
- {
- return mSummonList;
- }
- public void CleanSummonList()
- {
- if (mSummonList != null && mSummonList.Count > 0)
- {
- for (int i = 0; i < mSummonList.Count; i++)
- {
- mSummonList[i].mUnit.OnDead -= MUnit_OnDead;
- mSummonList[i].mUnit.kill(null, false);
- }
- mSummonList.Clear();
- }
- }
- #endregion
- #region 单位能力读取加载.
-
- protected void InitMonsterData2(string _sceneType, int templateID, bool pointLv)
- {
-
- String ss = _sceneType;
- if (ss == XLSMonsterDataLoader.DUNGEONHERO || ss == XLSMonsterDataLoader.DUNGEONELITE)
- ss = XLSMonsterDataLoader.DUNGEONNORMAL;
- MonsterData ma = XmdsDataMgr.GetInstance().GetMonsterData(ss, templateID, null, false);
-
- MonsterVisibleDataB2C edata = new MonsterVisibleDataB2C();
- if (ma == null)
- {
- edata.MonsterID = templateID;
- edata.DisplayName = string.Format("Cfg Err id={0}", templateID);
- edata.AttackType = MonsterVisibleDataB2C.MonsterAttackType.Passive;
- edata.Atype = MonsterVisibleDataB2C.MonsterAtype.Monster;
- edata.MType = MonsterVisibleDataB2C.MonsterType.MType0;
- edata.Qcolor = MonsterVisibleDataB2C.MonsterQcolor.Q0;
- edata.hpPlies = (byte)ParseInt(mUnit.Info.UserTag, 1);
- mUnit.SetVisibleInfo(edata);
- return;
- }
- XmdsUnitProp ret = (XmdsUnitProp)mProp.ServerData.Prop;
-
- if (ma.FateType == UnitFateType.Random)
- {
- ret.fateType = (UnitFateType)(this.mUnit.RandomN.Next() % (int)UnitFateType.Five + 1);
- }
- else
- {
- ret.fateType = ma.FateType;
- }
- XmdsServerScene scene = this.mUnit.Parent as XmdsServerScene;
- SceneType sceneType = this.mUnit.GetSceneType();
- int lvl_monster = pointLv ? this.mUnit.Level : ma.Level;
- this.skillType = (byte)ma.SkillType;
- int floor = 1;
- TowerMonsterRatio tmr = null;
- if (sceneType == SceneType.HaoYueJing || sceneType == SceneType.PickLotus)
- {
-
- IEnumerable<InstancePlayer> players = scene.AllPlayers;
- int level = 0;
- foreach (InstancePlayer player in players)
- {
- level += player.Level;
- }
- if (scene.AllPlayersCount == 0)
- {
-
- lvl_monster = 1;
- }
- else
- {
- level = level / scene.AllPlayersCount;
-
- lvl_monster += level;
- }
- }
- else if (sceneType == SceneType.GoblinTower)
- {
- floor = (int)scene.Data.MonsterAddPropPercentWithFloor;
- const int MAX_FLOOR = 80;
- if (floor < 1)
- floor = 1;
- if (floor > MAX_FLOOR)
- floor = MAX_FLOOR;
- tmr = XmdsDataMgr.GetInstance().GetTowerMonsterRatio(floor);
- lvl_monster = tmr.TowMon_Lv;
- }
- else if (sceneType == SceneType.AbyssDungeon)
- {
- floor = (int)scene.Data.MonsterAddPropPercentWithFloor;
- const int MAX_FLOOR = 80;
- if (floor < 1)
- floor = 1;
- if (floor > MAX_FLOOR)
- floor = MAX_FLOOR;
- tmr = XmdsDataMgr.GetInstance().GetAbyssMonsterRatio(floor);
- lvl_monster = tmr.TowMon_Lv;
- }
- else if (sceneType == SceneType.SourceDungeon)
- {
-
- }
- else if (sceneType == SceneType.GuildBoss || sceneType == SceneType.SHI_MEN_POS)
- {
- if (scene.Data.DefaultUnitLevel > 1)
- {
- lvl_monster = (int)scene.Data.DefaultUnitLevel;
- }
- }
- this.mUnit.Level = lvl_monster;
- this.mProp.ServerData.BaseInfo.UnitLv = lvl_monster;
-
- this.mProp.ServerData.BaseInfo.StateLv = (byte)(Math.Max(0, (lvl_monster - 70) / 10));
- if (ma.Fight_Type == 1)
- {
- MonsterProp prop = XmdsDataMgr.GetInstance().GetSingleMonsterProp(lvl_monster, ma.Type);
- initProp(prop, ma, ret);
- }
- else if (ma.Fight_Type == 2)
- {
- MonsterProp prop = XmdsDataMgr.GetInstance().GetMultipleMonsterProp(lvl_monster, ma.Type);
- initProp(prop, ma, ret);
- }
- else if (ma.Fight_Type == 4)
- {
- lvl_monster = ma.Level;
- MonsterProp prop = XmdsDataMgr.GetInstance().GetSingleMonsterProp(lvl_monster, ma.Type);
- initProp(prop, ma, ret);
- }
- else
- {
- OrigData oData = XmdsDataMgr.GetInstance().GetOrigData(lvl_monster);
- UserDefineConfig udc = XmdsDataMgr.GetInstance().GetUserDefineConfig(ma.Type);
- initProp2(ma, oData, udc, ret);
- }
- ret.BaseMaxHP = (int)(ret.BaseMaxHP * XmdsDataMgr.GetInstance().mMonsterDynamicLoader.Mon_Hp_Ratio);
- ret.BaseAttack = (int)(ret.BaseAttack * XmdsDataMgr.GetInstance().mMonsterDynamicLoader.Mon_Atk_Ratio);
- restoreMa2Ret(ret, ma);
-
- if (sceneType == SceneType.GoblinTower && tmr != null)
- {
- dynamicCalcBy(ret,
- tmr.TowMon_Hp_Ratio,
- tmr.TowMon_Atk_Ratio,
- tmr.TowMon_Def_Ratio,
- tmr.TowMon_Crit_Ratio,
- tmr.TowMon_CritDamage_Ratio,
- tmr.TowMon_IgnoreDef_Ratio);
- }
- else if (sceneType == SceneType.AbyssDungeon && tmr != null)
- {
- float extRate = 1.0F;
- if (scene.Data.isTeam)
- {
- AbyssMutilAddition abyssAddition = XmdsDataMgr.GetInstance().GetAbyssMutilAddition();
- tmr.TowMon_Atk_Ratio *= abyssAddition.AttackAddition;
- tmr.TowMon_Def_Ratio *= abyssAddition.DefenceAddition;
- tmr.TowMon_Hp_Ratio *= abyssAddition.HPAddition;
- }
- dynamicCalcBy(ret,
- tmr.TowMon_Hp_Ratio * extRate,
- tmr.TowMon_Atk_Ratio * extRate,
- tmr.TowMon_Def_Ratio * extRate,
- tmr.TowMon_Crit_Ratio * extRate,
- tmr.TowMon_CritDamage_Ratio * extRate,
- tmr.TowMon_IgnoreDef_Ratio * extRate);
- }
- if (sceneType == SceneType.GuildBoss)
- {
- GuildBossRatio gbr = XmdsDataMgr.GetInstance().GetGuildBossRatio(lvl_monster);
- if (gbr != null)
- {
- dynamicCalcBy(ret,
- gbr.GBoss_Hp_Ratio,
- gbr.GBoss_Atk_Ratio,
- gbr.GBoss_Def_Ratio,
- gbr.GBoss_Crit_Ratio,
- gbr.GBoss_CritDamage_Ratio,
- gbr.GBoss_IgnoreDef_Ratio);
- }
- }
- if (_sceneType == XLSMonsterDataLoader.DUNGEONELITE)
- {
- ma = XmdsDataMgr.GetInstance().GetMonsterData(_sceneType, templateID, null, true);
- DungeonMonsterRatio dmr = XmdsDataMgr.GetInstance().mMonsterDynamicLoader.GetDungeonMonsterRatio(ma.Type);
- dynamicCalcBy(ret,
- dmr.Normal_Hp_Ratio,
- dmr.Normal_Atk_Ratio,
- dmr.Normal_Def_Ratio,
- dmr.Normal_DM_Ratio,
- dmr.Normal_DM_Ratio,
- dmr.Normal_DM_Ratio);
- restoreMa2Ret(ret, ma);
- }
- if (_sceneType == XLSMonsterDataLoader.DUNGEONHERO)
- {
- ma = XmdsDataMgr.GetInstance().GetMonsterData(_sceneType, templateID, null, true);
- DungeonMonsterRatio dmr = XmdsDataMgr.GetInstance().mMonsterDynamicLoader.GetDungeonMonsterRatio(ma.Type);
- dynamicCalcBy(ret,
- dmr.Hard_Hp_Ratio,
- dmr.Hard_Atk_Ratio,
- dmr.Hard_Def_Ratio,
- dmr.Hard_DM_Ratio,
- dmr.Hard_DM_Ratio,
- dmr.Hard_DM_Ratio);
- restoreMa2Ret(ret, ma);
- }
- ret.HP = ret.BaseMaxHP;
- XmdsInstanceMonster unit = this.mUnit as XmdsInstanceMonster;
- if (unit != null)
- {
- unit.MonsterID = ma.ID;
-
- if (ma.isAttack == 0)
- {
- this.mUnit.Info.GuardRange = 0;
- this.mUnit.Info.GuardRangeGroup = 0;
- }
- }
- edata.SenceType = GetCurSceneType();
- edata.MonsterID = ma.ID;
- edata.DisplayName = ma.Name;
- edata.Title = ma.Title;
- edata.Qcolor = (MonsterVisibleDataB2C.MonsterQcolor)ma.Qcolor;
- edata.AttackType = (MonsterVisibleDataB2C.MonsterAttackType)ma.isAttack;
- edata.Atype = (MonsterVisibleDataB2C.MonsterAtype)ma.Atype;
- edata.MType = (MonsterVisibleDataB2C.MonsterType)ma.Type;
- edata.hpPlies = (byte)ParseInt(mUnit.Info.UserTag, 1);
- this.mProp.ServerData.BaseInfo.name = ma.Name;
-
- if (!string.IsNullOrEmpty(ma.DialogWords))
- {
- mDialogWords = ma.DialogWords.Split('|');
- mDialogWordRate = ma.DialogChance;
- }
-
- if (!string.IsNullOrEmpty(ma.DeadDialogWords))
- {
- mDeadDialogWords = ma.DeadDialogWords.Split('|');
- mDeadDialogWordRate = ma.DeadDialogChance;
- }
- mIsShare = ma.ShareType == 1;
- this.mMonsterType = ma.Type;
- this.mIsLvRepress = (ma.LvRepress == 1) && (this.mMonsterType == (byte)MonsterVisibleDataB2C.MonsterType.MType6);
-
- if (ma.Type >= (byte)MonsterVisibleDataB2C.MonsterType.MType4)
- {
- InitBossAbilities();
- }
-
- if (ma.AbilityList != null && mProp != null)
- {
-
- mAbilityList = new List<int>(ma.AbilityList);
- }
-
- if (ret.AttackSpeed <= 0)
- {
- ret.AttackSpeed = GlobalData.DEFAULT_ATTACK_SPEED;
- }
-
- ret.ShieldValue = ma.MPValue;
- mUnit.SetVisibleInfo(edata);
-
- if (ret.MaxHP <= 0 || ret.MaxAttack <= 0 || ret.Defence <= 0)
- {
- log.Error("怪物属性错误:" + this.mUnit.Parent.GetSceneID() + ", " + this.mUnit.Info.ID + ", 生命:" + ret.MaxHP +
- ", 攻击:" + ret.MaxAttack + ", 防御:" + ret.Defence);
- }
- else if(this.IsBoss() || ret.MaxHP > 500000 || ret.MaxAttack > 10000)
- {
- log.Debug("怪物属性打印-场景:" + this.mUnit.Parent.GetSceneID() + ", ID: " + templateID + ", " + this.mUnit.Parent.UUID + ", UID: " + this.mUnit.ID + ", 等级: " + lvl_monster
- + ", 战斗规模:" + ma.Fight_Type + ",(攻-" + ret.BaseAttack + ", 防-" + ret.BaseDefence + ", 血-" + ret.BaseMaxHP + ", 爆-" + ret.CritRate
- + ", 爆伤-" + ret.CritDamage + ", 穿透-" + ret.IgnoreDefensePer + ")");
- }
- }
- private void randomMonsterSkillInfo(int monsterId, int skillType)
- {
- MonsterSkills skillInfo = XmdsDataMgr.GetInstance().GetMonsterSkillInfo(monsterId);
- if (skillInfo == null)
- {
-
- skillInfo = XmdsDataMgr.GetInstance().GetMonsterSkillInfo();
- if(skillInfo == null)
- {
- return;
- }
- }
- if(this.mProp.ServerData.Skills == null)
- {
- this.mProp.ServerData.Skills = new XmdsUnitSkillInfo();
- }
-
-
-
-
-
- if ((skillType & (int)MonsterRandomSkillType.OnlyActive) > 0)
- {
-
- if (this.mUnit.RandomN.Next(10000) < skillInfo.Skill1Probability)
- {
- XmdsSkillData activeSkill = XmdsDataMgr.GetInstance().GetBossRandomActiveSkill(this.mUnit.RandomN);
-
- if (activeSkill != null)
- {
- this.mProp.ServerData.Skills.UnitSkills.Add(new GameSkill(activeSkill.SkillID, XmdsSkillType.active));
-
- }
- }
- }
- if ((skillType & (int)MonsterRandomSkillType.OnlyPassive) > 0)
- {
- int[] nArray = { skillInfo.Skill2Probability, skillInfo.Skill3Probability, skillInfo.Skill4Probability };
- XmdsSkillData[] passiveSkills = new XmdsSkillData[3];
- int passiveIndex = 0;
- for (int i = 0; i < nArray.Length; i++)
- {
- if (nArray[i] > 0 && this.mUnit.RandomN.Next(10000) < nArray[i] && (passiveSkills[passiveIndex] =
- XmdsDataMgr.GetInstance().GetBossRandomPassiveSkill(this.mUnit.RandomN, passiveSkills)) != null)
- {
- passiveIndex++;
- }
- }
-
- for (int i = 0; i < passiveIndex; i++)
- {
- this.mProp.ServerData.Skills.UnitSkills.Add(new GameSkill(passiveSkills[i].SkillID, XmdsSkillType.passive));
-
- }
- }
- }
-
-
-
- protected void RandomDialogWords()
- {
- if (mDialogWords != null && mDialogWords.Length > 0 && mDialogWordRate > 0)
- {
- int v = this.mUnit.RandomN.Next(0, 100);
-
- if (v <= mDialogWordRate)
- {
-
- v = this.mUnit.RandomN.Next(0, mDialogWords.Length);
- SendBubbleTipsEventB2C(mDialogWords[v]);
- }
- }
- }
-
-
-
- protected void RandomDeadDialogWords()
- {
- if (mDeadDialogWords != null && mDeadDialogWords.Length > 0 && mDeadDialogWordRate > 0)
- {
- int v = this.mUnit.RandomN.Next(0, 100);
-
- if (v <= mDeadDialogWordRate)
- {
-
- v = this.mUnit.RandomN.Next(0, mDeadDialogWords.Length);
- SendBubbleTipsEventB2C(mDeadDialogWords[v]);
- }
- }
- }
-
-
-
-
- private void InitAbilityList(List<int> list)
- {
- GameSkill gs = null;
- List<GameSkill> mlist = new List<GameSkill>();
- for (int i = 0; i < list.Count; i++)
- {
- gs = new GameSkill();
- gs.SkillID = list[i];
- gs.SkillType = XmdsSkillType.passive;
- mlist.Add(gs);
- }
- this.SkillHelper.AddSkill(mlist);
- }
- public override InstanceUnit GetAtkTarget(InstanceUnit target)
- {
- if(mBindAttakPlayer != null)
- {
- if (mBindAttakPlayer.IsActive)
- {
- return mBindAttakPlayer;
- }
-
- this.mUnit.kill();
- }
- else
- {
- string bindAttackPlayerId = this.mUnit.GetAttackPlayer();
- if (bindAttackPlayerId != null)
- {
- mBindAttakPlayer = this.mUnit.Parent.getPlayerByUUID(bindAttackPlayerId);
- if(mBindAttakPlayer == null)
- {
- log.Warn("GetAtkTarget有攻击目标玩家找不到:" + this.mUnit.Info.ID + ", " + mBindAttakPlayer);
- this.mUnit.BindAttackPlayer(null);
- this.mUnit.kill();
- }
- else
- {
- return mBindAttakPlayer;
- }
- }
- }
-
- return base.GetAtkTarget(target);
- }
- #endregion
- #region BOSS能力.
- private void InitBossAbilities()
- {
- mIsBoss = true;
- GameSkill gs = new GameSkill();
- gs.SkillID = 0;
- this.RegistTryAddBuffEvent(OnTryAddBuffEvent, gs);
- }
- private void UnInitBossAbilities()
- {
- if (mIsBoss)
- {
-
- }
- }
- private bool OnTryAddBuffEvent(ref BuffTemplate buff, XmdsVirtual attacker, XmdsVirtual hitter, GameSkill skill)
- {
-
- if (!buff.forceAdd && buff.IsHarmful && XmdsInstanceUtils.IsControlBuff_Monster(buff))
- {
- return false;
- }
- return true;
- }
- private void OnBossHit(XmdsVirtual attacker, ref AttackSource source)
- {
- if (mIsBoss)
- {
- if (source.OutIsDamage == true && this.mUnit.CurrentState is InstanceUnit.StateSkill)
- {
- this.mUnit.SetStunTimeMS(0);
- }
- source.OutIsDamage = false;
- }
- }
- private void OnDamageInfoCheck(XmdsVirtual attacker, ref AttackSource source, int damage)
- {
- if (mIsBoss)
- {
- var player = attacker.GetPlayerUnit();
- AddDamageInfo(player, damage);
- }
- }
- private void AddDamageInfo(XmdsVirtual_Player attacker, int damage)
- {
-
- if (attacker == null || attacker.mUnit.IsActive == false)
- {
- return;
- }
- if (mSufferDamageInfo == null)
- {
- mSufferDamageInfo = new HashMap<string, PlayerDamageInfo>();
- }
- PlayerDamageInfo info = null;
- string uuid = attacker.GetPlayerUUID();
- if (string.IsNullOrEmpty(uuid) == false)
- {
- if (mSufferDamageInfo.TryGetValue(uuid, out info))
- {
- info.Damage += damage;
- info.PlayerInfo = attacker.mProp.ServerData.BaseInfo;
- }
- else
- {
- info = new PlayerDamageInfo();
- info.Damage += damage;
- info.PlayerInfo = attacker.mProp.ServerData.BaseInfo;
- info.PlayerUUID = uuid;
- mSufferDamageInfo.Add(uuid, info);
- }
- }
- }
- private void CleanDamageInfo()
- {
- if (mSufferDamageInfo != null)
- {
- mSufferDamageInfo.Clear();
- }
- }
- private void DisposeDamageInfo()
- {
- CleanDamageInfo();
- }
-
-
-
-
- public HashMap<string, PlayerDamageInfo> GetSufferDamage()
- {
- return mSufferDamageInfo;
- }
- public override int GetMaType()
- {
- return this.mMonsterType;
- }
- public override bool IsLvRepress()
- {
- return this.mIsLvRepress;
- }
- public override bool IsBoss()
- {
- return this.mIsBoss;
- }
- #endregion
- }
- }
|