mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
67 lines
1.5 KiB
C++
67 lines
1.5 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 "ElunaTemplate.h"
|
|
|
|
#ifndef CLASSIC
|
|
#ifndef TBC
|
|
|
|
using namespace Hooks;
|
|
|
|
#define START_HOOK(EVENT) \
|
|
if (!IsEnabled())\
|
|
return;\
|
|
auto key = EventKey<VehicleEvents>(EVENT);\
|
|
if (!VehicleEventBindings->HasBindingsFor(key))\
|
|
return;\
|
|
LOCK_ELUNA
|
|
|
|
void Eluna::OnInstall(Vehicle* vehicle)
|
|
{
|
|
START_HOOK(VEHICLE_EVENT_ON_INSTALL);
|
|
Push(vehicle);
|
|
CallAllFunctions(VehicleEventBindings, key);
|
|
}
|
|
|
|
void Eluna::OnUninstall(Vehicle* vehicle)
|
|
{
|
|
START_HOOK(VEHICLE_EVENT_ON_UNINSTALL);
|
|
Push(vehicle);
|
|
CallAllFunctions(VehicleEventBindings, key);
|
|
}
|
|
|
|
void Eluna::OnInstallAccessory(Vehicle* vehicle, Creature* accessory)
|
|
{
|
|
START_HOOK(VEHICLE_EVENT_ON_INSTALL_ACCESSORY);
|
|
Push(vehicle);
|
|
Push(accessory);
|
|
CallAllFunctions(VehicleEventBindings, key);
|
|
}
|
|
|
|
void Eluna::OnAddPassenger(Vehicle* vehicle, Unit* passenger, int8 seatId)
|
|
{
|
|
START_HOOK(VEHICLE_EVENT_ON_ADD_PASSENGER);
|
|
Push(vehicle);
|
|
Push(passenger);
|
|
Push(seatId);
|
|
CallAllFunctions(VehicleEventBindings, key);
|
|
}
|
|
|
|
void Eluna::OnRemovePassenger(Vehicle* vehicle, Unit* passenger)
|
|
{
|
|
START_HOOK(VEHICLE_EVENT_ON_REMOVE_PASSENGER);
|
|
Push(vehicle);
|
|
Push(passenger);
|
|
CallAllFunctions(VehicleEventBindings, key);
|
|
}
|
|
|
|
#endif // CLASSIC
|
|
#endif // TBC
|