/*
* 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 2, 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package com.l2jfrozen.gameserver.ai.special.manager;
import javolution.util.FastMap;
import com.l2jfrozen.Config;
import com.l2jfrozen.gameserver.datatables.sql.NpcTable;
import com.l2jfrozen.gameserver.model.L2Skill;
import com.l2jfrozen.gameserver.model.actor.instance.L2NpcInstance;
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.templates.L2NpcTemplate;
/**
* @author programmos
*/
public class AIExtend implements Runnable
{
private static FastMap<Integer, AIExtend> _AI = new FastMap<Integer, AIExtend>();
private int _idCharacter;
/**
* @param id
*/
public void addAI(int id)
{
if(_AI.get(id) == null)
{
_idCharacter = id;
_AI.put(id, this);
}
}
public static enum Action
{
/** on spell finished action when npc finish casting skill */
ON_SPELL_FINISHED(true),
/** a person came within the Npc/Mob's range */
ON_AGGRO_RANGE_ENTER(true),
/** OnSpawn */
ON_SPAWN(true),
/** OnSkillUse (MOB_TARGETED_BY_SKILL) */
ON_SKILL_USE(true),
/** OnKill (MOBKILLED) */
ON_KILL(true),
/** OnAttack (MOBGOTATTACKED) */
ON_ATTACK(true);
private boolean _isRegistred;
Action(boolean reg)
{
_isRegistred = reg;
}
public boolean isRegistred()
{
return _isRegistred;
}
}
public static void clearAllAI()
{
_AI.clear();
L2NpcTemplate.clearAI();
}
/**
* @return idCharacter
*/
public int getID()
{
return _idCharacter;
}
public L2NpcTemplate addActionId(int npcId, Action actionType)
{
try
{
L2NpcTemplate t = NpcTable.getInstance().getTemplate(npcId);
if(t != null)
{
t.addAIEvent(actionType, this);
}
return t;
}
catch(Exception e)
{
e.printStackTrace();
return null;
}
}
public String onAttack(L2NpcInstance npc, L2PcInstance attacker, int damage, boolean isPet)
{
return null;
}
public String onKill(L2NpcInstance npc, L2PcInstance killer, boolean isPet)
{
return null;
}
public String onSkillUse(L2NpcInstance npc, L2PcInstance caster, L2Skill skill)
{
return null;
}
public String onSpellFinished(L2NpcInstance npc, L2PcInstance player, L2Skill skill)
{
return null;
}
public String onSpawn(L2NpcInstance npc)
{
return null;
}
public String onAggroRangeEnter(L2NpcInstance npc, L2PcInstance player, boolean isPet)
{
return null;
}
/*public String onDeath (L2Character killer, L2Character victim, QuestState qs)
{
if (killer instanceof L2NpcInstance)
return onAdvEvent("", (L2NpcInstance)killer,qs.getPlayer());
else
return onAdvEvent("", null,qs.getPlayer());
}*/
public final boolean notifyAggroRangeEnter(L2NpcInstance npc, L2PcInstance player, boolean isPet)
{
try
{
onAggroRangeEnter(npc, player, isPet);
}
catch(Exception e)
{
if(Config.ENABLE_ALL_EXCEPTIONS)
e.printStackTrace();
return false;
}
return true;
}
public final boolean notifySpawn(L2NpcInstance npc)
{
try
{
onSpawn(npc);
}
catch(Exception e)
{
if(Config.ENABLE_ALL_EXCEPTIONS)
e.printStackTrace();
return false;
}
return true;
}
public final boolean notifySkillUse(L2NpcInstance npc, L2PcInstance caster, L2Skill skill)
{
try
{
onSkillUse(npc, caster, skill);
}
catch(Exception e)
{
if(Config.ENABLE_ALL_EXCEPTIONS)
e.printStackTrace();
return false;
}
return true;
}
public final boolean notifySpellFinished(L2NpcInstance npc, L2PcInstance player, L2Skill skill)
{
try
{
onSpellFinished(npc, player, skill);
}
catch(Exception e)
{
if(Config.ENABLE_ALL_EXCEPTIONS)
e.printStackTrace();
return false;
}
return true;
}
public final boolean notifyKill(L2NpcInstance npc, L2PcInstance killer, boolean isPet)
{
try
{
onKill(npc, killer, isPet);
}
catch(Exception e)
{
if(Config.ENABLE_ALL_EXCEPTIONS)
e.printStackTrace();
return false;
}
return true;
}
public final boolean notifyAttack(L2NpcInstance npc, L2PcInstance attacker, int damage, boolean isPet)
{
try
{
onAttack(npc, attacker, damage, isPet);
}
catch(Exception e)
{
if(Config.ENABLE_ALL_EXCEPTIONS)
e.printStackTrace();
return false;
}
return true;
}
/*public final boolean notifyDeath(L2Character killer, L2Character victim, QuestState qs)
{
try
{
onDeath(killer, victim, qs);
}
catch (Exception e)
{
return false;
}
return true;
} */
@Override
public void run()
{}
}