server/src/names.c

480 lines
12 KiB
C
Raw Normal View History

2010-08-08 10:06:34 +02:00
/*
2015-01-30 22:10:29 +01:00
Copyright (c) 1998-2015, Enno Rehling <enno@eressea.de>
Katja Zedel <katze@felidae.kn-bremen.de
Christian Schlittchen <corwin@amber.kn-bremen.de>
2010-08-08 10:06:34 +02:00
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
**/
#include <platform.h>
#include <kernel/config.h>
#include "names.h"
/* kernel includes */
#include <kernel/unit.h>
#include <kernel/race.h>
#include <kernel/region.h>
#include <kernel/faction.h>
#include <kernel/race.h>
#include <kernel/terrain.h>
#include <kernel/terrainid.h>
2010-08-08 10:06:34 +02:00
/* util includes */
#include <util/base36.h>
#include <util/bsdstring.h>
#include <util/language.h>
#include <util/functions.h>
2010-08-08 10:06:34 +02:00
#include <util/rng.h>
#include <util/unicode.h>
/* libc includes */
2012-06-04 03:41:07 +02:00
#include <assert.h>
2010-08-08 10:06:34 +02:00
#include <ctype.h>
#include <wctype.h>
#include <stdlib.h>
#include <stdio.h>
2010-08-08 10:06:34 +02:00
#include <string.h>
2016-08-28 20:00:04 +02:00
static void count_particles(const char *monster, int *num_prefix, int *num_name, int *num_postfix)
2010-08-08 10:06:34 +02:00
{
2016-08-28 20:00:04 +02:00
char zText[32];
const char *str;
for (*num_prefix = 0;; ++*num_prefix) {
sprintf(zText, "%s_prefix_%d", monster, *num_prefix);
str = locale_getstring(default_locale, zText);
if (str == NULL)
break;
}
for (*num_name = 0;; ++*num_name) {
sprintf(zText, "%s_name_%d", monster, *num_name);
str = locale_getstring(default_locale, zText);
if (str == NULL)
break;
}
for (*num_postfix = 0;; ++*num_postfix) {
sprintf(zText, "%s_postfix_%d", monster, *num_postfix);
str = locale_getstring(default_locale, zText);
if (str == NULL)
break;
2010-08-08 10:06:34 +02:00
}
2016-08-28 20:00:04 +02:00
}
2010-08-08 10:06:34 +02:00
static void make_name(unit *u, const char *monster, int *num_postfix,
2016-08-28 20:00:04 +02:00
int pprefix, int *num_name, int *num_prefix, int ppostfix)
{
if (*num_name == 0) {
2016-08-28 20:00:04 +02:00
count_particles(monster, num_prefix, num_name, num_postfix);
2010-08-08 10:06:34 +02:00
}
2016-08-28 20:00:04 +02:00
if (*num_name > 0) {
2016-08-30 08:56:40 +02:00
char name[NAMESIZE + 1];
2016-08-28 20:00:04 +02:00
char zText[32];
int uv = 0, uu = 0, un = 0;
2016-08-28 20:00:04 +02:00
const char *str;
2010-08-08 10:06:34 +02:00
if (*num_prefix > 0) {
uv = rng_int() % (*num_prefix * pprefix);
}
2016-08-28 20:00:04 +02:00
uu = rng_int() % *num_name;
2010-08-08 10:06:34 +02:00
2016-08-28 20:00:04 +02:00
if (*num_postfix > 0 && uv >= *num_prefix) {
un = rng_int() % *num_postfix;
}
else {
un = rng_int() % (*num_postfix * ppostfix);
}
2010-08-08 10:06:34 +02:00
2016-08-28 20:00:04 +02:00
name[0] = 0;
if (uv < *num_prefix) {
sprintf(zText, "%s_prefix_%d", monster, uv);
str = locale_getstring(default_locale, zText);
if (str) {
size_t sz = strlcpy(name, (const char *)str, sizeof(name));
strlcpy(name + sz, " ", sizeof(name) - sz);
}
}
2016-08-28 20:00:04 +02:00
sprintf(zText, "%s_name_%d", monster, uu);
str = locale_getstring(default_locale, zText);
2016-08-28 20:00:04 +02:00
if (str)
strlcat(name, (const char *)str, sizeof(name));
2016-08-28 20:00:04 +02:00
if (un < *num_postfix) {
sprintf(zText, "%s_postfix_%d", monster, un);
str = locale_getstring(default_locale, zText);
if (str) {
strlcat(name, " ", sizeof(name));
strlcat(name, (const char *)str, sizeof(name));
}
}
unit_setname(u, name);
2010-08-08 10:06:34 +02:00
}
}
static void undead_name(unit * u)
2010-08-08 10:06:34 +02:00
{
static int num_postfix, num_name, num_prefix;
make_name(u, "undead", &num_postfix, 2, &num_name, &num_prefix, 2);
2010-08-08 10:06:34 +02:00
}
static void skeleton_name(unit * u)
2010-08-08 10:06:34 +02:00
{
static int num_postfix, num_name, num_prefix;
make_name(u, "skeleton", &num_postfix, 5, &num_name, &num_prefix, 2);
2010-08-08 10:06:34 +02:00
}
static void zombie_name(unit * u)
2010-08-08 10:06:34 +02:00
{
static int num_postfix, num_name, num_prefix;
make_name(u, "zombie", &num_postfix, 5, &num_name, &num_prefix, 2);
2010-08-08 10:06:34 +02:00
}
static void ghoul_name(unit * u)
2010-08-08 10:06:34 +02:00
{
static int num_postfix, num_name, num_prefix;
make_name(u, "ghoul", &num_postfix, 5, &num_name, &num_prefix, 4);
2010-08-08 10:06:34 +02:00
}
/* Drachen */
#define SIL1 15
const char *silbe1[SIL1] = {
"Tar",
"Ter",
"Tor",
"Pan",
"Par",
"Per",
"Nim",
"Nan",
"Nun",
"Gor",
"For",
"Fer",
"Kar",
"Kur",
"Pen",
2010-08-08 10:06:34 +02:00
};
#define SIL2 19
const char *silbe2[SIL2] = {
"da",
"do",
"dil",
"di",
"dor",
"dar",
"ra",
"ran",
"ras",
"ro",
"rum",
"rin",
"ten",
"tan",
"ta",
"tor",
"gur",
"ga",
"gas",
2010-08-08 10:06:34 +02:00
};
#define SIL3 14
const char *silbe3[SIL3] = {
"gul",
"gol",
"dol",
"tan",
"tar",
"tur",
"sur",
"sin",
"kur",
"kor",
"kar",
"dul",
"dol",
"bus",
2010-08-08 10:06:34 +02:00
};
static void dragon_name(unit * u)
2010-08-08 10:06:34 +02:00
{
char name[NAMESIZE + 1];
int rnd, ter = 0;
static int num_postfix;
char zText[32];
const char *str;
assert(u);
if (num_postfix == 0) {
for (num_postfix = 0;; ++num_postfix) {
sprintf(zText, "dragon_postfix_%d", num_postfix);
str = locale_getstring(default_locale, zText);
if (str == NULL)
break;
}
if (num_postfix == 0)
num_postfix = -1;
2010-08-08 10:06:34 +02:00
}
switch (rterrain(u->region)) {
case T_PLAIN:
ter = 1;
break;
case T_MOUNTAIN:
ter = 2;
break;
case T_DESERT:
ter = 3;
break;
case T_SWAMP:
ter = 4;
break;
case T_GLACIER:
ter = 5;
break;
default:
ter = 0;
2010-08-08 10:06:34 +02:00
}
if (num_postfix <=0) {
return;
}
else if (num_postfix < 6) {
rnd = rng_int() % num_postfix;
}
else {
rnd = num_postfix / 6;
rnd = (rng_int() % rnd) + ter * rnd;
}
sprintf(zText, "dragon_postfix_%d", rnd);
str = locale_getstring(default_locale, zText);
assert(str != NULL);
if (u->number > 1) {
const char *no_article = strchr((const char *)str, ' ');
assert(no_article);
/* TODO: localization */
sprintf(name, "Die %sn von %s", no_article + 1, rname(u->region,
default_locale));
}
else {
char n[32];
size_t sz;
sz = strlcpy(n, silbe1[rng_int() % SIL1], sizeof(n));
sz += strlcat(n, silbe2[rng_int() % SIL2], sizeof(n));
sz += strlcat(n, silbe3[rng_int() % SIL3], sizeof(n));
if (rng_int() % 5 > 2) {
sprintf(name, "%s, %s", n, str); /* "Name, der Titel" */
}
else {
sz = strlcpy(name, (const char *)str, sizeof(name)); /* "Der Titel Name" */
name[0] = (char)toupper(name[0]); /* TODO: UNICODE - should use towupper() */
sz += strlcat(name, " ", sizeof(name));
sz += strlcat(name, n, sizeof(name));
}
if (rng_int() % 3 == 0) {
sz += strlcat(name, " von ", sizeof(name));
sz += strlcat(name, (const char *)rname(u->region, default_locale), sizeof(name));
}
2010-08-08 10:06:34 +02:00
}
unit_setname(u, name);
2010-08-08 10:06:34 +02:00
}
/* Dracoide */
#define DRAC_PRE 13
static const char *drac_pre[DRAC_PRE] = {
"Siss",
"Xxaa",
"Shht",
"X'xixi",
"Xar",
"X'zish",
"X",
"Sh",
"R",
"Z",
"Y",
"L",
"Ck",
2010-08-08 10:06:34 +02:00
};
#define DRAC_MID 12
static const char *drac_mid[DRAC_MID] = {
"siss",
"xxaa",
"shht",
"xxi",
"xar",
"x'zish",
"x",
"sh",
"r",
"z'ck",
"y",
"rl"
2010-08-08 10:06:34 +02:00
};
#define DRAC_SUF 10
static const char *drac_suf[DRAC_SUF] = {
"xil",
"shh",
"s",
"x",
"arr",
"lll",
"lll",
"shack",
"ck",
"k"
2010-08-08 10:06:34 +02:00
};
static void dracoid_name(unit * u)
2010-08-08 10:06:34 +02:00
{
2016-08-30 08:56:40 +02:00
static char name[NAMESIZE + 1];
int mid_syllabels;
size_t sz;
2015-05-12 18:07:47 +02:00
/* ignore u */
UNUSED_ARG(u);
/* Wieviele Mittelteile? */
mid_syllabels = rng_int() % 4;
sz = strlcpy(name, drac_pre[rng_int() % DRAC_PRE], sizeof(name));
while (mid_syllabels > 0) {
mid_syllabels--;
if (rng_int() % 10 < 4)
strlcat(name, "'", sizeof(name));
sz += strlcat(name, drac_mid[rng_int() % DRAC_MID], sizeof(name));
}
sz += strlcat(name, drac_suf[rng_int() % DRAC_SUF], sizeof(name));
unit_setname(u, name);
2010-08-08 10:06:34 +02:00
}
/** returns an abbreviation of a string.
* TODO: buflen is being ignored */
2011-03-07 08:02:35 +01:00
const char *abkz(const char *s, char *buf, size_t buflen, size_t maxchars)
2010-08-08 10:06:34 +02:00
{
const char *p = s;
char *bufp;
unsigned int c = 0;
size_t bpt, i;
ucs4_t ucs;
size_t size;
int result;
2017-01-10 18:07:36 +01:00
UNUSED_ARG(buflen);
2017-02-20 07:47:36 +01:00
/* Pr<50>fen, ob Kurz genug */
if (strlen(s) <= maxchars) {
return s;
2010-08-08 10:06:34 +02:00
}
2017-02-20 07:47:36 +01:00
/* Anzahl der W<>rter feststellen */
while (*p != 0) {
result = unicode_utf8_to_ucs4(&ucs, p, &size);
assert(result == 0 || "damnit, we're not handling invalid input here!");
2017-02-20 07:47:36 +01:00
/* Leerzeichen <20>berspringen */
while (*p != 0 && !iswalnum((wint_t)ucs)) {
p += size;
result = unicode_utf8_to_ucs4(&ucs, p, &size);
assert(result == 0 || "damnit, we're not handling invalid input here!");
}
2017-02-20 07:47:36 +01:00
/* Counter erh<72>hen */
if (*p != 0)
++c;
2017-02-20 07:47:36 +01:00
/* alnums <20>berspringen */
while (*p != 0 && iswalnum((wint_t)ucs)) {
p += size;
result = unicode_utf8_to_ucs4(&ucs, p, &size);
assert(result == 0 || "damnit, we're not handling invalid input here!");
}
2010-08-08 10:06:34 +02:00
}
2017-02-20 07:47:36 +01:00
/* Buchstaben pro Teilk<6C>rzel = MAX(1,max/AnzWort) */
bpt = (c > 0) ? MAX(1, maxchars / c) : 1;
2010-08-08 10:06:34 +02:00
2017-02-20 07:47:36 +01:00
/* Einzelne W<>rter anspringen und jeweils die ersten BpT kopieren */
2010-08-08 10:06:34 +02:00
p = s;
c = 0;
bufp = buf;
2010-08-08 10:06:34 +02:00
result = unicode_utf8_to_ucs4(&ucs, p, &size);
assert(result == 0 || "damnit, we're not handling invalid input here!");
2010-08-08 10:06:34 +02:00
while (*p != 0 && c < maxchars) {
2017-02-20 07:47:36 +01:00
/* Leerzeichen <20>berspringen */
2010-08-08 10:06:34 +02:00
while (*p != 0 && !iswalnum((wint_t)ucs)) {
p += size;
result = unicode_utf8_to_ucs4(&ucs, p, &size);
assert(result == 0 || "damnit, we're not handling invalid input here!");
}
2010-08-08 10:06:34 +02:00
2017-02-20 07:47:36 +01:00
/* alnums <20>bertragen */
2010-08-08 10:06:34 +02:00
for (i = 0; i < bpt && *p != 0 && iswalnum((wint_t)ucs); ++i) {
memcpy(bufp, p, size);
p += size;
bufp += size;
++c;
2010-08-08 10:06:34 +02:00
result = unicode_utf8_to_ucs4(&ucs, p, &size);
assert(result == 0 || "damnit, we're not handling invalid input here!");
}
2010-08-08 10:06:34 +02:00
2017-02-20 07:47:36 +01:00
/* Bis zum n<>chsten Leerzeichen */
2010-08-08 10:06:34 +02:00
while (c < maxchars && *p != 0 && iswalnum((wint_t)ucs)) {
p += size;
result = unicode_utf8_to_ucs4(&ucs, p, &size);
assert(result == 0 || "damnit, we're not handling invalid input here!");
}
2010-08-08 10:06:34 +02:00
}
*bufp = 0;
2010-08-08 10:06:34 +02:00
return buf;
2010-08-08 10:06:34 +02:00
}
2011-03-07 08:02:35 +01:00
void register_names(void)
2010-08-08 10:06:34 +02:00
{
/* function name
* generate a name for a nonplayerunit
* race->name_unit() */
register_race_function(undead_name, "name_undead");
register_race_function(skeleton_name, "name_skeleton");
register_race_function(zombie_name, "name_zombie");
register_race_function(ghoul_name, "name_ghoul");
register_race_function(dracoid_name, "name_dracoid");
register_race_function(dragon_name, "name_dragon");
register_race_function(dragon_name, "name_youngdragon");
register_race_function(dragon_name, "name_wyrm");
2010-08-08 10:06:34 +02:00
}