mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
Renamed and refactored most functions and variables in hate_list.h/cpp for readability Refactored how hate works in some local functions mixing the use of hate variable and split it out into different status variables hate_list.cpp/.h style cleanup hate_list.h header function sort, comment erase functions should clearly state their function
38 lines
709 B
C++
38 lines
709 B
C++
#ifndef EQEMU_LUA_HATE_LIST_H
|
|
#define EQEMU_LUA_HATE_LIST_H
|
|
#ifdef LUA_EQEMU
|
|
|
|
#include "lua_ptr.h"
|
|
|
|
class Lua_Mob;
|
|
struct struct_HateList;
|
|
|
|
luabind::scope lua_register_hate_entry();
|
|
luabind::scope lua_register_hate_list();
|
|
|
|
class Lua_HateEntry : public Lua_Ptr<struct_HateList>
|
|
{
|
|
typedef struct_HateList NativeType;
|
|
public:
|
|
Lua_HateEntry() : Lua_Ptr(nullptr) { }
|
|
Lua_HateEntry(struct_HateList *d) : Lua_Ptr(d) { }
|
|
virtual ~Lua_HateEntry() { }
|
|
|
|
Lua_Mob GetEnt();
|
|
void SetEnt(Lua_Mob e);
|
|
int GetDamage();
|
|
void SetDamage(int value);
|
|
int GetHate();
|
|
void SetHate(int value);
|
|
int GetFrenzy();
|
|
void SetFrenzy(bool value);
|
|
};
|
|
|
|
struct Lua_HateList
|
|
{
|
|
std::vector<Lua_HateEntry> entries;
|
|
};
|
|
|
|
#endif
|
|
#endif
|