123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- /*
- * Copyright (C) 2004-2015 L2J Server
- *
- * This file is part of L2J Server.
- *
- * L2J Server 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.
- *
- * L2J Server 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.stats;
- import java.io.File;
- import java.util.NoSuchElementException;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javax.xml.parsers.DocumentBuilderFactory;
- import org.w3c.dom.Document;
- import org.w3c.dom.NamedNodeMap;
- import org.w3c.dom.Node;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.model.actor.L2Character;
- /**
- * @author DS
- */
- public enum BaseStats
- {
- STR(new STR()),
- INT(new INT()),
- DEX(new DEX()),
- WIT(new WIT()),
- CON(new CON()),
- MEN(new MEN()),
- NONE(new NONE());
-
- private static final Logger _log = Logger.getLogger(BaseStats.class.getName());
-
- public static final int MAX_STAT_VALUE = 100;
-
- protected static final double[] STRbonus = new double[MAX_STAT_VALUE];
- protected static final double[] INTbonus = new double[MAX_STAT_VALUE];
- protected static final double[] DEXbonus = new double[MAX_STAT_VALUE];
- protected static final double[] WITbonus = new double[MAX_STAT_VALUE];
- protected static final double[] CONbonus = new double[MAX_STAT_VALUE];
- protected static final double[] MENbonus = new double[MAX_STAT_VALUE];
-
- private final BaseStat _stat;
-
- public final String getValue()
- {
- return _stat.getClass().getSimpleName();
- }
-
- private BaseStats(BaseStat s)
- {
- _stat = s;
- }
-
- public final double calcBonus(L2Character actor)
- {
- if (actor != null)
- {
- return _stat.calcBonus(actor);
- }
-
- return 1;
- }
-
- public static final BaseStats valueOfXml(String name)
- {
- name = name.intern();
- for (BaseStats s : values())
- {
- if (s.getValue().equalsIgnoreCase(name))
- {
- return s;
- }
- }
- throw new NoSuchElementException("Unknown name '" + name + "' for enum BaseStats");
- }
-
- private interface BaseStat
- {
- public double calcBonus(L2Character actor);
- }
-
- protected static final class STR implements BaseStat
- {
- @Override
- public final double calcBonus(L2Character actor)
- {
- return STRbonus[actor.getSTR()];
- }
- }
-
- protected static final class INT implements BaseStat
- {
- @Override
- public final double calcBonus(L2Character actor)
- {
- return INTbonus[actor.getINT()];
- }
- }
-
- protected static final class DEX implements BaseStat
- {
- @Override
- public final double calcBonus(L2Character actor)
- {
- return DEXbonus[actor.getDEX()];
- }
- }
-
- protected static final class WIT implements BaseStat
- {
- @Override
- public final double calcBonus(L2Character actor)
- {
- return WITbonus[actor.getWIT()];
- }
- }
-
- protected static final class CON implements BaseStat
- {
- @Override
- public final double calcBonus(L2Character actor)
- {
- return CONbonus[actor.getCON()];
- }
- }
-
- protected static final class MEN implements BaseStat
- {
- @Override
- public final double calcBonus(L2Character actor)
- {
- return MENbonus[actor.getMEN()];
- }
- }
-
- protected static final class NONE implements BaseStat
- {
- @Override
- public final double calcBonus(L2Character actor)
- {
- return 1f;
- }
- }
-
- static
- {
- final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
- factory.setValidating(false);
- factory.setIgnoringComments(true);
- final File file = new File(Config.DATAPACK_ROOT, "data/stats/statBonus.xml");
- Document doc = null;
-
- if (file.exists())
- {
- try
- {
- doc = factory.newDocumentBuilder().parse(file);
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "[BaseStats] Could not parse file: " + e.getMessage(), e);
- }
-
- if (doc != null)
- {
- String statName;
- int val;
- double bonus;
- NamedNodeMap attrs;
- for (Node list = doc.getFirstChild(); list != null; list = list.getNextSibling())
- {
- if ("list".equalsIgnoreCase(list.getNodeName()))
- {
- for (Node stat = list.getFirstChild(); stat != null; stat = stat.getNextSibling())
- {
- statName = stat.getNodeName();
- for (Node value = stat.getFirstChild(); value != null; value = value.getNextSibling())
- {
- if ("stat".equalsIgnoreCase(value.getNodeName()))
- {
- attrs = value.getAttributes();
- try
- {
- val = Integer.parseInt(attrs.getNamedItem("value").getNodeValue());
- bonus = Double.parseDouble(attrs.getNamedItem("bonus").getNodeValue());
- }
- catch (Exception e)
- {
- _log.severe("[BaseStats] Invalid stats value: " + value.getNodeValue() + ", skipping");
- continue;
- }
-
- if ("STR".equalsIgnoreCase(statName))
- {
- STRbonus[val] = bonus;
- }
- else if ("INT".equalsIgnoreCase(statName))
- {
- INTbonus[val] = bonus;
- }
- else if ("DEX".equalsIgnoreCase(statName))
- {
- DEXbonus[val] = bonus;
- }
- else if ("WIT".equalsIgnoreCase(statName))
- {
- WITbonus[val] = bonus;
- }
- else if ("CON".equalsIgnoreCase(statName))
- {
- CONbonus[val] = bonus;
- }
- else if ("MEN".equalsIgnoreCase(statName))
- {
- MENbonus[val] = bonus;
- }
- else
- {
- _log.severe("[BaseStats] Invalid stats name: " + statName + ", skipping");
- }
- }
- }
- }
- }
- }
- }
- }
- else
- {
- throw new Error("[BaseStats] File not found: " + file.getName());
- }
- }
- }
|