summaryrefslogtreecommitdiff
path: root/src/map/mercenary.c
diff options
context:
space:
mode:
authortoms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-17 22:38:25 +0000
committertoms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-17 22:38:25 +0000
commit43e00cf6174ca30c6c702b59b5a1434dd1c5ce33 (patch)
tree86335f884d5f471f880753fa99cd4c7e6b8fbed6 /src/map/mercenary.c
parent73c59399d732b6d5c88ccbf4fcb9ced38e777aca (diff)
downloadhercules-43e00cf6174ca30c6c702b59b5a1434dd1c5ce33.tar.gz
hercules-43e00cf6174ca30c6c702b59b5a1434dd1c5ce33.tar.bz2
hercules-43e00cf6174ca30c6c702b59b5a1434dd1c5ce33.tar.xz
hercules-43e00cf6174ca30c6c702b59b5a1434dd1c5ce33.zip
- Corrected map_random_dir algorithm
- Fixed homunc natural heal and little code cleanup git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8327 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mercenary.c')
-rw-r--r--src/map/mercenary.c86
1 files changed, 6 insertions, 80 deletions
diff --git a/src/map/mercenary.c b/src/map/mercenary.c
index 6c5ffe923..6cd3bbb30 100644
--- a/src/map/mercenary.c
+++ b/src/map/mercenary.c
@@ -419,80 +419,8 @@ void merc_hom_heal(struct homun_data *hd,int hp,int sp)
clif_hominfo(hd->master,hd,0);
}
-static unsigned int natural_heal_prev_tick,natural_heal_diff_tick;
-static void merc_natural_heal_hp(struct homun_data *hd)
-{
-
- nullpo_retv(hd);
-
-// ShowDebug("merc_natural_heal_hp (1) : homunculus = %s | hd->ud.walktimer = %d |\n", hd->name, hd->ud.walktimer) ;
- if(hd->ud.walktimer == -1) {
- hd->inchealhptick += natural_heal_diff_tick;
- }
- else {
- hd->inchealhptick = 0;
- return;
- }
-
-// ShowDebug("merc_natural_heal_hp (2) : homunculus = %s | hd->regenhp = %d |\n", hd->name, hd->regenhp) ;
- if (hd->battle_status.hp != hd->battle_status.max_hp) {
- if ((unsigned int)status_heal(&hd->bl, hd->regenhp, 0, 1) < hd->regenhp)
- { //At full.
- hd->inchealhptick = 0;
- return;
- }
- }
-
- return;
-}
-
-static void merc_natural_heal_sp(struct homun_data *hd)
-{
-
- nullpo_retv(hd);
-
-// ShowDebug("merc_natural_heal_sp (1) : homunculus = %s | hd->regensp = %d |\n", hd->name, hd->regensp) ;
- if (hd->battle_status.sp != hd->battle_status.max_sp) {
- if ((unsigned int)status_heal(&hd->bl, 0, hd->regensp, 1) < hd->regensp)
- { //At full.
- hd->inchealsptick = 0;
- return;
- }
- }
-
- return;
-}
-
/*==========================================
- * HP/SP natural heal
- *------------------------------------------
- */
-
-//static int merc_natural_heal_sub(struct homun_data *hd,va_list ap) {
-static int merc_natural_heal_sub(struct homun_data *hd,int tick) {
-// int tick;
-
- nullpo_retr(0, hd);
-// tick = va_arg(ap,int);
-
-// -- moonsoul (if conditions below altered to disallow natural healing if under berserk status)
- if ( status_isdead(&hd->bl) ||
- ( ( hd->sc.count ) &&
- ( (hd->sc.data[SC_POISON].timer != -1 ) || ( hd->sc.data[SC_BLEEDING].timer != -1 ) )
- )
- ) { //Cannot heal neither natural or special.
- hd->hp_sub = hd->inchealhptick = 0;
- hd->sp_sub = hd->inchealsptick = 0;
- } else { //natural heal
- merc_natural_heal_hp(hd);
- merc_natural_heal_sp(hd);
- }
-
- return 0;
-}
-
-/*==========================================
- * orn
+ * Homunculus natural heal hp/sp
*------------------------------------------
*/
int merc_natural_heal(int tid,unsigned int tick,int id,int data)
@@ -515,14 +443,13 @@ int merc_natural_heal(int tid,unsigned int tick,int id,int data)
hd->natural_heal_timer = -1;
- if(sd->homunculus.vaporize || sd->homunculus.hp == 0)
+ // Can't heal if homunc is vaporized, dead or under poison/bleeding effect
+ if (sd->homunculus.vaporize || status_isdead(&hd->bl) || ( hd->sc.count && ( hd->sc.data[SC_POISON].timer != -1 || hd->sc.data[SC_BLEEDING].timer != -1 ) ) )
return 1;
+
+ status_heal(&hd->bl, hd->regenhp, hd->regensp, 1);
- natural_heal_diff_tick = DIFF_TICK(tick,natural_heal_prev_tick);
- merc_natural_heal_sub(hd, tick);
-
- natural_heal_prev_tick = tick;
- sd->hd->natural_heal_timer = add_timer(gettick()+battle_config.natural_healhp_interval, merc_natural_heal,sd->bl.id,0);
+ sd->hd->natural_heal_timer = add_timer(tick+battle_config.natural_healhp_interval, merc_natural_heal,sd->bl.id,0);
return 0;
}
@@ -1113,7 +1040,6 @@ int do_init_merc (void)
memset(homunculus_db,0,sizeof(homunculus_db)); //[orn]
read_homunculusdb(); //[orn]
// Add homunc timer function to timer func list [Toms]
- natural_heal_prev_tick = gettick();
add_timer_func_list(merc_natural_heal, "merc_natural_heal");
add_timer_func_list(merc_hom_hungry, "merc_hom_hungry");
return 0;