factionid and curseid are also boring.

This commit is contained in:
Enno Rehling 2016-11-17 21:29:15 +01:00
parent 434cf8fce6
commit 303eb86399
8 changed files with 13 additions and 15 deletions

View file

@ -47,8 +47,6 @@ struct param;
#define buildingid(x) itoa36((x)->no) #define buildingid(x) itoa36((x)->no)
#define shipid(x) itoa36((x)->no) #define shipid(x) itoa36((x)->no)
#define factionid(x) itoa36((x)->no)
#define curseid(x) itoa36((x)->no)
const char * game_name(void); const char * game_name(void);
int game_id(void); int game_id(void);

View file

@ -273,11 +273,11 @@ faction *addfaction(const char *email, const char *password,
addlist(&factions, f); addlist(&factions, f);
fhash(f); fhash(f);
slprintf(buf, sizeof(buf), "%s %s", LOC(loc, "factiondefault"), factionid(f)); slprintf(buf, sizeof(buf), "%s %s", LOC(loc, "factiondefault"), itoa36(f->no));
f->name = _strdup(buf); f->name = _strdup(buf);
if (!f->race) { if (!f->race) {
log_warning("creating a faction that has no race", factionid(f)); log_warning("creating a faction that has no race", itoa36(f->no));
} }
return f; return f;
@ -828,7 +828,7 @@ int writepasswd(void)
for (f = factions; f; f = f->next) { for (f = factions; f; f = f->next) {
fprintf(F, "%s:%s:%s:%u\n", fprintf(F, "%s:%s:%s:%u\n",
factionid(f), f->email, f->_password, f->subscription); itoa36(f->no), f->email, f->_password, f->subscription);
} }
fclose(F); fclose(F);
return 0; return 0;

View file

@ -1291,7 +1291,7 @@ faction *read_faction(struct gamedata * data)
}; };
f->banner = _strdup(name); f->banner = _strdup(name);
log_debug(" - Lese Partei %s (%s)", f->name, factionid(f)); log_debug(" - Lese Partei %s (%s)", f->name, itoa36(f->no));
READ_STR(data->store, name, sizeof(name)); READ_STR(data->store, name, sizeof(name));
if (set_email(&f->email, name) != 0) { if (set_email(&f->email, name) != 0) {

View file

@ -997,7 +997,7 @@ int quit_cmd(unit * u, struct order *ord)
char buffer[64]; char buffer[64];
write_order(ord, buffer, sizeof(buffer)); write_order(ord, buffer, sizeof(buffer));
cmistake(u, ord, 86, MSG_EVENT); cmistake(u, ord, 86, MSG_EVENT);
log_warning("QUIT with illegal password for faction %s: %s\n", factionid(f), buffer); log_warning("QUIT with illegal password for faction %s: %s\n", itoa36(f->no), buffer);
} }
return 0; return 0;
} }

View file

@ -169,7 +169,7 @@ void score(void)
fprintf(scoreFP, "%30.30s (%3.3s) %5s (%3d)\n", fprintf(scoreFP, "%30.30s (%3.3s) %5s (%3d)\n",
f->name, f->name,
f->race->_name, f->race->_name,
factionid(f), itoa36(f->no),
f->age); f->age);
} }
fclose(scoreFP); fclose(scoreFP);

View file

@ -1406,7 +1406,7 @@ report_template(const char *filename, report_context * ctx, const char *charset)
newline(out); newline(out);
newline(out); newline(out);
sprintf(buf, "%s %s \"password\"", LOC(f->locale, "ERESSEA"), factionid(f)); sprintf(buf, "%s %s \"password\"", LOC(f->locale, "ERESSEA"), itoa36(f->no));
rps_nowrap(out, buf); rps_nowrap(out, buf);
newline(out); newline(out);
newline(out); newline(out);

View file

@ -140,7 +140,7 @@ static char *groupid(const struct group *g, const struct faction *f)
static name idbuf[8]; static name idbuf[8];
static int nextbuf = 0; static int nextbuf = 0;
char *buf = idbuf[(++nextbuf) % 8]; char *buf = idbuf[(++nextbuf) % 8];
sprintf(buf, "%s (%s)", g->name, factionid(f)); sprintf(buf, "%s (%s)", g->name, itoa36(f->no));
return buf; return buf;
} }
@ -1418,7 +1418,7 @@ int write_reports(faction * f, time_t ltime)
do { do {
char filename[32]; char filename[32];
char path[MAX_PATH]; char path[MAX_PATH];
sprintf(filename, "%d-%s.%s", turn, factionid(f), sprintf(filename, "%d-%s.%s", turn, itoa36(f->no),
rtype->extension); rtype->extension);
join_path(reportpath(), filename, path, sizeof(path)); join_path(reportpath(), filename, path, sizeof(path));
errno = 0; errno = 0;
@ -1441,7 +1441,7 @@ int write_reports(faction * f, time_t ltime)
} }
} }
if (!gotit) { if (!gotit) {
log_warning("No report for faction %s!", factionid(f)); log_warning("No report for faction %s!", itoa36(f->no));
} }
finish_reports(&ctx); finish_reports(&ctx);
return 0; return 0;
@ -1452,7 +1452,7 @@ static void write_script(FILE * F, const faction * f)
report_type *rtype; report_type *rtype;
char buf[1024]; char buf[1024];
fprintf(F, "faction=%s:email=%s:lang=%s", factionid(f), f->email, fprintf(F, "faction=%s:email=%s:lang=%s", itoa36(f->no), f->email,
locale_name(f->locale)); locale_name(f->locale));
if (f->options & (1 << O_BZIP2)) if (f->options & (1 << O_BZIP2))
fputs(":compression=bz2", F); fputs(":compression=bz2", F);

View file

@ -96,12 +96,12 @@ int update_nmrs(void)
int nmr = turn - f->lastorders + 1; int nmr = turn - f->lastorders + 1;
if (timeout>0) { if (timeout>0) {
if (nmr < 0 || nmr > timeout) { if (nmr < 0 || nmr > timeout) {
log_error("faction %s has %d NMR", factionid(f), nmr); log_error("faction %s has %d NMR", itoa36(f->no), nmr);
nmr = _max(0, nmr); nmr = _max(0, nmr);
nmr = _min(nmr, timeout); nmr = _min(nmr, timeout);
} }
if (nmr > 0) { if (nmr > 0) {
log_debug("faction %s has %d NMR", factionid(f), nmr); log_debug("faction %s has %d NMR", itoa36(f->no), nmr);
} }
++nmrs[nmr]; ++nmrs[nmr];
} }