/*
* 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 .
*/
package net.sf.l2j.gameserver.model;
import static net.sf.l2j.gameserver.ai.CtrlIntention.AI_INTENTION_FOLLOW;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Future;
import java.util.logging.Level;
import java.util.logging.Logger;
import javolution.util.FastList;
import javolution.util.FastMap;
import net.sf.l2j.Config;
import net.sf.l2j.gameserver.GameTimeController;
import net.sf.l2j.gameserver.GeoData;
import net.sf.l2j.gameserver.ThreadPoolManager;
import net.sf.l2j.gameserver.ai.CtrlEvent;
import net.sf.l2j.gameserver.ai.CtrlIntention;
import net.sf.l2j.gameserver.ai.L2AttackableAI;
import net.sf.l2j.gameserver.ai.L2CharacterAI;
import net.sf.l2j.gameserver.datatables.DoorTable;
import net.sf.l2j.gameserver.datatables.MapRegionTable;
import net.sf.l2j.gameserver.datatables.SkillTable;
import net.sf.l2j.gameserver.datatables.MapRegionTable.TeleportWhereType;
import net.sf.l2j.gameserver.handler.ISkillHandler;
import net.sf.l2j.gameserver.handler.SkillHandler;
import net.sf.l2j.gameserver.instancemanager.DimensionalRiftManager;
import net.sf.l2j.gameserver.instancemanager.TownManager;
import net.sf.l2j.gameserver.model.L2Effect.EffectType;
import net.sf.l2j.gameserver.model.L2Skill.SkillTargetType;
import net.sf.l2j.gameserver.model.L2Skill.SkillType;
import net.sf.l2j.gameserver.model.actor.instance.L2ArtefactInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2BoatInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2CommanderInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2ControlTowerInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2DecoyInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2DoorInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2EffectPointInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2FriendlyMobInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2GuardInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2MonsterInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2NpcInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2NpcWalkerInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2PetInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2PlayableInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2RiftInvaderInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2SiegeFlagInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2SiegeGuardInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2SiegeSummonInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2SummonInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2TrapInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.SkillDat;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.TimeStamp;
import net.sf.l2j.gameserver.model.actor.knownlist.CharKnownList;
import net.sf.l2j.gameserver.model.actor.stat.CharStat;
import net.sf.l2j.gameserver.model.actor.status.CharStatus;
import net.sf.l2j.gameserver.model.entity.Duel;
import net.sf.l2j.gameserver.model.quest.Quest;
import net.sf.l2j.gameserver.model.quest.QuestState;
import net.sf.l2j.gameserver.network.SystemMessageId;
import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;
import net.sf.l2j.gameserver.network.serverpackets.Attack;
import net.sf.l2j.gameserver.network.serverpackets.ChangeMoveType;
import net.sf.l2j.gameserver.network.serverpackets.ChangeWaitType;
import net.sf.l2j.gameserver.network.serverpackets.EtcStatusUpdate;
import net.sf.l2j.gameserver.network.serverpackets.FlyToLocation;
import net.sf.l2j.gameserver.network.serverpackets.L2GameServerPacket;
import net.sf.l2j.gameserver.network.serverpackets.MagicSkillCanceld;
import net.sf.l2j.gameserver.network.serverpackets.MagicSkillLaunched;
import net.sf.l2j.gameserver.network.serverpackets.MagicSkillUse;
import net.sf.l2j.gameserver.network.serverpackets.MoveToLocation;
import net.sf.l2j.gameserver.network.serverpackets.NpcInfo;
import net.sf.l2j.gameserver.network.serverpackets.PetInfo;
import net.sf.l2j.gameserver.network.serverpackets.Revive;
import net.sf.l2j.gameserver.network.serverpackets.SetupGauge;
import net.sf.l2j.gameserver.network.serverpackets.StatusUpdate;
import net.sf.l2j.gameserver.network.serverpackets.StopMove;
import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;
import net.sf.l2j.gameserver.network.serverpackets.TeleportToLocation;
import net.sf.l2j.gameserver.network.serverpackets.FlyToLocation.FlyType;
import net.sf.l2j.gameserver.pathfinding.AbstractNodeLoc;
import net.sf.l2j.gameserver.pathfinding.geonodes.GeoPathFinding;
import net.sf.l2j.gameserver.skills.Calculator;
import net.sf.l2j.gameserver.skills.Formulas;
import net.sf.l2j.gameserver.skills.Stats;
import net.sf.l2j.gameserver.skills.effects.EffectCharge;
import net.sf.l2j.gameserver.skills.funcs.Func;
import net.sf.l2j.gameserver.skills.l2skills.L2SkillAgathion;
import net.sf.l2j.gameserver.templates.L2CharTemplate;
import net.sf.l2j.gameserver.templates.L2NpcTemplate;
import net.sf.l2j.gameserver.templates.L2Weapon;
import net.sf.l2j.gameserver.templates.L2WeaponType;
import net.sf.l2j.gameserver.util.Util;
import net.sf.l2j.util.Point3D;
import net.sf.l2j.util.Rnd;
/**
* Mother class of all character objects of the world (PC, NPC...)
*
* L2Character :
*
L2CastleGuardInstance
* L2DoorInstance
* L2NpcInstance
* L2PlayableInstance
*
*
* Concept of L2CharTemplate :
* Each L2Character owns generic and static properties (ex : all Keltir have the same number of HP...).
* All of those properties are stored in a different template for each type of L2Character.
* Each template is loaded once in the server cache memory (reduce memory use).
* When a new instance of L2Character is spawned, server just create a link between the instance and the template.
* This link is stored in _template
*
*
* @version $Revision: 1.53.2.45.2.34 $ $Date: 2005/04/11 10:06:08 $
*/
public abstract class L2Character extends L2Object
{
protected static final Logger _log = Logger.getLogger(L2Character.class.getName());
// =========================================================
// Data Field
private List _attackByList;
// private L2Character _attackingChar;
private L2Skill _lastSkillCast;
private boolean _isAfraid = false; // Flee in a random direction
private boolean _isConfused = false; // Attack anyone randomly
private boolean _isFakeDeath = false; // Fake death
private boolean _isFlying = false; //Is flying Wyvern?
private boolean _isMuted = false; // Cannot use magic
private boolean _isPhysicalMuted = false; // Cannot use physical skills
private boolean _isPhysicalAttackMuted = false; // Cannot use attack
private boolean _isDead = false;
private boolean _isImmobilized = false;
private boolean _isOverloaded = false; // the char is carrying too much
private boolean _isParalyzed = false;
private boolean _isDisarmed = false;
private boolean _isRidingFenrirWolf = false;
private boolean _isRidingWFenrirWolf = false;
private boolean _isRidingGreatSnowWolf = false;
private boolean _isRidingStrider = false;
private boolean _isPendingRevive = false;
private boolean _isRooted = false; // Cannot move until root timed out
private boolean _isRunning = false;
private boolean _isImmobileUntilAttacked = false; // Is in immobile until attacked.
private boolean _isSleeping = false; // Cannot move/attack until sleep timed out or monster is attacked
private boolean _isStunned = false; // Cannot move/attack until stun timed out
private boolean _isBetrayed = false; // Betrayed by own summon
protected boolean _showSummonAnimation = false;
protected boolean _isTeleporting = false;
private L2Character _lastBuffer = null;
protected boolean _isInvul = false;
private int _lastHealAmount = 0;
private CharStat _stat;
private CharStatus _status;
private L2CharTemplate _template; // The link on the L2CharTemplate object containing generic and static properties of this L2Character type (ex : Max HP, Speed...)
private String _title;
private String _aiClass = "default";
private double _hpUpdateIncCheck = .0;
private double _hpUpdateDecCheck = .0;
private double _hpUpdateInterval = .0;
private boolean _champion = false;
/** Table of Calculators containing all used calculator */
private Calculator[] _calculators;
/** FastMap(Integer, L2Skill) containing all skills of the L2Character */
protected final Map _skills;
/** FastMap containing the active chance skills on this character */
protected ChanceSkillList _chanceSkills;
/** Current force buff this caster is casting to a target */
protected ForceBuff _forceBuff;
/** Zone system */
public static final byte ZONE_PVP = 0;
public static final byte ZONE_PEACE = 1;
public static final byte ZONE_SIEGE = 2;
public static final byte ZONE_MOTHERTREE = 3;
public static final byte ZONE_CLANHALL = 4;
public static final byte ZONE_UNUSED = 5;
public static final byte ZONE_NOLANDING = 6;
public static final byte ZONE_WATER = 7;
public static final byte ZONE_JAIL = 8;
public static final byte ZONE_MONSTERTRACK = 9;
public static final byte ZONE_CASTLE = 10;
public static final byte ZONE_SWAMP = 11;
private final byte[] _zones = new byte[12];
/**
* Returns character inventory, default null, overridden in L2Playable types and in L2NPcInstance
*/
public Inventory getInventory()
{
return null;
}
public boolean destroyItemByItemId(String process, int itemId, int count, L2Object reference, boolean sendMessage)
{
// Default: NPCs consume virtual items for their skills
// TODO: should be logged if even happens.. should be false
return true;
}
public boolean destroyItem(String process, int objectId, int count, L2Object reference, boolean sendMessage)
{
// Default: NPCs consume virtual items for their skills
// TODO: should be logged if even happens.. should be false
return true;
}
/**
*
* @param zone
* @return
*/
public final boolean isInsideZone(final byte zone)
{
return zone == ZONE_PVP ? _zones[ZONE_PVP] > 0 && _zones[ZONE_PEACE] == 0 : _zones[zone] > 0;
}
/**
*
* @param zone
* @param state
*/
public final void setInsideZone(final byte zone, final boolean state)
{
if (state)
_zones[zone]++;
else
{
_zones[zone]--;
if (_zones[zone] < 0)
_zones[zone] = 0;
}
}
/**
* This will return true if the player is transformed,
* but if the player is not transformed it will return false.
* @return transformation status
*/
public boolean isTransformed()
{
return false;
}
/**
* This will untransform a player if they are an instance of L2Pcinstance
* and if they are transformed.
* @return untransform
*/
public void untransform()
{
// Just a place holder
}
/**
* This will return true if the player is GM,
* but if the player is not GM it will return false.
* @return GM status
*/
public boolean isGM()
{
return false;
}
// =========================================================
// Constructor
/**
* Constructor of L2Character.
*
* Concept :
* Each L2Character owns generic and static properties (ex : all Keltir have the same number of HP...).
* All of those properties are stored in a different template for each type of L2Character.
* Each template is loaded once in the server cache memory (reduce memory use).
* When a new instance of L2Character is spawned, server just create a link between the instance and the template
* This link is stored in _template
*
* Actions :
* Set the _template of the L2Character
* Set _overloaded to false (the charcater can take more items)
*
* If L2Character is a L2NPCInstance, copy skills from template to object
* If L2Character is a L2NPCInstance, link _calculators to NPC_STD_CALCULATOR
*
* If L2Character is NOT a L2NPCInstance, create an empty _skills slot
* If L2Character is a L2PcInstance or L2Summon, copy basic Calculator set to object
*
* @param objectId Identifier of the object to initialized
* @param template The L2CharTemplate to apply to the object
*/
public L2Character(int objectId, L2CharTemplate template)
{
super(objectId);
getKnownList();
// Set its template to the new L2Character
_template = template;
if (template != null && this instanceof L2NpcInstance)
{
// Copy the Standard Calcultors of the L2NPCInstance in _calculators
_calculators = NPC_STD_CALCULATOR;
// Copy the skills of the L2NPCInstance from its template to the L2Character Instance
// The skills list can be affected by spell effects so it's necessary to make a copy
// to avoid that a spell affecting a L2NPCInstance, affects others L2NPCInstance of the same type too.
_skills = ((L2NpcTemplate)template).getSkills();
if (_skills != null)
{
for(Map.Entry skill : _skills.entrySet())
addStatFuncs(skill.getValue().getStatFuncs(null, this));
}
}
else
{
// Initialize the FastMap _skills to null
_skills = new FastMap().setShared(true);
// If L2Character is a L2PcInstance or a L2Summon, create the basic calculator set
_calculators = new Calculator[Stats.NUM_STATS];
Formulas.getInstance().addFuncsToNewCharacter(this);
}
if (!(this instanceof L2PcInstance) && !(this instanceof L2MonsterInstance) &&
!(this instanceof L2GuardInstance) && !(this instanceof L2SiegeGuardInstance) &&
!(this instanceof L2ControlTowerInstance) && !(this instanceof L2DoorInstance) &&
!(this instanceof L2TrapInstance) && !(this instanceof L2FriendlyMobInstance) &&
!(this instanceof L2DecoyInstance) && !(this instanceof L2SiegeSummonInstance) &&
!(this instanceof L2PetInstance) && !(this instanceof L2SummonInstance) &&
!(this instanceof L2SiegeFlagInstance) && !(this instanceof L2EffectPointInstance) &&
!(this instanceof L2CommanderInstance))
setIsInvul(true);
}
protected void initCharStatusUpdateValues()
{
_hpUpdateInterval = getMaxHp()/352.0; // MAX_HP div MAX_HP_BAR_PX
_hpUpdateIncCheck = getMaxHp();
_hpUpdateDecCheck = getMaxHp()-_hpUpdateInterval;
}
// =========================================================
// Event - Public
/**
* Remove the L2Character from the world when the decay task is launched.
*
* Caution : This method DOESN'T REMOVE the object from _allObjects of L2World
* Caution : This method DOESN'T SEND Server->Client packets to players
*
*/
public void onDecay()
{
L2WorldRegion reg = getWorldRegion();
decayMe();
if(reg != null) reg.removeFromZones(this);
}
@Override
public void onSpawn()
{
super.onSpawn();
this.revalidateZone();
}
public void onTeleported()
{
if (!isTeleporting())
return;
spawnMe(getPosition().getX(), getPosition().getY(), getPosition().getZ());
setIsTeleporting(false);
if (_isPendingRevive)
doRevive();
}
// =========================================================
// Method - Public
/**
* Add L2Character instance that is attacking to the attacker list.
* @param player The L2Character that attcks this one
*/
public void addAttackerToAttackByList (L2Character player)
{
if (player == null || player == this || getAttackByList() == null || getAttackByList().contains(player)) return;
getAttackByList().add(player);
}
/**
* Send a packet to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character.
*
* Concept :
* L2PcInstance in the detection area of the L2Character are identified in _knownPlayers.
* In order to inform other players of state modification on the L2Character, server just need to go through _knownPlayers to send Server->Client Packet
*
*/
public void broadcastPacket(L2GameServerPacket mov)
{
Collection plrs = getKnownList().getKnownPlayers().values();
//synchronized (getKnownList().getKnownPlayers())
{
for (L2PcInstance player : plrs)
player.sendPacket(mov);
}
}
/**
* Send a packet to the L2Character AND to all L2PcInstance in the radius (max knownlist radius) from the L2Character.
*
* Concept :
* L2PcInstance in the detection area of the L2Character are identified in _knownPlayers.
* In order to inform other players of state modification on the L2Character, server just need to go through _knownPlayers to send Server->Client Packet
*
*/
public void broadcastPacket(L2GameServerPacket mov, int radiusInKnownlist)
{
Collection plrs = getKnownList().getKnownPlayers().values();
//synchronized (getKnownList().getKnownPlayers())
{
for (L2PcInstance player : plrs)
{
if (isInsideRadius(player, radiusInKnownlist, false, false))
player.sendPacket(mov);
}
}
}
/**
* Returns true if hp update should be done, false if not
* @return boolean
*/
protected boolean needHpUpdate(int barPixels)
{
double currentHp = getCurrentHp();
if (currentHp <= 1.0 || getMaxHp() < barPixels)
return true;
if (currentHp <= _hpUpdateDecCheck || currentHp >= _hpUpdateIncCheck)
{
if (currentHp == getMaxHp())
{
_hpUpdateIncCheck = currentHp + 1;
_hpUpdateDecCheck = currentHp - _hpUpdateInterval;
}
else
{
double doubleMulti = currentHp / _hpUpdateInterval;
int intMulti = (int)doubleMulti;
_hpUpdateDecCheck = _hpUpdateInterval * (doubleMulti < intMulti ? intMulti-- : intMulti);
_hpUpdateIncCheck = _hpUpdateDecCheck + _hpUpdateInterval;
}
return true;
}
return false;
}
/**
* Send the Server->Client packet StatusUpdate with current HP and MP to all other L2PcInstance to inform.
*
* Actions :
* Create the Server->Client packet StatusUpdate with current HP and MP
* Send the Server->Client packet StatusUpdate with current HP and MP to all
* L2Character called _statusListener that must be informed of HP/MP updates of this L2Character
*
* Caution : This method DOESN'T SEND CP information
*
* Overridden in :
* L2PcInstance : Send current HP,MP and CP to the L2PcInstance and only current HP, MP and Level to all other L2PcInstance of the Party
*
*/
public void broadcastStatusUpdate()
{
if (getStatus().getStatusListener().isEmpty()) return;
if (!needHpUpdate(352))
return;
if (Config.DEBUG)
_log.fine("Broadcast Status Update for " + getObjectId() + "(" + getName() + "). HP: " + getCurrentHp());
// Create the Server->Client packet StatusUpdate with current HP and MP
StatusUpdate su = new StatusUpdate(getObjectId());
su.addAttribute(StatusUpdate.CUR_HP, (int)getCurrentHp());
su.addAttribute(StatusUpdate.CUR_MP, (int)getCurrentMp());
// Go through the StatusListener
// Send the Server->Client packet StatusUpdate with current HP and MP
synchronized (getStatus().getStatusListener())
{
for (L2Character temp : getStatus().getStatusListener())
{
try { temp.sendPacket(su); } catch (NullPointerException e) {}
}
}
}
/**
* Not Implemented.
*
* Overridden in :
* L2PcInstance
*/
public void sendPacket(L2GameServerPacket mov)
{
// default implementation
}
/**
* Not Implemented.
*
* Overridden in :
* L2PcInstance
*/
public void sendMessage(String text)
{
// default implementation
}
/**
* Teleport a L2Character and its pet if necessary.
*
* Actions :
* Stop the movement of the L2Character
* Set the x,y,z position of the L2Object and if necessary modify its _worldRegion
* Send a Server->Client packet TeleportToLocationt to the L2Character AND to all L2PcInstance in its _KnownPlayers
* Modify the position of the pet if necessary
*
*/
public void teleToLocation(int x, int y, int z, boolean allowRandomOffset)
{
// Stop movement
stopMove(null, false);
abortAttack();
abortCast();
setIsTeleporting(true);
setTarget(null);
getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
if (Config.RESPAWN_RANDOM_ENABLED && allowRandomOffset)
{
x += Rnd.get(-Config.RESPAWN_RANDOM_MAX_OFFSET, Config.RESPAWN_RANDOM_MAX_OFFSET);
y += Rnd.get(-Config.RESPAWN_RANDOM_MAX_OFFSET, Config.RESPAWN_RANDOM_MAX_OFFSET);
}
z += 5;
if (Config.DEBUG)
_log.fine("Teleporting to: " + x + ", " + y + ", " + z);
// remove the object from its old location
decayMe();
// Send a Server->Client packet TeleportToLocationt to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character
broadcastPacket(new TeleportToLocation(this, x, y, z));
// Set the x,y,z position of the L2Object and if necessary modify its _worldRegion
getPosition().setXYZ(x, y, z);
if (!(this instanceof L2PcInstance))
onTeleported();
}
public void teleToLocation(int x, int y, int z) { teleToLocation(x, y, z, false); }
public void teleToLocation(Location loc, boolean allowRandomOffset)
{
int x = loc.getX();
int y = loc.getY();
int z = loc.getZ();
if (this instanceof L2PcInstance && DimensionalRiftManager.getInstance().checkIfInRiftZone(getX(), getY(), getZ(), true)) // true -> ignore waiting room :)
{
L2PcInstance player = (L2PcInstance)this;
player.sendMessage("You have been sent to the waiting room.");
if(player.isInParty() && player.getParty().isInDimensionalRift())
{
player.getParty().getDimensionalRift().usedTeleport(player);
}
int[] newCoords = DimensionalRiftManager.getInstance().getRoom((byte) 0, (byte) 0).getTeleportCoords();
x = newCoords[0];
y = newCoords[1];
z = newCoords[2];
}
teleToLocation(x, y, z, allowRandomOffset);
}
public void teleToLocation(TeleportWhereType teleportWhere) { teleToLocation(MapRegionTable.getInstance().getTeleToLocation(this, teleportWhere), true); }
// =========================================================
// Method - Private
/**
* Launch a physical attack against a target (Simple, Bow, Pole or Dual).
*
* Actions :
* Get the active weapon (always equiped in the right hand)
* If weapon is a bow, check for arrows, MP and bow re-use delay (if necessary, equip the L2PcInstance with arrows in left hand)
* If weapon is a bow, consume MP and set the new period of bow non re-use
* Get the Attack Speed of the L2Character (delay (in milliseconds) before next attack)
* Select the type of attack to start (Simple, Bow, Pole or Dual) and verify if SoulShot are charged then start calculation
* If the Server->Client packet Attack contains at least 1 hit, send the Server->Client packet Attack to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character
* Notify AI with EVT_READY_TO_ACT
*
* @param target The L2Character targeted
*
*/
protected void doAttack(L2Character target)
{
if (Config.DEBUG)
_log.fine(getName()+" doAttack: target="+target);
if (isAlikeDead() || target == null || (this instanceof L2NpcInstance && target.isAlikeDead())
|| (this instanceof L2PcInstance && target.isDead() && !target.isFakeDeath())
|| !getKnownList().knowsObject(target)
|| (this instanceof L2PcInstance && isDead())
|| (target instanceof L2PcInstance && ((L2PcInstance)target).getDuelState() == Duel.DUELSTATE_DEAD))
{
// If L2PcInstance is dead or the target is dead, the action is stoped
getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
if (isAttackingDisabled())
return;
if (this instanceof L2PcInstance)
{
if (((L2PcInstance)this).inObserverMode())
{
sendPacket(new SystemMessage(SystemMessageId.OBSERVERS_CANNOT_PARTICIPATE));
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
if (target instanceof L2PcInstance)
{
if (((L2PcInstance)target).isCursedWeaponEquipped() && ((L2PcInstance)this).getLevel()<=20){
((L2PcInstance)this).sendMessage("Can't attack a cursed player when under level 21.");
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
if (((L2PcInstance)this).isCursedWeaponEquipped() && ((L2PcInstance)target).getLevel()<=20){
((L2PcInstance)this).sendMessage("Can't attack a newbie player using a cursed weapon.");
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
}
// Checking if target has moved to peace zone
if (target.isInsidePeaceZone((L2PcInstance)this))
{
getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
}
else if (isInsidePeaceZone(this, target))
{
getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// Get the active weapon instance (always equiped in the right hand)
L2ItemInstance weaponInst = getActiveWeaponInstance();
// Get the active weapon item corresponding to the active weapon instance (always equiped in the right hand)
L2Weapon weaponItem = getActiveWeaponItem();
if (weaponItem != null && weaponItem.getItemType() == L2WeaponType.ROD)
{
// You can't make an attack with a fishing pole.
((L2PcInstance)this).sendPacket(new SystemMessage(SystemMessageId.CANNOT_ATTACK_WITH_FISHING_POLE));
getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
ActionFailed af = ActionFailed.STATIC_PACKET;
sendPacket(af);
return;
}
// GeoData Los Check here (or dz > 1000)
if (!GeoData.getInstance().canSeeTarget(this, target))
{
sendPacket(new SystemMessage(SystemMessageId.CANT_SEE_TARGET));
getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// BOW and CROSSBOW checks
if (weaponItem != null && !isTransformed())
{
if (weaponItem.getItemType() == L2WeaponType.BOW)
{
//Check for arrows and MP
if (this instanceof L2PcInstance)
{
// Verify if the bow can be use
if (_disableBowAttackEndTime <= GameTimeController.getGameTicks())
{
// Verify if L2PcInstance owns enough MP
int saMpConsume = (int)getStat().calcStat(Stats.MP_CONSUME, 0, null, null);
int mpConsume = saMpConsume == 0 ? weaponItem.getMpConsume() : saMpConsume;
if (getCurrentMp() < mpConsume)
{
// If L2PcInstance doesn't have enough MP, stop the attack
ThreadPoolManager.getInstance().scheduleAi(new NotifyAITask(CtrlEvent.EVT_READY_TO_ACT), 1000);
sendPacket(new SystemMessage(SystemMessageId.NOT_ENOUGH_MP));
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// If L2PcInstance have enough MP, the bow consumes it
getStatus().reduceMp(mpConsume);
// Set the period of bow no re-use
_disableBowAttackEndTime = 5 * GameTimeController.TICKS_PER_SECOND + GameTimeController.getGameTicks();
}
else
{
// Cancel the action because the bow can't be re-use at this moment
ThreadPoolManager.getInstance().scheduleAi(new NotifyAITask(CtrlEvent.EVT_READY_TO_ACT), 1000);
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// Equip arrows needed in left hand and send a Server->Client packet ItemList to the L2PcINstance then return True
if (!checkAndEquipArrows())
{
// Cancel the action because the L2PcInstance have no arrow
getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
sendPacket(ActionFailed.STATIC_PACKET);
sendPacket(new SystemMessage(SystemMessageId.NOT_ENOUGH_ARROWS));
return;
}
}
}
if (weaponItem.getItemType() == L2WeaponType.CROSSBOW)
{
//Check for bolts
if (this instanceof L2PcInstance)
{
// Checking if target has moved to peace zone - only for player-crossbow attacks at the moment
// Other melee is checked in movement code and for offensive spells a check is done every time
if (target.isInsidePeaceZone((L2PcInstance)this))
{
getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// Verify if the crossbow can be use
if (_disableCrossBowAttackEndTime <= GameTimeController.getGameTicks())
{
// Set the period of crossbow no re-use
_disableCrossBowAttackEndTime = 5 * GameTimeController.TICKS_PER_SECOND + GameTimeController.getGameTicks();
}
else
{
// Cancel the action because the crossbow can't be re-use at this moment
ThreadPoolManager.getInstance().scheduleAi(new NotifyAITask(CtrlEvent.EVT_READY_TO_ACT), 1000);
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// Equip bolts needed in left hand and send a Server->Client packet ItemList to the L2PcINstance then return True
if (!checkAndEquipBolts())
{
// Cancel the action because the L2PcInstance have no arrow
getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
sendPacket(ActionFailed.STATIC_PACKET);
sendPacket(new SystemMessage(SystemMessageId.NOT_ENOUGH_BOLTS));
return;
}
}
else if (this instanceof L2NpcInstance)
{
if (_disableCrossBowAttackEndTime > GameTimeController.getGameTicks())
return;
}
}
}
// Add the L2PcInstance to _knownObjects and _knownPlayer of the target
target.getKnownList().addKnownObject(this);
// Reduce the current CP if TIREDNESS configuration is activated
if (Config.ALT_GAME_TIREDNESS)
setCurrentCp(getCurrentCp() - 10);
// Recharge any active auto soulshot tasks for player (or player's summon if one exists).
if (this instanceof L2PcInstance)
((L2PcInstance)this).rechargeAutoSoulShot(true, false, false);
else if (this instanceof L2Summon)
((L2Summon)this).getOwner().rechargeAutoSoulShot(true, false, true);
// Verify if soulshots are charged.
boolean wasSSCharged;
if (this instanceof L2NpcInstance)
wasSSCharged = ((L2NpcInstance)this).rechargeAutoSoulShot(true, false);
else if (this instanceof L2Summon && !(this instanceof L2PetInstance))
wasSSCharged = (((L2Summon)this).getChargedSoulShot() != L2ItemInstance.CHARGED_NONE);
else
wasSSCharged = (weaponInst != null && weaponInst.getChargedSoulshot() != L2ItemInstance.CHARGED_NONE);
// Get the Attack Speed of the L2Character (delay (in milliseconds) before next attack)
int timeAtk = calculateTimeBetweenAttacks(target, weaponItem);
// the hit is calculated to happen halfway to the animation - might need further tuning e.g. in bow case
int timeToHit = timeAtk/2;
_attackEndTime = GameTimeController.getGameTicks();
_attackEndTime += (timeAtk / GameTimeController.MILLIS_IN_TICK);
_attackEndTime -= 1;
int ssGrade = 0;
if (weaponItem != null)
{
ssGrade = weaponItem.getCrystalType();
if (ssGrade == 6)
ssGrade = 5;
}
// Create a Server->Client packet Attack
Attack attack = new Attack(this, wasSSCharged, ssGrade);
// Set the Attacking Body part to CHEST
setAttackingBodypart();
// Make sure that char is facing selected target
// also works: setHeading(Util.convertDegreeToClientHeading(Util.calculateAngleFrom(this, target)));
setHeading(Util.calculateHeadingFrom(this, target));
// Get the Attack Reuse Delay of the L2Weapon
int reuse = calculateReuseTime(target, weaponItem);
boolean hitted;
// Select the type of attack to start
if (weaponItem == null || isTransformed())
hitted = doAttackHitSimple(attack, target, timeToHit);
else if (weaponItem.getItemType() == L2WeaponType.BOW)
hitted = doAttackHitByBow(attack, target, timeAtk, reuse);
else if (weaponItem.getItemType() == L2WeaponType.CROSSBOW)
hitted = doAttackHitByCrossBow(attack, target, timeAtk, reuse);
else if (weaponItem.getItemType() == L2WeaponType.POLE)
hitted = doAttackHitByPole(attack, target, timeToHit);
else if (isUsingDualWeapon())
hitted = doAttackHitByDual(attack, target, timeToHit);
else
hitted = doAttackHitSimple(attack, target, timeToHit);
// Flag the attacker if it's a L2PcInstance outside a PvP area
L2PcInstance player = null;
if (this instanceof L2PcInstance)
player = (L2PcInstance)this;
else if (this instanceof L2Summon)
player = ((L2Summon)this).getOwner();
else if (this instanceof L2Trap)
player = ((L2Trap)this).getOwner();
if (player != null)
player.updatePvPStatus(target);
// Check if hit isn't missed
if (!hitted)
// Abort the attack of the L2Character and send Server->Client ActionFailed packet
abortAttack();
else
{
/* ADDED BY nexus - 2006-08-17
*
* As soon as we know that our hit landed, we must discharge any active soulshots.
* This must be done so to avoid unwanted soulshot consumption.
*/
// If we didn't miss the hit, discharge the shoulshots, if any
if (this instanceof L2Summon && !(this instanceof L2PetInstance))
((L2Summon)this).setChargedSoulShot(L2ItemInstance.CHARGED_NONE);
else
if (weaponInst != null)
weaponInst.setChargedSoulshot(L2ItemInstance.CHARGED_NONE);
if (player != null)
{
if (player.isCursedWeaponEquipped())
{
// If hitted by a cursed weapon, Cp is reduced to 0
if (!target.isInvul())
target.setCurrentCp(0);
} else if (player.isHero())
{
if (target instanceof L2PcInstance && ((L2PcInstance)target).isCursedWeaponEquipped())
// If a cursed weapon is hitted by a Hero, Cp is reduced to 0
target.setCurrentCp(0);
}
}
}
// If the Server->Client packet Attack contains at least 1 hit, send the Server->Client packet Attack
// to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character
if (attack.hasHits())
broadcastPacket(attack);
// Notify AI with EVT_READY_TO_ACT
ThreadPoolManager.getInstance().scheduleAi(new NotifyAITask(CtrlEvent.EVT_READY_TO_ACT), timeAtk+reuse);
}
/**
* Launch a Bow attack.
*
* Actions :
* Calculate if hit is missed or not
* Consume arrows
* If hit isn't missed, calculate if shield defense is efficient
* If hit isn't missed, calculate if hit is critical
* If hit isn't missed, calculate physical damages
* If the L2Character is a L2PcInstance, Send a Server->Client packet SetupGauge
* Create a new hit task with Medium priority
* Calculate and set the disable delay of the bow in function of the Attack Speed
* Add this hit to the Server-Client packet Attack
*
* @param attack Server->Client packet Attack in which the hit will be added
* @param target The L2Character targeted
* @param sAtk The Attack Speed of the attacker
*
* @return True if the hit isn't missed
*
*/
private boolean doAttackHitByBow(Attack attack, L2Character target, int sAtk, int reuse)
{
int damage1 = 0;
boolean shld1 = false;
boolean crit1 = false;
// Calculate if hit is missed or not
boolean miss1 = Formulas.getInstance().calcHitMiss(this, target);
// Consume arrows
reduceArrowCount(false);
_move = null;
// Check if hit isn't missed
if (!miss1)
{
// Calculate if shield defense is efficient
shld1 = Formulas.getInstance().calcShldUse(this, target);
// Calculate if hit is critical
crit1 = Formulas.getInstance().calcCrit(getStat().getCriticalHit(target, null));
// Calculate physical damages
damage1 = (int)Formulas.getInstance().calcPhysDam(this, target, null, shld1, crit1, false, attack.soulshot);
}
// Check if the L2Character is a L2PcInstance
if (this instanceof L2PcInstance)
{
// Send a system message
sendPacket(new SystemMessage(SystemMessageId.GETTING_READY_TO_SHOOT_AN_ARROW));
// Send a Server->Client packet SetupGauge
SetupGauge sg = new SetupGauge(SetupGauge.RED, sAtk+reuse);
sendPacket(sg);
}
// Create a new hit task with Medium priority
ThreadPoolManager.getInstance().scheduleAi(new HitTask(target, damage1, crit1, miss1, attack.soulshot, shld1), sAtk);
// Calculate and set the disable delay of the bow in function of the Attack Speed
_disableBowAttackEndTime = (sAtk+reuse)/GameTimeController.MILLIS_IN_TICK + GameTimeController.getGameTicks();
// Add this hit to the Server-Client packet Attack
attack.addHit(target, damage1, miss1, crit1, shld1);
// Return true if hit isn't missed
return !miss1;
}
/**
* Launch a CrossBow attack.
*
* Actions :
* Calculate if hit is missed or not
* Consume bolts
* If hit isn't missed, calculate if shield defense is efficient
* If hit isn't missed, calculate if hit is critical
* If hit isn't missed, calculate physical damages
* If the L2Character is a L2PcInstance, Send a Server->Client packet SetupGauge
* Create a new hit task with Medium priority
* Calculate and set the disable delay of the crossbow in function of the Attack Speed
* Add this hit to the Server-Client packet Attack
*
* @param attack Server->Client packet Attack in which the hit will be added
* @param target The L2Character targeted
* @param sAtk The Attack Speed of the attacker
*
* @return True if the hit isn't missed
*
*/
private boolean doAttackHitByCrossBow(Attack attack, L2Character target, int sAtk, int reuse)
{
int damage1 = 0;
boolean shld1 = false;
boolean crit1 = false;
// Calculate if hit is missed or not
boolean miss1 = Formulas.getInstance().calcHitMiss(this, target);
// Consume bolts
reduceArrowCount(true);
_move = null;
// Check if hit isn't missed
if (!miss1)
{
// Calculate if shield defense is efficient
shld1 = Formulas.getInstance().calcShldUse(this, target);
// Calculate if hit is critical
crit1 = Formulas.getInstance().calcCrit(getStat().getCriticalHit(target, null));
// Calculate physical damages
damage1 = (int)Formulas.getInstance().calcPhysDam(this, target, null, shld1, crit1, false, attack.soulshot);
}
// Check if the L2Character is a L2PcInstance
if (this instanceof L2PcInstance)
{
// Send a system message
sendPacket(new SystemMessage(SystemMessageId.CROSSBOW_PREPARING_TO_FIRE));
// Send a Server->Client packet SetupGauge
SetupGauge sg = new SetupGauge(SetupGauge.RED, sAtk+reuse);
sendPacket(sg);
}
// Create a new hit task with Medium priority
ThreadPoolManager.getInstance().scheduleAi(new HitTask(target, damage1, crit1, miss1, attack.soulshot, shld1), sAtk);
// Calculate and set the disable delay of the bow in function of the Attack Speed
_disableCrossBowAttackEndTime = (sAtk+reuse)/GameTimeController.MILLIS_IN_TICK + GameTimeController.getGameTicks();
// Add this hit to the Server-Client packet Attack
attack.addHit(target, damage1, miss1, crit1, shld1);
// Return true if hit isn't missed
return !miss1;
}
/**
* Launch a Dual attack.
*
* Actions :
* Calculate if hits are missed or not
* If hits aren't missed, calculate if shield defense is efficient
* If hits aren't missed, calculate if hit is critical
* If hits aren't missed, calculate physical damages
* Create 2 new hit tasks with Medium priority
* Add those hits to the Server-Client packet Attack
*
* @param attack Server->Client packet Attack in which the hit will be added
* @param target The L2Character targeted
*
* @return True if hit 1 or hit 2 isn't missed
*
*/
private boolean doAttackHitByDual(Attack attack, L2Character target, int sAtk)
{
int damage1 = 0;
int damage2 = 0;
boolean shld1 = false;
boolean shld2 = false;
boolean crit1 = false;
boolean crit2 = false;
// Calculate if hits are missed or not
boolean miss1 = Formulas.getInstance().calcHitMiss(this, target);
boolean miss2 = Formulas.getInstance().calcHitMiss(this, target);
// Check if hit 1 isn't missed
if (!miss1)
{
// Calculate if shield defense is efficient against hit 1
shld1 = Formulas.getInstance().calcShldUse(this, target);
// Calculate if hit 1 is critical
crit1 = Formulas.getInstance().calcCrit(getStat().getCriticalHit(target, null));
// Calculate physical damages of hit 1
damage1 = (int)Formulas.getInstance().calcPhysDam(this, target, null, shld1, crit1, true, attack.soulshot);
damage1 /= 2;
}
// Check if hit 2 isn't missed
if (!miss2)
{
// Calculate if shield defense is efficient against hit 2
shld2 = Formulas.getInstance().calcShldUse(this, target);
// Calculate if hit 2 is critical
crit2 = Formulas.getInstance().calcCrit(getStat().getCriticalHit(target, null));
// Calculate physical damages of hit 2
damage2 = (int)Formulas.getInstance().calcPhysDam(this, target, null, shld2, crit2, true, attack.soulshot);
damage2 /= 2;
}
// Create a new hit task with Medium priority for hit 1
ThreadPoolManager.getInstance().scheduleAi(new HitTask(target, damage1, crit1, miss1, attack.soulshot, shld1), sAtk/2);
// Create a new hit task with Medium priority for hit 2 with a higher delay
ThreadPoolManager.getInstance().scheduleAi(new HitTask(target, damage2, crit2, miss2, attack.soulshot, shld2), sAtk);
// Add those hits to the Server-Client packet Attack
attack.addHit(target, damage1, miss1, crit1, shld1);
attack.addHit(target, damage2, miss2, crit2, shld2);
// Return true if hit 1 or hit 2 isn't missed
return (!miss1 || !miss2);
}
/**
* Launch a Pole attack.
*
* Actions :
* Get all visible objects in a spherical area near the L2Character to obtain possible targets
* If possible target is the L2Character targeted, launch a simple attack against it
* If possible target isn't the L2Character targeted but is attackable, launch a simple attack against it
*
* @param attack Server->Client packet Attack in which the hit will be added
*
* @return True if one hit isn't missed
*
*/
private boolean doAttackHitByPole(Attack attack, L2Character target, int sAtk)
{
double angleChar;
int maxRadius = getPhysicalAttackRange();
int maxAngleDiff = (int)getStat().calcStat(Stats.POWER_ATTACK_ANGLE, 120, null, null);
if (Config.DEBUG)
{
_log.info("doAttackHitByPole: Max radius = " + maxRadius);
_log.info("doAttackHitByPole: Max angle = " + maxAngleDiff);
}
// o1 x: 83420 y: 148158 (Giran)
// o2 x: 83379 y: 148081 (Giran)
// dx = -41
// dy = -77
// distance between o1 and o2 = 87.24
// arctan2 = -120 (240) degree (excel arctan2(dx, dy); java arctan2(dy, dx))
//
// o2
//
// o1 ----- (heading)
// In the diagram above:
// o1 has a heading of 0/360 degree from horizontal (facing East)
// Degree of o2 in respect to o1 = -120 (240) degree
//
// o2 / (heading)
// /
// o1
// In the diagram above
// o1 has a heading of -80 (280) degree from horizontal (facing north east)
// Degree of o2 in respect to 01 = -40 (320) degree
// Get char's heading degree
angleChar = Util.convertHeadingToDegree(getHeading());
int attackRandomCountMax = (int)getStat().calcStat(Stats.ATTACK_COUNT_MAX, 3, null, null) - 1;
int attackcount = 0;
if (angleChar <= 0)
angleChar += 360;
// ===========================================================
boolean hitted = doAttackHitSimple(attack, target, 100, sAtk);
double attackpercent = 85;
L2Character temp;
Collection objs = getKnownList().getKnownObjects().values();
//synchronized (getKnownList().getKnownObjects())
{
for (L2Object obj : objs)
{
if (obj == target)
continue; // do not hit twice
// Check if the L2Object is a L2Character
if (obj instanceof L2Character)
{
if (obj instanceof L2PetInstance
&& this instanceof L2PcInstance
&& ((L2PetInstance) obj).getOwner() == ((L2PcInstance) this))
continue;
if (!Util.checkIfInRange(maxRadius, this, obj, false))
continue;
// otherwise hit too high/low. 650 because mob z coord
// sometimes wrong on hills
if (Math.abs(obj.getZ() - getZ()) > 650)
continue;
if (!isFacing(obj, maxAngleDiff))
continue;
temp = (L2Character) obj;
// Launch a simple attack against the L2Character targeted
if (!temp.isAlikeDead())
{
attackcount += 1;
if (attackcount <= attackRandomCountMax)
{
if (temp == getAI().getAttackTarget()
|| temp.isAutoAttackable(this))
{
hitted |= doAttackHitSimple(attack, temp, attackpercent, sAtk);
attackpercent /= 1.15;
}
}
}
}
}
}
// Return true if one hit isn't missed
return hitted;
}
/**
* Launch a simple attack.
*
* Actions :
* Calculate if hit is missed or not
* If hit isn't missed, calculate if shield defense is efficient
* If hit isn't missed, calculate if hit is critical
* If hit isn't missed, calculate physical damages
* Create a new hit task with Medium priority
* Add this hit to the Server-Client packet Attack
*
* @param attack Server->Client packet Attack in which the hit will be added
* @param target The L2Character targeted
*
* @return True if the hit isn't missed
*
*/
private boolean doAttackHitSimple(Attack attack, L2Character target, int sAtk)
{
return doAttackHitSimple(attack, target, 100, sAtk);
}
private boolean doAttackHitSimple(Attack attack, L2Character target, double attackpercent, int sAtk)
{
int damage1 = 0;
boolean shld1 = false;
boolean crit1 = false;
// Calculate if hit is missed or not
boolean miss1 = Formulas.getInstance().calcHitMiss(this, target);
// Check if hit isn't missed
if (!miss1)
{
// Calculate if shield defense is efficient
shld1 = Formulas.getInstance().calcShldUse(this, target);
// Calculate if hit is critical
crit1 = Formulas.getInstance().calcCrit(getStat().getCriticalHit(target, null));
// Calculate physical damages
damage1 = (int)Formulas.getInstance().calcPhysDam(this, target, null, shld1, crit1, false, attack.soulshot);
if (attackpercent != 100)
damage1 = (int)(damage1*attackpercent/100);
}
// Create a new hit task with Medium priority
ThreadPoolManager.getInstance().scheduleAi(new HitTask(target, damage1, crit1, miss1, attack.soulshot, shld1), sAtk);
// Add this hit to the Server-Client packet Attack
attack.addHit(target, damage1, miss1, crit1, shld1);
// Return true if hit isn't missed
return !miss1;
}
/**
* Manage the casting task (casting and interrupt time, re-use delay...) and display the casting bar and animation on client.
*
* Actions :
* Verify the possibilty of the the cast : skill is a spell, caster isn't muted...
* Get the list of all targets (ex : area effects) and define the L2Charcater targeted (its stats will be used in calculation)
* Calculate the casting time (base + modifier of MAtkSpd), interrupt time and re-use delay
* Send a Server->Client packet MagicSkillUser (to diplay casting animation), a packet SetupGauge (to display casting bar) and a system message
* Disable all skills during the casting time (create a task EnableAllSkills)
* Disable the skill during the re-use delay (create a task EnableSkill)
* Create a task MagicUseTask (that will call method onMagicUseTimer) to launch the Magic Skill at the end of the casting time
*
* @param skill The L2Skill to use
*
*/
public void doCast(L2Skill skill)
{
if (skill == null)
{
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
return;
}
if (isSkillDisabled(skill.getId()))
{
if (this instanceof L2PcInstance)
{
SystemMessage sm = null;
FastMap timeStamp = ((L2PcInstance)this).getReuseTimeStamp();
if (timeStamp != null && timeStamp.containsKey(skill.getId()))
{
int seconds = (int) (timeStamp.get(skill.getId()).getRemaining()/1000);
int minutes = (int) (timeStamp.get(skill.getId()).getRemaining()/60000);
int hours = (int) (timeStamp.get(skill.getId()).getRemaining()/3600000);
if (hours > 0)
{
sm = new SystemMessage(SystemMessageId.S2_HOURS_S3_MINUTES_S4_SECONDS_REMAINING_FOR_REUSE_S1);
sm.addNumber(hours);
if (minutes >= 60)
minutes = 59;
sm.addNumber(minutes);
}
else if (minutes > 0)
{
sm = new SystemMessage(SystemMessageId.S2_MINUTES_S3_SECONDS_REMAINING_FOR_REUSE_S1);
sm.addNumber(minutes);
}
else if (seconds > 0)
{
sm = new SystemMessage(SystemMessageId.S2_SECONDS_REMAIMNING_FOR_REUSE_S1);
}
if (seconds >= 60)
seconds = 59;
sm.addNumber(seconds);
}
else
sm = new SystemMessage(SystemMessageId.S1_PREPARED_FOR_REUSE);
sm.addSkillName(skill);
sendPacket(sm);
}
return;
}
// Check if the caster has enough MP
if (getCurrentMp() < getStat().getMpConsume(skill) + getStat().getMpInitialConsume(skill))
{
// Send a System Message to the caster
sendPacket(new SystemMessage(SystemMessageId.NOT_ENOUGH_MP));
// Send a Server->Client packet ActionFailed to the L2PcInstance
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// Check if the caster has enough HP
if (getCurrentHp() <= skill.getHpConsume())
{
// Send a System Message to the caster
sendPacket(new SystemMessage(SystemMessageId.NOT_ENOUGH_HP));
// Send a Server->Client packet ActionFailed to the L2PcInstance
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
switch (skill.getSkillType())
{
case SUMMON_TRAP:
{
if (isInsideZone(ZONE_PEACE))
{
if (this instanceof L2PcInstance)
((L2PcInstance)this).sendPacket(new SystemMessage(SystemMessageId.A_MALICIOUS_SKILL_CANNOT_BE_USED_IN_PEACE_ZONE));
return;
}
if (this instanceof L2PcInstance && ((L2PcInstance)this).getTrap() != null)
return;
break;
}
case SUMMON:
{
if (!skill.isCubic() && this instanceof L2PcInstance &&(((L2PcInstance)this).getPet() != null || ((L2PcInstance)this).isMounted()))
{
if (Config.DEBUG)
_log.fine("player has a pet already. ignore summon skill");
sendPacket(new SystemMessage(SystemMessageId.YOU_ALREADY_HAVE_A_PET));
return;
}
}
}
if(!skill.isPotion())
{
// Check if the skill is a magic spell and if the L2Character is not muted
if (skill.isMagic())
{
if(isMuted())
{
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
return;
}
}
else
{
// Check if the skill is physical and if the L2Character is not physical_muted
if (isPhysicalMuted())
{
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
return;
}
else if (isPhysicalAttackMuted()) // Prevent use attack
{
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
}
}
// Can't use Hero and resurrect skills during Olympiad
if (this instanceof L2PcInstance && ((L2PcInstance)this).isInOlympiadMode() &&
(skill.isHeroSkill() || skill.getSkillType() == SkillType.RESURRECT))
{
SystemMessage sm = new SystemMessage(SystemMessageId.THIS_SKILL_IS_NOT_AVAILABLE_FOR_THE_OLYMPIAD_EVENT);
sendPacket(sm);
return;
}
// prevent casting signets to peace zone
if (skill.getSkillType() == SkillType.SIGNET || skill.getSkillType() == SkillType.SIGNET_CASTTIME)
{
/*for (L2Effect effect : getAllEffects())
{
if (effect.getEffectType() == L2Effect.EffectType.SIGNET_EFFECT
|| effect.getEffectType() == L2Effect.EffectType.SIGNET_GROUND)
{
SystemMessage sm = new SystemMessage(SystemMessageId.S1_CANNOT_BE_USED);
sm.addSkillName(skill);
sendPacket(sm);
return;
}
}*/
L2WorldRegion region = getWorldRegion();
if (region == null) return;
boolean canCast = true;
if (skill.getTargetType() == SkillTargetType.TARGET_GROUND && this instanceof L2PcInstance)
{
Point3D wp = ((L2PcInstance) this).getCurrentSkillWorldPosition();
if (!region.checkEffectRangeInsidePeaceZone(skill, wp.getX(), wp.getY(), wp.getZ()))
canCast = false;
}
else if (!region.checkEffectRangeInsidePeaceZone(skill, getX(), getY(), getZ()))
canCast = false;
if (!canCast)
{
SystemMessage sm = new SystemMessage(SystemMessageId.S1_CANNOT_BE_USED);
sm.addSkillName(skill);
sendPacket(sm);
return;
}
}
// Check if the spell consumes an Item
// TODO: combine check and consume
if (skill.getItemConsume() > 0 && getInventory() != null)
{
// Get the L2ItemInstance consumed by the spell
L2ItemInstance requiredItems = getInventory().getItemByItemId(skill.getItemConsumeId());
// Check if the caster owns enough consumed Item to cast
if (requiredItems == null || requiredItems.getCount() < skill.getItemConsume())
{
// Checked: when a summon skill failed, server show required consume item count
if (skill.getSkillType() == L2Skill.SkillType.SUMMON)
{
SystemMessage sm = new SystemMessage(SystemMessageId.SUMMONING_SERVITOR_COSTS_S2_S1);
sm.addItemName(skill.getItemConsumeId());
sm.addNumber(skill.getItemConsume());
sendPacket(sm);
return;
}
else
{
// Send a System Message to the caster
sendPacket(new SystemMessage(SystemMessageId.NOT_ENOUGH_ITEMS));
return;
}
}
}
//Recharge AutoSoulShot
if (skill.useSoulShot())
{
if (this instanceof L2NpcInstance)
((L2NpcInstance)this).rechargeAutoSoulShot(true, false);
else if (this instanceof L2PcInstance)
((L2PcInstance)this).rechargeAutoSoulShot(true, false, false);
else if (this instanceof L2Summon)
((L2Summon)this).getOwner().rechargeAutoSoulShot(true, false, true);
}
else if (skill.useSpiritShot())
{
if (this instanceof L2PcInstance)
((L2PcInstance)this).rechargeAutoSoulShot(false, true, false);
else if (this instanceof L2Summon)
((L2Summon)this).getOwner().rechargeAutoSoulShot(false, true, true);
}
// Set the target of the skill in function of Skill Type and Target Type
L2Character target = null;
// Get all possible targets of the skill in a table in function of the skill target type
L2Object[] targets = skill.getTargetList(this);
// AURA skills should always be using caster as target
if (skill.getTargetType() == SkillTargetType.TARGET_AURA
|| skill.getTargetType() == SkillTargetType.TARGET_FRONT_AURA
|| skill.getTargetType() == SkillTargetType.TARGET_BEHIND_AURA
|| skill.getTargetType() == SkillTargetType.TARGET_GROUND)
{
target = this;
}
else
{
if (targets == null || targets.length == 0)
{
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
return;
}
if( skill.getSkillType() == SkillType.BUFF ||
skill.getSkillType() == SkillType.HEAL ||
skill.getSkillType() == SkillType.COMBATPOINTHEAL ||
skill.getSkillType() == SkillType.MANAHEAL ||
skill.getSkillType() == SkillType.REFLECT ||
skill.getTargetType() == L2Skill.SkillTargetType.TARGET_SELF ||
skill.getTargetType() == L2Skill.SkillTargetType.TARGET_PET ||
skill.getTargetType() == L2Skill.SkillTargetType.TARGET_PARTY ||
skill.getTargetType() == L2Skill.SkillTargetType.TARGET_CLAN ||
skill.getTargetType() == L2Skill.SkillTargetType.TARGET_ALLY)
{
target = (L2Character) targets[0];
if (this instanceof L2PcInstance && target instanceof L2PcInstance && target.getAI().getIntention() == CtrlIntention.AI_INTENTION_ATTACK)
{
if(skill.getSkillType() == SkillType.BUFF || skill.getSkillType() == SkillType.HOT || skill.getSkillType() == SkillType.HEAL || skill.getSkillType() == SkillType.HEAL_PERCENT || skill.getSkillType() == SkillType.MANAHEAL || skill.getSkillType() == SkillType.MANAHEAL_PERCENT || skill.getSkillType() == SkillType.BALANCE_LIFE)
target.setLastBuffer(this);
if (((L2PcInstance)this).isInParty() && skill.getTargetType() == L2Skill.SkillTargetType.TARGET_PARTY)
{
for (L2PcInstance member : ((L2PcInstance)this).getParty().getPartyMembers())
member.setLastBuffer(this);
}
}
}
else target = (L2Character) getTarget();
}
if (target == null)
{
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
return;
}
setLastSkillCast(skill);
// Get the Identifier of the skill
int magicId = skill.getId();
// Get the Display Identifier for a skill that client can't display
int displayId = skill.getDisplayId();
// Get the level of the skill
int level = skill.getLevel();
if (level < 1)
level = 1;
// Get the casting time of the skill (base)
int hitTime = skill.getHitTime();
int coolTime = skill.getCoolTime();
boolean effectWhileCasting = skill.getSkillType() == SkillType.FORCE_BUFF
|| skill.getSkillType() == SkillType.SIGNET_CASTTIME;
// Calculate the casting time of the skill (base + modifier of MAtkSpd)
// Don't modify the skill time for FORCE_BUFF skills. The skill time for those skills represent the buff time.
if(!effectWhileCasting)
{
hitTime = Formulas.getInstance().calcMAtkSpd(this, skill, hitTime);
if (coolTime > 0)
coolTime = Formulas.getInstance().calcMAtkSpd(this, skill, coolTime);
}
// Calculate altered Cast Speed due to BSpS/SpS
L2ItemInstance weaponInst = getActiveWeaponInstance();
if (weaponInst != null && skill.isMagic() && !effectWhileCasting && skill.getTargetType() != SkillTargetType.TARGET_SELF)
{
if ((weaponInst.getChargedSpiritshot() == L2ItemInstance.CHARGED_BLESSED_SPIRITSHOT)
|| (weaponInst.getChargedSpiritshot() == L2ItemInstance.CHARGED_SPIRITSHOT))
{
//Only takes 70% of the time to cast a BSpS/SpS cast
hitTime = (int)(0.70 * hitTime);
coolTime = (int)(0.70 * coolTime);
//Because the following are magic skills that do not actively 'eat' BSpS/SpS,
//I must 'eat' them here so players don't take advantage of infinite speed increase
switch (skill.getSkillType())
{
case BUFF:
case MANAHEAL:
case RESURRECT:
case RECALL:
case DOT:
weaponInst.setChargedSpiritshot(L2ItemInstance.CHARGED_NONE);
break;
}
}
}
else if (this instanceof L2NpcInstance && skill.useSpiritShot() && !effectWhileCasting)
{
if(((L2NpcInstance)this).rechargeAutoSoulShot(false, true))
{
hitTime = (int)(0.70 * hitTime);
coolTime = (int)(0.70 * coolTime);
}
}
// Set the _castEndTime and _castInterruptTim. +10 ticks for lag situations, will be reseted in onMagicFinalizer
_castEndTime = 10 + GameTimeController.getGameTicks() + (coolTime + hitTime) / GameTimeController.MILLIS_IN_TICK;
_castInterruptTime = -2 + GameTimeController.getGameTicks() + hitTime / GameTimeController.MILLIS_IN_TICK;
// Init the reuse time of the skill
int reuseDelay;
if(skill.isMagic())
{
reuseDelay = (int)(skill.getReuseDelay() * getStat().getMReuseRate(skill));
}
else
{
reuseDelay = (int)(skill.getReuseDelay() * getStat().getPReuseRate(skill));
}
reuseDelay *= 333.0 / (skill.isMagic() ? getMAtkSpd() : getPAtkSpd());
// Skill reuse check
if (reuseDelay > 30000) addTimeStamp(skill.getId(),reuseDelay);
// Check if this skill consume mp on start casting
int initmpcons = getStat().getMpInitialConsume(skill);
if (initmpcons > 0)
{
StatusUpdate su = new StatusUpdate(getObjectId());
getStatus().reduceMp(calcStat(Stats.MP_CONSUME_RATE,initmpcons,null,null));
su.addAttribute(StatusUpdate.CUR_MP, (int) getCurrentMp());
sendPacket(su);
}
// Disable the skill during the re-use delay and create a task EnableSkill with Medium priority to enable it at the end of the re-use delay
if (reuseDelay > 10)
{
disableSkill(skill.getId(), reuseDelay);
}
// Make sure that char is facing selected target
if (target != this)
setHeading(Util.calculateHeadingFrom(this, target));
// For force buff skills, start the effect as long as the player is casting.
if(effectWhileCasting)
{
// Consume Items if necessary and Send the Server->Client packet InventoryUpdate with Item modification to all the L2Character
if (skill.getItemConsume() > 0)
{
if (!destroyItemByItemId("Consume", skill.getItemConsumeId(), skill.getItemConsume(), null, false))
{
sendPacket(new SystemMessage(SystemMessageId.NOT_ENOUGH_ITEMS));
return;
}
}
// Consume Souls if necessary
if (skill.getSoulConsumeCount() > 0 || skill.getMaxSoulConsumeCount() > 0)
{
if (this instanceof L2PcInstance)
{
((L2PcInstance)this).decreaseSouls(skill.getSoulConsumeCount(),skill);
sendPacket(new EtcStatusUpdate((L2PcInstance)this));
}
}
if (skill.getSkillType() == SkillType.FORCE_BUFF)
startForceBuff(target, skill);
else
callSkill(skill, targets);
}
// Send a Server->Client packet MagicSkillUser with target, displayId, level, skillTime, reuseDelay
// to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character
broadcastPacket(new MagicSkillUse(this, target, displayId, level, hitTime, reuseDelay));
// Send a system message USE_S1 to the L2Character
if (this instanceof L2PcInstance && magicId != 1312)
{
SystemMessage sm = new SystemMessage(SystemMessageId.USE_S1);
sm.addSkillName(skill);
sendPacket(sm);
}
// Before start AI Cast Broadcast Fly Effect is Need
if (skill.getFlyType() != null && (this instanceof L2PcInstance))
{
ThreadPoolManager.getInstance().scheduleEffect(new FlyToLocationTask(this, target, skill), 50);
}
// launch the magic in hitTime milliseconds
if (hitTime > 210)
{
// Send a Server->Client packet SetupGauge with the color of the gauge and the casting time
if (this instanceof L2PcInstance && !effectWhileCasting)
{
SetupGauge sg = new SetupGauge(SetupGauge.BLUE, hitTime);
sendPacket(sg);
}
// Disable all skills during the casting
disableAllSkills();
if (_skillCast != null)
{
_skillCast.cancel(true);
_skillCast = null;
}
// Create a task MagicUseTask to launch the MagicSkill at the end of the casting time (hitTime)
// For client animation reasons (party buffs especially) 200 ms before!
if (effectWhileCasting)
_skillCast = ThreadPoolManager.getInstance().scheduleEffect(new MagicUseTask(targets, skill, coolTime, 2), hitTime);
else
_skillCast = ThreadPoolManager.getInstance().scheduleEffect(new MagicUseTask(targets, skill, coolTime, 1), hitTime-200);
}
else
onMagicLaunchedTimer(targets, skill, coolTime, true);
}
/**
* Index according to skill id the current timestamp of use.
*
* @param skill id
* @param reuse delay
*
Overridden in : (L2PcInstance)
*/
public void addTimeStamp(int s, int r) {/***/}
/**
* Index according to skill id the current timestamp of use.
*
* @param skill id
*
Overridden in : (L2PcInstance)
*/
public void removeTimeStamp(int s) {/***/}
public void startForceBuff(L2Character target, L2Skill skill)
{
if (skill.getSkillType() != SkillType.FORCE_BUFF)
return;
if (_forceBuff == null)
_forceBuff = new ForceBuff(this, target, skill);
}
/**
* Kill the L2Character.
*
* Actions :
* Set target to null and cancel Attack or Cast
* Stop movement
* Stop HP/MP/CP Regeneration task
* Stop all active skills effects in progress on the L2Character
* Send the Server->Client packet StatusUpdate with current HP and MP to all other L2PcInstance to inform
* Notify L2Character AI
*
* Overridden in :
* L2NpcInstance : Create a DecayTask to remove the corpse of the L2NpcInstance after 7 seconds
* L2Attackable : Distribute rewards (EXP, SP, Drops...) and notify Quest Engine
* L2PcInstance : Apply Death Penalty, Manage gain/loss Karma and Item Drop
*
* @param killer The L2Character who killed it
*
*/
public boolean doDie(L2Character killer)
{
// killing is only possible one time
synchronized (this)
{
if (isDead()) return false;
// now reset currentHp to zero
setCurrentHp(0);
if (isFakeDeath()) stopFakeDeath(null);
setIsDead(true);
}
// Set target to null and cancel Attack or Cast
setTarget(null);
// Stop movement
stopMove(null);
// Stop HP/MP/CP Regeneration task
getStatus().stopHpMpRegeneration();
// Stop all active skills effects in progress on the L2Character,
// if the Character isn't affected by Soul of The Phoenix or Salvation
if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isPhoenixBlessed())
{
if (((L2PlayableInstance)this).getCharmOfLuck()) //remove Lucky Charm if player has SoulOfThePhoenix/Salvation buff
((L2PlayableInstance)this).stopCharmOfLuck(null);
if (((L2PlayableInstance)this).isNoblesseBlessed())
((L2PlayableInstance)this).stopNoblesseBlessing(null);
}
// Same thing if the Character isn't a Noblesse Blessed L2PlayableInstance
else if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isNoblesseBlessed())
{
((L2PlayableInstance)this).stopNoblesseBlessing(null);
untransform(); // Untransforms character if transformed.
stopTransformation(null);
if (((L2PlayableInstance)this).getCharmOfLuck()) //remove Lucky Charm if player have Nobless blessing buff
((L2PlayableInstance)this).stopCharmOfLuck(null);
}
else
stopAllEffects();
if (this instanceof L2PcInstance && ((L2PcInstance)this).getAgathionId() != 0)
((L2PcInstance)this).setAgathionId(0);
calculateRewards(killer);
// Send the Server->Client packet StatusUpdate with current HP and MP to all other L2PcInstance to inform
broadcastStatusUpdate();
// Notify L2Character AI
getAI().notifyEvent(CtrlEvent.EVT_DEAD);
if (getWorldRegion() != null)
getWorldRegion().onDeath(this);
// Notify Quest of character's death
for (QuestState qs: getNotifyQuestOfDeath())
{
qs.getQuest().notifyDeath( (killer==null?this:killer) , this, qs);
}
getNotifyQuestOfDeath().clear();
getAttackByList().clear();
//If character is PhoenixBlessed a resurrection popup will show up
if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isPhoenixBlessed())
{
if (this instanceof L2Summon) {
((L2Summon)this).getOwner().reviveRequest(((L2Summon)this).getOwner(), null, true);
}
else ((L2PcInstance)this).reviveRequest(((L2PcInstance)this),null,false);
}
return true;
}
protected void calculateRewards(L2Character killer)
{
}
/** Sets HP, MP and CP and revives the L2Character. */
public void doRevive()
{
if (!isDead()) return;
if (!isTeleporting())
{
setIsPendingRevive(false);
setIsDead(false);
if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isPhoenixBlessed())
{
((L2PlayableInstance)this).stopPhoenixBlessing(null);
}
//_status.setCurrentCp(getMaxCp() * Config.RESPAWN_RESTORE_CP);
_status.setCurrentHp(getMaxHp() * Config.RESPAWN_RESTORE_HP);
//_Status.setCurrentMp(getMaxMp() * Config.RESPAWN_RESTORE_MP);
// Start broadcast status
broadcastPacket(new Revive(this));
if (getWorldRegion() != null)
getWorldRegion().onRevive(this);
}
else
setIsPendingRevive(true);
}
/** Revives the L2Character using skill. */
public void doRevive(double revivePower) { doRevive(); }
/**
* Check if the active L2Skill can be casted.
*
* Actions :
* Check if the L2Character can cast (ex : not sleeping...)
* Check if the target is correct
* Notify the AI with AI_INTENTION_CAST and target
*
* @param skill The L2Skill to use
*
*/
protected void useMagic(L2Skill skill)
{
if (skill == null || isDead())
return;
// Check if the L2Character can cast
if (isAllSkillsDisabled())
{
// must be checked by caller
return;
}
// Ignore the passive skill request. why does the client send it anyway ??
if (skill.isPassive() || skill.isChance())
return;
// Get the target for the skill
L2Object target = null;
switch (skill.getTargetType())
{
case TARGET_AURA: // AURA, SELF should be cast even if no target has been found
case TARGET_FRONT_AURA:
case TARGET_BEHIND_AURA:
case TARGET_GROUND:
case TARGET_SELF:
target = this;
break;
default:
// Get the first target of the list
target = skill.getFirstOfTargetList(this);
break;
}
// Notify the AI with AI_INTENTION_CAST and target
getAI().setIntention(CtrlIntention.AI_INTENTION_CAST, skill, target);
}
// =========================================================
// Property - Public
/**
* Return the L2CharacterAI of the L2Character and if its null create a new one.
*/
public L2CharacterAI getAI()
{
if (_ai == null)
{
synchronized(this)
{
if (_ai == null) _ai = new L2CharacterAI(new AIAccessor());
}
}
return _ai;
}
public void setAI(L2CharacterAI newAI)
{
L2CharacterAI oldAI = getAI();
if(oldAI != null && oldAI != newAI && oldAI instanceof L2AttackableAI)
((L2AttackableAI)oldAI).stopAITask();
_ai = newAI;
}
/** Return True if the L2Character has a L2CharacterAI. */
public boolean hasAI() { return _ai != null; }
/** Return True if the L2Character is RaidBoss or his minion. */
public boolean isRaid()
{
return false;
}
/** Return a list of L2Character that attacked. */
public final List getAttackByList ()
{
if (_attackByList == null) _attackByList = new FastList();
return _attackByList;
}
public final L2Skill getLastSkillCast() { return _lastSkillCast; }
public void setLastSkillCast (L2Skill skill) { _lastSkillCast = skill; }
public final boolean isAfraid() { return _isAfraid; }
public final void setIsAfraid(boolean value) { _isAfraid = value; }
/** Return True if the L2Character can't use its skills (ex : stun, sleep...). */
public final boolean isAllSkillsDisabled() { return _allSkillsDisabled || isImmobileUntilAttacked() || isStunned() || isSleeping() || isParalyzed(); }
/** Return True if the L2Character can't attack (stun, sleep, attackEndTime, fakeDeath, paralyse, attackMute). */
public boolean isAttackingDisabled() { return isStunned() || isImmobileUntilAttacked() || isSleeping() || _attackEndTime > GameTimeController.getGameTicks() || isFakeDeath() || isParalyzed() || isPhysicalAttackMuted(); }
public final Calculator[] getCalculators() { return _calculators; }
public final boolean isConfused() { return _isConfused; }
public final void setIsConfused(boolean value) { _isConfused = value; }
/** Return True if the L2Character is dead or use fake death. */
public final boolean isAlikeDead() { return isFakeDeath() || _isDead; }
/** Return True if the L2Character is dead. */
public final boolean isDead() { return _isDead; }
public final void setIsDead(boolean value) { _isDead = value; }
public final boolean isFakeDeath() { return _isFakeDeath; }
public final void setIsFakeDeath(boolean value) { _isFakeDeath = value; }
/** Return True if the L2Character is flying. */
public final boolean isFlying() { return _isFlying; }
/** Set the L2Character flying mode to True. */
public final void setIsFlying(boolean mode) { _isFlying = mode; }
public boolean isImmobilized() { return _isImmobilized; }
public void setIsImmobilized(boolean value){ _isImmobilized = value; }
public final boolean isMuted() { return _isMuted; }
public final void setIsMuted(boolean value) { _isMuted = value; }
public final boolean isPhysicalMuted() { return _isPhysicalMuted; }
public final void setIsPhysicalMuted(boolean value) { _isPhysicalMuted = value; }
public final boolean isPhysicalAttackMuted() { return _isPhysicalAttackMuted; }
public final void setIsPhysicalAttackMuted(boolean value) { _isPhysicalAttackMuted = value; }
/** Return True if the L2Character can't move (stun, root, sleep, overload, paralyzed). */
public boolean isMovementDisabled()
{
// check for isTeleporting to prevent teleport cheating (if appear packet not received)
return isStunned() || isRooted() || isSleeping() || isOverloaded() || isParalyzed()
|| isImmobilized() || isFakeDeath() || isTeleporting();
}
/** Return True if the L2Character can be controlled by the player (confused, afraid). */
public final boolean isOutOfControl() { return isConfused() || isAfraid(); }
public final boolean isOverloaded() { return _isOverloaded; }
/** Set the overloaded status of the L2Character is overloaded (if True, the L2PcInstance can't take more item). */
public final void setIsOverloaded(boolean value) { _isOverloaded = value; }
public final boolean isParalyzed() { return _isParalyzed; }
public final void setIsParalyzed(boolean value) { _isParalyzed = value; }
public final boolean isPendingRevive() { return isDead() && _isPendingRevive; }
public final void setIsPendingRevive(boolean value) { _isPendingRevive = value; }
public final boolean isDisarmed() { return _isDisarmed; }
public final void setIsDisarmed(boolean value) { _isDisarmed = value; }
/**
* Return the L2Summon of the L2Character.
* Overridden in :
* L2PcInstance
*/
public L2Summon getPet() { return null; }
/** Return True if the L2Character is riding. */
public final boolean isRidingFenrirWolf()
{
return _isRidingFenrirWolf;
}
public final boolean isRidingWFenrirWolf()
{
return _isRidingWFenrirWolf;
}
public final boolean isRidingGreatSnowWolf()
{
return _isRidingGreatSnowWolf;
}
public final boolean isRidingStrider()
{
return _isRidingStrider;
}
/** Set the L2Character riding mode to True. */
public final void setIsRidingFenrirWolf(boolean mode) { _isRidingFenrirWolf = mode; }
public final void setIsRidingWFenrirWolf(boolean mode) { _isRidingWFenrirWolf = mode; }
public final void setIsRidingGreatSnowWolf(boolean mode) { _isRidingGreatSnowWolf = mode; }
public final void setIsRidingStrider(boolean mode) { _isRidingStrider = mode; }
public final boolean isRooted() { return _isRooted; }
public final void setIsRooted(boolean value) { _isRooted = value; }
/** Return True if the L2Character is running. */
public final boolean isRunning() { return _isRunning; }
public final void setIsRunning(boolean value)
{
_isRunning = value;
broadcastPacket(new ChangeMoveType(this));
}
/** Set the L2Character movement type to run and send Server->Client packet ChangeMoveType to all others L2PcInstance. */
public final void setRunning() { if (!isRunning()) setIsRunning(true); }
public final boolean isImmobileUntilAttacked() {return _isImmobileUntilAttacked; }
public final void setIsImmobileUntilAttacked(boolean value) { _isImmobileUntilAttacked = value; }
public final boolean isSleeping() { return _isSleeping; }
public final void setIsSleeping(boolean value) { _isSleeping = value; }
public final boolean isStunned() { return _isStunned; }
public final void setIsStunned(boolean value) { _isStunned = value; }
public final boolean isBetrayed() { return _isBetrayed; }
public final void setIsBetrayed(boolean value) { _isBetrayed = value; }
public final boolean isTeleporting() { return _isTeleporting; }
public final void setIsTeleporting(boolean value) { _isTeleporting = value; }
public void setIsInvul(boolean b){_isInvul = b;}
public boolean isInvul(){return _isInvul || _isTeleporting;}
public boolean isUndead() { return _template.isUndead; }
@Override
public CharKnownList getKnownList()
{
if(super.getKnownList() == null || !(super.getKnownList() instanceof CharKnownList))
setKnownList(new CharKnownList(this));
return ((CharKnownList)super.getKnownList());
}
public CharStat getStat()
{
if (_stat == null) _stat = new CharStat(this);
return _stat;
}
public final void setStat(CharStat value) { _stat = value; }
public CharStatus getStatus()
{
if (_status == null) _status = new CharStatus(this);
return _status;
}
public final void setStatus(CharStatus value) { _status = value; }
public L2CharTemplate getTemplate() { return _template; }
/**
* Set the template of the L2Character.
*
* Concept :
* Each L2Character owns generic and static properties (ex : all Keltir have the same number of HP...).
* All of those properties are stored in a different template for each type of L2Character.
* Each template is loaded once in the server cache memory (reduce memory use).
* When a new instance of L2Character is spawned, server just create a link between the instance and the template
* This link is stored in _template
*
* Assert :
* this instanceof L2Character
16? value.substring(0,15):value; }
/** Set the L2Character movement type to walk and send Server->Client packet ChangeMoveType to all others L2PcInstance. */
public final void setWalking() { if (isRunning()) setIsRunning(false); }
/** Task lauching the function enableSkill() */
class EnableSkill implements Runnable
{
int _skillId;
public EnableSkill(int skillId)
{
_skillId = skillId;
}
public void run()
{
try
{
enableSkill(_skillId);
}
catch (Throwable e)
{
_log.log(Level.SEVERE, "", e);
}
}
}
/**
* Task lauching the function onHitTimer().
*
* Actions :
* If the attacker/target is dead or use fake death, notify the AI with EVT_CANCEL and send a Server->Client packet ActionFailed (if attacker is a L2PcInstance)
* If attack isn't aborted, send a message system (critical hit, missed...) to attacker/target if they are L2PcInstance
* If attack isn't aborted and hit isn't missed, reduce HP of the target and calculate reflection damage to reduce HP of attacker if necessary
* if attack isn't aborted and hit isn't missed, manage attack or cast break of the target (calculating rate, sending message...)
*
*/
class HitTask implements Runnable
{
L2Character _hitTarget;
int _damage;
boolean _crit;
boolean _miss;
boolean _shld;
boolean _soulshot;
public HitTask(L2Character target, int damage, boolean crit, boolean miss, boolean soulshot, boolean shld)
{
_hitTarget = target;
_damage = damage;
_crit = crit;
_shld = shld;
_miss = miss;
_soulshot = soulshot;
}
public void run()
{
try
{
onHitTimer(_hitTarget, _damage, _crit, _miss, _soulshot, _shld);
}
catch (Throwable e)
{
_log.severe(e.toString());
}
}
}
/** Task lauching the magic skill phases */
class MagicUseTask implements Runnable
{
L2Object[] _targets;
L2Skill _skill;
int _coolTime;
int _phase;
public MagicUseTask(L2Object[] targets, L2Skill skill, int coolTime, int phase)
{
_targets = targets;
_skill = skill;
_coolTime = coolTime;
_phase = phase;
}
public void run()
{
try
{
switch (_phase)
{
case 1:
onMagicLaunchedTimer(_targets, _skill, _coolTime, false);
break;
case 2:
onMagicHitTimer(_targets, _skill, _coolTime, false);
break;
case 3:
onMagicFinalizer(_skill, _targets[0]);
break;
default:
break;
}
}
catch (Throwable e)
{
_log.log(Level.SEVERE, "", e);
enableAllSkills();
}
}
}
/** Task lauching the function useMagic() */
class QueuedMagicUseTask implements Runnable
{
L2PcInstance _currPlayer;
L2Skill _queuedSkill;
boolean _isCtrlPressed;
boolean _isShiftPressed;
public QueuedMagicUseTask(L2PcInstance currPlayer, L2Skill queuedSkill, boolean isCtrlPressed, boolean isShiftPressed)
{
_currPlayer = currPlayer;
_queuedSkill = queuedSkill;
_isCtrlPressed = isCtrlPressed;
_isShiftPressed = isShiftPressed;
}
public void run()
{
try
{
_currPlayer.useMagic(_queuedSkill, _isCtrlPressed, _isShiftPressed);
}
catch (Throwable e)
{
_log.log(Level.SEVERE, "", e);
}
}
}
/** Task of AI notification */
public class NotifyAITask implements Runnable
{
private final CtrlEvent _evt;
NotifyAITask(CtrlEvent evt)
{
_evt = evt;
}
public void run()
{
try
{
getAI().notifyEvent(_evt, null);
}
catch (Throwable t)
{
_log.log(Level.WARNING, "", t);
}
}
}
/** Task lauching the function stopPvPFlag() */
class PvPFlag implements Runnable
{
public PvPFlag()
{
}
public void run()
{
try
{
if (System.currentTimeMillis() > getPvpFlagLasts())
{
stopPvPFlag();
}
else if (System.currentTimeMillis() > (getPvpFlagLasts() - 20000))
{
updatePvPFlag(2);
}
else
{
updatePvPFlag(1);
// Start a new PvP timer check
//checkPvPFlag();
}
}
catch (Exception e)
{
_log.log(Level.WARNING, "error in pvp flag task:", e);
}
}
}
// =========================================================
/** Task lauching the magic skill phases */
class FlyToLocationTask implements Runnable
{
@SuppressWarnings("hiding")
L2Object _target;
L2Character _actor;
L2Skill _skill;
public FlyToLocationTask(L2Character actor, L2Object target, L2Skill skill)
{
_actor = actor;
_target = target;
_skill = skill;
}
public void run()
{
try
{
FlyType _flyType;
_flyType = FlyType.valueOf(_skill.getFlyType());
broadcastPacket(new FlyToLocation(_actor,_target,_flyType));
}
catch (Throwable e)
{
_log.log(Level.SEVERE, "", e);
}
}
}
// =========================================================
// Abnormal Effect - NEED TO REMOVE ONCE L2CHARABNORMALEFFECT IS COMPLETE
// Data Field
/** Map 32 bits (0x0000) containing all abnormal effect in progress */
private int _AbnormalEffects;
private CharEffectList _effects = new CharEffectList(this);
public static final int ABNORMAL_EFFECT_BLEEDING = 0x000001;
public static final int ABNORMAL_EFFECT_POISON = 0x000002;
public static final int ABNORMAL_EFFECT_UNKNOWN_3 = 0x000004;
public static final int ABNORMAL_EFFECT_UNKNOWN_4 = 0x000008;
public static final int ABNORMAL_EFFECT_UNKNOWN_5 = 0x000010;
public static final int ABNORMAL_EFFECT_UNKNOWN_6 = 0x000020;
public static final int ABNORMAL_EFFECT_STUN = 0x000040;
public static final int ABNORMAL_EFFECT_SLEEP = 0x000080;
public static final int ABNORMAL_EFFECT_MUTED = 0x000100;
public static final int ABNORMAL_EFFECT_ROOT = 0x000200;
public static final int ABNORMAL_EFFECT_HOLD_1 = 0x000400;
public static final int ABNORMAL_EFFECT_HOLD_2 = 0x000800;
public static final int ABNORMAL_EFFECT_UNKNOWN_13 = 0x001000;
public static final int ABNORMAL_EFFECT_BIG_HEAD = 0x002000;
public static final int ABNORMAL_EFFECT_FLAME = 0x004000;
public static final int ABNORMAL_EFFECT_UNKNOWN_16 = 0x008000;
public static final int ABNORMAL_EFFECT_GROW = 0x010000;
public static final int ABNORMAL_EFFECT_FLOATING_ROOT = 0x020000;
public static final int ABNORMAL_EFFECT_DANCE_STUNNED = 0x040000;
public static final int ABNORMAL_EFFECT_FIREROOT_STUN = 0x080000;
public static final int ABNORMAL_EFFECT_STEALTH = 0x100000;
public static final int ABNORMAL_EFFECT_IMPRISIONING_1 = 0x200000;
public static final int ABNORMAL_EFFECT_IMPRISIONING_2 = 0x400000;
public static final int ABNORMAL_EFFECT_MAGIC_CIRCLE = 0x800000;
// XXX TEMP HACKS (get the proper mask for these effects)
public static final int ABNORMAL_EFFECT_CONFUSED = 0x0020;
public static final int ABNORMAL_EFFECT_AFRAID = 0x0010;
// Method - Public
/**
* Launch and add L2Effect (including Stack Group management) to L2Character and update client magic icon.
*
* Concept :
* All active skills effects in progress on the L2Character are identified in ConcurrentHashMap(Integer,L2Effect) _effects.
* The Integer key of _effects is the L2Skill Identifier that has created the L2Effect.
*
* Several same effect can't be used on a L2Character at the same time.
* Indeed, effects are not stackable and the last cast will replace the previous in progress.
* More, some effects belong to the same Stack Group (ex WindWald and Haste Potion).
* If 2 effects of a same group are used at the same time on a L2Character, only the more efficient (identified by its priority order) will be preserve.
*
* Actions :
* Add the L2Effect to the L2Character _effects
* If this effect doesn't belong to a Stack Group, add its Funcs to the Calculator set of the L2Character (remove the old one if necessary)
* If this effect has higher priority in its Stack Group, add its Funcs to the Calculator set of the L2Character (remove previous stacked effect Funcs if necessary)
* If this effect has NOT higher priority in its Stack Group, set the effect to Not In Use
* Update active skills in progress icons on player client
*
*/
public final void addEffect(L2Effect newEffect)
{
_effects.addEffect(newEffect);
// Update active skills in progress (In Use and Not In Use because stacked) icons on client
updateEffectIcons();
}
/**
* Stop and remove L2Effect (including Stack Group management) from L2Character and update client magic icon.
*
* Concept :
* All active skills effects in progress on the L2Character are identified in ConcurrentHashMap(Integer,L2Effect) _effects.
* The Integer key of _effects is the L2Skill Identifier that has created the L2Effect.
*
* Several same effect can't be used on a L2Character at the same time.
* Indeed, effects are not stackable and the last cast will replace the previous in progress.
* More, some effects belong to the same Stack Group (ex WindWald and Haste Potion).
* If 2 effects of a same group are used at the same time on a L2Character, only the more efficient (identified by its priority order) will be preserve.
*
* Actions :
* Remove Func added by this effect from the L2Character Calculator (Stop L2Effect)
* If the L2Effect belongs to a not empty Stack Group, replace theses Funcs by next stacked effect Funcs
* Remove the L2Effect from _effects of the L2Character
* Update active skills in progress icons on player client
*
*/
public final void removeEffect(L2Effect effect)
{
_effects.removeEffect(effect);
// Update active skills in progress (In Use and Not In Use because stacked) icons on client
updateEffectIcons();
}
/**
* Active abnormal effects flags in the binary mask and send Server->Client UserInfo/CharInfo packet.
*/
public final void startAbnormalEffect(int mask)
{
_AbnormalEffects |= mask;
updateAbnormalEffect();
}
/**
* Active the abnormal effect Confused flag, notify the L2Character AI and send Server->Client UserInfo/CharInfo packet.
*/
public final void startConfused()
{
setIsConfused(true);
getAI().notifyEvent(CtrlEvent.EVT_CONFUSED);
updateAbnormalEffect();
}
/**
* Active the abnormal effect Fake Death flag, notify the L2Character AI and send Server->Client UserInfo/CharInfo packet.
*/
public final void startFakeDeath()
{
setIsFakeDeath(true);
/* Aborts any attacks/casts if fake dead */
abortAttack();
abortCast();
getAI().notifyEvent(CtrlEvent.EVT_FAKE_DEATH);
broadcastPacket(new ChangeWaitType(this,ChangeWaitType.WT_START_FAKEDEATH));
}
/**
* Active the abnormal effect Fear flag, notify the L2Character AI and send Server->Client UserInfo/CharInfo packet.
*/
public final void startFear()
{
setIsAfraid(true);
getAI().notifyEvent(CtrlEvent.EVT_AFRAID);
updateAbnormalEffect();
}
/**
* Active the abnormal effect Muted flag, notify the L2Character AI and send Server->Client UserInfo/CharInfo packet.
*/
public final void startMuted()
{
setIsMuted(true);
/* Aborts any casts if muted */
abortCast();
getAI().notifyEvent(CtrlEvent.EVT_MUTED);
updateAbnormalEffect();
}
/**
* Active the abnormal effect Psychical_Muted flag, notify the L2Character AI and send Server->Client UserInfo/CharInfo packet.
*/
public final void startPsychicalMuted()
{
setIsPhysicalMuted(true);
getAI().notifyEvent(CtrlEvent.EVT_MUTED);
updateAbnormalEffect();
}
/**
* Active the abnormal effect Root flag, notify the L2Character AI and send Server->Client UserInfo/CharInfo packet.
*/
public final void startRooted()
{
setIsRooted(true);
getAI().notifyEvent(CtrlEvent.EVT_ROOTED);
updateAbnormalEffect();
}
/**
* Active the abnormal effect Sleep flag, notify the L2Character AI and send Server->Client UserInfo/CharInfo packet.
*/
public final void startImmobileUntilAttacked()
{
setIsImmobileUntilAttacked(true);
abortAttack();
abortCast();
getAI().notifyEvent(CtrlEvent.EVT_SLEEPING);
updateAbnormalEffect();
}
/**
* Active the abnormal effect Sleep flag, notify the L2Character AI and send Server->Client UserInfo/CharInfo packet.
*/
public final void startSleeping()
{
setIsSleeping(true);
/* Aborts any attacks/casts if sleeped */
abortAttack();
abortCast();
getAI().notifyEvent(CtrlEvent.EVT_SLEEPING);
updateAbnormalEffect();
}
/**
* Launch a Stun Abnormal Effect on the L2Character.
*
* Actions :
* Calculate the success rate of the Stun Abnormal Effect on this L2Character
* If Stun succeed, active the abnormal effect Stun flag, notify the L2Character AI and send Server->Client UserInfo/CharInfo packet
* If Stun NOT succeed, send a system message Failed to the L2PcInstance attacker
*
*/
public final void startStunning()
{
setIsStunned(true);
/* Aborts any attacks/casts if stunned */
abortAttack();
abortCast();
getAI().notifyEvent(CtrlEvent.EVT_STUNNED);
updateAbnormalEffect();
}
public final void startParalyze()
{
setIsParalyzed(true);
/* Aborts any attacks/casts if paralyzed */
abortAttack();
abortCast();
getAI().notifyEvent(CtrlEvent.EVT_PARALYZED);
updateAbnormalEffect();
}
public final void startBetray()
{
setIsBetrayed(true);
getAI().notifyEvent(CtrlEvent.EVT_BETRAYED);
updateAbnormalEffect();
}
public final void stopBetray()
{
stopEffects(L2Effect.EffectType.BETRAY);
setIsBetrayed(false);
updateAbnormalEffect();
}
/**
* Modify the abnormal effect map according to the mask.
*/
public final void stopAbnormalEffect(int mask)
{
_AbnormalEffects &= ~mask;
updateAbnormalEffect();
}
/**
* Stop all active skills effects in progress on the L2Character.
*/
public final void stopAllEffects()
{
_effects.stopAllEffects();
if (this instanceof L2PcInstance) ((L2PcInstance)this).updateAndBroadcastStatus(2);
}
/**
* Stop a specified/all Confused abnormal L2Effect.
*
* Actions :
* Delete a specified/all (if effect=null) Confused abnormal L2Effect from L2Character and update client magic icon
* Set the abnormal effect flag _confused to False
* Notify the L2Character AI
* Send Server->Client UserInfo/CharInfo packet
*
*/
public final void stopConfused(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.CONFUSION);
else
removeEffect(effect);
setIsConfused(false);
getAI().notifyEvent(CtrlEvent.EVT_THINK);
updateAbnormalEffect();
}
/**
* Stop and remove the L2Effects corresponding to the L2Skill Identifier and update client magic icon.
*
* Concept :
* All active skills effects in progress on the L2Character are identified in ConcurrentHashMap(Integer,L2Effect) _effects.
* The Integer key of _effects is the L2Skill Identifier that has created the L2Effect.
*
* @param effectId The L2Skill Identifier of the L2Effect to remove from _effects
*
*/
public final void stopSkillEffects(int skillId)
{
_effects.stopSkillEffects(skillId);
}
/**
* Stop and remove all L2Effect of the selected type (ex : BUFF, DMG_OVER_TIME...) from the L2Character and update client magic icon.
*
* Concept :
* All active skills effects in progress on the L2Character are identified in ConcurrentHashMap(Integer,L2Effect) _effects.
* The Integer key of _effects is the L2Skill Identifier that has created the L2Effect.
*
* Actions :
* Remove Func added by this effect from the L2Character Calculator (Stop L2Effect)
* Remove the L2Effect from _effects of the L2Character
* Update active skills in progress icons on player client
*
* @param type The type of effect to stop ((ex : BUFF, DMG_OVER_TIME...)
*
*/
public final void stopEffects(L2Effect.EffectType type)
{
_effects.stopEffects(type);
}
/**
* Stop a specified/all Fake Death abnormal L2Effect.
*
* Actions :
* Delete a specified/all (if effect=null) Fake Death abnormal L2Effect from L2Character and update client magic icon
* Set the abnormal effect flag _fake_death to False
* Notify the L2Character AI
*
*/
public final void stopFakeDeath(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.FAKE_DEATH);
else
removeEffect(effect);
setIsFakeDeath(false);
// if this is a player instance, start the grace period for this character (grace from mobs only)!
if (this instanceof L2PcInstance)
{
((L2PcInstance) this).setRecentFakeDeath(true);
}
ChangeWaitType revive = new ChangeWaitType(this,ChangeWaitType.WT_STOP_FAKEDEATH);
broadcastPacket(revive);
//TODO: Temp hack: players see FD on ppl that are moving: Teleport to someone who uses FD - if he gets up he will fall down again for that client -
// even tho he is actually standing... Probably bad info in CharInfo packet?
broadcastPacket(new Revive(this));
getAI().notifyEvent(CtrlEvent.EVT_THINK);
}
/**
* Stop a specified/all Fear abnormal L2Effect.
*
* Actions :
* Delete a specified/all (if effect=null) Fear abnormal L2Effect from L2Character and update client magic icon
* Set the abnormal effect flag _affraid to False
* Notify the L2Character AI
* Send Server->Client UserInfo/CharInfo packet
*
*/
public final void stopFear(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.FEAR);
else
removeEffect(effect);
setIsAfraid(false);
updateAbnormalEffect();
}
/**
* Stop a specified/all Muted abnormal L2Effect.
*
* Actions :
* Delete a specified/all (if effect=null) Muted abnormal L2Effect from L2Character and update client magic icon
* Set the abnormal effect flag _muted to False
* Notify the L2Character AI
* Send Server->Client UserInfo/CharInfo packet
*
*/
public final void stopMuted(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.MUTE);
else
removeEffect(effect);
setIsMuted(false);
updateAbnormalEffect();
}
public final void stopPsychicalMuted(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.PHYSICAL_MUTE);
else
removeEffect(effect);
setIsPhysicalMuted(false);
updateAbnormalEffect();
}
/**
* Stop a specified/all Root abnormal L2Effect.
*
* Actions :
* Delete a specified/all (if effect=null) Root abnormal L2Effect from L2Character and update client magic icon
* Set the abnormal effect flag _rooted to False
* Notify the L2Character AI
* Send Server->Client UserInfo/CharInfo packet
*
*/
public final void stopRooting(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.ROOT);
else
removeEffect(effect);
setIsRooted(false);
getAI().notifyEvent(CtrlEvent.EVT_THINK);
updateAbnormalEffect();
}
/**
* Stop immobilization until attacked abnormal L2Effect.
*
* Actions :
* Delete a specified/all (if effect=null) immobilization until attacked abnormal L2Effect from L2Character and update client magic icon
* Set the abnormal effect flag _muted to False
* Notify the L2Character AI
* Send Server->Client UserInfo/CharInfo packet
*
*/
public final void stopImmobileUntilAttacked(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.IMMOBILEUNTILATTACKED);
else
{
removeEffect(effect);
stopSkillEffects(effect.getSkill().cancelEffect());
}
setIsImmobileUntilAttacked(false);
getAI().notifyEvent(CtrlEvent.EVT_THINK);
updateAbnormalEffect();
}
/**
* Stop a specified/all Sleep abnormal L2Effect.
*
* Actions :
* Delete a specified/all (if effect=null) Sleep abnormal L2Effect from L2Character and update client magic icon
* Set the abnormal effect flag _sleeping to False
* Notify the L2Character AI
* Send Server->Client UserInfo/CharInfo packet
*
*/
public final void stopSleeping(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.SLEEP);
else
removeEffect(effect);
setIsSleeping(false);
getAI().notifyEvent(CtrlEvent.EVT_THINK);
updateAbnormalEffect();
}
/**
* Stop a specified/all Stun abnormal L2Effect.
*
* Actions :
* Delete a specified/all (if effect=null) Stun abnormal L2Effect from L2Character and update client magic icon
* Set the abnormal effect flag _stuned to False
* Notify the L2Character AI
* Send Server->Client UserInfo/CharInfo packet
*
*/
public final void stopStunning(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.STUN);
else
removeEffect(effect);
setIsStunned(false);
getAI().notifyEvent(CtrlEvent.EVT_THINK);
updateAbnormalEffect();
}
public final void stopParalyze(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.PARALYZE);
else
removeEffect(effect);
setIsParalyzed(false);
getAI().notifyEvent(CtrlEvent.EVT_THINK);
updateAbnormalEffect();
}
/**
* Stop L2Effect: Transformation
*
* Actions :
* Remove Transformation Effect
* Notify the L2Character AI
* Send Server->Client UserInfo/CharInfo packet
*
*/
public final void stopTransformation(L2Effect effect)
{
if (effect == null)
{
stopEffects(L2Effect.EffectType.TRANSFORMATION);
}
else
{
removeEffect(effect);
}
// if this is a player instance, then untransform, also set the transform_id column equal to 0 if not cursed.
if (this instanceof L2PcInstance)
{
if (((L2PcInstance) this).getTransformation() != null)
{
((L2PcInstance) this).untransform();
}
}
getAI().notifyEvent(CtrlEvent.EVT_THINK);
updateAbnormalEffect();
}
/**
* Not Implemented.
*
* Overridden in :
* L2NPCInstance
* L2PcInstance
* L2Summon
* L2DoorInstance
*
*/
public abstract void updateAbnormalEffect();
/**
* Update active skills in progress (In Use and Not In Use because stacked) icons on client.
*
* Concept :
* All active skills effects in progress (In Use and Not In Use because stacked) are represented by an icon on the client.
*
* Caution : This method ONLY UPDATE the client of the player and not clients of all players in the party.
*
*/
public final void updateEffectIcons()
{
updateEffectIcons(false);
}
/**
* Updates Effect Icons for this character(palyer/summon) and his party if any
*
* Overridden in:
* L2PcInstance
* L2Summon
*
* @param partyOnly
*/
public void updateEffectIcons(boolean partyOnly)
{
// overridden
}
// Property - Public
/**
* Return a map of 16 bits (0x0000) containing all abnormal effect in progress for this L2Character.
*
* Concept :
* In Server->Client packet, each effect is represented by 1 bit of the map (ex : BLEEDING = 0x0001 (bit 1), SLEEP = 0x0080 (bit 8)...).
* The map is calculated by applying a BINARY OR operation on each effect.
*
* Example of use :
* Server Packet : CharInfo, NpcInfo, NpcInfoPoly, UserInfo...
*/
public int getAbnormalEffect()
{
int ae = _AbnormalEffects;
if (isStunned()) ae |= ABNORMAL_EFFECT_STUN;
if (isRooted()) ae |= ABNORMAL_EFFECT_ROOT;
if (isSleeping()) ae |= ABNORMAL_EFFECT_SLEEP;
if (isConfused()) ae |= ABNORMAL_EFFECT_CONFUSED;
if (isMuted()) ae |= ABNORMAL_EFFECT_MUTED;
if (isAfraid()) ae |= ABNORMAL_EFFECT_AFRAID;
if (isPhysicalMuted()) ae |= ABNORMAL_EFFECT_MUTED;
return ae;
}
/**
* Return all active skills effects in progress on the L2Character.
*
* Concept :
* All active skills effects in progress on the L2Character are identified in _effects.
* The Integer key of _effects is the L2Skill Identifier that has created the effect.
*
* @return A table containing all active skills effect in progress on the L2Character
*
*/
public final L2Effect[] getAllEffects()
{
return _effects.getAllEffects();
}
/**
* Return L2Effect in progress on the L2Character corresponding to the L2Skill Identifier.
*
* Concept :
* All active skills effects in progress on the L2Character are identified in _effects.
*
* @param index The L2Skill Identifier of the L2Effect to return from the _effects
*
* @return The L2Effect corresponding to the L2Skill Identifier
*
*/
public final L2Effect getFirstEffect(int index)
{
return _effects.getFirstEffect(index);
}
/**
* Return the first L2Effect in progress on the L2Character created by the L2Skill.
*
* Concept :
* All active skills effects in progress on the L2Character are identified in _effects.
*
* @param skill The L2Skill whose effect must be returned
*
* @return The first L2Effect created by the L2Skill
*
*/
public final L2Effect getFirstEffect(L2Skill skill)
{
return _effects.getFirstEffect(skill);
}
/**
* Return the first L2Effect in progress on the L2Character corresponding to the Effect Type (ex : BUFF, STUN, ROOT...).
*
* Concept :
* All active skills effects in progress on the L2Character are identified in _effects.
*
* @param tp The Effect Type of skills whose effect must be returned
*
* @return The first L2Effect corresponding to the Effect Type
*
*/
public final L2Effect getFirstEffect(L2Effect.EffectType tp)
{
return _effects.getFirstEffect(tp);
}
public EffectCharge getChargeEffect()
{
return _effects.getChargeEffect();
}
// =========================================================
// =========================================================
// NEED TO ORGANIZE AND MOVE TO PROPER PLACE
/** This class permit to the L2Character AI to obtain informations and uses L2Character method */
public class AIAccessor
{
public AIAccessor() {}
/**
* Return the L2Character managed by this Accessor AI.
*/
public L2Character getActor()
{
return L2Character.this;
}
/**
* Accessor to L2Character moveToLocation() method with an interaction area.
*/
public void moveTo(int x, int y, int z, int offset)
{
L2Character.this.moveToLocation(x, y, z, offset);
}
/**
* Accessor to L2Character moveToLocation() method without interaction area.
*/
public void moveTo(int x, int y, int z)
{
L2Character.this.moveToLocation(x, y, z, 0);
}
/**
* Accessor to L2Character stopMove() method.
*/
public void stopMove(L2CharPosition pos)
{
L2Character.this.stopMove(pos);
}
/**
* Accessor to L2Character doAttack() method.
*/
public void doAttack(L2Character target)
{
L2Character.this.doAttack(target);
}
/**
* Accessor to L2Character doCast() method.
*/
public void doCast(L2Skill skill)
{
L2Character.this.doCast(skill);
}
/**
* Create a NotifyAITask.
*/
public NotifyAITask newNotifyTask(CtrlEvent evt)
{
return new NotifyAITask(evt);
}
/**
* Cancel the AI.
*/
public void detachAI()
{
_ai = null;
}
}
/**
* This class group all mouvement data.
*
* Data :
* _moveTimestamp : Last time position update
* _xDestination, _yDestination, _zDestination : Position of the destination
* _xMoveFrom, _yMoveFrom, _zMoveFrom : Position of the origin
* _moveStartTime : Start time of the movement
* _ticksToMove : Nb of ticks between the start and the destination
* _xSpeedTicks, _ySpeedTicks : Speed in unit/ticks
*
* */
public static class MoveData
{
// when we retrieve x/y/z we use GameTimeControl.getGameTicks()
// if we are moving, but move timestamp==gameticks, we don't need
// to recalculate position
public int _moveTimestamp;
public int _xDestination;
public int _yDestination;
public int _zDestination;
public int _xMoveFrom;
public int _yMoveFrom;
public int _zMoveFrom;
public int _heading;
public int _moveStartTime;
public int _ticksToMove;
public float _xSpeedTicks;
public float _ySpeedTicks;
public int onGeodataPathIndex;
public List geoPath;
public int geoPathAccurateTx;
public int geoPathAccurateTy;
public int geoPathGtx;
public int geoPathGty;
}
/** Table containing all skillId that are disabled */
protected List _disabledSkills;
private boolean _allSkillsDisabled;
// private int _flyingRunSpeed;
// private int _floatingWalkSpeed;
// private int _flyingWalkSpeed;
// private int _floatingRunSpeed;
/** Movement data of this L2Character */
protected MoveData _move;
/** Orientation of the L2Character */
private int _heading;
/** L2Charcater targeted by the L2Character */
private L2Object _target;
// set by the start of casting, in game ticks
private int _castEndTime;
private int _castInterruptTime;
// set by the start of attack, in game ticks
private int _attackEndTime;
private int _attacking;
private int _disableBowAttackEndTime;
private int _disableCrossBowAttackEndTime;
/** Table of calculators containing all standard NPC calculator (ex : ACCURACY_COMBAT, EVASION_RATE */
private static final Calculator[] NPC_STD_CALCULATOR;
static {NPC_STD_CALCULATOR = Formulas.getInstance().getStdNPCCalculators();}
protected L2CharacterAI _ai;
/** Future Skill Cast */
protected Future> _skillCast;
/** Char Coords from Client */
private int _clientX;
private int _clientY;
private int _clientZ;
private int _clientHeading;
/** List of all QuestState instance that needs to be notified of this character's death */
private List _NotifyQuestOfDeathList = new FastList();
/**
* Add QuestState instance that is to be notified of character's death.
*
* @param qs The QuestState that subscribe to this event
*
*/
public void addNotifyQuestOfDeath (QuestState qs)
{
if (qs == null || _NotifyQuestOfDeathList.contains(qs))
return;
_NotifyQuestOfDeathList.add(qs);
}
/**
* Return a list of L2Character that attacked.
*/
public final List getNotifyQuestOfDeath ()
{
if (_NotifyQuestOfDeathList == null)
_NotifyQuestOfDeathList = new FastList();
return _NotifyQuestOfDeathList;
}
/**
* Add a Func to the Calculator set of the L2Character.
*
* Concept :
* A L2Character owns a table of Calculators called _calculators.
* Each Calculator (a calculator per state) own a table of Func object.
* A Func object is a mathematic function that permit to calculate the modifier of a state (ex : REGENERATE_HP_RATE...).
* To reduce cache memory use, L2NPCInstances who don't have skills share the same Calculator set called NPC_STD_CALCULATOR.
*
* That's why, if a L2NPCInstance is under a skill/spell effect that modify one of its state, a copy of the NPC_STD_CALCULATOR
* must be create in its _calculators before addind new Func object.
*
* Actions :
* If _calculators is linked to NPC_STD_CALCULATOR, create a copy of NPC_STD_CALCULATOR in _calculators
* Add the Func object to _calculators
*
* @param f The Func object to add to the Calculator corresponding to the state affected
*/
public final synchronized void addStatFunc(Func f)
{
if (f == null)
return;
// Check if Calculator set is linked to the standard Calculator set of NPC
if (_calculators == NPC_STD_CALCULATOR)
{
// Create a copy of the standard NPC Calculator set
_calculators = new Calculator[Stats.NUM_STATS];
for (int i=0; i < Stats.NUM_STATS; i++)
{
if (NPC_STD_CALCULATOR[i] != null)
_calculators[i] = new Calculator(NPC_STD_CALCULATOR[i]);
}
}
// Select the Calculator of the affected state in the Calculator set
int stat = f.stat.ordinal();
if (_calculators[stat] == null)
_calculators[stat] = new Calculator();
// Add the Func to the calculator corresponding to the state
_calculators[stat].addFunc(f);
}
/**
* Add a list of Funcs to the Calculator set of the L2Character.
*
* Concept :
* A L2Character owns a table of Calculators called _calculators.
* Each Calculator (a calculator per state) own a table of Func object.
* A Func object is a mathematic function that permit to calculate the modifier of a state (ex : REGENERATE_HP_RATE...).
*
* Caution : This method is ONLY for L2PcInstance
*
* Example of use :
* Equip an item from inventory
* Learn a new passive skill
* Use an active skill
*
* @param funcs The list of Func objects to add to the Calculator corresponding to the state affected
*/
public final synchronized void addStatFuncs(Func[] funcs)
{
FastList modifiedStats = new FastList();
for (Func f : funcs)
{
modifiedStats.add(f.stat);
addStatFunc(f);
}
broadcastModifiedStats(modifiedStats);
}
/**
* Remove a Func from the Calculator set of the L2Character.
*
* Concept :
* A L2Character owns a table of Calculators called _calculators.
* Each Calculator (a calculator per state) own a table of Func object.
* A Func object is a mathematic function that permit to calculate the modifier of a state (ex : REGENERATE_HP_RATE...).
* To reduce cache memory use, L2NPCInstances who don't have skills share the same Calculator set called NPC_STD_CALCULATOR.
*
* That's why, if a L2NPCInstance is under a skill/spell effect that modify one of its state, a copy of the NPC_STD_CALCULATOR
* must be create in its _calculators before addind new Func object.
*
* Actions :
* Remove the Func object from _calculators
* If L2Character is a L2NPCInstance and _calculators is equal to NPC_STD_CALCULATOR,
* free cache memory and just create a link on NPC_STD_CALCULATOR in _calculators
*
* @param f The Func object to remove from the Calculator corresponding to the state affected
*/
public final synchronized void removeStatFunc(Func f)
{
if (f == null)
return;
// Select the Calculator of the affected state in the Calculator set
int stat = f.stat.ordinal();
if (_calculators[stat] == null)
return;
// Remove the Func object from the Calculator
_calculators[stat].removeFunc(f);
if (_calculators[stat].size() == 0)
_calculators[stat] = null;
// If possible, free the memory and just create a link on NPC_STD_CALCULATOR
if (this instanceof L2NpcInstance)
{
int i = 0;
for (; i < Stats.NUM_STATS; i++)
{
if (!Calculator.equalsCals(_calculators[i], NPC_STD_CALCULATOR[i]))
break;
}
if (i >= Stats.NUM_STATS)
_calculators = NPC_STD_CALCULATOR;
}
}
/**
* Remove a list of Funcs from the Calculator set of the L2PcInstance.
*
* Concept :
* A L2Character owns a table of Calculators called _calculators.
* Each Calculator (a calculator per state) own a table of Func object.
* A Func object is a mathematic function that permit to calculate the modifier of a state (ex : REGENERATE_HP_RATE...).
*
* Caution : This method is ONLY for L2PcInstance
*
* Example of use :
* Unequip an item from inventory
* Stop an active skill
*
* @param funcs The list of Func objects to add to the Calculator corresponding to the state affected
*/
public final synchronized void removeStatFuncs(Func[] funcs)
{
FastList modifiedStats = new FastList();
for (Func f : funcs)
{
modifiedStats.add(f.stat);
removeStatFunc(f);
}
broadcastModifiedStats(modifiedStats);
}
/**
* Remove all Func objects with the selected owner from the Calculator set of the L2Character.
*
* Concept :
* A L2Character owns a table of Calculators called _calculators.
* Each Calculator (a calculator per state) own a table of Func object.
* A Func object is a mathematic function that permit to calculate the modifier of a state (ex : REGENERATE_HP_RATE...).
* To reduce cache memory use, L2NPCInstances who don't have skills share the same Calculator set called NPC_STD_CALCULATOR.
*
* That's why, if a L2NPCInstance is under a skill/spell effect that modify one of its state, a copy of the NPC_STD_CALCULATOR
* must be create in its _calculators before addind new Func object.
*
* Actions :
* Remove all Func objects of the selected owner from _calculators
* If L2Character is a L2NPCInstance and _calculators is equal to NPC_STD_CALCULATOR,
* free cache memory and just create a link on NPC_STD_CALCULATOR in _calculators
*
* Example of use :
* Unequip an item from inventory
* Stop an active skill
*
* @param owner The Object(Skill, Item...) that has created the effect
*/
public final synchronized void removeStatsOwner(Object owner)
{
FastList modifiedStats = null;
// Go through the Calculator set
for (int i=0; i < _calculators.length; i++)
{
if (_calculators[i] != null)
{
// Delete all Func objects of the selected owner
if (modifiedStats != null)
modifiedStats.addAll(_calculators[i].removeOwner(owner));
else
modifiedStats = _calculators[i].removeOwner(owner);
if (_calculators[i].size() == 0)
_calculators[i] = null;
}
}
// If possible, free the memory and just create a link on NPC_STD_CALCULATOR
if (this instanceof L2NpcInstance)
{
int i = 0;
for (; i < Stats.NUM_STATS; i++)
{
if (!Calculator.equalsCals(_calculators[i], NPC_STD_CALCULATOR[i]))
break;
}
if (i >= Stats.NUM_STATS)
_calculators = NPC_STD_CALCULATOR;
}
if (owner instanceof L2Effect && !((L2Effect)owner).preventExitUpdate)
broadcastModifiedStats(modifiedStats);
}
private void broadcastModifiedStats(FastList stats)
{
if (stats == null || stats.isEmpty()) return;
boolean broadcastFull = false;
boolean otherStats = false;
StatusUpdate su = null;
for (Stats stat : stats)
{
if (stat==Stats.POWER_ATTACK_SPEED)
{
if (su == null) su = new StatusUpdate(getObjectId());
su.addAttribute(StatusUpdate.ATK_SPD, getPAtkSpd());
}
else if (stat==Stats.MAGIC_ATTACK_SPEED)
{
if (su == null) su = new StatusUpdate(getObjectId());
su.addAttribute(StatusUpdate.CAST_SPD, getMAtkSpd());
}
//else if (stat==Stats.MAX_HP) // TODO: self only and add more stats...
//{
// if (su == null) su = new StatusUpdate(getObjectId());
// su.addAttribute(StatusUpdate.MAX_HP, getMaxHp());
//}
else if (stat==Stats.MAX_CP)
{
if (this instanceof L2PcInstance)
{
if (su == null) su = new StatusUpdate(getObjectId());
su.addAttribute(StatusUpdate.MAX_CP, getMaxCp());
}
}
//else if (stat==Stats.MAX_MP)
//{
// if (su == null) su = new StatusUpdate(getObjectId());
// su.addAttribute(StatusUpdate.MAX_MP, getMaxMp());
//}
else if (stat==Stats.RUN_SPEED)
{
broadcastFull = true;
}
else
otherStats = true;
}
if (this instanceof L2PcInstance)
{
if (broadcastFull)
((L2PcInstance)this).updateAndBroadcastStatus(2);
else
{
if (otherStats)
{
((L2PcInstance)this).updateAndBroadcastStatus(1);
if (su != null)
{
Collection plrs = getKnownList().getKnownPlayers().values();
//synchronized (getKnownList().getKnownPlayers())
{
for (L2PcInstance player : plrs)
{
try
{
player.sendPacket(su);
}
catch (NullPointerException e)
{
}
}
}
}
}
else if (su != null) broadcastPacket(su);
}
}
else if (this instanceof L2NpcInstance)
{
if (broadcastFull)
{
Collection plrs = getKnownList().getKnownPlayers().values();
//synchronized (getKnownList().getKnownPlayers())
{
for (L2PcInstance player : plrs)
player.sendPacket(new NpcInfo((L2NpcInstance)this, player));
}
}
else if (su != null)
broadcastPacket(su);
}
else if (this instanceof L2Summon)
{
if (broadcastFull)
{
Collection plrs = getKnownList().getKnownPlayers().values();
//synchronized (getKnownList().getKnownPlayers())
{
for (L2PcInstance player : plrs)
player.sendPacket(new NpcInfo((L2Summon)this, player));
}
}
else if (su != null)
broadcastPacket(su);
}
else if (su != null)
broadcastPacket(su);
}
/**
* Return the orientation of the L2Character.
*/
public final int getHeading()
{
return _heading;
}
/**
* Set the orientation of the L2Character.
*/
public final void setHeading(int heading)
{
_heading = heading;
}
/**
* Return the X destination of the L2Character or the X position if not in movement.
*/
public final int getClientX()
{
return _clientX;
}
public final int getClientY()
{
return _clientY;
}
public final int getClientZ()
{
return _clientZ;
}
public final int getClientHeading()
{
return _clientHeading;
}
public final void setClientX(int val)
{
_clientX=val;
}
public final void setClientY(int val)
{
_clientY=val;
}
public final void setClientZ(int val)
{
_clientZ=val;
}
public final void setClientHeading(int val)
{
_clientHeading=val;
}
public final int getXdestination()
{
MoveData m = _move;
if (m != null)
return m._xDestination;
return getX();
}
/**
* Return the Y destination of the L2Character or the Y position if not in movement.
*/
public final int getYdestination()
{
MoveData m = _move;
if (m != null)
return m._yDestination;
return getY();
}
/**
* Return the Z destination of the L2Character or the Z position if not in movement.
*/
public final int getZdestination()
{
MoveData m = _move;
if (m != null)
return m._zDestination;
return getZ();
}
/**
* Return True if the L2Character is in combat.
*/
public final boolean isInCombat()
{
return (getAI().getAttackTarget() != null);
}
/**
* Return True if the L2Character is moving.
*/
public final boolean isMoving()
{
return _move != null;
}
/**
* Return True if the L2Character is travelling a calculated path.
*/
public final boolean isOnGeodataPath()
{
if (_move == null) return false;
try
{
if (_move.onGeodataPathIndex == -1) return false;
if (_move.onGeodataPathIndex == _move.geoPath.size()-1)
return false;
}
catch (NullPointerException e)
{
return false;
}
return true;
}
/**
* Return True if the L2Character is casting.
*/
public final boolean isCastingNow()
{
return _castEndTime > GameTimeController.getGameTicks();
}
/**
* Return True if the cast of the L2Character can be aborted.
*/
public final boolean canAbortCast()
{
return _castInterruptTime > GameTimeController.getGameTicks();
}
/**
* Return True if the L2Character is attacking.
*/
public final boolean isAttackingNow()
{
return _attackEndTime > GameTimeController.getGameTicks();
}
/**
* Return True if the L2Character has aborted its attack.
*/
public final boolean isAttackAborted()
{
return _attacking <= 0;
}
/**
* Abort the attack of the L2Character and send Server->Client ActionFailed packet.
*/
public final void abortAttack()
{
if (isAttackingNow())
{
_attacking = 0;
sendPacket(ActionFailed.STATIC_PACKET);
}
}
/**
* Returns body part (paperdoll slot) we are targeting right now
*/
public final int getAttackingBodyPart()
{
return _attacking;
}
/**
* Abort the cast of the L2Character and send Server->Client MagicSkillCanceld/ActionFailed packet.
*/
public final void abortCast()
{
if (isCastingNow())
{
_castEndTime = 0;
_castInterruptTime = 0;
if (_skillCast != null)
{
_skillCast.cancel(true);
_skillCast = null;
}
if (getForceBuff() != null)
getForceBuff().onCastAbort();
L2Effect mog = getFirstEffect(L2Effect.EffectType.SIGNET_GROUND);
if (mog != null)
mog.exit();
// cancels the skill hit scheduled task
enableAllSkills(); // re-enables the skills
if (this instanceof L2PcInstance) getAI().notifyEvent(CtrlEvent.EVT_FINISH_CASTING); // setting back previous intention
broadcastPacket(new MagicSkillCanceld(getObjectId())); // broadcast packet to stop animations client-side
sendPacket(ActionFailed.STATIC_PACKET); // send an "action failed" packet to the caster
}
}
/**
* Update the position of the L2Character during a movement and return True if the movement is finished.
*
* Concept :
* At the beginning of the move action, all properties of the movement are stored in the MoveData object called _move of the L2Character.
* The position of the start point and of the destination permit to estimated in function of the movement speed the time to achieve the destination.
*
* When the movement is started (ex : by MovetoLocation), this method will be called each 0.1 sec to estimate and update the L2Character position on the server.
* Note, that the current server position can differe from the current client position even if each movement is straight foward.
* That's why, client send regularly a Client->Server ValidatePosition packet to eventually correct the gap on the server.
* But, it's always the server position that is used in range calculation.
*
* At the end of the estimated movement time, the L2Character position is automatically set to the destination position even if the movement is not finished.
*
* Caution : The current Z position is obtained FROM THE CLIENT by the Client->Server ValidatePosition Packet.
* But x and y positions must be calculated to avoid that players try to modify their movement speed.
*
* @param gameTicks Nb of ticks since the server start
* @return True if the movement is finished
*/
public boolean updatePosition(int gameTicks)
{
// Get movement data
MoveData m = _move;
if (m == null)
return true;
if (!isVisible())
{
_move = null;
return true;
}
// Check if the position has alreday be calculated
if (m._moveTimestamp == gameTicks)
return false;
// Calculate the time between the beginning of the deplacement and now
int elapsed = gameTicks - m._moveStartTime;
// If estimated time needed to achieve the destination is passed,
// the L2Character is positionned to the destination position
if (elapsed >= m._ticksToMove)
{
// Set the timer of last position update to now
m._moveTimestamp = gameTicks;
// Set the position of the L2Character to the destination
if (this instanceof L2BoatInstance)
{
super.getPosition().setXYZ(m._xDestination, m._yDestination, m._zDestination);
((L2BoatInstance)this).updatePeopleInTheBoat(m._xDestination, m._yDestination, m._zDestination);
}
else
{
super.getPosition().setXYZ(m._xDestination, m._yDestination, m._zDestination);
}
return true;
}
// Estimate the position of the L2Character dureing the movement according to its _xSpeedTicks and _ySpeedTicks
// The Z position is obtained from the client
if(this instanceof L2BoatInstance )
{
super.getPosition().setXYZ(m._xMoveFrom + (int)(elapsed * m._xSpeedTicks),m._yMoveFrom + (int)(elapsed * m._ySpeedTicks),super.getZ());
((L2BoatInstance)this).updatePeopleInTheBoat(m._xMoveFrom + (int)(elapsed * m._xSpeedTicks),m._yMoveFrom + (int)(elapsed * m._ySpeedTicks),super.getZ());
}
else
{
super.getPosition().setXYZ(m._xMoveFrom + (int)(elapsed * m._xSpeedTicks),m._yMoveFrom + (int)(elapsed * m._ySpeedTicks),super.getZ());
if (this instanceof L2PcInstance) ((L2PcInstance)this).revalidateZone(false);
else revalidateZone();
}
// Set the timer of last position update to now
m._moveTimestamp = gameTicks;
return false;
}
public void revalidateZone()
{
if (getWorldRegion() == null) return;
getWorldRegion().revalidateZones(this);
}
/**
* Stop movement of the L2Character (Called by AI Accessor only).
*
* Actions :
* Delete movement data of the L2Character
* Set the current position (x,y,z), its current L2WorldRegion if necessary and its heading
* Remove the L2Object object from _gmList** of GmListTable
* Remove object from _knownObjects and _knownPlayer* of all surrounding L2WorldRegion L2Characters
*
* Caution : This method DOESN'T send Server->Client packet StopMove/StopRotation
*
*/
public void stopMove(L2CharPosition pos) { stopMove(pos, false); }
public void stopMove(L2CharPosition pos, boolean updateKnownObjects)
{
// Delete movement data of the L2Character
_move = null;
//if (getAI() != null)
// getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
// Set the current position (x,y,z), its current L2WorldRegion if necessary and its heading
// All data are contained in a L2CharPosition object
if (pos != null)
{
getPosition().setXYZ(pos.x, pos.y, pos.z);
setHeading(pos.heading);
if (this instanceof L2PcInstance) ((L2PcInstance)this).revalidateZone(true);
}
broadcastPacket(new StopMove(this));
if (Config.MOVE_BASED_KNOWNLIST && updateKnownObjects) this.getKnownList().findObjects();
}
/**
* @return Returns the showSummonAnimation.
*/
public boolean isShowSummonAnimation()
{
return _showSummonAnimation;
}
/**
* @param showSummonAnimation The showSummonAnimation to set.
*/
public void setShowSummonAnimation(boolean showSummonAnimation)
{
_showSummonAnimation = showSummonAnimation;
}
/**
* Target a L2Object (add the target to the L2Character _target, _knownObject and L2Character to _KnownObject of the L2Object).
*
* Concept :
* The L2Object (including L2Character) targeted is identified in _target of the L2Character
*
* Actions :
* Set the _target of L2Character to L2Object
* If necessary, add L2Object to _knownObject of the L2Character
* If necessary, add L2Character to _KnownObject of the L2Object
* If object==null, cancel Attak or Cast
*
* Overridden in :
* L2PcInstance : Remove the L2PcInstance from the old target _statusListener and add it to the new target if it was a L2Character
*
* @param object L2object to target
*
*/
public void setTarget(L2Object object)
{
if (object != null && !object.isVisible())
object = null;
if (object != null && object != _target)
{
getKnownList().addKnownObject(object);
object.getKnownList().addKnownObject(this);
}
_target = object;
}
/**
* Return the identifier of the L2Object targeted or -1.
*/
public final int getTargetId()
{
if (_target != null)
{
return _target.getObjectId();
}
return -1;
}
/**
* Return the L2Object targeted or null.
*/
public final L2Object getTarget()
{
return _target;
}
// called from AIAccessor only
/**
* Calculate movement data for a move to location action and add the L2Character to movingObjects of GameTimeController (only called by AI Accessor).
*
* Concept :
* At the beginning of the move action, all properties of the movement are stored in the MoveData object called _move of the L2Character.
* The position of the start point and of the destination permit to estimated in function of the movement speed the time to achieve the destination.
* All L2Character in movement are identified in movingObjects of GameTimeController that will call the updatePosition method of those L2Character each 0.1s.
*
* Actions :
* Get current position of the L2Character
* Calculate distance (dx,dy) between current position and destination including offset
* Create and Init a MoveData object
* Set the L2Character _move object to MoveData object
* Add the L2Character to movingObjects of the GameTimeController
* Create a task to notify the AI that L2Character arrives at a check point of the movement
*
* Caution : This method DOESN'T send Server->Client packet MoveToPawn/CharMoveToLocation
*
* Example of use :
* AI : onIntentionMoveTo(L2CharPosition), onIntentionPickUp(L2Object), onIntentionInteract(L2Object)
* FollowTask
*
* @param x The X position of the destination
* @param y The Y position of the destination
* @param z The Y position of the destination
* @param offset The size of the interaction area of the L2Character targeted
*
*/
protected void moveToLocation(int x, int y, int z, int offset)
{
// Get the Move Speed of the L2Charcater
float speed = getStat().getMoveSpeed();
if (speed <= 0 || isMovementDisabled()) return;
// Get current position of the L2Character
final int curX = super.getX();
final int curY = super.getY();
final int curZ = super.getZ();
// Calculate distance (dx,dy) between current position and destination
// TODO: improve Z axis move/follow support when dx,dy are small compared to dz
double dx = (x - curX);
double dy = (y - curY);
double dz = (z - curZ);
double distance = Math.sqrt(dx*dx + dy*dy);
// make water move short and use no geodata checks for swimming chars
// distance in a click can easily be over 3000
if (Config.GEODATA > 0 && isInsideZone(ZONE_WATER) && distance > 700)
{
double divider = 700/distance;
x = curX + (int)(divider * dx);
y = curY + (int)(divider * dy);
z = curZ + (int)(divider * dz);
dx = (x - curX);
dy = (y - curY);
dz = (z - curZ);
distance = Math.sqrt(dx*dx + dy*dy);
}
if (Config.DEBUG) _log.fine("distance to target:" + distance);
// Define movement angles needed
// ^
// | X (x,y)
// | /
// | /distance
// | /
// |/ angle
// X ---------->
// (curx,cury)
double cos;
double sin;
// Check if a movement offset is defined or no distance to go through
if (offset > 0 || distance < 1)
{
// approximation for moving closer when z coordinates are different
// TODO: handle Z axis movement better
offset -= Math.abs(dz);
if (offset < 5) offset = 5;
// If no distance to go through, the movement is canceled
if (distance < 1 || distance - offset <= 0)
{
if (Config.DEBUG) _log.fine("already in range, no movement needed.");
// Notify the AI that the L2Character is arrived at destination
getAI().notifyEvent(CtrlEvent.EVT_ARRIVED);
return;
}
// Calculate movement angles needed
sin = dy/distance;
cos = dx/distance;
distance -= (offset-5); // due to rounding error, we have to move a bit closer to be in range
// Calculate the new destination with offset included
x = curX + (int)(distance * cos);
y = curY + (int)(distance * sin);
}
else
{
// Calculate movement angles needed
sin = dy/distance;
cos = dx/distance;
}
// Create and Init a MoveData object
MoveData m = new MoveData();
// GEODATA MOVEMENT CHECKS AND PATHFINDING
m.onGeodataPathIndex = -1; // Initialize not on geodata path
if (Config.GEODATA > 0
&& !isFlying() // flying chars not checked - even canSeeTarget doesn't work yet
&& (!isInsideZone(ZONE_WATER) || isInsideZone(ZONE_SIEGE)) // swimming also not checked unless in siege zone - but distance is limited
&& !(this instanceof L2NpcWalkerInstance)) // npc walkers not checked
{
double originalDistance = distance;
int originalX = x;
int originalY = y;
int originalZ = z;
int gtx = (originalX - L2World.MAP_MIN_X) >> 4;
int gty = (originalY - L2World.MAP_MIN_Y) >> 4;
// Movement checks:
// when geodata == 2, for all characters except mobs returning home (could be changed later to teleport if pathfinding fails)
// when geodata == 1, for l2playableinstance and l2riftinstance only
if ((Config.GEODATA == 2 && !(this instanceof L2Attackable && ((L2Attackable)this).isReturningToSpawnPoint()))
|| this instanceof L2PcInstance
|| (this instanceof L2Summon && !(this.getAI().getIntention() == AI_INTENTION_FOLLOW)) // assuming intention_follow only when following owner
|| isAfraid()
|| this instanceof L2RiftInvaderInstance)
{
if (isOnGeodataPath())
{
if (gtx == _move.geoPathGtx && gty == _move.geoPathGty)
return;
else
_move.onGeodataPathIndex = -1; // Set not on geodata path
}
if (curX < L2World.MAP_MIN_X || curX > L2World.MAP_MAX_X || curY < L2World.MAP_MIN_Y || curY > 294912)
{
// Temporary fix for character outside world region errors
_log.warning("Character "+this.getName()+" outside world area, in coordinates x:"+curX+" y:"+curY);
getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
if (this instanceof L2PcInstance) ((L2PcInstance)this).deleteMe();
else this.onDecay();
return;
}
Location destiny = GeoData.getInstance().moveCheck(curX, curY, curZ, x, y, z);
// location different if destination wasn't reached (or just z coord is different)
x = destiny.getX();
y = destiny.getY();
z = destiny.getZ();
distance = Math.sqrt((x - curX)*(x - curX) + (y - curY)*(y - curY));
}
// Pathfinding checks. Only when geodata setting is 2, the LoS check gives shorter result
// than the original movement was and the LoS gives a shorter distance than 2000
// This way of detecting need for pathfinding could be changed.
if(Config.GEODATA == 2 && originalDistance-distance > 100 && distance < 2000 && !this.isAfraid())
{
// Path calculation
// Overrides previous movement check
if(this instanceof L2PlayableInstance || this.isInCombat())
{
m.geoPath = GeoPathFinding.getInstance().findPath(curX, curY, curZ, originalX, originalY, originalZ);
if (m.geoPath == null || m.geoPath.size() < 2) // No path found
{
// Even though there's no path found (remember geonodes aren't perfect),
// the mob is attacking and right now we set it so that the mob will go
// after target anyway, is dz is small enough. Summons will follow their masters no matter what.
if (this instanceof L2PcInstance
|| (!(this instanceof L2PlayableInstance) && Math.abs(z - curZ) > 140)
|| (this instanceof L2Summon && !((L2Summon)this).getFollowStatus()))
{
getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
return;
}
else
{
x = originalX;
y = originalY;
z = originalZ;
distance = originalDistance;
}
}
else
{
m.onGeodataPathIndex = 0; // on first segment
m.geoPathGtx = gtx;
m.geoPathGty = gty;
m.geoPathAccurateTx = originalX;
m.geoPathAccurateTy = originalY;
x = m.geoPath.get(m.onGeodataPathIndex).getX();
y = m.geoPath.get(m.onGeodataPathIndex).getY();
z = m.geoPath.get(m.onGeodataPathIndex).getZ();
// check for doors in the route
if (DoorTable.getInstance().checkIfDoorsBetween(curX, curY, curZ, x, y, z))
{
m.geoPath = null;
getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
return;
}
for (int i = 0; i < m.geoPath.size()-1; i++)
{
if (DoorTable.getInstance().checkIfDoorsBetween(m.geoPath.get(i),m.geoPath.get(i+1)))
{
m.geoPath = null;
getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
return;
}
}
dx = (x - curX);
dy = (y - curY);
distance = Math.sqrt(dx*dx + dy*dy);
sin = dy/distance;
cos = dx/distance;
}
}
}
// If no distance to go through, the movement is canceled
if (distance < 1 && (Config.GEODATA == 2
|| this instanceof L2PlayableInstance
|| this.isAfraid()
|| this instanceof L2RiftInvaderInstance))
{
if(this instanceof L2Summon) ((L2Summon)this).setFollowStatus(false);
getAI().notifyEvent(CtrlEvent.EVT_ARRIVED);
getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE); //needed?
return;
}
}
// Caclulate the Nb of ticks between the current position and the destination
// One tick added for rounding reasons
m._ticksToMove = 1+(int)(GameTimeController.TICKS_PER_SECOND * distance / speed);
// Calculate the xspeed and yspeed in unit/ticks in function of the movement speed
m._xSpeedTicks = (float)(cos * speed / GameTimeController.TICKS_PER_SECOND);
m._ySpeedTicks = (float)(sin * speed / GameTimeController.TICKS_PER_SECOND);
// Calculate and set the heading of the L2Character
setHeading(Util.calculateHeadingFrom(cos, sin));
if (Config.DEBUG)
_log.fine("dist:"+ distance +"speed:" + speed + " ttt:" +m._ticksToMove +
" dx:"+(int)m._xSpeedTicks + " dy:"+(int)m._ySpeedTicks + " heading:" + getHeading());
m._xDestination = x;
m._yDestination = y;
m._zDestination = z; // this is what was requested from client
m._heading = 0;
m._moveStartTime = GameTimeController.getGameTicks();
m._xMoveFrom = curX;
m._yMoveFrom = curY;
m._zMoveFrom = curZ;
if (Config.DEBUG) _log.fine("time to target:" + m._ticksToMove);
// Set the L2Character _move object to MoveData object
_move = m;
// Add the L2Character to movingObjects of the GameTimeController
// The GameTimeController manage objects movement
GameTimeController.getInstance().registerMovingObject(this);
int tm = m._ticksToMove*GameTimeController.MILLIS_IN_TICK;
// Create a task to notify the AI that L2Character arrives at a check point of the movement
if (tm > 3000)
ThreadPoolManager.getInstance().scheduleAi( new NotifyAITask(CtrlEvent.EVT_ARRIVED_REVALIDATE), 2000);
// the CtrlEvent.EVT_ARRIVED will be sent when the character will actually arrive
// to destination by GameTimeController
}
public boolean moveToNextRoutePoint()
{
if(!this.isOnGeodataPath())
{
// Cancel the move action
_move = null;
return false;
}
// Get the Move Speed of the L2Charcater
float speed = getStat().getMoveSpeed();
if (speed <= 0 || isMovementDisabled())
{
// Cancel the move action
_move = null;
return false;
}
// Create and Init a MoveData object
MoveData m = new MoveData();
// Update MoveData object
m.onGeodataPathIndex = _move.onGeodataPathIndex + 1; // next segment
m.geoPath = _move.geoPath;
m.geoPathGtx = _move.geoPathGtx;
m.geoPathGty = _move.geoPathGty;
m.geoPathAccurateTx = _move.geoPathAccurateTx;
m.geoPathAccurateTy = _move.geoPathAccurateTy;
// Get current position of the L2Character
m._xMoveFrom = super.getX();
m._yMoveFrom = super.getY();
m._zMoveFrom = super.getZ();
if (_move.onGeodataPathIndex == _move.geoPath.size()-2)
{
m._xDestination = _move.geoPathAccurateTx;
m._yDestination = _move.geoPathAccurateTy;
m._zDestination = _move.geoPath.get(m.onGeodataPathIndex).getZ();
}
else
{
m._xDestination = _move.geoPath.get(m.onGeodataPathIndex).getX();
m._yDestination = _move.geoPath.get(m.onGeodataPathIndex).getY();
m._zDestination = _move.geoPath.get(m.onGeodataPathIndex).getZ();
}
double dx = (m._xDestination - m._xMoveFrom);
double dy = (m._yDestination - m._yMoveFrom);
double distance = Math.sqrt(dx*dx + dy*dy);
double sin = dy/distance;
double cos = dx/distance;
// Caclulate the Nb of ticks between the current position and the destination
// One tick added for rounding reasons
m._ticksToMove = 1+(int)(GameTimeController.TICKS_PER_SECOND * distance / speed);
// Calculate the xspeed and yspeed in unit/ticks in function of the movement speed
m._xSpeedTicks = (float)(cos * speed / GameTimeController.TICKS_PER_SECOND);
m._ySpeedTicks = (float)(sin * speed / GameTimeController.TICKS_PER_SECOND);
// Calculate and set the heading of the L2Character
int heading = (int) (Math.atan2(-sin, -cos) * 10430.378);
heading += 32768;
setHeading(heading);
m._heading = 0; // ?
m._moveStartTime = GameTimeController.getGameTicks();
if (Config.DEBUG) _log.fine("time to target:" + m._ticksToMove);
// Set the L2Character _move object to MoveData object
_move = m;
// Add the L2Character to movingObjects of the GameTimeController
// The GameTimeController manage objects movement
GameTimeController.getInstance().registerMovingObject(this);
int tm = m._ticksToMove*GameTimeController.MILLIS_IN_TICK;
// Create a task to notify the AI that L2Character arrives at a check point of the movement
if (tm > 3000)
ThreadPoolManager.getInstance().scheduleAi( new NotifyAITask(CtrlEvent.EVT_ARRIVED_REVALIDATE), 2000);
// the CtrlEvent.EVT_ARRIVED will be sent when the character will actually arrive
// to destination by GameTimeController
// Send a Server->Client packet CharMoveToLocation to the actor and all L2PcInstance in its _knownPlayers
MoveToLocation msg = new MoveToLocation(this);
broadcastPacket(msg);
return true;
}
public boolean validateMovementHeading(int heading)
{
MoveData md = _move;
if (md == null) return true;
boolean result = true;
if (md._heading != heading)
{
result = (md._heading == 0);
md._heading = heading;
}
return result;
}
/**
* Return the distance between the current position of the L2Character and the target (x,y).
*
* @param x X position of the target
* @param y Y position of the target
* @return the plan distance
*
* @deprecated use getPlanDistanceSq(int x, int y, int z)
*/
@Deprecated
public final double getDistance(int x, int y)
{
double dx = x - getX();
double dy = y - getY();
return Math.sqrt(dx*dx + dy*dy);
}
/**
* Return the distance between the current position of the L2Character and the target (x,y).
*
* @param x X position of the target
* @param y Y position of the target
* @return the plan distance
*
* @deprecated use getPlanDistanceSq(int x, int y, int z)
*/
@Deprecated
public final double getDistance(int x, int y, int z)
{
double dx = x - getX();
double dy = y - getY();
double dz = z - getZ();
return Math.sqrt(dx*dx + dy*dy + dz*dz);
}
/**
* Return the squared distance between the current position of the L2Character and the given object.
*
* @param object L2Object
* @return the squared distance
*/
public final double getDistanceSq(L2Object object)
{
return getDistanceSq(object.getX(), object.getY(), object.getZ());
}
/**
* Return the squared distance between the current position of the L2Character and the given x, y, z.
*
* @param x X position of the target
* @param y Y position of the target
* @param z Z position of the target
* @return the squared distance
*/
public final double getDistanceSq(int x, int y, int z)
{
double dx = x - getX();
double dy = y - getY();
double dz = z - getZ();
return (dx*dx + dy*dy + dz*dz);
}
/**
* Return the squared plan distance between the current position of the L2Character and the given object.
* (check only x and y, not z)
*
* @param object L2Object
* @return the squared plan distance
*/
public final double getPlanDistanceSq(L2Object object)
{
return getPlanDistanceSq(object.getX(), object.getY());
}
/**
* Return the squared plan distance between the current position of the L2Character and the given x, y, z.
* (check only x and y, not z)
*
* @param x X position of the target
* @param y Y position of the target
* @return the squared plan distance
*/
public final double getPlanDistanceSq(int x, int y)
{
double dx = x - getX();
double dy = y - getY();
return (dx*dx + dy*dy);
}
/**
* Check if this object is inside the given radius around the given object. Warning: doesn't cover collision radius!
*
* @param object the target
* @param radius the radius around the target
* @param checkZ should we check Z axis also
* @param strictCheck true if (distance < radius), false if (distance <= radius)
* @return true is the L2Character is inside the radius.
*
* @see net.sf.l2j.gameserver.model.L2Character.isInsideRadius(int x, int y, int z, int radius, boolean checkZ, boolean strictCheck)
*/
public final boolean isInsideRadius(L2Object object, int radius, boolean checkZ, boolean strictCheck)
{
return isInsideRadius(object.getX(), object.getY(), object.getZ(), radius, checkZ, strictCheck);
}
/**
* Check if this object is inside the given plan radius around the given point. Warning: doesn't cover collision radius!
*
* @param x X position of the target
* @param y Y position of the target
* @param radius the radius around the target
* @param strictCheck true if (distance < radius), false if (distance <= radius)
* @return true is the L2Character is inside the radius.
*/
public final boolean isInsideRadius(int x, int y, int radius, boolean strictCheck)
{
return isInsideRadius(x, y, 0, radius, false, strictCheck);
}
/**
* Check if this object is inside the given radius around the given point.
*
* @param x X position of the target
* @param y Y position of the target
* @param z Z position of the target
* @param radius the radius around the target
* @param checkZ should we check Z axis also
* @param strictCheck true if (distance < radius), false if (distance <= radius)
* @return true is the L2Character is inside the radius.
*/
public final boolean isInsideRadius(int x, int y, int z, int radius, boolean checkZ, boolean strictCheck)
{
double dx = x - getX();
double dy = y - getY();
double dz = z - getZ();
if (strictCheck)
{
if (checkZ)
return (dx*dx + dy*dy + dz*dz) < radius * radius;
else
return (dx*dx + dy*dy) < radius * radius;
} else
{
if (checkZ)
return (dx*dx + dy*dy + dz*dz) <= radius * radius;
else
return (dx*dx + dy*dy) <= radius * radius;
}
}
// /**
// * event that is called when the destination coordinates are reached
// */
// public void onTargetReached()
// {
// L2Character pawn = getPawnTarget();
//
// if (pawn != null)
// {
// int x = pawn.getX(), y=pawn.getY(),z = pawn.getZ();
//
// double distance = getDistance(x,y);
// if (getCurrentState() == STATE_FOLLOW)
// {
// calculateMovement(x,y,z,distance);
// return;
// }
//
// // takes care of moving away but distance is 0 so i won't follow problem
//
//
// if (((distance > getAttackRange()) && (getCurrentState() == STATE_ATTACKING)) || (pawn.isMoving() && getCurrentState() != STATE_ATTACKING))
// {
// calculateMovement(x,y,z,distance);
// return;
// }
//
// }
// // update x,y,z with the current calculated position
// stopMove();
//
// if (Config.DEBUG)
// _log.fine(this.getName() +":: target reached at: x "+getX()+" y "+getY()+ " z:" + getZ());
//
// if (getPawnTarget() != null)
// {
//
// setPawnTarget(null);
// setMovingToPawn(false);
// }
// }
//
// public void setTo(int x, int y, int z, int heading)
// {
// setX(x);
// setY(y);
// setZ(z);
// setHeading(heading);
// updateCurrentWorldRegion(); //TODO: maybe not needed here
// if (isMoving())
// {
// setCurrentState(STATE_IDLE);
// StopMove setto = new StopMove(this);
// broadcastPacket(setto);
// }
// else
// {
// ValidateLocation setto = new ValidateLocation(this);
// broadcastPacket(setto);
// }
//
// FinishRotation fr = new FinishRotation(this);
// broadcastPacket(fr);
// }
// protected void startCombat()
// {
// if (_currentAttackTask == null )//&& !isInCombat())
// {
// _currentAttackTask = ThreadPoolManager.getInstance().scheduleMed(new AttackTask(), 0);
// }
// else
// {
// _log.info("multiple attacks want to start in parallel. prevented.");
// }
// }
//
/**
* Return the Weapon Expertise Penalty of the L2Character.
*/
public float getWeaponExpertisePenalty()
{
return 1.f;
}
/**
* Return the Armour Expertise Penalty of the L2Character.
*/
public float getArmourExpertisePenalty()
{
return 1.f;
}
/**
* Set _attacking corresponding to Attacking Body part to CHEST.
*/
public void setAttackingBodypart()
{
_attacking = Inventory.PAPERDOLL_CHEST;
}
/**
* Retun True if arrows are available.
*
* Overridden in :
* L2PcInstance
*
*/
protected boolean checkAndEquipArrows()
{
return true;
}
/**
* Retun True if bolts are available.
*
* Overridden in :
* L2PcInstance
*
*/
protected boolean checkAndEquipBolts()
{
return true;
}
/**
* Add Exp and Sp to the L2Character.
*
* Overridden in :
* L2PcInstance
* L2PetInstance
*
*/
public void addExpAndSp(long addToExp, int addToSp)
{
// Dummy method (overridden by players and pets)
}
/**
* Return the active weapon instance (always equiped in the right hand).
*
* Overridden in :
* L2PcInstance
*
*/
public abstract L2ItemInstance getActiveWeaponInstance();
/**
* Return the active weapon item (always equiped in the right hand).
*
* Overridden in :
* L2PcInstance
*
*/
public abstract L2Weapon getActiveWeaponItem();
/**
* Return the secondary weapon instance (always equiped in the left hand).
*
* Overridden in :
* L2PcInstance
*
*/
public abstract L2ItemInstance getSecondaryWeaponInstance();
/**
* Return the secondary weapon item (always equiped in the left hand).
*
* Overridden in :
* L2PcInstance
*
*/
public abstract L2Weapon getSecondaryWeaponItem();
/**
* Manage hit process (called by Hit Task).
*
* Actions :
* If the attacker/target is dead or use fake death, notify the AI with EVT_CANCEL and send a Server->Client packet ActionFailed (if attacker is a L2PcInstance)
* If attack isn't aborted, send a message system (critical hit, missed...) to attacker/target if they are L2PcInstance
* If attack isn't aborted and hit isn't missed, reduce HP of the target and calculate reflection damage to reduce HP of attacker if necessary
* if attack isn't aborted and hit isn't missed, manage attack or cast break of the target (calculating rate, sending message...)
*
* @param target The L2Character targeted
* @param damage Nb of HP to reduce
* @param crit True if hit is critical
* @param miss True if hit is missed
* @param soulshot True if SoulShot are charged
* @param shld True if shield is efficient
*
*/
protected void onHitTimer(L2Character target, int damage, boolean crit, boolean miss, boolean soulshot, boolean shld)
{
// If the attacker/target is dead or use fake death, notify the AI with EVT_CANCEL
// and send a Server->Client packet ActionFailed (if attacker is a L2PcInstance)
if (target == null || isAlikeDead() ||(this instanceof L2NpcInstance && ((L2NpcInstance) this).isEventMob))
{
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
return;
}
if ((this instanceof L2NpcInstance && target.isAlikeDead()) || target.isDead()
|| (!getKnownList().knowsObject(target) && !(this instanceof L2DoorInstance)))
{
//getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE, null);
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
sendPacket(ActionFailed.STATIC_PACKET);
return;
}
if (miss)
{
if (target instanceof L2PcInstance)
{
SystemMessage sm = new SystemMessage(SystemMessageId.AVOIDED_S1S_ATTACK);
sm.addCharName(this);
target.sendPacket(sm);
}
}
// If attack isn't aborted, send a message system (critical hit, missed...) to attacker/target if they are L2PcInstance
if (!isAttackAborted())
{
// Check Raidboss attack
// Character will be petrified if attacking a raid that's more
// than 8 levels lower
if (target.isRaid())
{
int level = 0;
if (this instanceof L2PcInstance)
level = getLevel();
else if (this instanceof L2Summon)
level = ((L2Summon)this).getOwner().getLevel();
if (level > target.getLevel() + 8)
{
L2Skill skill = SkillTable.getInstance().getInfo(4515, 1);
if (skill != null)
skill.getEffects(target, this);
else
_log.warning("Skill 4515 at level 1 is missing in DP.");
damage = 0; // prevents messing up drop calculation
}
}
sendDamageMessage(target, damage, false, crit, miss);
// If L2Character target is a L2PcInstance, send a system message
if (target instanceof L2PcInstance)
{
L2PcInstance enemy = (L2PcInstance)target;
if (shld)
{
if (100 - Config.ALT_PERFECT_SHLD_BLOCK < Rnd.get(100))
{
damage = 1;
enemy.sendPacket(new SystemMessage(SystemMessageId.YOUR_EXCELLENT_SHIELD_DEFENSE_WAS_A_SUCCESS)); //SHIELD_DEFENCE faultless
}
else
enemy.sendPacket(new SystemMessage(SystemMessageId.SHIELD_DEFENCE_SUCCESSFULL));
}
}
else if (target instanceof L2Summon)
{
L2Summon activeSummon = (L2Summon)target;
SystemMessage sm = new SystemMessage(SystemMessageId.PET_RECEIVED_S2_DAMAGE_BY_S1);
sm.addString(getName());
sm.addNumber(damage);
activeSummon.getOwner().sendPacket(sm);
}
if (!miss && damage > 0)
{
L2Weapon weapon = getActiveWeaponItem();
boolean isBow = (weapon != null && (weapon.getItemType() == L2WeaponType.BOW || weapon.getItemType() == L2WeaponType.CROSSBOW));
if (!isBow || isTransformed()) // Do not reflect or absorb if weapon is of type bow
{
// Reduce HP of the target and calculate reflection damage to reduce HP of attacker if necessary
double reflectPercent = target.getStat().calcStat(Stats.REFLECT_DAMAGE_PERCENT,0,null,null);
if (reflectPercent > 0)
{
int reflectedDamage = (int)(reflectPercent / 100. * damage);
damage -= reflectedDamage;
if(reflectedDamage > target.getMaxHp()) // to prevent extreme damage when hitting a low lvl char...
reflectedDamage = target.getMaxHp();
getStatus().reduceHp(reflectedDamage, target, true);
// Custom messages - nice but also more network load
/*
if (target instanceof L2PcInstance)
((L2PcInstance)target).sendMessage("You reflected " + reflectedDamage + " damage.");
else if (target instanceof L2Summon)
((L2Summon)target).getOwner().sendMessage("Summon reflected " + reflectedDamage + " damage.");
if (this instanceof L2PcInstance)
((L2PcInstance)this).sendMessage("Target reflected to you " + reflectedDamage + " damage.");
else if (this instanceof L2Summon)
((L2Summon)this).getOwner().sendMessage("Target reflected to your summon " + reflectedDamage + " damage.");
*/
}
// Absorb HP from the damage inflicted
double absorbPercent = getStat().calcStat(Stats.ABSORB_DAMAGE_PERCENT,0, null,null);
if (absorbPercent > 0)
{
int maxCanAbsorb = (int)(getMaxHp() - getCurrentHp());
int absorbDamage = (int)(absorbPercent / 100. * damage);
if (absorbDamage > maxCanAbsorb)
absorbDamage = maxCanAbsorb; // Can't absord more than max hp
if (absorbDamage > 0)
{
setCurrentHp(getCurrentHp() + absorbDamage);
// Custom messages - nice but also more network load
/*
if (this instanceof L2PcInstance)
((L2PcInstance)this).sendMessage("You absorbed " + absorbDamage + " damage.");
else if (this instanceof L2Summon)
((L2Summon)this).getOwner().sendMessage("Summon absorbed " + absorbDamage + " damage.");
else if (Config.DEBUG)
_log.info(getName() + " absorbed " + absorbDamage + " damage.");
*/
}
}
}
target.reduceCurrentHp(damage, this);
// Notify AI with EVT_ATTACKED
target.getAI().notifyEvent(CtrlEvent.EVT_ATTACKED, this);
getAI().clientStartAutoAttack();
// Manage attack or cast break of the target (calculating rate, sending message...)
if (!target.isRaid() && Formulas.getInstance().calcAtkBreak(target, damage))
{
target.breakAttack();
target.breakCast();
}
// Maybe launch chance skills on us
if (_chanceSkills != null)
_chanceSkills.onHit(target, false, crit);
// Maybe launch chance skills on target
if (target.getChanceSkills() != null)
target.getChanceSkills().onHit(this, true, crit);
}
// Launch weapon Special ability effect if available
L2Weapon activeWeapon = getActiveWeaponItem();
if (activeWeapon != null)
activeWeapon.getSkillEffects(this, target, crit);
/* COMMENTED OUT BY nexus - 2006-08-17
*
* We must not discharge the soulshouts at the onHitTimer method,
* as this can cause unwanted soulshout consumption if the attacker
* recharges the soulshot right after an attack request but before
* his hit actually lands on the target.
*
* The soulshot discharging has been moved to the doAttack method:
* As soon as we know that we didn't missed the hit there, then we
* must discharge any charged soulshots.
*/
/*
L2ItemInstance weapon = getActiveWeaponInstance();
if (!miss)
{
if (this instanceof L2Summon && !(this instanceof L2PetInstance))
{
if (((L2Summon)this).getChargedSoulShot() != L2ItemInstance.CHARGED_NONE)
((L2Summon)this).setChargedSoulShot(L2ItemInstance.CHARGED_NONE);
}
else
{
if (weapon != null && weapon.getChargedSoulshot() != L2ItemInstance.CHARGED_NONE)
weapon.setChargedSoulshot(L2ItemInstance.CHARGED_NONE);
}
}
*/
return;
}
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
}
/**
* Break an attack and send Server->Client ActionFailed packet and a System Message to the L2Character.
*/
public void breakAttack()
{
if (isAttackingNow())
{
// Abort the attack of the L2Character and send Server->Client ActionFailed packet
abortAttack();
if (this instanceof L2PcInstance)
{
//TODO Remove sendPacket because it's always done in abortAttack
sendPacket(ActionFailed.STATIC_PACKET);
// Send a system message
sendPacket(new SystemMessage(SystemMessageId.ATTACK_FAILED));
}
}
}
/**
* Break a cast and send Server->Client ActionFailed packet and a System Message to the L2Character.
*/
public void breakCast()
{
// damage can only cancel magical skills
if (isCastingNow() && canAbortCast() && getLastSkillCast() != null && getLastSkillCast().isMagic())
{
// Abort the cast of the L2Character and send Server->Client MagicSkillCanceld/ActionFailed packet.
abortCast();
if (this instanceof L2PcInstance)
{
// Send a system message
sendPacket(new SystemMessage(SystemMessageId.CASTING_INTERRUPTED));
}
}
}
/**
* Reduce the arrow number of the L2Character.
*
* Overridden in :
* L2PcInstance
*
*/
protected void reduceArrowCount(boolean bolts)
{
// default is to do nothing
}
/**
* Manage Forced attack (shift + select target).
*
* Actions :
* If L2Character or target is in a town area, send a system message TARGET_IN_PEACEZONE a Server->Client packet ActionFailed
* If target is confused, send a Server->Client packet ActionFailed
* If L2Character is a L2ArtefactInstance, send a Server->Client packet ActionFailed
* Send a Server->Client packet MyTargetSelected to start attack and Notify AI with AI_INTENTION_ATTACK
*
* @param player The L2PcInstance to attack
*
*/
@Override
public void onForcedAttack(L2PcInstance player)
{
if (isInsidePeaceZone(player))
{
// If L2Character or target is in a peace zone, send a system message TARGET_IN_PEACEZONE a Server->Client packet ActionFailed
player.sendPacket(new SystemMessage(SystemMessageId.TARGET_IN_PEACEZONE));
player.sendPacket(ActionFailed.STATIC_PACKET);
}
else if (player.isInOlympiadMode() && player.getTarget() != null && player.getTarget() instanceof L2PlayableInstance)
{
L2PcInstance target;
if (player.getTarget() instanceof L2Summon)
target=((L2Summon)player.getTarget()).getOwner();
else
target=(L2PcInstance)player.getTarget();
if (target.isInOlympiadMode() && !player.isOlympiadStart() && player.getOlympiadGameId()!=target.getOlympiadGameId())
{
// if L2PcInstance is in Olympia and the match isn't already start, send a Server->Client packet ActionFailed
player.sendPacket(ActionFailed.STATIC_PACKET);
}
}
else if (player.getTarget() != null && !player.getTarget().isAttackable() && !player.getAccessLevel().allowPeaceAttack())
{
// If target is not attackable, send a Server->Client packet ActionFailed
player.sendPacket(ActionFailed.STATIC_PACKET);
}
else if (player.isConfused())
{
// If target is confused, send a Server->Client packet ActionFailed
player.sendPacket(ActionFailed.STATIC_PACKET);
}
else if (this instanceof L2ArtefactInstance)
{
// If L2Character is a L2ArtefactInstance, send a Server->Client packet ActionFailed
player.sendPacket(ActionFailed.STATIC_PACKET);
}
else
{
// GeoData Los Check or dz > 1000
if (!GeoData.getInstance().canSeeTarget(player, this))
{
player.sendPacket(new SystemMessage(SystemMessageId.CANT_SEE_TARGET));
player.sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// Notify AI with AI_INTENTION_ATTACK
player.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, this);
}
}
/**
* Return True if inside peace zone.
*/
public boolean isInsidePeaceZone(L2PcInstance attacker)
{
return isInsidePeaceZone(attacker, this);
}
public boolean isInsidePeaceZone(L2PcInstance attacker, L2Object target)
{
return (
!attacker.getAccessLevel().allowPeaceAttack() &&
isInsidePeaceZone((L2Object)attacker, target)
);
}
public boolean isInsidePeaceZone(L2Object attacker, L2Object target)
{
if (target == null) return false;
if (target instanceof L2MonsterInstance) return false;
if (attacker instanceof L2MonsterInstance) return false;
if (target instanceof L2NpcInstance) return false;
if (attacker instanceof L2NpcInstance) return false;
if (Config.ALT_GAME_KARMA_PLAYER_CAN_BE_KILLED_IN_PEACEZONE)
{
// allows red to be attacked and red to attack flagged players
if (target instanceof L2PcInstance && ((L2PcInstance)target).getKarma() > 0)
return false;
if (target instanceof L2Summon && ((L2Summon)target).getOwner().getKarma() > 0)
return false;
if (attacker instanceof L2PcInstance && ((L2PcInstance)attacker).getKarma() > 0)
{
if(target instanceof L2PcInstance && ((L2PcInstance)target).getPvpFlag() > 0)
return false;
if(target instanceof L2Summon && ((L2Summon)target).getOwner().getPvpFlag() > 0)
return false;
}
if (attacker instanceof L2Summon && ((L2Summon)attacker).getOwner().getKarma() > 0)
{
if(target instanceof L2PcInstance && ((L2PcInstance)target).getPvpFlag() > 0)
return false;
if(target instanceof L2Summon && ((L2Summon)target).getOwner().getPvpFlag() > 0)
return false;
}
if (attacker instanceof L2Character && target instanceof L2Character)
{
return (((L2Character)target).isInsideZone(ZONE_PEACE) || ((L2Character)attacker).isInsideZone(ZONE_PEACE));
}
if (attacker instanceof L2Character)
{
return (TownManager.getInstance().getTown(target.getX(), target.getY(), target.getZ()) != null || ((L2Character)attacker).isInsideZone(ZONE_PEACE));
}
}
if (attacker instanceof L2Character && target instanceof L2Character)
{
return (((L2Character)target).isInsideZone(ZONE_PEACE) || ((L2Character)attacker).isInsideZone(ZONE_PEACE));
}
if (attacker instanceof L2Character)
{
return (TownManager.getInstance().getTown(target.getX(), target.getY(), target.getZ()) != null || ((L2Character)attacker).isInsideZone(ZONE_PEACE));
}
return (TownManager.getInstance().getTown(target.getX(), target.getY(), target.getZ()) != null ||
TownManager.getInstance().getTown(attacker.getX(), attacker.getY(), attacker.getZ()) != null);
}
/**
* return true if this character is inside an active grid.
*/
public Boolean isInActiveRegion()
{
L2WorldRegion region = getWorldRegion();
return ((region !=null) && (region.isActive()));
}
/**
* Return True if the L2Character has a Party in progress.
*/
public boolean isInParty()
{
return false;
}
/**
* Return the L2Party object of the L2Character.
*/
public L2Party getParty()
{
return null;
}
/**
* Return the Attack Speed of the L2Character (delay (in milliseconds) before next attack).
*/
public int calculateTimeBetweenAttacks(L2Character target, L2Weapon weapon)
{
double atkSpd = 0;
if (weapon !=null && !isTransformed())
{
switch (weapon.getItemType())
{
case BOW:
atkSpd = getStat().getPAtkSpd();
return (int)(1500*345/atkSpd);
case CROSSBOW:
atkSpd = getStat().getPAtkSpd();
return (int)(1200*345/atkSpd);
case DAGGER:
atkSpd = getStat().getPAtkSpd();
//atkSpd /= 1.15;
break;
default:
atkSpd = getStat().getPAtkSpd();
}
}
else
atkSpd = getPAtkSpd();
return Formulas.getInstance().calcPAtkSpd(this, target, atkSpd);
}
public int calculateReuseTime(L2Character target, L2Weapon weapon)
{
if (weapon == null || isTransformed()) return 0;
int reuse = weapon.getAttackReuseDelay();
// only bows should continue for now
if (reuse == 0) return 0;
// else if (reuse < 10) reuse = 1500;
reuse *= getStat().getWeaponReuseModifier(target);
double atkSpd = getStat().getPAtkSpd();
switch (weapon.getItemType())
{
case BOW:
case CROSSBOW:
return (int)(reuse*345/atkSpd);
default:
return (int)(reuse*312/atkSpd);
}
}
/**
* Return True if the L2Character use a dual weapon.
*/
public boolean isUsingDualWeapon()
{
return false;
}
/**
* Add a skill to the L2Character _skills and its Func objects to the calculator set of the L2Character.
*
* Concept :
* All skills own by a L2Character are identified in _skills
*
* Actions :
* Replace oldSkill by newSkill or Add the newSkill
* If an old skill has been replaced, remove all its Func objects of L2Character calculator set
* Add Func objects of newSkill to the calculator set of the L2Character
*
* Overridden in :
* L2PcInstance : Save update in the character_skills table of the database
*
* @param newSkill The L2Skill to add to the L2Character
*
* @return The L2Skill replaced or null if just added a new L2Skill
*
*/
public L2Skill addSkill(L2Skill newSkill)
{
L2Skill oldSkill = null;
if (newSkill != null)
{
// Replace oldSkill by newSkill or Add the newSkill
oldSkill = _skills.put(newSkill.getId(), newSkill);
// If an old skill has been replaced, remove all its Func objects
if (oldSkill != null)
removeStatsOwner(oldSkill);
// Add Func objects of newSkill to the calculator set of the L2Character
addStatFuncs(newSkill.getStatFuncs(null, this));
if (oldSkill != null && _chanceSkills != null)
{
removeChanceSkill(oldSkill.getId());
}
if (newSkill.isChance())
{
addChanceSkill(newSkill);
}
}
return oldSkill;
}
/**
* Remove a skill from the L2Character and its Func objects from calculator set of the L2Character.
*
* Concept :
* All skills own by a L2Character are identified in _skills
*
* Actions :
* Remove the skill from the L2Character _skills
* Remove all its Func objects from the L2Character calculator set
*
* Overridden in :
* L2PcInstance : Save update in the character_skills table of the database
*
* @param skill The L2Skill to remove from the L2Character
*
* @return The L2Skill removed
*
*/
public L2Skill removeSkill(L2Skill skill)
{
if (skill == null) return null;
// Remove the skill from the L2Character _skills
return removeSkill(skill.getId());
}
public L2Skill removeSkill(int skillId)
{
// Remove the skill from the L2Character _skills
L2Skill oldSkill = _skills.remove(skillId);
// Remove all its Func objects from the L2Character calculator set
if (oldSkill != null)
{
// Stop casting if this skill is used right now
if (this instanceof L2PcInstance)
{
if (((L2PcInstance)this).getCurrentSkill() != null && isCastingNow())
{
if (oldSkill.getId() == ((L2PcInstance)this).getCurrentSkill().getSkillId())
abortCast();
}
}
// for now, to support transformations, we have to let their
// effects stay when skill is removed
L2Effect e = getFirstEffect(oldSkill);
if (e == null || e.getEffectType() != EffectType.TRANSFORMATION)
{
removeStatsOwner(oldSkill);
stopSkillEffects(oldSkill.getId());
}
if (oldSkill instanceof L2SkillAgathion && this instanceof L2PcInstance && ((L2PcInstance)this).getAgathionId() > 0)
{
((L2PcInstance)this).setAgathionId(0);
((L2PcInstance)this).broadcastUserInfo();
}
if (oldSkill.isChance() && _chanceSkills != null)
{
removeChanceSkill(oldSkill.getId());
}
}
return oldSkill;
}
public void addChanceSkill(L2Skill skill)
{
synchronized(this)
{
if (_chanceSkills == null)
_chanceSkills = new ChanceSkillList(this);
_chanceSkills.put(skill, skill.getChanceCondition());
}
}
public void removeChanceSkill(int id)
{
synchronized(this)
{
for (L2Skill skill : _chanceSkills.keySet())
{
if (skill.getId() == id)
_chanceSkills.remove(skill);
}
if (_chanceSkills.size() == 0)
_chanceSkills = null;
}
}
/**
* Return all skills own by the L2Character in a table of L2Skill.
*
* Concept :
* All skills own by a L2Character are identified in _skills the L2Character
*
*/
public final L2Skill[] getAllSkills()
{
if (_skills == null)
return new L2Skill[0];
return _skills.values().toArray(new L2Skill[_skills.values().size()]);
}
public ChanceSkillList getChanceSkills()
{
return _chanceSkills;
}
/**
* Return the level of a skill owned by the L2Character.
*
* @param skillId The identifier of the L2Skill whose level must be returned
*
* @return The level of the L2Skill identified by skillId
*
*/
public int getSkillLevel(int skillId)
{
if (_skills == null)
return -1;
L2Skill skill = _skills.get(skillId);
if (skill == null)
return -1;
return skill.getLevel();
}
/**
* Return True if the skill is known by the L2Character.
*
* @param skillId The identifier of the L2Skill to check the knowledge
*
*/
public final L2Skill getKnownSkill(int skillId)
{
if (_skills == null)
return null;
return _skills.get(skillId);
}
/**
* Return the number of buffs affecting this L2Character.
*
* @return The number of Buffs affecting this L2Character
*/
public int getBuffCount()
{
return _effects.getBuffCount();
}
public int getDanceCount()
{
return _effects.getDanceCount();
}
/**
* Manage the magic skill launching task (MP, HP, Item consummation...) and display the magic skill animation on client.
*
* Actions :
* Send a Server->Client packet MagicSkillLaunched (to display magic skill animation) to all L2PcInstance of L2Charcater _knownPlayers
* Consumme MP, HP and Item if necessary
* Send a Server->Client packet StatusUpdate with MP modification to the L2PcInstance
* Launch the magic skill in order to calculate its effects
* If the skill type is PDAM, notify the AI of the target with AI_INTENTION_ATTACK
* Notify the AI of the L2Character with EVT_FINISH_CASTING
*
* Caution : A magic skill casting MUST BE in progress
*
* @param skill The L2Skill to use
*
*/
public void onMagicLaunchedTimer(L2Object[] targets, L2Skill skill, int coolTime, boolean instant)
{
if (skill == null || targets == null || targets.length <= 0)
{
_skillCast = null;
enableAllSkills();
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
return;
}
// Escaping from under skill's radius and peace zone check. First version, not perfect in AoE skills.
int escapeRange = 0;
if(skill.getEffectRange() > escapeRange) escapeRange = skill.getEffectRange();
else if(skill.getCastRange() < 0 && skill.getSkillRadius() > 80) escapeRange = skill.getSkillRadius();
if (escapeRange > 0)
{
List targetList = new FastList();
for (int i = 0; i < targets.length; i++)
{
if (targets[i] instanceof L2Character)
{
if (!Util.checkIfInRange(escapeRange, this, targets[i], true))
continue;
if(skill.isOffensive())
{
if(this instanceof L2PcInstance)
{
if(((L2Character)targets[i]).isInsidePeaceZone((L2PcInstance)this))
continue;
}
else
{
if(((L2Character)targets[i]).isInsidePeaceZone(this, targets[i]))
continue;
}
}
targetList.add((L2Character)targets[i]);
}
//else
//{
// if (Config.DEBUG)
// _log.warning("Class cast bad: "+targets[i].getClass().toString());
//}
}
if(targetList.isEmpty())
{
abortCast();
return;
}
else targets = targetList.toArray(new L2Character[targetList.size()]);
}
// Ensure that a cast is in progress
// Check if player is using fake death.
// Potions can be used while faking death.
if (!isCastingNow() || (isAlikeDead() && !skill.isPotion()))
{
_skillCast = null;
enableAllSkills();
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
_castEndTime = 0;
_castInterruptTime = 0;
return;
}
// Get the display identifier of the skill
int magicId = skill.getDisplayId();
// Get the level of the skill
int level = getSkillLevel(skill.getId());
if (level < 1)
level = 1;
// Send a Server->Client packet MagicSkillLaunched to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character
if (!skill.isPotion()) broadcastPacket(new MagicSkillLaunched(this, magicId, level, targets));
if (instant)
onMagicHitTimer(targets, skill, coolTime, true);
else
_skillCast = ThreadPoolManager.getInstance().scheduleEffect(new MagicUseTask(targets, skill, coolTime, 2), 200);
}
/*
* Runs in the end of skill casting
*/
public void onMagicHitTimer(L2Object[] targets, L2Skill skill, int coolTime, boolean instant)
{
if (skill == null || targets == null || targets.length <= 0)
{
_skillCast = null;
enableAllSkills();
getAI().notifyEvent(CtrlEvent.EVT_CANCEL);
return;
}
if(getForceBuff() != null)
{
_skillCast = null;
enableAllSkills();
getForceBuff().onCastAbort();
return;
}
L2Effect mog = getFirstEffect(L2Effect.EffectType.SIGNET_GROUND);
if (mog != null)
{
_skillCast = null;
enableAllSkills();
mog.exit();
return;
}
try
{
// Go through targets table
for (int i = 0; i < targets.length; i++)
{
if (targets[i] instanceof L2PlayableInstance)
{
L2Character target = (L2Character) targets[i];
if (skill.getSkillType() == L2Skill.SkillType.BUFF)
{
SystemMessage smsg = new SystemMessage(SystemMessageId.YOU_FEEL_S1_EFFECT);
smsg.addSkillName(skill);
target.sendPacket(smsg);
}
if (this instanceof L2PcInstance
&& target instanceof L2Summon)
{
((L2Summon) target).getOwner().sendPacket(new PetInfo((L2Summon) target));
sendPacket(new NpcInfo((L2Summon) target, this));
// The PetInfo packet wipes the PartySpelled (list of
// active spells' icons). Re-add them
((L2Summon) target).updateEffectIcons(true);
}
}
}
StatusUpdate su = new StatusUpdate(getObjectId());
boolean isSendStatus = false;
// Consume MP of the L2Character and Send the Server->Client packet StatusUpdate with current HP and MP to all other L2PcInstance to inform
double mpConsume = getStat().getMpConsume(skill);
if (mpConsume > 0)
{
getStatus().reduceMp(calcStat(Stats.MP_CONSUME_RATE, mpConsume, null, null));
su.addAttribute(StatusUpdate.CUR_MP, (int) getCurrentMp());
isSendStatus = true;
}
// Consume HP if necessary and Send the Server->Client packet StatusUpdate with current HP and MP to all other L2PcInstance to inform
if (skill.getHpConsume() > 0)
{
double consumeHp;
consumeHp = calcStat(Stats.HP_CONSUME_RATE, skill.getHpConsume(), null, null);
if (consumeHp + 1 >= getCurrentHp())
consumeHp = getCurrentHp() - 1.0;
getStatus().reduceHp(consumeHp, this);
su.addAttribute(StatusUpdate.CUR_HP, (int) getCurrentHp());
isSendStatus = true;
}
// Consume CP if necessary and Send the Server->Client packet StatusUpdate with current CP/HP and MP to all other L2PcInstance to inform
if (skill.getCpConsume() > 0)
{
double consumeCp;
consumeCp = skill.getCpConsume();
if (consumeCp + 1 >= getCurrentHp())
consumeCp = getCurrentHp() - 1.0;
getStatus().reduceCp((int)consumeCp);
su.addAttribute(StatusUpdate.CUR_CP, (int) getCurrentCp());
isSendStatus = true;
}
// Send a Server->Client packet StatusUpdate with MP modification to the L2PcInstance
if (isSendStatus) sendPacket(su);
// Consume Items if necessary and Send the Server->Client packet InventoryUpdate with Item modification to all the L2Character
if (skill.getItemConsume() > 0)
{
if (!destroyItemByItemId("Consume", skill.getItemConsumeId(), skill.getItemConsume(), null, false))
{
sendPacket(new SystemMessage(SystemMessageId.NOT_ENOUGH_ITEMS));
return;
}
}
// Consume Souls if necessary
if (skill.getSoulConsumeCount() > 0 || skill.getMaxSoulConsumeCount() > 0)
{
if (this instanceof L2PcInstance)
{
((L2PcInstance)this).decreaseSouls(skill.getSoulConsumeCount(),skill);
sendPacket(new EtcStatusUpdate((L2PcInstance)this));
}
}
// Launch the magic skill in order to calculate its effects
callSkill(skill, targets);
}
catch (NullPointerException e) {}
if (instant || coolTime == 0)
onMagicFinalizer(skill, targets[0]);
else
_skillCast = ThreadPoolManager.getInstance().scheduleEffect(new MagicUseTask(targets, skill, coolTime, 3), coolTime);
}
/*
* Runs after skill hitTime+coolTime
*/
public void onMagicFinalizer(L2Skill skill, L2Object target)
{
_skillCast = null;
_castEndTime = 0;
_castInterruptTime = 0;
enableAllSkills();
// If the skill type is listed here, notify the AI of the target with AI_INTENTION_ATTACK
// for offensive skills the nextintention is always null unless player wants action after skill
// Note: this might also work
// if (skill.isOffensive() && getAI().getNextIntention() == null
// && !(skill.getSkillType() == SkillType.UNLOCK) && !(skill.getSkillType() == SkillType.DELUXE_KEY_UNLOCK) && !(skill.getSkillType() == SkillType.MDAM))
if (getAI().getNextIntention() == null && skill.getSkillType() == SkillType.PDAM || skill.getSkillType() == SkillType.BLOW
|| skill.getSkillType() == SkillType.DRAIN_SOUL || skill.getSkillType() == SkillType.SOW
|| skill.getSkillType() == SkillType.SPOIL)
{
if (getTarget() instanceof L2Character && getTarget() != this && target == getTarget())
getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, getTarget());
}
if (skill.isOffensive() && !(skill.getSkillType() == SkillType.UNLOCK) && !(skill.getSkillType() == SkillType.DELUXE_KEY_UNLOCK))
getAI().clientStartAutoAttack();
// Notify the AI of the L2Character with EVT_FINISH_CASTING
getAI().notifyEvent(CtrlEvent.EVT_FINISH_CASTING);
/*
* If character is a player, then wipe their current cast state and
* check if a skill is queued.
*
* If there is a queued skill, launch it and wipe the queue.
*/
if (this instanceof L2PcInstance)
{
L2PcInstance currPlayer = (L2PcInstance)this;
SkillDat queuedSkill = currPlayer.getQueuedSkill();
currPlayer.setCurrentSkill(null, false, false);
if (queuedSkill != null)
{
currPlayer.setQueuedSkill(null, false, false);
// DON'T USE : Recursive call to useMagic() method
// currPlayer.useMagic(queuedSkill.getSkill(), queuedSkill.isCtrlPressed(), queuedSkill.isShiftPressed());
ThreadPoolManager.getInstance().executeTask(new QueuedMagicUseTask(currPlayer, queuedSkill.getSkill(), queuedSkill.isCtrlPressed(), queuedSkill.isShiftPressed()) );
}
}
}
/**
* Enable a skill (remove it from _disabledSkills of the L2Character).
*
* Concept :
* All skills disabled are identified by their skillId in _disabledSkills of the L2Character
*
* @param skillId The identifier of the L2Skill to enable
*
*/
public void enableSkill(int skillId)
{
if (_disabledSkills == null) return;
_disabledSkills.remove(new Integer(skillId));
if (this instanceof L2PcInstance)
removeTimeStamp(skillId);
}
/**
* Disable a skill (add it to _disabledSkills of the L2Character).
*
* Concept :
* All skills disabled are identified by their skillId in _disabledSkills of the L2Character
*
* @param skillId The identifier of the L2Skill to disable
*
*/
public void disableSkill(int skillId)
{
if (_disabledSkills == null) _disabledSkills = Collections.synchronizedList(new FastList());
_disabledSkills.add(skillId);
}
/**
* Disable this skill id for the duration of the delay in milliseconds.
* @param skillId
* @param delay (seconds * 1000)
*/
public void disableSkill(int skillId, long delay)
{
disableSkill(skillId);
if (delay > 10) ThreadPoolManager.getInstance().scheduleAi(new EnableSkill(skillId), delay);
}
/**
* Check if a skill is disabled.
*
* Concept :
* All skills disabled are identified by their skillId in _disabledSkills of the L2Character
*
* @param skillId The identifier of the L2Skill to disable
*
*/
public boolean isSkillDisabled(int skillId)
{
if (isAllSkillsDisabled()) return true;
if (_disabledSkills == null) return false;
return _disabledSkills.contains(skillId);
}
/**
* Disable all skills (set _allSkillsDisabled to True).
*/
public void disableAllSkills()
{
if (Config.DEBUG) _log.fine("all skills disabled");
_allSkillsDisabled = true;
}
/**
* Enable all skills (set _allSkillsDisabled to False).
*/
public void enableAllSkills()
{
if (Config.DEBUG) _log.fine("all skills enabled");
_allSkillsDisabled = false;
}
/**
* Launch the magic skill and calculate its effects on each target contained in the targets table.
*
* @param skill The L2Skill to use
* @param targets The table of L2Object targets
*
*/
public void callSkill(L2Skill skill, L2Object[] targets)
{
try
{
// Get the skill handler corresponding to the skill type (PDAM, MDAM, SWEEP...) started in gameserver
ISkillHandler handler = SkillHandler.getInstance().getSkillHandler(skill.getSkillType());
L2Weapon activeWeapon = getActiveWeaponItem();
L2PcInstance player = null;
if (this instanceof L2PcInstance)
player = (L2PcInstance)this;
else if (this instanceof L2Summon)
player = ((L2Summon)this).getOwner();
else if (this instanceof L2Trap)
player = ((L2Trap)this).getOwner();
// Check if the toggle skill effects are already in progress on the L2Character
if(skill.isToggle() && getFirstEffect(skill.getId()) != null)
return;
// Initial checks
for (L2Object trg : targets)
{
if (trg instanceof L2Character)
{
// Set some values inside target's instance for later use
L2Character target = (L2Character) trg;
// Check Raidboss attack and
// check buffing chars who attack raidboss. Results in mute.
L2Object target2 = target.getTarget();
if ((target.isRaid() && getLevel() > target.getLevel() + 8)
|| (target2 instanceof L2Character && (((L2Character)target2).isRaid()
&& getLevel() > ((L2Character)target2).getLevel() + 8)))
{
if (skill.isMagic())
{
L2Skill tempSkill = SkillTable.getInstance().getInfo(4215, 1);
if(tempSkill != null)
tempSkill.getEffects(target, this);
else
_log.warning("Skill 4215 at level 1 is missing in DP.");
}
else
{
L2Skill tempSkill = SkillTable.getInstance().getInfo(4515, 1);
if(tempSkill != null)
tempSkill.getEffects(target, this);
else
_log.warning("Skill 4515 at level 1 is missing in DP.");
}
return;
}
// Check if over-hit is possible
if(skill.isOverhit())
{
if(target instanceof L2Attackable)
((L2Attackable)target).overhitEnabled(true);
}
// Launch weapon Special ability skill effect if available
if (activeWeapon != null && !target.isDead())
{
if (activeWeapon.getSkillEffects(this, target, skill).length > 0 && this instanceof L2PcInstance)
{
sendMessage("Target affected by weapon special ability!");
}
}
// Maybe launch chance skills on us
if (_chanceSkills != null)
_chanceSkills.onSkillHit(target, false, skill.isMagic(), skill.isOffensive());
// Maybe launch chance skills on target
if (target.getChanceSkills() != null)
target.getChanceSkills().onSkillHit(this, true, skill.isMagic(), skill.isOffensive());
}
}
// Launch the magic skill and calculate its effects
if (handler != null)
handler.useSkill(this, skill, targets);
else
skill.useSkill(this, targets);
if (player != null)
{
for (L2Object target : targets)
{
// EVT_ATTACKED and PvPStatus
if (target instanceof L2Character)
{
if (skill.isOffensive())
{
if (target instanceof L2PcInstance || target instanceof L2Summon || target instanceof L2Trap)
{
// Signets are a special case, casted on target_self but don't harm self
if (skill.getSkillType() != L2Skill.SkillType.SIGNET && skill.getSkillType() != L2Skill.SkillType.SIGNET_CASTTIME)
{
if (skill.getSkillType() != L2Skill.SkillType.AGGREDUCE
&& skill.getSkillType() != L2Skill.SkillType.AGGREDUCE_CHAR
&& skill.getSkillType() != L2Skill.SkillType.AGGREMOVE)
{
// notify target AI about the attack
((L2Character)target).getAI().notifyEvent(CtrlEvent.EVT_ATTACKED, player);
}
player.updatePvPStatus((L2Character)target);
}
}
else if (target instanceof L2Attackable)
{
if (skill.getSkillType() != L2Skill.SkillType.AGGREDUCE
&& skill.getSkillType() != L2Skill.SkillType.AGGREDUCE_CHAR
&& skill.getSkillType() != L2Skill.SkillType.AGGREMOVE)
{
// notify target AI about the attack
((L2Character)target).getAI().notifyEvent(CtrlEvent.EVT_ATTACKED, player);
}
}
}
else
{
if (target instanceof L2PcInstance)
{
// Casting non offensive skill on player with pvp flag set or with karma
if (!target.equals(this) &&
(((L2PcInstance)target).getPvpFlag() > 0 ||
((L2PcInstance)target).getKarma() > 0)) player.updatePvPStatus();
}
else if (target instanceof L2Attackable
&& !(skill.getSkillType() == L2Skill.SkillType.SUMMON)
&& !(skill.getSkillType() == L2Skill.SkillType.BEAST_FEED)
&& !(skill.getSkillType() == L2Skill.SkillType.UNLOCK)
&& !(skill.getSkillType() == L2Skill.SkillType.DELUXE_KEY_UNLOCK))
player.updatePvPStatus();
}
}
}
// Mobs in range 1000 see spell
Collection objs = player.getKnownList().getKnownObjects().values();
//synchronized (player.getKnownList().getKnownObjects())
{
for (L2Object spMob : objs)
{
if (spMob instanceof L2NpcInstance)
{
L2NpcInstance npcMob = (L2NpcInstance) spMob;
if ((npcMob.isInsideRadius(player, 1000, true, true))
&& (npcMob.getTemplate().getEventQuests(Quest.QuestEventType.ON_SKILL_SEE) != null))
for (Quest quest : npcMob.getTemplate().getEventQuests(Quest.QuestEventType.ON_SKILL_SEE))
quest.notifySkillSee(npcMob, player, skill, targets, this instanceof L2Summon);
}
}
}
}
}
catch (Exception e)
{
_log.log(Level.WARNING, "", e);
}
}
/**
* Return True if the L2Character is behind the target and can't be seen.
*/
public boolean isBehind(L2Object target)
{
double angleChar, angleTarget, angleDiff, maxAngleDiff = 45;
if(target == null)
return false;
if (target instanceof L2Character)
{
L2Character target1 = (L2Character) target;
angleChar = Util.calculateAngleFrom(this, target1);
angleTarget = Util.convertHeadingToDegree(target1.getHeading());
angleDiff = angleChar - angleTarget;
if (angleDiff <= -360 + maxAngleDiff) angleDiff += 360;
if (angleDiff >= 360 - maxAngleDiff) angleDiff -= 360;
if (Math.abs(angleDiff) <= maxAngleDiff)
{
if (Config.DEBUG)
_log.info("Char " + getName() + " is behind " + target.getName());
return true;
}
}
else
{
_log.fine("isBehindTarget's target not an L2 Character.");
}
return false;
}
public boolean isBehindTarget()
{
return isBehind(getTarget());
}
/**
* Return True if the target is facing the L2Character.
*/
public boolean isInFrontOf(L2Character target)
{
double angleChar, angleTarget, angleDiff, maxAngleDiff = 45;
if(target == null)
return false;
angleTarget = Util.calculateAngleFrom(target, this);
angleChar = Util.convertHeadingToDegree(target.getHeading());
angleDiff = angleChar - angleTarget;
if (angleDiff <= -360 + maxAngleDiff) angleDiff += 360;
if (angleDiff >= 360 - maxAngleDiff) angleDiff -= 360;
if (Math.abs(angleDiff) <= maxAngleDiff)
return true;
return false;
}
/** Returns true if target is in front of L2Character (shield def etc) */
public boolean isFacing(L2Object target, int maxAngle)
{
double angleChar, angleTarget, angleDiff, maxAngleDiff;
if(target == null)
return false;
maxAngleDiff = maxAngle / 2;
angleTarget = Util.calculateAngleFrom(this, target);
angleChar = Util.convertHeadingToDegree(this.getHeading());
angleDiff = angleChar - angleTarget;
if (angleDiff <= -360 + maxAngleDiff) angleDiff += 360;
if (angleDiff >= 360 - maxAngleDiff) angleDiff -= 360;
if (Math.abs(angleDiff) <= maxAngleDiff)
return true;
return false;
}
public boolean isInFrontOfTarget()
{
L2Object target = getTarget();
if (target instanceof L2Character)
return isInFrontOf((L2Character)target);
else
return false;
}
/**
* Return 1.
*/
public double getLevelMod()
{
return 1;
}
public final void setSkillCast(Future> newSkillCast)
{
_skillCast = newSkillCast;
}
public final void setSkillCastEndTime(int newSkillCastEndTime)
{
_castEndTime = newSkillCastEndTime;
// for interrupt -12 ticks; first removing the extra second and then -200 ms
_castInterruptTime = newSkillCastEndTime-12;
}
private Future> _PvPRegTask;
private long _pvpFlagLasts;
public void setPvpFlagLasts(long time)
{
_pvpFlagLasts = time;
}
public long getPvpFlagLasts()
{
return _pvpFlagLasts;
}
public void startPvPFlag()
{
updatePvPFlag(1);
_PvPRegTask = ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new PvPFlag(), 1000, 1000);
}
public void stopPvpRegTask()
{
if (_PvPRegTask != null)
_PvPRegTask.cancel(true);
}
public void stopPvPFlag()
{
stopPvpRegTask();
updatePvPFlag(0);
_PvPRegTask = null;
}
public void updatePvPFlag(int value)
{
// Overridden in L2PcInstance
}
/**
* Return a Random Damage in function of the weapon.
*/
public final int getRandomDamage(L2Character target)
{
L2Weapon weaponItem = getActiveWeaponItem();
if (weaponItem == null)
return 5+(int)Math.sqrt(getLevel());
return weaponItem.getRandomDamage();
}
@Override
public String toString()
{
return "mob "+getObjectId();
}
public int getAttackEndTime()
{
return _attackEndTime;
}
/**
* Not Implemented.
*/
public abstract int getLevel();
// =========================================================
// =========================================================
// Stat - NEED TO REMOVE ONCE L2CHARSTAT IS COMPLETE
// Property - Public
public final double calcStat(Stats stat, double init, L2Character target, L2Skill skill) { return getStat().calcStat(stat, init, target, skill); }
// Property - Public
public int getAccuracy() { return getStat().getAccuracy(); }
public final float getAttackSpeedMultiplier() { return getStat().getAttackSpeedMultiplier(); }
public int getCON() { return getStat().getCON(); }
public int getDEX() { return getStat().getDEX(); }
public final double getCriticalDmg(L2Character target, double init) { return getStat().getCriticalDmg(target, init); }
public int getCriticalHit(L2Character target, L2Skill skill) { return getStat().getCriticalHit(target, skill); }
public int getEvasionRate(L2Character target) { return getStat().getEvasionRate(target); }
public int getINT() { return getStat().getINT(); }
public final int getMagicalAttackRange(L2Skill skill) { return getStat().getMagicalAttackRange(skill); }
public final int getMaxCp() { return getStat().getMaxCp(); }
public int getMAtk(L2Character target, L2Skill skill) { return getStat().getMAtk(target, skill); }
public int getMAtkSpd() { return getStat().getMAtkSpd(); }
public int getMaxMp() { return getStat().getMaxMp(); }
public int getMaxHp() { return getStat().getMaxHp(); }
public final int getMCriticalHit(L2Character target, L2Skill skill) { return getStat().getMCriticalHit(target, skill); }
public int getMDef(L2Character target, L2Skill skill) { return getStat().getMDef(target, skill); }
public int getMEN() { return getStat().getMEN(); }
public double getMReuseRate(L2Skill skill) { return getStat().getMReuseRate(skill); }
public float getMovementSpeedMultiplier() { return getStat().getMovementSpeedMultiplier(); }
public int getPAtk(L2Character target) { return getStat().getPAtk(target); }
public double getPAtkAnimals(L2Character target) { return getStat().getPAtkAnimals(target); }
public double getPAtkDragons(L2Character target) { return getStat().getPAtkDragons(target); }
public double getPAtkInsects(L2Character target) { return getStat().getPAtkInsects(target); }
public double getPAtkMonsters(L2Character target) { return getStat().getPAtkMonsters(target); }
public double getPAtkPlants(L2Character target) { return getStat().getPAtkPlants(target); }
public double getPAtkGiants(L2Character target) { return getStat().getPAtkGiants(target); }
public double getPDefAnimals(L2Character target) { return getStat().getPDefAnimals(target); }
public double getPDefDragons(L2Character target) { return getStat().getPDefDragons(target); }
public double getPDefInsects(L2Character target) { return getStat().getPDefInsects(target); }
public double getPDefMonsters(L2Character target) { return getStat().getPDefMonsters(target); }
public double getPDefPlants(L2Character target) { return getStat().getPDefPlants(target); }
public double getPDefGiants(L2Character target) { return getStat().getPDefGiants(target); }
public int getPAtkSpd() { return getStat().getPAtkSpd(); }
public double getPAtkUndead(L2Character target) { return getStat().getPAtkUndead(target); }
public double getPDefUndead(L2Character target) { return getStat().getPDefUndead(target); }
public int getPDef(L2Character target) { return getStat().getPDef(target); }
public final int getPhysicalAttackRange() { return getStat().getPhysicalAttackRange(); }
public int getRunSpeed() { return getStat().getRunSpeed(); }
public final int getShldDef() { return getStat().getShldDef(); }
public int getSTR() { return getStat().getSTR(); }
public final int getWalkSpeed() { return getStat().getWalkSpeed(); }
public int getWIT() { return getStat().getWIT(); }
// =========================================================
// =========================================================
// Status - NEED TO REMOVE ONCE L2CHARTATUS IS COMPLETE
// Method - Public
public void addStatusListener(L2Character object) { getStatus().addStatusListener(object); }
public void reduceCurrentHp(double i, L2Character attacker) { reduceCurrentHp(i, attacker, true); }
public void reduceCurrentHp(double i, L2Character attacker, boolean awake)
{
if (Config.L2JMOD_CHAMPION_ENABLE && isChampion() && Config.L2JMOD_CHAMPION_HP != 0)
getStatus().reduceHp(i/Config.L2JMOD_CHAMPION_HP, attacker, awake);
else
getStatus().reduceHp(i, attacker, awake);
}
public void reduceCurrentMp(double i) { getStatus().reduceMp(i); }
public void removeStatusListener(L2Character object) { getStatus().removeStatusListener(object); }
protected void stopHpMpRegeneration() { getStatus().stopHpMpRegeneration(); }
// Property - Public
public final double getCurrentCp() { return getStatus().getCurrentCp(); }
public final void setCurrentCp(Double newCp) { setCurrentCp((double) newCp); }
public final void setCurrentCp(double newCp) { getStatus().setCurrentCp(newCp); }
public final double getCurrentHp() { return getStatus().getCurrentHp(); }
public final void setCurrentHp(double newHp) { getStatus().setCurrentHp(newHp); }
public final void setCurrentHpMp(double newHp, double newMp){ getStatus().setCurrentHpMp(newHp, newMp); }
public final double getCurrentMp() { return getStatus().getCurrentMp(); }
public final void setCurrentMp(Double newMp) { setCurrentMp((double)newMp); }
public final void setCurrentMp(double newMp) { getStatus().setCurrentMp(newMp); }
// =========================================================
public void setAiClass(String aiClass)
{
_aiClass = aiClass;
}
public String getAiClass()
{
return _aiClass;
}
public L2Character getLastBuffer()
{
return _lastBuffer;
}
public void setChampion(boolean champ)
{
_champion = champ;
}
public boolean isChampion()
{
return _champion;
}
public int getLastHealAmount()
{
return _lastHealAmount;
}
public void setLastBuffer(L2Character buffer)
{
_lastBuffer = buffer;
}
public void setLastHealAmount(int hp)
{
_lastHealAmount = hp;
}
/**
* Check if character reflected skill
* @param skill
* @return
*/
public boolean reflectSkill(L2Skill skill)
{
double reflect = calcStat(skill.isMagic() ? Stats.REFLECT_SKILL_MAGIC : Stats.REFLECT_SKILL_PHYSIC, 0, null, null);
if( Rnd.get(100) < reflect)
return true;
return false;
}
/**
* Check player max buff count
* @return max buff count
*/
public int getMaxBuffCount()
{
return Config.BUFFS_MAX_AMOUNT + Math.max(0, getSkillLevel(L2Skill.SKILL_DIVINE_INSPIRATION));
}
/**
* Send system message about damage.
*
* Overridden in :
* L2PcInstance
* L2SummonInstance
* L2PetInstance
*
*/
public void sendDamageMessage(L2Character target, int damage, boolean mcrit, boolean pcrit, boolean miss)
{
}
public ForceBuff getForceBuff()
{
return _forceBuff;
}
public void setForceBuff(ForceBuff fb)
{
_forceBuff = fb;
}
public int getAttackElement()
{
return getStat().getAttackElement();
}
public int getAttackElementValue()
{
return (int)getStat().getAttackElementValue();
}
public int getDefAttrFire()
{
return (int)getStat().getElementAttributeFire();
}
public int getDefAttrWater()
{
return (int)getStat().getElementAttributeWater();
}
public int getDefAttrEarth()
{
return (int)getStat().getElementAttributeEarth();
}
public int getDefAttrWind()
{
return (int)getStat().getElementAttributeWind();
}
public int getDefAttrHoly()
{
return (int)getStat().getElementAttributeHoly();
}
public int getDefAttrUnholy()
{
return (int)getStat().getElementAttributeUnholy();
}
public boolean mustFallDownOnDeath()
{
return isDead();
}
public final void startPhysicalAttackMuted()
{
setIsPhysicalAttackMuted(true);
abortAttack();
}
public final void stopPhysicalAttackMuted(L2Effect effect)
{
if (effect == null)
stopEffects(L2Effect.EffectType.PHYSICAL_ATTACK_MUTE);
else
removeEffect(effect);
setIsPhysicalAttackMuted(false);
}
}