MobSkillFactory.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:4k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.server.life;
  19. import java.awt.Point;
  20. import java.io.File;
  21. import java.util.ArrayList;
  22. import java.util.HashMap;
  23. import java.util.List;
  24. import java.util.Map;
  25. import net.sf.odinms.provider.MapleData;
  26. import net.sf.odinms.provider.MapleDataProvider;
  27. import net.sf.odinms.provider.MapleDataProviderFactory;
  28. import net.sf.odinms.provider.MapleDataTool;
  29. import net.sf.odinms.tools.Pair;
  30. /**
  31.  *
  32.  * @author Danny (Leifde)
  33.  */
  34. public class MobSkillFactory {
  35. private static Map<Pair<Integer, Integer>, MobSkill> mobSkills = new HashMap<Pair<Integer, Integer>, MobSkill>();
  36. private static MapleDataProvider dataSource = MapleDataProviderFactory.getDataProvider(new File(System.getProperty("net.sf.odinms.wzpath") + "/Skill.wz"));
  37. private static MapleData skillRoot = dataSource.getData("MobSkill.img");
  38. public static MobSkill getMobSkill(int skillId, int level) {
  39. MobSkill ret = mobSkills.get(new Pair<Integer, Integer>(Integer.valueOf(skillId), Integer.valueOf(level)));
  40. if (ret != null) {
  41. return ret;
  42. }
  43. synchronized (mobSkills) {
  44. // see if someone else that's also synchronized has loaded the skill by now
  45. ret = mobSkills.get(new Pair<Integer, Integer>(Integer.valueOf(skillId), Integer.valueOf(level)));
  46. if (ret == null) {
  47. MapleData skillData = skillRoot.getChildByPath(skillId + "/level/" + level);
  48. if (skillData != null) {
  49. int mpCon = MapleDataTool.getInt(skillData.getChildByPath("mpCon"), 0);
  50. List<Integer> toSummon = new ArrayList<Integer>();
  51. for (int i = 0; i > -1; i++) {
  52. if (skillData.getChildByPath(String.valueOf(i)) == null) {
  53. break;
  54. }
  55. toSummon.add(Integer.valueOf(MapleDataTool.getInt(skillData.getChildByPath(String.valueOf(i)), 0)));
  56. }
  57. int effect = MapleDataTool.getInt("summonEffect", skillData, 0);
  58. int hp = MapleDataTool.getInt("hp", skillData, 100);
  59. int x = MapleDataTool.getInt("x", skillData, 1);
  60. int y = MapleDataTool.getInt("y", skillData, 1);
  61. long duration = MapleDataTool.getInt("time", skillData, 0) * 1000;
  62. long cooltime = MapleDataTool.getInt("interval", skillData, 0) * 1000;
  63. int iprop = MapleDataTool.getInt("prop", skillData, 100);
  64. float prop = iprop / 100;
  65. int limit = MapleDataTool.getInt("limit", skillData, 0);
  66. MapleData ltd = skillData.getChildByPath("lt");
  67. Point lt = null;
  68. Point rb = null;
  69. if (ltd != null) {
  70. lt = (Point) ltd.getData();
  71. rb = (Point) skillData.getChildByPath("rb").getData();
  72. }
  73. ret = new MobSkill(skillId, level);
  74. ret.addSummons(toSummon);
  75. ret.setCoolTime(cooltime);
  76. ret.setDuration(duration);
  77. ret.setHp(hp);
  78. ret.setMpCon(mpCon);
  79. ret.setSpawnEffect(effect);
  80. ret.setX(x);
  81. ret.setY(y);
  82. ret.setProp(prop);
  83. ret.setLimit(limit);
  84. ret.setLtRb(lt, rb);
  85. }
  86. mobSkills.put(new Pair<Integer, Integer>(Integer.valueOf(skillId), Integer.valueOf(level)), ret);
  87. }
  88. return ret;
  89. }
  90. }
  91. }