Skip to content

Commit

Permalink
HPM Hooks Update
Browse files Browse the repository at this point in the history
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome>
  • Loading branch information
HerculesWSAPI committed Nov 16, 2013
1 parent 7120b55 commit 862046b
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/plugins/HPMHooking/HPMHooking.HPMHooksCore.inc
Expand Up @@ -3853,6 +3853,12 @@ struct {
struct HPMHookPoint *HP_pc_scdata_received_post;
struct HPMHookPoint *HP_pc_bound_clear_pre;
struct HPMHookPoint *HP_pc_bound_clear_post;
struct HPMHookPoint *HP_pc_expiration_timer_pre;
struct HPMHookPoint *HP_pc_expiration_timer_post;
struct HPMHookPoint *HP_pc_global_expiration_timer_pre;
struct HPMHookPoint *HP_pc_global_expiration_timer_post;
struct HPMHookPoint *HP_pc_expire_check_pre;
struct HPMHookPoint *HP_pc_expire_check_post;
struct HPMHookPoint *HP_pet_init_pre;
struct HPMHookPoint *HP_pet_init_post;
struct HPMHookPoint *HP_pet_final_pre;
Expand Down Expand Up @@ -8806,6 +8812,12 @@ struct {
int HP_pc_scdata_received_post;
int HP_pc_bound_clear_pre;
int HP_pc_bound_clear_post;
int HP_pc_expiration_timer_pre;
int HP_pc_expiration_timer_post;
int HP_pc_global_expiration_timer_pre;
int HP_pc_global_expiration_timer_post;
int HP_pc_expire_check_pre;
int HP_pc_expire_check_post;
int HP_pet_init_pre;
int HP_pet_init_post;
int HP_pet_final_pre;
Expand Down
3 changes: 3 additions & 0 deletions src/plugins/HPMHooking/HPMHooking.HookingPoints.inc
Expand Up @@ -1957,6 +1957,9 @@ struct HookingPointData HookingPoints[] = {
{ HP_POP(pc->rental_expire, HP_pc_rental_expire) },
{ HP_POP(pc->scdata_received, HP_pc_scdata_received) },
{ HP_POP(pc->bound_clear, HP_pc_bound_clear) },
{ HP_POP(pc->expiration_timer, HP_pc_expiration_timer) },
{ HP_POP(pc->global_expiration_timer, HP_pc_global_expiration_timer) },
{ HP_POP(pc->expire_check, HP_pc_expire_check) },
/* pet */
{ HP_POP(pet->init, HP_pet_init) },
{ HP_POP(pet->final, HP_pet_final) },
Expand Down
77 changes: 77 additions & 0 deletions src/plugins/HPMHooking/HPMHooking.Hooks.inc
Expand Up @@ -49674,6 +49674,83 @@ void HP_pc_bound_clear(struct map_session_data *sd, enum e_item_bound_type type)
}
return;
}
int HP_pc_expiration_timer(int tid, int64 tick, int id, intptr_t data) {
int hIndex = 0;
int retVal___ = 0;
if( HPMHooks.count.HP_pc_expiration_timer_pre ) {
int (*preHookFunc) (int *tid, int64 *tick, int *id, intptr_t *data);
for(hIndex = 0; hIndex < HPMHooks.count.HP_pc_expiration_timer_pre; hIndex++ ) {
preHookFunc = HPMHooks.list.HP_pc_expiration_timer_pre[hIndex].func;
retVal___ = preHookFunc(&tid, &tick, &id, &data);
}
if( *HPMforce_return ) {
*HPMforce_return = false;
return retVal___;
}
}
{
retVal___ = HPMHooks.source.pc.expiration_timer(tid, tick, id, data);
}
if( HPMHooks.count.HP_pc_expiration_timer_post ) {
int (*postHookFunc) (int retVal___, int *tid, int64 *tick, int *id, intptr_t *data);
for(hIndex = 0; hIndex < HPMHooks.count.HP_pc_expiration_timer_post; hIndex++ ) {
postHookFunc = HPMHooks.list.HP_pc_expiration_timer_post[hIndex].func;
retVal___ = postHookFunc(retVal___, &tid, &tick, &id, &data);
}
}
return retVal___;
}
int HP_pc_global_expiration_timer(int tid, int64 tick, int id, intptr_t data) {
int hIndex = 0;
int retVal___ = 0;
if( HPMHooks.count.HP_pc_global_expiration_timer_pre ) {
int (*preHookFunc) (int *tid, int64 *tick, int *id, intptr_t *data);
for(hIndex = 0; hIndex < HPMHooks.count.HP_pc_global_expiration_timer_pre; hIndex++ ) {
preHookFunc = HPMHooks.list.HP_pc_global_expiration_timer_pre[hIndex].func;
retVal___ = preHookFunc(&tid, &tick, &id, &data);
}
if( *HPMforce_return ) {
*HPMforce_return = false;
return retVal___;
}
}
{
retVal___ = HPMHooks.source.pc.global_expiration_timer(tid, tick, id, data);
}
if( HPMHooks.count.HP_pc_global_expiration_timer_post ) {
int (*postHookFunc) (int retVal___, int *tid, int64 *tick, int *id, intptr_t *data);
for(hIndex = 0; hIndex < HPMHooks.count.HP_pc_global_expiration_timer_post; hIndex++ ) {
postHookFunc = HPMHooks.list.HP_pc_global_expiration_timer_post[hIndex].func;
retVal___ = postHookFunc(retVal___, &tid, &tick, &id, &data);
}
}
return retVal___;
}
void HP_pc_expire_check(struct map_session_data *sd) {
int hIndex = 0;
if( HPMHooks.count.HP_pc_expire_check_pre ) {
void (*preHookFunc) (struct map_session_data *sd);
for(hIndex = 0; hIndex < HPMHooks.count.HP_pc_expire_check_pre; hIndex++ ) {
preHookFunc = HPMHooks.list.HP_pc_expire_check_pre[hIndex].func;
preHookFunc(sd);
}
if( *HPMforce_return ) {
*HPMforce_return = false;
return;
}
}
{
HPMHooks.source.pc.expire_check(sd);
}
if( HPMHooks.count.HP_pc_expire_check_post ) {
void (*postHookFunc) (struct map_session_data *sd);
for(hIndex = 0; hIndex < HPMHooks.count.HP_pc_expire_check_post; hIndex++ ) {
postHookFunc = HPMHooks.list.HP_pc_expire_check_post[hIndex].func;
postHookFunc(sd);
}
}
return;
}
/* pet */
int HP_pet_init(bool minimal) {
int hIndex = 0;
Expand Down

0 comments on commit 862046b

Please sign in to comment.