Merge pull request #377 from ennorehling/develop

Bug 2152: Parteitarnung
This commit is contained in:
Enno Rehling 2015-11-09 16:30:57 +01:00
commit e9ed30f9db
22 changed files with 157 additions and 88 deletions

View File

@ -57,7 +57,7 @@
"rules.owners.force_leave": false, "rules.owners.force_leave": false,
"rules.monsters.attack_chance": 0.1, "rules.monsters.attack_chance": 0.1,
"rules.transfermen": false, "rules.transfermen": false,
"rules.stealth.faction": true, "stealth.faction.other": false,
"rules.stealth.anon_battle": false, "rules.stealth.anon_battle": false,
"rules.check_overload": false, "rules.check_overload": false,
"rules.combat.goblinbonus": 3, "rules.combat.goblinbonus": 3,

View File

@ -55,7 +55,7 @@
"rules.reserve.twophase": true, "rules.reserve.twophase": true,
"rules.owners.force_leave": false, "rules.owners.force_leave": false,
"rules.transfermen": false, "rules.transfermen": false,
"rules.stealth.faction": true, "stealth.faction.other": false,
"rules.stealth.anon_battle": false, "rules.stealth.anon_battle": false,
"rules.check_overload": false, "rules.check_overload": false,
"rules.combat.goblinbonus": 3, "rules.combat.goblinbonus": 3,

View File

@ -19,36 +19,33 @@ end
function setup() function setup()
eressea.game.reset() eressea.game.reset()
set_rule('rules.food.flags', '4') set_rule('rules.food.flags', '4')
set_rule('rules.magic.playerschools', '')
local r = region.create(0,0, "plain") local r = region.create(0,0, "plain")
f = faction.create("stealthy@eressea.de", "human", "de") f = faction.create("stealthy@eressea.de", "human", "de")
u = unit.create(f, r, 1) u = unit.create(f, r, 1)
f = faction.create("stealth@eressea.de", "human", "de") f = faction.create("stealth@eressea.de", "human", "de")
unit.create(f, r, 1) -- TARNE PARTEI NUMMER <no> must have a unit in the region
end end
function teardown() function teardown()
set_rule('rules.food.flags') set_rule('rules.food.flags')
set_rule('rules.magic.playerschools')
set_rule('rules.stealth.faction')
end end
function test_stealth_faction_on() function test_stealth_faction_on()
u:clear_orders() u:clear_orders()
u:add_order("TARNEN PARTEI") u:add_order("TARNEN PARTEI")
set_rule("rules.stealth.faction", 1)
process_orders() process_orders()
assert_not_match("Partei", report.report_unit(u, f)) assert_not_match("Partei", report.report_unit(u, f))
assert_match("anonym", report.report_unit(u, f)) assert_match("anonym", report.report_unit(u, f))
end end
function test_stealth_faction_off() function test_stealth_faction_other()
u.name = "Enno"
u:clear_orders() u:clear_orders()
u:add_order("TARNEN PARTEI") u:add_order("TARNEN PARTEI NUMMER " .. itoa36(f.id))
set_rule("rules.stealth.faction", 0)
process_orders() process_orders()
assert_match("Partei", report.report_unit(u, f)) assert_match(itoa36(f.id), report.report_unit(u, f))
assert_not_match("anonym", report.report_unit(u, f)) assert_not_match("anonym", report.report_unit(u, f))
end end

View File

@ -6,31 +6,29 @@ local f
local u local u
function setup() function setup()
eressea.game.reset() eressea.game.reset()
eressea.settings.set("rules.food.flags", "4") eressea.settings.set("rules.food.flags", "4")
local r = region.create(0,0, "plain") local r = region.create(0,0, "plain")
f = faction.create("stealth1@eressea.de", "human", "de") f = faction.create("stealth1@eressea.de", "human", "de")
u = unit.create(f, r, 1) u = unit.create(f, r, 1)
f = faction.create("stealth2@eressea.de", "human", "de") f = faction.create("stealth2@eressea.de", "human", "de")
end end
function test_stealth_faction_on() function test_stealth_faction_on()
u:clear_orders() u:clear_orders()
u:add_order("TARNE PARTEI") u:add_order("TARNE PARTEI")
eressea.settings.set("rules.stealth.faction", 1) process_orders()
process_orders() assert_not_match("Partei", report.report_unit(u, f))
assert_not_match("Partei", report.report_unit(u, f)) assert_match("anonym", report.report_unit(u, f))
assert_match("anonym", report.report_unit(u, f))
end end
function test_stealth_faction_off() function test_stealth_faction_other()
u:clear_orders() u:clear_orders()
u:add_order("TARNE PARTEI") u:add_order("TARNE PARTEI " .. itoa36(f.id))
eressea.settings.set("rules.stealth.faction", 0) process_orders()
process_orders() assert_not_match("anonym", report.report_unit(u, f))
assert_match("Partei", report.report_unit(u, f)) assert_not_match(itoa36(f.id), report.report_unit(u, f))
assert_not_match("anonym", report.report_unit(u, f))
end end

View File

@ -1,6 +1,7 @@
PROJECT(attributes C) PROJECT(attributes C)
SET(_TEST_FILES SET(_TEST_FILES
stealth.test.c stealth.test.c
otherfaction.test.c
) )
SET(_FILES SET(_FILES

View File

@ -40,13 +40,9 @@ void write_of(const struct attrib *a, const void *owner, struct storage *store)
int read_of(struct attrib *a, void *owner, struct storage *store) int read_of(struct attrib *a, void *owner, struct storage *store)
{ /* return 1 on success, 0 if attrib needs removal */ { /* return 1 on success, 0 if attrib needs removal */
int of; int of;
static int rule = -1;
if (rule < 0) {
rule = rule_stealth_faction();
}
READ_INT(store, &of); READ_INT(store, &of);
if (rule & 2) { if (rule_stealth_other()) {
a->data.v = findfaction(of); a->data.v = findfaction(of);
if (a->data.v) { if (a->data.v) {
return AT_READ_OK; return AT_READ_OK;

View File

@ -20,6 +20,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
extern "C" { extern "C" {
#endif #endif
struct unit;
struct faction; struct faction;
struct attrib; struct attrib;
extern struct attrib_type at_otherfaction; extern struct attrib_type at_otherfaction;

View File

@ -0,0 +1,57 @@
#include <platform.h>
#include "otherfaction.h"
#include <kernel/config.h>
#include <kernel/unit.h>
#include <kernel/region.h>
#include <kernel/faction.h>
#include <util/attrib.h>
#include <CuTest.h>
#include <tests.h>
#include <stdlib.h>
#include <assert.h>
static void test_rules(CuTest *tc) {
test_cleanup();
set_param(&global.parameters, "stealth.faction.other", NULL);
CuAssertIntEquals(tc, true, rule_stealth_other());
set_param(&global.parameters, "stealth.faction.other", "0");
CuAssertIntEquals(tc, false, rule_stealth_other());
set_param(&global.parameters, "stealth.faction.other", "1");
CuAssertIntEquals(tc, true, rule_stealth_other());
set_param(&global.parameters, "stealth.faction.anon", NULL);
CuAssertIntEquals(tc, true, rule_stealth_anon());
set_param(&global.parameters, "stealth.faction.anon", "0");
CuAssertIntEquals(tc, false, rule_stealth_anon());
set_param(&global.parameters, "stealth.faction.anon", "1");
CuAssertIntEquals(tc, true, rule_stealth_anon());
test_cleanup();
}
static void test_otherfaction(CuTest *tc) {
unit *u;
faction *f;
test_cleanup();
u = test_create_unit(test_create_faction(0), test_create_region(0, 0, 0));
f = test_create_faction(0);
set_param(&global.parameters, "stealth.faction.other", "1");
CuAssertIntEquals(tc, true, rule_stealth_other());
CuAssertPtrEquals(tc, u->faction, visible_faction(f, u));
a_add(&u->attribs, make_otherfaction(f));
CuAssertPtrEquals(tc, f, visible_faction(f, u));
test_cleanup();
}
CuSuite *get_otherfaction_suite(void)
{
CuSuite *suite = CuSuiteNew();
SUITE_ADD_TEST(suite, test_rules);
SUITE_ADD_TEST(suite, test_otherfaction);
return suite;
}

View File

@ -11,12 +11,11 @@
#include <stdlib.h> #include <stdlib.h>
#include <assert.h> #include <assert.h>
void test_stealth(CuTest *tc) { static void test_stealth(CuTest *tc) {
unit *u; unit *u;
test_cleanup(); test_cleanup();
test_create_world(); u = test_create_unit(test_create_faction(test_create_race("human")), test_create_region(0, 0, 0));
u = test_create_unit(test_create_faction(test_create_race("human")), findregion(0, 0));
set_level(u, SK_STEALTH, 2); set_level(u, SK_STEALTH, 2);
CuAssertIntEquals(tc, -1, u_geteffstealth(u)); CuAssertIntEquals(tc, -1, u_geteffstealth(u));
CuAssertIntEquals(tc, 2, eff_stealth(u, u->region)); CuAssertIntEquals(tc, 2, eff_stealth(u, u->region));

View File

@ -25,8 +25,8 @@ static void test_make_fighter(CuTest * tc)
const resource_type *rtype; const resource_type *rtype;
test_cleanup(); test_cleanup();
test_create_world(); test_create_horse();
r = findregion(0, 0); r = test_create_region(0, 0, 0);
f = test_create_faction(NULL); f = test_create_faction(NULL);
au = test_create_unit(f, r); au = test_create_unit(f, r);
enable_skill(SK_MAGIC, true); enable_skill(SK_MAGIC, true);
@ -75,8 +75,7 @@ static void test_defenders_get_building_bonus(CuTest * tc)
building_type * btype; building_type * btype;
test_cleanup(); test_cleanup();
test_create_world(); r = test_create_region(0, 0, 0);
r = findregion(0, 0);
btype = bt_get_or_create("castle"); btype = bt_get_or_create("castle");
btype->protection = &add_two; btype->protection = &add_two;
bld = test_create_building(r, btype); bld = test_create_building(r, btype);
@ -120,8 +119,7 @@ static void test_attackers_get_no_building_bonus(CuTest * tc)
building_type * btype; building_type * btype;
test_cleanup(); test_cleanup();
test_create_world(); r = test_create_region(0, 0, 0);
r = findregion(0, 0);
btype = bt_get_or_create("castle"); btype = bt_get_or_create("castle");
btype->protection = &add_two; btype->protection = &add_two;
bld = test_create_building(r, btype); bld = test_create_building(r, btype);
@ -151,8 +149,7 @@ static void test_building_bonus_respects_size(CuTest * tc)
faction * f; faction * f;
test_cleanup(); test_cleanup();
test_create_world(); r = test_create_region(0, 0, 0);
r = findregion(0, 0);
btype = bt_get_or_create("castle"); btype = bt_get_or_create("castle");
btype->protection = &add_two; btype->protection = &add_two;
bld = test_create_building(r, btype); bld = test_create_building(r, btype);

View File

@ -308,7 +308,7 @@ static void test_give_okay(CuTest * tc) {
env.f2 = env.f1 = test_create_faction(0); env.f2 = env.f1 = test_create_faction(0);
setup_give(&env); setup_give(&env);
set_param(&global.parameters, "rules.give", "0"); set_param(&global.parameters, "rules.give.flags", "0");
CuAssertPtrEquals(tc, 0, check_give(env.src, env.dst, 0)); CuAssertPtrEquals(tc, 0, check_give(env.src, env.dst, 0));
test_cleanup(); test_cleanup();
} }
@ -322,7 +322,7 @@ static void test_give_denied_by_rules(CuTest * tc) {
env.f2 = test_create_faction(0); env.f2 = test_create_faction(0);
setup_give(&env); setup_give(&env);
set_param(&global.parameters, "rules.give", "0"); set_param(&global.parameters, "rules.give.flags", "0");
CuAssertPtrNotNull(tc, msg = check_give(env.src, env.dst, 0)); CuAssertPtrNotNull(tc, msg = check_give(env.src, env.dst, 0));
msg_release(msg); msg_release(msg);
test_cleanup(); test_cleanup();

View File

@ -821,7 +821,7 @@ build_building(unit * u, const building_type * btype, int id, int want, order *
/* gebäude fertig */ /* gebäude fertig */
new_order = default_order(lang); new_order = default_order(lang);
} }
else if (want != INT_MAX) { else if (want != INT_MAX && btname) {
/* reduzierte restgröße */ /* reduzierte restgröße */
const char *hasspace = strchr(btname, ' '); const char *hasspace = strchr(btname, ' ');
if (hasspace) { if (hasspace) {

View File

@ -27,10 +27,14 @@ typedef struct build_fixture {
static unit * setup_build(build_fixture *bf) { static unit * setup_build(build_fixture *bf) {
test_cleanup(); test_cleanup();
test_create_world(); init_resources();
test_create_itemtype("stone");
test_create_buildingtype("castle");
bf->rc = test_create_race("human"); bf->rc = test_create_race("human");
bf->r = findregion(0, 0); bf->r = test_create_region(0, 0, 0);
bf->f = test_create_faction(bf->rc); bf->f = test_create_faction(bf->rc);
bf->f->locale = get_or_create_locale("de");
assert(bf->rc && bf->f && bf->r); assert(bf->rc && bf->f && bf->r);
bf->u = test_create_unit(bf->f, bf->r); bf->u = test_create_unit(bf->f, bf->r);
assert(bf->u); assert(bf->u);
@ -134,6 +138,7 @@ static void test_build_limits(CuTest *tc) {
u = setup_build(&bf); u = setup_build(&bf);
rtype = bf.cons.materials[0].rtype; rtype = bf.cons.materials[0].rtype;
assert(rtype);
i_change(&u->items, rtype->itype, 1); i_change(&u->items, rtype->itype, 1);
set_level(u, SK_ARMORER, bf.cons.minskill); set_level(u, SK_ARMORER, bf.cons.minskill);
CuAssertIntEquals(tc, 1, build(u, &bf.cons, 0, 10)); CuAssertIntEquals(tc, 1, build(u, &bf.cons, 0, 10));

View File

@ -1160,11 +1160,13 @@ void set_param(struct param **p, const char *key, const char *data)
} }
p = &(*p)->next; p = &(*p)->next;
} }
par = malloc(sizeof(param)); if (data) {
par->name = _strdup(key); par = malloc(sizeof(param));
par->data = _strdup(data); par->name = _strdup(key);
par->next = *p; par->data = _strdup(data);
*p = par; par->next = *p;
*p = par;
}
} }
void kernel_done(void) void kernel_done(void)
@ -1327,12 +1329,24 @@ int cmp_current_owner(const building * b, const building * a)
return -1; return -1;
} }
bool rule_stealth_faction(void) bool rule_stealth_other(void)
{ {
static int gamecookie = -1; static int gamecookie = -1;
static int rule = -1; static int rule = -1;
if (rule < 0 || gamecookie != global.cookie) { if (rule < 0 || gamecookie != global.cookie) {
rule = get_param_int(global.parameters, "rules.stealth.faction", 1); rule = get_param_int(global.parameters, "stealth.faction.other", 1);
gamecookie = global.cookie;
assert(rule >= 0);
}
return rule != 0;
}
bool rule_stealth_anon(void)
{
static int gamecookie = -1;
static int rule = -1;
if (rule < 0 || gamecookie != global.cookie) {
rule = get_param_int(global.parameters, "stealth.faction.anon", 1);
gamecookie = global.cookie; gamecookie = global.cookie;
assert(rule >= 0); assert(rule >= 0);
} }
@ -1351,13 +1365,13 @@ bool rule_region_owners(void)
return rule!=0; return rule!=0;
} }
int rule_auto_taxation(void) bool rule_auto_taxation(void)
{ {
static int gamecookie = -1; static int gamecookie = -1;
static int rule = -1; static int rule = -1;
if (rule < 0 || gamecookie != global.cookie) { if (rule < 0 || gamecookie != global.cookie) {
rule = rule =
get_param_int(global.parameters, "rules.economy.taxation", TAX_ORDER); get_param_int(global.parameters, "rules.economy.taxation", 0);
gamecookie = global.cookie; gamecookie = global.cookie;
assert(rule >= 0); assert(rule >= 0);
} }
@ -1659,10 +1673,10 @@ int entertainmoney(const region * r)
int rule_give(void) int rule_give(void)
{ {
return get_param_int(global.parameters, "rules.give", GIVE_DEFAULT); return get_param_int(global.parameters, "rules.give.flags", GIVE_DEFAULT);
} }
int markets_module(void) bool markets_module(void)
{ {
return get_param_int(global.parameters, "modules.markets", 0); return get_param_int(global.parameters, "modules.markets", 0);
} }

View File

@ -153,15 +153,14 @@ extern "C" {
bool rule_transfermen(void); bool rule_transfermen(void);
bool rule_region_owners(void); bool rule_region_owners(void);
bool rule_stealth_faction(void); bool rule_stealth_other(void); // units can pretend to be another faction, TARNE PARTEI <no>
bool rule_stealth_anon(void); // units can anonymize their faction, TARNE PARTEI [NICHT]
int rule_alliance_limit(void); int rule_alliance_limit(void);
int rule_faction_limit(void); int rule_faction_limit(void);
#define HARVEST_WORK 0x00 #define HARVEST_WORK 0x00
#define HARVEST_TAXES 0x01 #define HARVEST_TAXES 0x01
int rule_blessed_harvest(void); int rule_blessed_harvest(void);
#define TAX_ORDER 0x00 bool rule_auto_taxation(void);
#define TAX_OWNER 0x01
int rule_auto_taxation(void);
#define GIVE_SELF 1 #define GIVE_SELF 1
#define GIVE_PEASANTS 2 #define GIVE_PEASANTS 2
#define GIVE_LUXURIES 4 #define GIVE_LUXURIES 4
@ -227,7 +226,7 @@ extern "C" {
int besieged(const struct unit *u); int besieged(const struct unit *u);
int maxworkingpeasants(const struct region *r); int maxworkingpeasants(const struct region *r);
bool has_horses(const struct unit *u); bool has_horses(const struct unit *u);
int markets_module(void); bool markets_module(void);
int wage(const struct region *r, const struct faction *f, int wage(const struct region *r, const struct faction *f,
const struct race *rc, int in_turn); const struct race *rc, int in_turn);
int maintenance_cost(const struct unit *u); int maintenance_cost(const struct unit *u);

View File

@ -402,16 +402,16 @@ void destroyfaction(faction * f)
/* units of other factions that were disguised as this faction /* units of other factions that were disguised as this faction
* have their disguise replaced by ordinary faction hiding. */ * have their disguise replaced by ordinary faction hiding. */
if (rule_stealth_faction()) { if (rule_stealth_other()) {
region *rc; region *rc;
for (rc = regions; rc; rc = rc->next) { for (rc = regions; rc; rc = rc->next) {
for (u = rc->units; u; u = u->next) { for (u = rc->units; u; u = u->next) {
attrib *a = a_find(u->attribs, &at_otherfaction); attrib *a = a_find(u->attribs, &at_otherfaction);
if (!a) if (a && get_otherfaction(a) == f) {
continue;
if (get_otherfaction(a) == f) {
a_removeall(&u->attribs, &at_otherfaction); a_removeall(&u->attribs, &at_otherfaction);
fset(u, UFL_ANON_FACTION); if (rule_stealth_anon()) {
fset(u, UFL_ANON_FACTION);
}
} }
} }
} }

View File

@ -687,7 +687,7 @@ unit *read_unit(struct gamedata *data)
setstatus(u, n); setstatus(u, n);
READ_INT(data->store, &u->flags); READ_INT(data->store, &u->flags);
u->flags &= UFL_SAVEMASK; u->flags &= UFL_SAVEMASK;
if ((u->flags & UFL_ANON_FACTION) && !rule_stealth_faction()) { if ((u->flags & UFL_ANON_FACTION) && !rule_stealth_anon()) {
/* if this rule is broken, then fix broken units */ /* if this rule is broken, then fix broken units */
u->flags -= UFL_ANON_FACTION; u->flags -= UFL_ANON_FACTION;
log_warning("%s was anonymous.\n", unitname(u)); log_warning("%s was anonymous.\n", unitname(u));
@ -1929,6 +1929,7 @@ gamedata *gamedata_open(const char *filename, const char *mode) {
return data; return data;
} }
} }
log_error("could not open %s: %s", filename, strerror(errno));
return 0; return 0;
} }

View File

@ -2188,7 +2188,7 @@ static int sp_ironkeeper(castorder * co)
guard(keeper, GUARD_MINING); guard(keeper, GUARD_MINING);
fset(keeper, UFL_ISNEW); fset(keeper, UFL_ISNEW);
/* Parteitarnen, damit man nicht sofort weiß, wer dahinter steckt */ /* Parteitarnen, damit man nicht sofort weiß, wer dahinter steckt */
if (rule_stealth_faction()) { if (rule_stealth_anon()) {
fset(keeper, UFL_ANON_FACTION); fset(keeper, UFL_ANON_FACTION);
} }
@ -3630,7 +3630,7 @@ static int sp_charmingsong(castorder * co)
/* setze Parteitarnung, damit nicht sofort klar ist, wer dahinter /* setze Parteitarnung, damit nicht sofort klar ist, wer dahinter
* steckt */ * steckt */
if (rule_stealth_faction()) { if (rule_stealth_anon()) {
fset(target, UFL_ANON_FACTION); fset(target, UFL_ANON_FACTION);
} }
@ -4377,7 +4377,7 @@ static int sp_raisepeasants(castorder * co)
LOC(mage->faction->locale, "furious_mob"), mage); LOC(mage->faction->locale, "furious_mob"), mage);
fset(u2, UFL_LOCKED); fset(u2, UFL_LOCKED);
if (rule_stealth_faction()) { if (rule_stealth_anon()) {
fset(u2, UFL_ANON_FACTION); fset(u2, UFL_ANON_FACTION);
} }

View File

@ -215,7 +215,7 @@ int setstealth_cmd(unit * u, struct order *ord)
{ {
char token[64]; char token[64];
const char *s; const char *s;
int level, rule; int level;
init_order(ord); init_order(ord);
s = gettoken(token, sizeof(token)); s = gettoken(token, sizeof(token));
@ -288,13 +288,8 @@ int setstealth_cmd(unit * u, struct order *ord)
switch (findparam(s, u->faction->locale)) { switch (findparam(s, u->faction->locale)) {
case P_FACTION: case P_FACTION:
/* TARNE PARTEI [NICHT|NUMMER abcd] */ /* TARNE PARTEI [NICHT|NUMMER abcd] */
rule = rule_stealth_faction();
if (!rule) {
/* TARNE PARTEI is disabled */
break;
}
s = gettoken(token, sizeof(token)); s = gettoken(token, sizeof(token));
if (rule & 1) { if (rule_stealth_anon()) {
if (!s || *s == 0) { if (!s || *s == 0) {
fset(u, UFL_ANON_FACTION); fset(u, UFL_ANON_FACTION);
break; break;
@ -304,7 +299,7 @@ int setstealth_cmd(unit * u, struct order *ord)
break; break;
} }
} }
if (rule & 2) { if (rule_stealth_other()) {
if (get_keyword(s, u->faction->locale) == K_NUMBER) { if (get_keyword(s, u->faction->locale) == K_NUMBER) {
s = gettoken(token, sizeof(token)); s = gettoken(token, sizeof(token));
int nr = -1; int nr = -1;

View File

@ -121,6 +121,7 @@ int RunAllTests(int argc, char *argv[])
ADD_SUITE(move); ADD_SUITE(move);
ADD_SUITE(piracy); ADD_SUITE(piracy);
ADD_SUITE(stealth); ADD_SUITE(stealth);
ADD_SUITE(otherfaction);
ADD_SUITE(upkeep); ADD_SUITE(upkeep);
ADD_SUITE(vortex); ADD_SUITE(vortex);
ADD_SUITE(wormhole); ADD_SUITE(wormhole);

View File

@ -45,7 +45,7 @@ struct region *test_create_region(int x, int y, const terrain_type *terrain)
if (!terrain) { if (!terrain) {
terrain_type *t = get_or_create_terrain("plain"); terrain_type *t = get_or_create_terrain("plain");
t->size = 1000; t->size = 1000;
fset(t, LAND_REGION); fset(t, LAND_REGION|CAVALRY_REGION|FOREST_REGION);
terraform_region(r, t); terraform_region(r, t);
} else } else
terraform_region(r, terrain); terraform_region(r, terrain);
@ -196,6 +196,16 @@ void test_translate_param(const struct locale *lang, param_t param, const char *
add_translation(cb, text, param); add_translation(cb, text, param);
} }
item_type *test_create_horse(void) {
item_type * itype;
itype = test_create_itemtype("horse");
itype->flags |= ITF_BIG | ITF_ANIMAL;
itype->weight = 5000;
itype->capacity = 7000;
return itype;
}
/** creates a small world and some stuff in it. /** creates a small world and some stuff in it.
* two terrains: 'plain' and 'ocean' * two terrains: 'plain' and 'ocean'
* one race: 'human' * one race: 'human'
@ -216,10 +226,7 @@ void test_create_world(void)
locale_setstring(loc, "money", "SILBER"); locale_setstring(loc, "money", "SILBER");
init_resources(); init_resources();
itype = test_create_itemtype("horse"); test_create_horse();
itype->flags |= ITF_BIG | ITF_ANIMAL;
itype->weight = 5000;
itype->capacity = 7000;
itype = test_create_itemtype("cart"); itype = test_create_itemtype("cart");
itype->flags |= ITF_BIG | ITF_VEHICLE; itype->flags |= ITF_BIG | ITF_VEHICLE;

View File

@ -34,6 +34,7 @@ extern "C" {
struct faction *test_create_faction(const struct race *rc); struct faction *test_create_faction(const struct race *rc);
struct unit *test_create_unit(struct faction *f, struct region *r); struct unit *test_create_unit(struct faction *f, struct region *r);
void test_create_world(void); void test_create_world(void);
struct item_type * test_create_horse(void);
struct building * test_create_building(struct region * r, const struct building_type * btype); struct building * test_create_building(struct region * r, const struct building_type * btype);
struct ship * test_create_ship(struct region * r, const struct ship_type * stype); struct ship * test_create_ship(struct region * r, const struct ship_type * stype);
struct item_type * test_create_itemtype(const char * name); struct item_type * test_create_itemtype(const char * name);