Project update.
This commit is contained in:
@ -0,0 +1,289 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* 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.l2jmobius.gameserver.model.effects;
|
||||
|
||||
import java.lang.reflect.Constructor;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import com.l2jmobius.Config;
|
||||
import com.l2jmobius.gameserver.handler.EffectHandler;
|
||||
import com.l2jmobius.gameserver.model.StatsSet;
|
||||
import com.l2jmobius.gameserver.model.actor.L2Character;
|
||||
import com.l2jmobius.gameserver.model.conditions.Condition;
|
||||
import com.l2jmobius.gameserver.model.skills.BuffInfo;
|
||||
import com.l2jmobius.gameserver.model.skills.Skill;
|
||||
import com.l2jmobius.gameserver.model.stats.functions.AbstractFunction;
|
||||
import com.l2jmobius.gameserver.model.stats.functions.FuncTemplate;
|
||||
|
||||
/**
|
||||
* Abstract effect implementation.<br>
|
||||
* Instant effects should not override {@link #onExit(BuffInfo)}.<br>
|
||||
* Instant effects should not override {@link #canStart(BuffInfo)}, all checks should be done {@link #onStart(BuffInfo)}.<br>
|
||||
* Do not call super class methods {@link #onStart(BuffInfo)} nor {@link #onExit(BuffInfo)}.
|
||||
* @author Zoey76
|
||||
*/
|
||||
public abstract class AbstractEffect
|
||||
{
|
||||
protected static final Logger _log = Logger.getLogger(AbstractEffect.class.getName());
|
||||
|
||||
// Conditions
|
||||
/** Attach condition. */
|
||||
private final Condition _attachCond;
|
||||
// Apply condition
|
||||
// private final Condition _applyCond; // TODO: Use or cleanup.
|
||||
private List<FuncTemplate> _funcTemplates;
|
||||
/** Effect name. */
|
||||
private final String _name;
|
||||
/** Ticks. */
|
||||
private final int _ticks;
|
||||
|
||||
/**
|
||||
* Abstract effect constructor.
|
||||
* @param attachCond the attach condition
|
||||
* @param applyCond the apply condition
|
||||
* @param set the attributes
|
||||
* @param params the parameters
|
||||
*/
|
||||
protected AbstractEffect(Condition attachCond, Condition applyCond, StatsSet set, StatsSet params)
|
||||
{
|
||||
_attachCond = attachCond;
|
||||
// _applyCond = applyCond;
|
||||
_name = set.getString("name");
|
||||
_ticks = set.getInt("ticks", 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an effect given the parameters.
|
||||
* @param attachCond the attach condition
|
||||
* @param applyCond the apply condition
|
||||
* @param set the attributes
|
||||
* @param params the parameters
|
||||
* @return the new effect
|
||||
*/
|
||||
public static final AbstractEffect createEffect(Condition attachCond, Condition applyCond, StatsSet set, StatsSet params)
|
||||
{
|
||||
final String name = set.getString("name");
|
||||
final Class<? extends AbstractEffect> handler = EffectHandler.getInstance().getHandler(name);
|
||||
if (handler == null)
|
||||
{
|
||||
_log.warning(AbstractEffect.class.getSimpleName() + ": Requested unexistent effect handler: " + name);
|
||||
return null;
|
||||
}
|
||||
|
||||
final Constructor<?> constructor;
|
||||
try
|
||||
{
|
||||
constructor = handler.getConstructor(Condition.class, Condition.class, StatsSet.class, StatsSet.class);
|
||||
}
|
||||
catch (NoSuchMethodException | SecurityException e)
|
||||
{
|
||||
_log.warning(AbstractEffect.class.getSimpleName() + ": Requested unexistent constructor for effect handler: " + name + ": " + e.getMessage());
|
||||
return null;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
return (AbstractEffect) constructor.newInstance(attachCond, applyCond, set, params);
|
||||
}
|
||||
catch (InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException e)
|
||||
{
|
||||
_log.warning(AbstractEffect.class.getSimpleName() + ": Unable to initialize effect handler: " + name + ": " + e.getMessage());
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the attach condition.
|
||||
* @param caster the caster
|
||||
* @param target the target
|
||||
* @param skill the skill
|
||||
* @return {@code true} if there isn't a condition to test or it's passed, {@code false} otherwise
|
||||
*/
|
||||
public boolean testConditions(L2Character caster, L2Character target, Skill skill)
|
||||
{
|
||||
return (_attachCond == null) || _attachCond.test(caster, target, skill);
|
||||
}
|
||||
|
||||
/**
|
||||
* Attaches a function template.
|
||||
* @param f the function
|
||||
*/
|
||||
public void attach(FuncTemplate f)
|
||||
{
|
||||
if (_funcTemplates == null)
|
||||
{
|
||||
_funcTemplates = new ArrayList<>(1);
|
||||
}
|
||||
_funcTemplates.add(f);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the effect name.
|
||||
* @return the name
|
||||
*/
|
||||
public String getName()
|
||||
{
|
||||
return _name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the effect ticks
|
||||
* @return the ticks
|
||||
*/
|
||||
public int getTicks()
|
||||
{
|
||||
return _ticks;
|
||||
}
|
||||
|
||||
public double getTicksMultiplier()
|
||||
{
|
||||
return (getTicks() * Config.EFFECT_TICK_RATIO) / 1000f;
|
||||
}
|
||||
|
||||
public List<FuncTemplate> getFuncTemplates()
|
||||
{
|
||||
return _funcTemplates;
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculates whether this effects land or not.<br>
|
||||
* If it lands will be scheduled and added to the character effect list.<br>
|
||||
* Override in effect implementation to change behavior. <br>
|
||||
* <b>Warning:</b> Must be used only for instant effects continuous effects will not call this they have their success handled by activate_rate.
|
||||
* @param info the buff info
|
||||
* @return {@code true} if this effect land, {@code false} otherwise
|
||||
*/
|
||||
public boolean calcSuccess(BuffInfo info)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get this effect's type.<br>
|
||||
* TODO: Remove.
|
||||
* @return the effect type
|
||||
*/
|
||||
public L2EffectType getEffectType()
|
||||
{
|
||||
return L2EffectType.NONE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Verify if the buff can start.<br>
|
||||
* Used for continuous effects.
|
||||
* @param info the buff info
|
||||
* @return {@code true} if all the start conditions are meet, {@code false} otherwise
|
||||
*/
|
||||
public boolean canStart(BuffInfo info)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Called on effect start.
|
||||
* @param info the buff info
|
||||
*/
|
||||
public void onStart(BuffInfo info)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Called on each tick.<br>
|
||||
* If the abnormal time is lesser than zero it will last forever.
|
||||
* @param info the buff info
|
||||
* @return if {@code true} this effect will continue forever, if {@code false} it will stop after abnormal time has passed
|
||||
*/
|
||||
public boolean onActionTime(BuffInfo info)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Called when the effect is exited.
|
||||
* @param info the buff info
|
||||
*/
|
||||
public void onExit(BuffInfo info)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Get this effect's stats functions.
|
||||
* @param caster the caster
|
||||
* @param target the target
|
||||
* @param skill the skill
|
||||
* @return a list of stat functions.
|
||||
*/
|
||||
public List<AbstractFunction> getStatFuncs(L2Character caster, L2Character target, Skill skill)
|
||||
{
|
||||
if (getFuncTemplates() == null)
|
||||
{
|
||||
return Collections.<AbstractFunction> emptyList();
|
||||
}
|
||||
|
||||
final List<AbstractFunction> functions = new ArrayList<>(getFuncTemplates().size());
|
||||
for (FuncTemplate functionTemplate : getFuncTemplates())
|
||||
{
|
||||
final AbstractFunction function = functionTemplate.getFunc(caster, target, skill, this);
|
||||
if (function != null)
|
||||
{
|
||||
functions.add(function);
|
||||
}
|
||||
}
|
||||
return functions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the effect flags.
|
||||
* @return bit flag for current effect
|
||||
*/
|
||||
public int getEffectFlags()
|
||||
{
|
||||
return EffectFlag.NONE.getMask();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "Effect " + _name;
|
||||
}
|
||||
|
||||
public void decreaseForce()
|
||||
{
|
||||
}
|
||||
|
||||
public void increaseEffect()
|
||||
{
|
||||
}
|
||||
|
||||
public boolean checkCondition(Object obj)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Verify if this effect is an instant effect.
|
||||
* @return {@code true} if this effect is instant, {@code false} otherwise
|
||||
*/
|
||||
public boolean isInstant()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* 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.l2jmobius.gameserver.model.effects;
|
||||
|
||||
/**
|
||||
* @author UnAfraid
|
||||
*/
|
||||
public enum EffectFlag
|
||||
{
|
||||
NONE,
|
||||
BLOCK_BUFF,
|
||||
BLOCK_DEBUFF,
|
||||
BLOCK_HP,
|
||||
BLOCK_MP,
|
||||
RESURRECTION_SPECIAL,
|
||||
NOBLESS_BLESSING,
|
||||
SILENT_MOVE,
|
||||
PROTECTION_BLESSING,
|
||||
RELAXING,
|
||||
FEAR,
|
||||
CONFUSED,
|
||||
MUTED,
|
||||
PSYCHICAL_MUTED,
|
||||
PSYCHICAL_ATTACK_MUTED,
|
||||
DISARMED,
|
||||
ROOTED,
|
||||
SLEEP,
|
||||
STUNNED,
|
||||
BETRAYED,
|
||||
PARALYZED,
|
||||
SINGLE_TARGET,
|
||||
BLOCK_RESURRECTION,
|
||||
SERVITOR_SHARE;
|
||||
|
||||
public int getMask()
|
||||
{
|
||||
return 1 << ordinal();
|
||||
}
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* 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.l2jmobius.gameserver.model.effects;
|
||||
|
||||
import java.util.concurrent.ScheduledFuture;
|
||||
|
||||
/**
|
||||
* Effect Task Info DTO.
|
||||
* @author Zoey76
|
||||
*/
|
||||
public class EffectTaskInfo
|
||||
{
|
||||
private final EffectTickTask _effectTask;
|
||||
private final ScheduledFuture<?> _scheduledFuture;
|
||||
|
||||
public EffectTaskInfo(EffectTickTask effectTask, ScheduledFuture<?> scheduledFuture)
|
||||
{
|
||||
_effectTask = effectTask;
|
||||
_scheduledFuture = scheduledFuture;
|
||||
}
|
||||
|
||||
public EffectTickTask getEffectTask()
|
||||
{
|
||||
return _effectTask;
|
||||
}
|
||||
|
||||
public ScheduledFuture<?> getScheduledFuture()
|
||||
{
|
||||
return _scheduledFuture;
|
||||
}
|
||||
}
|
@ -0,0 +1,76 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* 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.l2jmobius.gameserver.model.effects;
|
||||
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import com.l2jmobius.gameserver.model.skills.BuffInfo;
|
||||
|
||||
/**
|
||||
* Effect tick task.
|
||||
* @author Zoey76
|
||||
*/
|
||||
public class EffectTickTask implements Runnable
|
||||
{
|
||||
private final BuffInfo _info;
|
||||
private final AbstractEffect _effect;
|
||||
private final AtomicInteger _tickCount = new AtomicInteger();
|
||||
|
||||
/**
|
||||
* EffectTickTask constructor.
|
||||
* @param info the buff info
|
||||
* @param effect the effect
|
||||
*/
|
||||
public EffectTickTask(BuffInfo info, AbstractEffect effect)
|
||||
{
|
||||
_info = info;
|
||||
_effect = effect;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the buff info.
|
||||
* @return the buff info
|
||||
*/
|
||||
public BuffInfo getBuffInfo()
|
||||
{
|
||||
return _info;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the effect.
|
||||
* @return the effect
|
||||
*/
|
||||
public AbstractEffect getEffect()
|
||||
{
|
||||
return _effect;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the current tick count.
|
||||
* @return the tick count
|
||||
*/
|
||||
public int getTickCount()
|
||||
{
|
||||
return _tickCount.get();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run()
|
||||
{
|
||||
_info.onTick(_effect, _tickCount.incrementAndGet());
|
||||
}
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* 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.l2jmobius.gameserver.model.effects;
|
||||
|
||||
/**
|
||||
* Effect types.
|
||||
* @author nBd
|
||||
*/
|
||||
public enum L2EffectType
|
||||
{
|
||||
AGGRESSION,
|
||||
BLOCK_BUFF,
|
||||
BLOCK_DAMAGE,
|
||||
BLOCK_DEBUFF,
|
||||
BUFF,
|
||||
CHARM_OF_LUCK,
|
||||
CHAT_BLOCK,
|
||||
CPHEAL,
|
||||
DEBUFF,
|
||||
DISPEL,
|
||||
DISPEL_BY_SLOT,
|
||||
DMG_OVER_TIME,
|
||||
DMG_OVER_TIME_PERCENT,
|
||||
DEATH_LINK,
|
||||
FAKE_DEATH,
|
||||
FEAR,
|
||||
FISHING,
|
||||
FISHING_START,
|
||||
HATE,
|
||||
HEAL,
|
||||
HP_DRAIN,
|
||||
MAGICAL_ATTACK,
|
||||
MAGICAL_ATTACK_MP,
|
||||
MANAHEAL_BY_LEVEL,
|
||||
MANAHEAL_PERCENT,
|
||||
MUTE,
|
||||
NOBLESSE_BLESSING,
|
||||
NONE,
|
||||
PARALYZE,
|
||||
PHYSICAL_ATTACK,
|
||||
PHYSICAL_ATTACK_HP_LINK,
|
||||
REBALANCE_HP,
|
||||
REFUEL_AIRSHIP,
|
||||
RELAXING,
|
||||
REMOVE_TARGET,
|
||||
RESURRECTION,
|
||||
RESURRECTION_SPECIAL,
|
||||
ROOT,
|
||||
SLEEP,
|
||||
STEAL_ABNORMAL,
|
||||
STUN,
|
||||
SINGLE_TARGET,
|
||||
SUMMON,
|
||||
SUMMON_PET,
|
||||
SUMMON_NPC,
|
||||
TELEPORT,
|
||||
TELEPORT_TO_TARGET
|
||||
}
|
Reference in New Issue
Block a user