diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-01-24 23:43:27 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-01-24 23:43:27 +0000 |
commit | 101dd12ba7fa9cb34363361ef9bbbe5c74f8b375 (patch) | |
tree | daa6906a5d0f61a5449382842f15f1e21bab7d9b /src/map/pc.c | |
parent | 720440a9f92cfa64825c95f65df66a8ea078ec52 (diff) | |
download | hercules-101dd12ba7fa9cb34363361ef9bbbe5c74f8b375.tar.gz hercules-101dd12ba7fa9cb34363361ef9bbbe5c74f8b375.tar.bz2 hercules-101dd12ba7fa9cb34363361ef9bbbe5c74f8b375.tar.xz hercules-101dd12ba7fa9cb34363361ef9bbbe5c74f8b375.zip |
* Changed pc_spiritball_timer and pc_addspiritball: (bugreport:2705)
- don't make assumptions about the calling order of timers
- ensure that sd->spirit_timer is is ordered by expiration time
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13485 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 46 |
1 files changed, 28 insertions, 18 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 268a461c0..08b511fc7 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -127,26 +127,29 @@ void pc_delinvincibletimer(struct map_session_data* sd) static int pc_spiritball_timer(int tid, unsigned int tick, int id, intptr data) { struct map_session_data *sd; + int i; if( (sd=(struct map_session_data *)map_id2sd(id)) == NULL || sd->bl.type!=BL_PC ) return 1; - if(sd->spirit_timer[0] != tid){ - ShowError("spirit_timer %d != %d\n",sd->spirit_timer[0],tid); + if( sd->spiritball <= 0 ) + { + ShowError("pc_spiritball_timer: %d spiritball's available. (aid=%d cid=%d tid=%d)\n", sd->spiritball, sd->status.account_id, sd->status.char_id, tid); + sd->spiritball = 0; return 0; } - if(sd->spiritball <= 0) { - ShowError("Spiritballs are already 0 when pc_spiritball_timer gets called"); - sd->spiritball = 0; + ARR_FIND(0, sd->spiritball, i, sd->spirit_timer[i] == tid); + if( i == sd->spiritball ) + { + ShowError("pc_spiritball_timer: timer not found (aid=%d cid=%d tid=%d)\n", sd->status.account_id, sd->status.char_id, tid); return 0; } sd->spiritball--; - // I leave this here as bad example [Shinomori] - //memcpy( &sd->spirit_timer[0], &sd->spirit_timer[1], sizeof(sd->spirit_timer[0]) * sd->spiritball ); - memmove( sd->spirit_timer+0, sd->spirit_timer+1, (sd->spiritball)*sizeof(int) ); - sd->spirit_timer[sd->spiritball]=-1; + if( i != sd->spiritball ) + memmove(sd->spirit_timer+i, sd->spirit_timer+i+1, (sd->spiritball-i)*sizeof(int)); + sd->spirit_timer[sd->spiritball] = INVALID_TIMER; clif_spiritball(sd); @@ -155,6 +158,8 @@ static int pc_spiritball_timer(int tid, unsigned int tick, int id, intptr data) int pc_addspiritball(struct map_session_data *sd,int interval,int max) { + int tid, i; + nullpo_retr(0, sd); if(max > MAX_SKILL_LEVEL) @@ -162,17 +167,22 @@ int pc_addspiritball(struct map_session_data *sd,int interval,int max) if(sd->spiritball < 0) sd->spiritball = 0; - if(sd->spiritball >= max) { + if( sd->spiritball && sd->spiritball >= max ) + { if(sd->spirit_timer[0] != -1) delete_timer(sd->spirit_timer[0],pc_spiritball_timer); - // I leave this here as bad example [Shinomori] - //memcpy( &sd->spirit_timer[0], &sd->spirit_timer[1], sizeof(sd->spirit_timer[0]) * (sd->spiritball - 1)); - memmove( sd->spirit_timer+0, sd->spirit_timer+1, (sd->spiritball - 1)*sizeof(int) ); - //sd->spirit_timer[sd->spiritball-1] = -1; // intentionally, but will be overwritten - } else - sd->spiritball++; - - sd->spirit_timer[sd->spiritball-1] = add_timer(gettick()+interval,pc_spiritball_timer,sd->bl.id,0); + sd->spiritball--; + if( sd->spiritball != 0 ) + memmove(sd->spirit_timer+0, sd->spirit_timer+1, (sd->spiritball)*sizeof(int)); + sd->spirit_timer[sd->spiritball] = INVALID_TIMER; + } + + tid = add_timer(gettick()+interval, pc_spiritball_timer, sd->bl.id, 0); + ARR_FIND(0, sd->spiritball, i, DIFF_TICK(get_timer(tid)->tick, get_timer(sd->spirit_timer[i])->tick) < 0); + if( i != sd->spiritball ) + memmove(sd->spirit_timer+i+1, sd->spirit_timer+i, (sd->spiritball-i)*sizeof(int)); + sd->spirit_timer[i] = tid; + sd->spiritball++; clif_spiritball(sd); return 0; |