/* * Copyright (C) 2004-2013 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 . */ package com.l2jserver.gameserver.model.effects; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; import com.l2jserver.gameserver.handler.EffectHandler; import com.l2jserver.gameserver.model.ChanceCondition; import com.l2jserver.gameserver.model.StatsSet; import com.l2jserver.gameserver.model.conditions.Condition; import com.l2jserver.gameserver.model.skills.funcs.FuncTemplate; import com.l2jserver.gameserver.model.skills.funcs.Lambda; import com.l2jserver.gameserver.model.stats.Env; /** * Effect template class. * @author mkizub, Zoey76 */ public class EffectTemplate { private static final Logger _log = Logger.getLogger(EffectTemplate.class.getName()); private final Class _handler; private final Constructor _constructor; private final Condition _attachCond; // private final Condition _applyCond; // TODO: Use or cleanup. private final Lambda _lambda; /** Effect's total tick count. */ private final int _totalTickCount; /** Effect specific abnormal time. */ private final int _abnormalTime; private final AbnormalEffect _abnormalEffect; private final AbnormalEffect[] _specialEffect; private final AbnormalEffect _eventEffect; private List _funcTemplates; private final boolean _showIcon; private final String _name; private final int _triggeredId; private final int _triggeredLevel; private final ChanceCondition _chanceCondition; private final StatsSet _parameters; public EffectTemplate(Condition attachCond, Condition applyCond, Lambda lambda, StatsSet set, StatsSet params) { _attachCond = attachCond; // _applyCond = applyCond; _lambda = lambda; _name = set.getString("name"); _totalTickCount = set.getInt("ticks", 0); _abnormalTime = set.getInt("abnormalTime", 0); _abnormalEffect = AbnormalEffect.getByName(set.getString("abnormalVisualEffect", "")); final String[] specialEffects = set.getString("special", "").split(","); _specialEffect = new AbnormalEffect[specialEffects.length]; for (int i = 0; i < specialEffects.length; i++) { _specialEffect[i] = AbnormalEffect.getByName(specialEffects[i]); } _eventEffect = AbnormalEffect.getByName(set.getString("event", "")); _showIcon = set.getInt("noicon", 0) == 0; _triggeredId = set.getInt("triggeredId", 0); _triggeredLevel = set.getInt("triggeredLevel", 1); _chanceCondition = ChanceCondition.parse(set.getString("chanceType", null), set.getInt("activationChance", -1), set.getInt("activationMinDamage", -1), set.getString("activationElements", null), set.getString("activationSkills", null), set.getBoolean("pvpChanceOnly", false)); _parameters = params; _handler = EffectHandler.getInstance().getHandler(_name); if (_handler == null) { throw new RuntimeException(getClass().getSimpleName() + ": Requested unexistent effect handler: " + _name); } try { _constructor = _handler.getConstructor(Env.class, EffectTemplate.class); } catch (NoSuchMethodException e) { throw new RuntimeException(e); } } public L2Effect getEffect(Env env) { return getEffect(env, false); } public L2Effect getEffect(Env env, boolean ignoreTest) { if (!ignoreTest && ((_attachCond != null) && !_attachCond.test(env))) { return null; } try { return (L2Effect) _constructor.newInstance(env, this); } catch (IllegalAccessException | InstantiationException e) { _log.log(Level.WARNING, "", e); return null; } catch (InvocationTargetException e) { _log.log(Level.WARNING, "Error creating new instance of Class " + _handler + " Exception was: " + e.getTargetException().getMessage(), e.getTargetException()); return null; } } /** * Creates an L2Effect instance from an existing one and an Env object. * @param env * @param stolen * @return the stolen effect */ public L2Effect getStolenEffect(Env env, L2Effect stolen) { Constructor stolenCons; try { stolenCons = _handler.getConstructor(Env.class, L2Effect.class); } catch (NoSuchMethodException e) { throw new RuntimeException(e); } try { final L2Effect effect = (L2Effect) stolenCons.newInstance(env, stolen); // if (_applyCond != null) // { // effect.setCondition(_applyCond); // } return effect; } catch (IllegalAccessException | InstantiationException e) { _log.log(Level.WARNING, "", e); return null; } catch (InvocationTargetException e) { _log.log(Level.WARNING, "Error creating new instance of Class " + _handler + " Exception was: " + e.getTargetException().getMessage(), e.getTargetException()); return null; } } public void attach(FuncTemplate f) { if (_funcTemplates == null) { _funcTemplates = new ArrayList<>(1); } _funcTemplates.add(f); } public Lambda getLambda() { return _lambda; } public int getTotalTickCount() { return _totalTickCount; } public int getAbnormalTime() { return _abnormalTime; } public String getName() { return _name; } public AbnormalEffect getAbnormalEffect() { return _abnormalEffect; } public AbnormalEffect[] getSpecialEffect() { return _specialEffect; } public AbnormalEffect getEventEffect() { return _eventEffect; } public List getFuncTemplates() { return _funcTemplates; } public boolean isIconDisplay() { return _showIcon; } public int getTriggeredId() { return _triggeredId; } public int getTriggeredLevel() { return _triggeredLevel; } public ChanceCondition getChanceCondition() { return _chanceCondition; } /** * Get the parameters. * @return the parameters of this effect template */ public StatsSet getParameters() { return _parameters; } /** * Verify if this effect template has parameters. * @return {@code true} if this effect template has parameters, {@code false} otherwise */ public boolean hasParameters() { return _parameters != null; } @Override public String toString() { return "Effect template[" + _handler + "]"; } }