123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.gameserver.model;
- import java.io.File;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javax.xml.parsers.DocumentBuilderFactory;
- import javolution.util.FastList;
- import org.w3c.dom.Document;
- import org.w3c.dom.Node;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.datatables.ItemTable;
- import com.l2jserver.gameserver.model.item.L2Item;
- import com.l2jserver.gameserver.util.L2TIntObjectHashMap;
- /**
- * Service class for manor
- * @author l3x
- */
- public class L2Manor
- {
- private static Logger _log = Logger.getLogger(L2Manor.class.getName());
-
- private static L2TIntObjectHashMap<SeedData> _seeds;
-
- private L2Manor()
- {
- _seeds = new L2TIntObjectHashMap<SeedData>();
- parseData();
- }
-
- public static L2Manor getInstance()
- {
- return SingletonHolder._instance;
- }
-
- public SeedData[] getSeedsDataArray()
- {
- return _seeds.values(new SeedData[0]);
- }
-
- public FastList<Integer> getAllCrops()
- {
- FastList<Integer> crops = new FastList<Integer>();
-
- for (SeedData seed : getSeedsDataArray())
- {
- if (!crops.contains(seed.getCrop()) && seed.getCrop() != 0 && !crops.contains(seed.getCrop()))
- {
- crops.add(seed.getCrop());
- }
- }
-
- return crops;
- }
-
- public int getSeedBasicPrice(int seedId)
- {
- final L2Item seedItem = ItemTable.getInstance().getTemplate(seedId);
- if (seedItem != null)
- {
- return seedItem.getReferencePrice();
- }
- return 0;
- }
-
- public int getSeedBasicPriceByCrop(int cropId)
- {
- for (SeedData seed : getSeedsDataArray())
- {
- if (seed.getCrop() == cropId)
- return getSeedBasicPrice(seed.getId());
- }
- return 0;
- }
-
- public int getCropBasicPrice(int cropId)
- {
- final L2Item cropItem = ItemTable.getInstance().getTemplate(cropId);
- if (cropItem != null)
- return cropItem.getReferencePrice();
- return 0;
- }
-
- public int getMatureCrop(int cropId)
- {
- for (SeedData seed : getSeedsDataArray())
- {
- if (seed.getCrop() == cropId)
- return seed.getMature();
- }
- return 0;
- }
-
- /**
- * Returns price which lord pays to buy one seed
- * @param seedId
- * @return seed price
- */
- public long getSeedBuyPrice(int seedId)
- {
- long buyPrice = getSeedBasicPrice(seedId);
- return (buyPrice > 0 ? buyPrice : 1);
- }
-
- public int getSeedMinLevel(int seedId)
- {
- SeedData seed = _seeds.get(seedId);
-
- if (seed != null)
- return seed.getLevel() - 5;
- return -1;
- }
-
- public int getSeedMaxLevel(int seedId)
- {
- SeedData seed = _seeds.get(seedId);
-
- if (seed != null)
- return seed.getLevel() + 5;
- return -1;
- }
-
- public int getSeedLevelByCrop(int cropId)
- {
- for (SeedData seed : getSeedsDataArray())
- {
- if (seed.getCrop() == cropId)
- {
- return seed.getLevel();
- }
- }
- return 0;
- }
-
- public int getSeedLevel(int seedId)
- {
- SeedData seed = _seeds.get(seedId);
-
- if (seed != null)
- {
- return seed.getLevel();
- }
- return -1;
- }
-
- public boolean isAlternative(int seedId)
- {
- for (SeedData seed : getSeedsDataArray())
- {
- if (seed.getId() == seedId)
- {
- return seed.isAlternative();
- }
- }
- return false;
- }
-
- public int getCropType(int seedId)
- {
- SeedData seed = _seeds.get(seedId);
-
- if (seed != null)
- return seed.getCrop();
- return -1;
- }
-
- public int getRewardItem(int cropId, int type)
- {
- for (SeedData seed : getSeedsDataArray())
- {
- if (seed.getCrop() == cropId)
- {
- return seed.getReward(type); // there can be several
- // seeds with same crop, but
- // reward should be the same for
- // all
- }
- }
- return -1;
- }
-
- public int getRewardItemBySeed(int seedId, int type)
- {
- SeedData seed = _seeds.get(seedId);
-
- if (seed != null)
- {
- return seed.getReward(type);
- }
- return 0;
- }
-
- /**
- * Return all crops which can be purchased by given castle
- *
- * @param castleId
- * @return
- */
- public FastList<Integer> getCropsForCastle(int castleId)
- {
- FastList<Integer> crops = new FastList<Integer>();
-
- for (SeedData seed : getSeedsDataArray())
- {
- if (seed.getManorId() == castleId && !crops.contains(seed.getCrop()))
- {
- crops.add(seed.getCrop());
- }
- }
-
- return crops;
- }
-
- /**
- * Return list of seed ids, which belongs to castle with given id
- * @param castleId - id of the castle
- * @return seedIds - list of seed ids
- */
- public FastList<Integer> getSeedsForCastle(int castleId)
- {
- FastList<Integer> seedsID = new FastList<Integer>();
-
- for (SeedData seed : getSeedsDataArray())
- {
- if (seed.getManorId() == castleId && !seedsID.contains(seed.getId()))
- {
- seedsID.add(seed.getId());
- }
- }
-
- return seedsID;
- }
-
- /**
- * Returns castle id where seed can be sowned<br>
- * @param seedId
- * @return castleId
- */
- public int getCastleIdForSeed(int seedId)
- {
- SeedData seed = _seeds.get(seedId);
-
- if (seed != null)
- {
- return seed.getManorId();
- }
- return 0;
- }
-
- public int getSeedSaleLimit(int seedId)
- {
- SeedData seed = _seeds.get(seedId);
-
- if (seed != null)
- {
- return seed.getSeedLimit();
- }
- return 0;
- }
-
- public int getCropPuchaseLimit(int cropId)
- {
- for (SeedData seed : getSeedsDataArray())
- {
- if (seed.getCrop() == cropId)
- {
- return seed.getCropLimit();
- }
- }
- return 0;
- }
-
- private static class SeedData
- {
- private int _id;
- private int _level; // seed level
- private int _crop; // crop type
- private int _mature; // mature crop type
- private int _type1;
- private int _type2;
- private int _manorId; // id of manor (castle id) where seed can be farmed
- private boolean _isAlternative;
- private int _limitSeeds;
- private int _limitCrops;
-
- public SeedData(int level, int crop, int mature)
- {
- this._level = level;
- this._crop = crop;
- this._mature = mature;
- }
-
- public void setData(int id, int t1, int t2, int manorId, boolean isAlt, int lim1, int lim2)
- {
- this._id = id;
- _type1 = t1;
- _type2 = t2;
- _manorId = manorId;
- _isAlternative = isAlt;
- _limitSeeds = lim1;
- _limitCrops = lim2;
- }
-
- public int getManorId()
- {
- return _manorId;
- }
-
- public int getId()
- {
- return _id;
- }
-
- public int getCrop()
- {
- return _crop;
- }
-
- public int getMature()
- {
- return _mature;
- }
-
- public int getReward(int type)
- {
- return (type == 1 ? _type1 : _type2);
- }
-
- public int getLevel()
- {
- return _level;
- }
-
- public boolean isAlternative()
- {
- return _isAlternative;
- }
-
- public int getSeedLimit()
- {
- return _limitSeeds * Config.RATE_DROP_MANOR;
- }
-
- public int getCropLimit()
- {
- return _limitCrops * Config.RATE_DROP_MANOR;
- }
- @Override
- public String toString()
- {
- return "SeedData [_id=" + _id + ", _level=" + _level + ", _crop=" + _crop + ", _mature=" + _mature + ", _type1=" + _type1 + ", _type2=" + _type2 + ", _manorId=" + _manorId + ", _isAlternative=" + _isAlternative + ", _limitSeeds=" + _limitSeeds + ", _limitCrops=" + _limitCrops + "]";
- }
- }
-
- private void parseData()
- {
- DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
- factory.setValidating(false);
- factory.setIgnoringComments(true);
- File file = new File(Config.DATAPACK_ROOT, "/data/seeds.xml");
- Document doc = null;
-
- try
- {
- doc = factory.newDocumentBuilder().parse(file);
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "Could not parse seeds.xml file: " + e.getMessage(), e);
- return;
- }
-
- doc.getDocumentElement().normalize();
-
- //list
- for (Node n = doc.getFirstChild(); n != null; n = n.getNextSibling())
- {
- if ("list".equalsIgnoreCase(n.getNodeName()))
- {
- //castle
- for (Node d = n.getFirstChild(); d != null; d = d.getNextSibling())
- {
- if ("castle".equalsIgnoreCase(d.getNodeName()))
- {
- int castleId = Integer.parseInt(d.getAttributes().getNamedItem("id").getNodeValue());
- //crop
- for (Node c = d.getFirstChild(); c != null; c = c.getNextSibling())
- {
- if ("crop".equalsIgnoreCase(c.getNodeName()))
- {
- int cropId = Integer.parseInt(c.getAttributes().getNamedItem("id").getNodeValue());
- int seedId = 0;
- int matureId = 0;
- int type1R = 0;
- int type2R = 0;
- boolean isAlt = false;
- int level = 0;
- int limitSeeds = 0;
- int limitCrops = 0;
-
- //attrib
- for (Node a = c.getFirstChild(); a != null; a = a.getNextSibling())
- {
- if (a.getNodeName().equalsIgnoreCase("seed_id"))
- seedId = Integer.parseInt(a.getAttributes().getNamedItem("val").getNodeValue());
- else if (a.getNodeName().equalsIgnoreCase("mature_id"))
- matureId = Integer.parseInt(a.getAttributes().getNamedItem("val").getNodeValue());
- else if (a.getNodeName().equalsIgnoreCase("reward1"))
- type1R = Integer.parseInt(a.getAttributes().getNamedItem("val").getNodeValue());
- else if (a.getNodeName().equalsIgnoreCase("reward2"))
- type2R = Integer.parseInt(a.getAttributes().getNamedItem("val").getNodeValue());
- else if (a.getNodeName().equalsIgnoreCase("alternative"))
- isAlt = Integer.parseInt(a.getAttributes().getNamedItem("val").getNodeValue()) == 1;
- else if (a.getNodeName().equalsIgnoreCase("level"))
- level = Integer.parseInt(a.getAttributes().getNamedItem("val").getNodeValue());
- else if (a.getNodeName().equalsIgnoreCase("limit_seed"))
- limitSeeds = Integer.parseInt(a.getAttributes().getNamedItem("val").getNodeValue());
- else if (a.getNodeName().equalsIgnoreCase("limit_crops"))
- limitCrops = Integer.parseInt(a.getAttributes().getNamedItem("val").getNodeValue());
- }
-
- SeedData seed = new SeedData(level, cropId, matureId);
- seed.setData(seedId, type1R, type2R, castleId, isAlt, limitSeeds, limitCrops);
- _seeds.put(seed.getId(), seed);
- }
- }
- }
- }
- }
- _log.info(getClass().getSimpleName()+": Loaded "+_seeds.size()+ " Seeds.");
- }
- }
-
-
- @SuppressWarnings("synthetic-access")
- private static class SingletonHolder
- {
- protected static final L2Manor _instance = new L2Manor();
- }
-
- public static void main(String[] arg)
- {
- L2Manor.getInstance();
- }
- }
|