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

游戏

开发平台:

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.client;
  19. import java.io.File;
  20. import java.util.HashMap;
  21. import java.util.Map;
  22. import net.sf.odinms.provider.MapleData;
  23. import net.sf.odinms.provider.MapleDataProvider;
  24. import net.sf.odinms.provider.MapleDataProviderFactory;
  25. import net.sf.odinms.provider.MapleDataTool;
  26. import net.sf.odinms.tools.Pair;
  27. /**
  28.  *
  29.  * @author Danny (Leifde)
  30.  */
  31. public class PetDataFactory {
  32.     private static MapleDataProvider dataRoot = MapleDataProviderFactory.getDataProvider(new File(System.getProperty("net.sf.odinms.wzpath") + "/Item.wz"));
  33.     private static Map<Pair<Integer, Integer>, PetCommand> petCommands = new HashMap<Pair<Integer, Integer>, PetCommand>();
  34.     private static Map<Integer, Integer> petHunger = new HashMap<Integer, Integer>();
  35.     public static PetCommand getPetCommand(int petId, int skillId) {
  36.         PetCommand ret = petCommands.get(new Pair<Integer, Integer>(Integer.valueOf(petId), Integer.valueOf(skillId)));
  37.         if (ret != null) {
  38.             return ret;
  39.         }
  40.         synchronized (petCommands) {
  41.             // see if someone else that's also synchronized has loaded the skill by now
  42.             ret = petCommands.get(new Pair<Integer, Integer>(Integer.valueOf(petId), Integer.valueOf(skillId)));
  43.             if (ret == null) {
  44.                 MapleData skillData = dataRoot.getData("Pet/" + petId + ".img");
  45.                 int prob = 0;
  46.                 int inc = 0;
  47.                 if (skillData != null) {
  48.                     prob = MapleDataTool.getInt("interact/" + skillId + "/prob", skillData, 0);
  49.                     inc = MapleDataTool.getInt("interact/" + skillId + "/inc", skillData, 0);
  50.                 }
  51.                 ret = new PetCommand(petId, skillId, prob, inc);
  52.                 petCommands.put(new Pair<Integer, Integer>(Integer.valueOf(petId), Integer.valueOf(skillId)), ret);
  53.             }
  54.             return ret;
  55.         }
  56.     }
  57.     public static int getHunger(int petId) {
  58.         Integer ret = petHunger.get(Integer.valueOf(petId));
  59.         if (ret != null) {
  60.             return ret;
  61.         }
  62.         synchronized (petHunger) {
  63.             ret = petHunger.get(Integer.valueOf(petId));
  64.             if (ret == null) {
  65.                 MapleData hungerData = dataRoot.getData("Pet/" + petId + ".img").getChildByPath("info/hungry");
  66.                 ret = Integer.valueOf(MapleDataTool.getInt(hungerData, 1));
  67.             }
  68.             return ret;
  69.         }
  70.     }
  71. }