61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
/*
|
|
* Copyright (C) 2010 - 2016 Eluna Lua Engine <http://emudevs.com/>
|
|
* This program is free software licensed under GPL version 3
|
|
* Please see the included DOCS/LICENSE.md for more information
|
|
*/
|
|
|
|
#include "Hooks.h"
|
|
#include "HookHelpers.h"
|
|
#include "LuaEngine.h"
|
|
#include "BindingMap.h"
|
|
#include "ElunaIncludes.h"
|
|
#include "ElunaTemplate.h"
|
|
|
|
using namespace Hooks;
|
|
|
|
#define START_HOOK(EVENT, ENTRY) \
|
|
if (!ElunaConfig::GetInstance().IsElunaEnabled())\
|
|
return;\
|
|
auto key = EntryKey<SpellEvents>(EVENT, ENTRY);\
|
|
if (!SpellEventBindings->HasBindingsFor(key))\
|
|
return;\
|
|
LOCK_ELUNA
|
|
|
|
#define START_HOOK_WITH_RETVAL(EVENT, ENTRY, RETVAL) \
|
|
if (!ElunaConfig::GetInstance().IsElunaEnabled())\
|
|
return RETVAL;\
|
|
auto key = EntryKey<SpellEvents>(EVENT, ENTRY);\
|
|
if (!SpellEventBindings->HasBindingsFor(key))\
|
|
return RETVAL;\
|
|
LOCK_ELUNA
|
|
|
|
void Eluna::OnSpellCastCancel(Unit* caster, Spell* spell, SpellInfo const* spellInfo, bool bySelf)
|
|
{
|
|
START_HOOK(SPELL_EVENT_ON_CAST_CANCEL, spellInfo->Id);
|
|
Push(caster);
|
|
Push(spell);
|
|
Push(bySelf);
|
|
|
|
CallAllFunctions(SpellEventBindings, key);
|
|
}
|
|
|
|
void Eluna::OnSpellCast(Unit* caster, Spell* spell, SpellInfo const* spellInfo, bool skipCheck)
|
|
{
|
|
START_HOOK(SPELL_EVENT_ON_CAST, spellInfo->Id);
|
|
Push(caster);
|
|
Push(spell);
|
|
Push(skipCheck);
|
|
|
|
CallAllFunctions(SpellEventBindings, key);
|
|
}
|
|
|
|
void Eluna::OnSpellPrepare(Unit* caster, Spell* spell, SpellInfo const* spellInfo)
|
|
{
|
|
START_HOOK(SPELL_EVENT_ON_PREPARE, spellInfo->Id);
|
|
Push(caster);
|
|
Push(spell);
|
|
|
|
CallAllFunctions(SpellEventBindings, key);
|
|
}
|
|
|