TemplateManager.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.IO;
  5. using CommonLang;
  6. using CommonLang.IO;
  7. using CommonLang.IO.Attribute;
  8. using System.Runtime.Serialization;
  9. using System.Xml.Serialization;
  10. using CommonAI.Zone.Instance;
  11. using CommonAI.Zone.Formula;
  12. using CommonLang.Property;
  13. using CommonLang.Log;
  14. using CommonLang.Xml;
  15. using CommonAI.Zone.Helper;
  16. using CommonLang.Concurrent;
  17. using System.Xml;
  18. using CommonLang.Protocol;
  19. using CommonAI.Zone.Simple;
  20. namespace CommonAI.Zone
  21. {
  22. public class TemplateManager
  23. {
  24. //----------------------------------------------------------------------------------------------
  25. #region _STATIC_
  26. private static bool s_IsEditor = false;
  27. private static InstanceZoneFactory s_Factory = new SimpleInstanceZoneFactory();
  28. private static MessageFactoryGenerator s_Codec = new MessageFactoryGenerator();
  29. public static bool IsEditor { get { return s_IsEditor; } set { s_IsEditor = value; } }
  30. public static IFormula Formula
  31. {
  32. get { return s_Factory.Formula; }
  33. }
  34. public static MessageFactoryGenerator MessageCodec { get { return s_Codec; } }
  35. public static InstanceZoneFactory Factory
  36. {
  37. get { return s_Factory; }
  38. }
  39. public static void setFactory(InstanceZoneFactory factory)
  40. {
  41. TemplateManager.s_Factory = factory;
  42. TemplateManager.s_Codec.RegistAssembly(AppDomain.CurrentDomain.GetAssemblies());
  43. ZoneEditor.EventTrigger.GameFields.InitFiledManager();
  44. }
  45. public static InstanceZoneFactory LoadFactory(string plugin)
  46. {
  47. Type type = ReflectionUtil.GetType(plugin);
  48. InstanceZoneFactory factory = (InstanceZoneFactory)ReflectionUtil.CreateInstance(type);
  49. TemplateManager.setFactory(factory);
  50. return factory;
  51. }
  52. #endregion
  53. //----------------------------------------------------------------------------------------------
  54. private Config mConfig;
  55. private ICommonConfig mExtConfig;
  56. private TerrainDefinitionMap mTerrainDefinition;
  57. private UnitActionDefinitionMap mUnitActionDefinition;
  58. private HashMap<UnitActionStatus, UnitActionDefinitionMap.UnitAction> mUnitActionMap = new HashMap<UnitActionStatus, UnitActionDefinitionMap.UnitAction>();
  59. private HashMap<int, UnitInfo> mUnits = new HashMap<int, UnitInfo>();
  60. private HashMap<int, SkillTemplate> mSkills = new HashMap<int, SkillTemplate>();
  61. private HashMap<int, SpellTemplate> mSpells = new HashMap<int, SpellTemplate>();
  62. private HashMap<int, BuffTemplate> mBuffs = new HashMap<int, BuffTemplate>();
  63. private HashMap<int, ItemTemplate> mItems = new HashMap<int, ItemTemplate>();
  64. private HashMap<int, UnitTriggerTemplate> mUnitTriggers = new HashMap<int, UnitTriggerTemplate>();
  65. private HashMap<int, UnitEventTemplate> mUnitEvents = new HashMap<int, UnitEventTemplate>();
  66. //----------------------------------------------------------------------------------------------
  67. public TemplateManager()
  68. {
  69. mConfig = new Config();
  70. this.mExtConfig = s_Factory.CreateCommonCFG();
  71. mTerrainDefinition = new TerrainDefinitionMap();
  72. mUnitActionDefinition = new UnitActionDefinitionMap();
  73. }
  74. public string ResourceVersion { get; internal set; }
  75. public Config CFG
  76. {
  77. get { return mConfig; }
  78. internal set { mConfig = value; }
  79. }
  80. public ICommonConfig ExtConfig
  81. {
  82. get { return mExtConfig; }
  83. internal set { mExtConfig = value; }
  84. }
  85. public TerrainDefinitionMap TerrainDefinition
  86. {
  87. get { return mTerrainDefinition; }
  88. internal set { mTerrainDefinition = value; }
  89. }
  90. public UnitActionDefinitionMap UnitActionDefinition
  91. {
  92. get { return mUnitActionDefinition; }
  93. internal set
  94. {
  95. mUnitActionDefinition = value;
  96. mUnitActionMap.Clear();
  97. foreach (var a in value.ActionMap)
  98. {
  99. mUnitActionMap.Put(a.Action, a);
  100. }
  101. }
  102. }
  103. public UnitActionDefinitionMap.UnitAction GetDefinedUnitAction(UnitActionStatus act)
  104. {
  105. UnitActionDefinitionMap.UnitAction ret;
  106. mUnitActionMap.TryGetValue(act, out ret);
  107. return ret;
  108. }
  109. //----------------------------------------------------------------------------------------------
  110. //----------------------------------------------------------------------------------------------
  111. //----------------------------------------------------------------------------------------------
  112. #region UNITS
  113. public List<UnitInfo> getAllUnits()
  114. {
  115. return new List<UnitInfo>(mUnits.Values);
  116. }
  117. public HashMap<int, UnitInfo> getUnits()
  118. {
  119. return mUnits;
  120. }
  121. internal void addUnit(UnitInfo st)
  122. {
  123. if (st.ID == 0)
  124. {
  125. throw new Exception("ID=0不是一个有效的ID:" + st);
  126. }
  127. mUnits.Put(st.ID, st);
  128. }
  129. public UnitInfo getUnit(int id)
  130. {
  131. UnitInfo st;
  132. if (mUnits.TryGetValue(id, out st))
  133. {
  134. return st;
  135. }
  136. return null;
  137. }
  138. public Dictionary<int, UnitInfo> getUnits(List<int> units)
  139. {
  140. Dictionary<int, UnitInfo> ret = new Dictionary<int, UnitInfo>();
  141. foreach (int uid in units)
  142. {
  143. UnitInfo st = getUnit(uid);
  144. if (st != null && !ret.ContainsKey(uid))
  145. {
  146. ret.Add(uid, st);
  147. }
  148. }
  149. return ret;
  150. }
  151. #endregion
  152. //----------------------------------------------------------------------------------------------
  153. #region SKILLS
  154. public List<SkillTemplate> getAllSkills()
  155. {
  156. return new List<SkillTemplate>(mSkills.Values);
  157. }
  158. public HashMap<int, SkillTemplate> getAllSkillData()
  159. {
  160. return mSkills;
  161. }
  162. internal void addSkill(SkillTemplate st)
  163. {
  164. if (st.ID == 0)
  165. {
  166. throw new Exception("ID=0不是一个有效的ID:" + st);
  167. }
  168. mSkills.Put(st.ID, st);
  169. }
  170. public SkillTemplate getSkill(int id)
  171. {
  172. SkillTemplate st;
  173. if (mSkills.TryGetValue(id, out st))
  174. {
  175. return st;
  176. }
  177. return null;
  178. }
  179. public Dictionary<int, SkillTemplate> getSkills(List<int> skills)
  180. {
  181. Dictionary<int, SkillTemplate> ret = new Dictionary<int, SkillTemplate>();
  182. foreach (int skillID in skills)
  183. {
  184. SkillTemplate st = getSkill(skillID);
  185. if (st != null && !ret.ContainsKey(skillID))
  186. {
  187. ret.Add(skillID, st);
  188. }
  189. }
  190. return ret;
  191. }
  192. #endregion
  193. //----------------------------------------------------------------------------------------------
  194. #region SPELLS
  195. public List<SpellTemplate> getAllSpells()
  196. {
  197. return new List<SpellTemplate>(mSpells.Values);
  198. }
  199. internal void addSpell(SpellTemplate st)
  200. {
  201. if (st.ID == 0)
  202. {
  203. throw new Exception("ID=0不是一个有效的ID:" + st);
  204. }
  205. mSpells.Put(st.ID, st);
  206. }
  207. public SpellTemplate getSpell(int id)
  208. {
  209. SpellTemplate st;
  210. if (mSpells.TryGetValue(id, out st))
  211. {
  212. return st;
  213. }
  214. return null;
  215. }
  216. public Dictionary<int, SpellTemplate> getSpells(List<int> spells)
  217. {
  218. Dictionary<int, SpellTemplate> ret = new Dictionary<int, SpellTemplate>();
  219. foreach (int sid in spells)
  220. {
  221. SpellTemplate st = getSpell(sid);
  222. if (st != null && !ret.ContainsKey(sid))
  223. {
  224. ret.Add(sid, st);
  225. }
  226. }
  227. return ret;
  228. }
  229. #endregion
  230. //----------------------------------------------------------------------------------------------
  231. #region BUFFS
  232. public List<BuffTemplate> getAllBuffs()
  233. {
  234. return new List<BuffTemplate>(mBuffs.Values);
  235. }
  236. internal void addBuff(BuffTemplate st)
  237. {
  238. if (st.ID == 0)
  239. {
  240. throw new Exception("ID=0不是一个有效的ID:" + st);
  241. }
  242. mBuffs.Put(st.ID, st);
  243. }
  244. public BuffTemplate getBuff(int id)
  245. {
  246. BuffTemplate st;
  247. if (mBuffs.TryGetValue(id, out st))
  248. {
  249. return st;
  250. }
  251. return null;
  252. }
  253. public Dictionary<int, BuffTemplate> getBuffs(List<int> spells)
  254. {
  255. Dictionary<int, BuffTemplate> ret = new Dictionary<int, BuffTemplate>();
  256. foreach (int sid in spells)
  257. {
  258. BuffTemplate st = getBuff(sid);
  259. if (st != null && !ret.ContainsKey(sid))
  260. {
  261. ret.Add(sid, st);
  262. }
  263. }
  264. return ret;
  265. }
  266. #endregion
  267. //----------------------------------------------------------------------------------------------
  268. #region ITEMS
  269. public List<ItemTemplate> getAllItems()
  270. {
  271. return new List<ItemTemplate>(mItems.Values);
  272. }
  273. internal void addItem(ItemTemplate st)
  274. {
  275. if (st.ID == 0)
  276. {
  277. throw new Exception("ID=0不是一个有效的ID:" + st);
  278. }
  279. mItems.Put(st.ID, st);
  280. }
  281. public ItemTemplate getItem(int id)
  282. {
  283. ItemTemplate st;
  284. if (mItems.TryGetValue(id, out st))
  285. {
  286. return st;
  287. }
  288. return null;
  289. }
  290. public Dictionary<int, ItemTemplate> getItems(List<int> items)
  291. {
  292. Dictionary<int, ItemTemplate> ret = new Dictionary<int, ItemTemplate>();
  293. foreach (int sid in items)
  294. {
  295. ItemTemplate st = getItem(sid);
  296. if (st != null && !ret.ContainsKey(sid))
  297. {
  298. ret.Add(sid, st);
  299. }
  300. }
  301. return ret;
  302. }
  303. #endregion
  304. //----------------------------------------------------------------------------------------------
  305. #region UNIT_TRIGGERS
  306. public List<UnitTriggerTemplate> getAllUnitTriggers()
  307. {
  308. return new List<UnitTriggerTemplate>(mUnitTriggers.Values);
  309. }
  310. internal void addUnitTrigger(UnitTriggerTemplate st)
  311. {
  312. if (st.ID == 0)
  313. {
  314. throw new Exception("ID=0不是一个有效的ID:" + st);
  315. }
  316. mUnitTriggers.Put(st.ID, st);
  317. }
  318. public UnitTriggerTemplate getUnitTrigger(int id)
  319. {
  320. UnitTriggerTemplate st;
  321. if (mUnitTriggers.TryGetValue(id, out st))
  322. {
  323. return st;
  324. }
  325. return null;
  326. }
  327. public Dictionary<int, UnitTriggerTemplate> getUnitTriggers(List<int> items)
  328. {
  329. Dictionary<int, UnitTriggerTemplate> ret = new Dictionary<int, UnitTriggerTemplate>();
  330. foreach (int sid in items)
  331. {
  332. UnitTriggerTemplate st = getUnitTrigger(sid);
  333. if (st != null && !ret.ContainsKey(sid))
  334. {
  335. ret.Add(sid, st);
  336. }
  337. }
  338. return ret;
  339. }
  340. #endregion
  341. //----------------------------------------------------------------------------------------------
  342. #region UNIT_EVENTS
  343. public List<UnitEventTemplate> getAllUnitEvents()
  344. {
  345. return new List<UnitEventTemplate>(mUnitEvents.Values);
  346. }
  347. internal void addUnitEvent(UnitEventTemplate st)
  348. {
  349. if (st.ID == 0)
  350. {
  351. throw new Exception("ID=0不是一个有效的ID:" + st);
  352. }
  353. mUnitEvents.Put(st.ID, st);
  354. }
  355. public UnitEventTemplate getUnitEvent(int id)
  356. {
  357. UnitEventTemplate st;
  358. if (mUnitEvents.TryGetValue(id, out st))
  359. {
  360. return st;
  361. }
  362. return null;
  363. }
  364. public Dictionary<int, UnitEventTemplate> getUnitEvents(List<int> items)
  365. {
  366. Dictionary<int, UnitEventTemplate> ret = new Dictionary<int, UnitEventTemplate>();
  367. foreach (int sid in items)
  368. {
  369. UnitEventTemplate st = getUnitEvent(sid);
  370. if (st != null && !ret.ContainsKey(sid))
  371. {
  372. ret.Add(sid, st);
  373. }
  374. }
  375. return ret;
  376. }
  377. #endregion
  378. //----------------------------------------------------------------------------------------------
  379. private HashMap<Type, HashMap<uint, ISNData>> mSnDataMap = new HashMap<Type, HashMap<uint, ISNData>>();
  380. private HashMap<uint, ISNData> mCurrentSceneSnDataMap = new HashMap<uint, ISNData>();
  381. private int Rehash(object data)
  382. {
  383. int count = 0;
  384. List<ISNData> datas = new List<ISNData>();
  385. PropertyUtil.CollectFieldTypeValues<ISNData>(data, datas);
  386. foreach (ISNData sn in datas)
  387. {
  388. Type type = sn.GetType();
  389. HashMap<uint, ISNData> map = mSnDataMap.Get(type);
  390. if (map == null)
  391. {
  392. map = new HashMap<uint, ISNData>();
  393. mSnDataMap.Add(type, map);
  394. }
  395. if (!map.ContainsKey(sn.SerialNumber))
  396. {
  397. map.Add(sn.SerialNumber, sn);
  398. count++;
  399. }
  400. else
  401. {
  402. throw new Exception(string.Format("SerialNumber {0} already in use ! {1}", sn.SerialNumber, sn));
  403. }
  404. }
  405. return count;
  406. }
  407. public int RehashAll()
  408. {
  409. mSnDataMap.Clear();
  410. int count = 0;
  411. count += Rehash(mUnits);
  412. count += Rehash(mSkills);
  413. count += Rehash(mSpells);
  414. count += Rehash(mBuffs);
  415. count += Rehash(mItems);
  416. count += Rehash(mUnitTriggers);
  417. count += Rehash(mUnitEvents);
  418. return count;
  419. }
  420. internal int RehashAllScene(object scenes)
  421. {
  422. return Rehash(scenes);
  423. }
  424. internal int RehashScene(object scene)
  425. {
  426. int count = 0;
  427. mCurrentSceneSnDataMap.Clear();
  428. List<ISNData> datas = new List<ISNData>();
  429. PropertyUtil.CollectFieldTypeValues<ISNData>(scene, datas);
  430. foreach (ISNData sn in datas)
  431. {
  432. if (!mCurrentSceneSnDataMap.ContainsKey(sn.SerialNumber))
  433. {
  434. mCurrentSceneSnDataMap.Add(sn.SerialNumber, sn);
  435. count++;
  436. }
  437. else
  438. {
  439. throw new Exception(string.Format("SerialNumber {0} already in use ! {1} @ {2}", sn.SerialNumber, sn, scene));
  440. }
  441. }
  442. return count;
  443. }
  444. public T GetSnData<T>(uint sn) where T : ISNData
  445. {
  446. Type type = typeof(T);
  447. HashMap<uint, ISNData> map = mSnDataMap.Get(type);
  448. if (map != null)
  449. {
  450. T ret = map.Get(sn) as T;
  451. if (ret != null)
  452. {
  453. return ret;
  454. }
  455. }
  456. T ret2 = mCurrentSceneSnDataMap.Get(sn) as T;
  457. if(ret2 == null)
  458. {
  459. //打一些Log,以免某些效果出不来,没头脑的找半天
  460. ClientLog.LogError("找不到SerialNumber={0}的数据,某些效果可能丢失,需要等待服务器更新", sn);
  461. }
  462. return ret2;
  463. }
  464. }
  465. public interface ITemplateData : IExternalizable
  466. {
  467. int TemplateID { get; }
  468. string EditorPath { get; set; }
  469. }
  470. public abstract class ISNData : IExternalizable
  471. {
  472. private static IDGenerator idgen = new IDGenerator();
  473. private uint mSN = idgen.NextID();
  474. [XmlSerializableAttribute(XmlSerializableProperty.IgnoreClone)]
  475. public uint SerialNumber
  476. {
  477. get { return mSN; }
  478. set { mSN = idgen.Regist(value); }
  479. }
  480. public void RegenSerialNumber(uint value)
  481. {
  482. mSN = idgen.Regist(value);
  483. }
  484. public virtual void WriteExternal(IOutputStream output)
  485. {
  486. output.PutU32(mSN);
  487. }
  488. public virtual void ReadExternal(IInputStream input)
  489. {
  490. this.mSN = input.GetU32();
  491. }
  492. }
  493. }