From 957ecdfbb008733cded26a6dab20c7ac13814f58 Mon Sep 17 00:00:00 2001 From: FlavioJS Date: Thu, 27 Dec 2007 05:47:50 +0000 Subject: * Corrected description of scope and npc variables in script_commands.txt. * Made temporary character string variables not have a limited length. (now all temporary string variables don't have limited length) * Made temporary character variables reuse free positions. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11984 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/pc.c | 54 ++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 34 insertions(+), 20 deletions(-) (limited to 'src/map/pc.c') diff --git a/src/map/pc.c b/src/map/pc.c index 959503654..5c5b08a49 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -5898,15 +5898,19 @@ int pc_setreg(struct map_session_data* sd, int reg, int val) ARR_FIND( 0, sd->reg_num, i, sd->reg[i].index == reg ); if( i < sd->reg_num ) - // overwrite existing entry + {// overwrite existing entry sd->reg[i].data = val; - else { - // insert new entry + return 1; + } + + ARR_FIND( 0, sd->reg_num, i, sd->reg[i].data == 0 ); + if( i == sd->regstr_num ) + {// nothing free, increase size sd->reg_num++; RECREATE(sd->reg, struct script_reg, sd->reg_num); - sd->reg[i].index = reg; - sd->reg[i].data = val; } + sd->reg[i].index = reg; + sd->reg[i].data = val; return 1; } @@ -5939,27 +5943,37 @@ int pc_setregstr(struct map_session_data* sd, int reg, char* str) ARR_FIND( 0, sd->regstr_num, i, sd->regstr[i].index == reg ); if( i < sd->regstr_num ) - { - if (str && strcmp(str,"")!=0) - safestrncpy(sd->regstr[i].data, str, sizeof(sd->regstr[i].data)); - else { - sd->regstr_num--; - memcpy(&sd->regstr[i], &sd->regstr[sd->regstr_num], sizeof(sd->regstr[0])); - RECREATE(sd->regstr, struct script_regstr, sd->regstr_num); + {// found entry, update + if( str == NULL || *str == '\0' ) + {// empty string + if( sd->regstr[i].data != NULL ) + aFree(sd->regstr[i].data); + sd->regstr[i].data = NULL; + } + else if( sd->regstr[i].data ) + {// recreate + size_t len = strlen(str)+1; + RECREATE(sd->regstr[i].data, char, len); + memcpy(sd->regstr[i].data, str, len*sizeof(char)); + } + else + {// create + sd->regstr[i].data = aStrdup(str); } return 1; } - if (!str) return 1; + if( str == NULL || *str == '\0' ) + return 1;// nothing to add, empty string - sd->regstr_num++; - RECREATE(sd->regstr, struct script_regstr, sd->regstr_num); - if(sd->regstr==NULL){ - ShowFatalError("out of memory : pc_setreg\n"); - exit(EXIT_FAILURE); + ARR_FIND( 0, sd->regstr_num, i, sd->regstr[i].data == NULL ); + if( i == sd->regstr_num ) + {// nothing free, increase size + sd->regstr_num++; + RECREATE(sd->regstr, struct script_regstr, sd->regstr_num); } sd->regstr[i].index = reg; - safestrncpy(sd->regstr[i].data, str, sizeof(sd->regstr[i].data)); + sd->regstr[i].data = aStrdup(str); return 1; } @@ -5968,7 +5982,7 @@ int pc_readregistry(struct map_session_data *sd,const char *reg,int type) { struct global_reg *sd_reg; int i,max; - + nullpo_retr(0, sd); switch (type) { case 3: //Char reg -- cgit v1.2.3-70-g09d2