2011-03-13 02:01:20 +01:00
|
|
|
#include <platform.h>
|
2014-08-27 06:40:18 +02:00
|
|
|
|
2011-03-13 02:01:20 +01:00
|
|
|
#include "battle.h"
|
2011-03-16 05:04:38 +01:00
|
|
|
#include "skill.h"
|
2014-08-27 06:40:18 +02:00
|
|
|
|
2015-11-21 19:02:14 +01:00
|
|
|
#include <kernel/config.h>
|
2014-08-27 06:40:18 +02:00
|
|
|
#include <kernel/building.h>
|
|
|
|
#include <kernel/faction.h>
|
|
|
|
#include <kernel/item.h>
|
|
|
|
#include <kernel/race.h>
|
|
|
|
#include <kernel/region.h>
|
|
|
|
#include <kernel/unit.h>
|
2015-01-12 20:23:25 +01:00
|
|
|
#include <util/functions.h>
|
2012-06-24 07:36:17 +02:00
|
|
|
|
2012-05-31 04:17:08 +02:00
|
|
|
#include <CuTest.h>
|
2012-06-24 07:36:17 +02:00
|
|
|
#include "tests.h"
|
2011-03-13 02:01:20 +01:00
|
|
|
|
2011-03-16 05:04:38 +01:00
|
|
|
static void test_make_fighter(CuTest * tc)
|
|
|
|
{
|
2014-06-25 07:44:05 +02:00
|
|
|
unit *au;
|
|
|
|
region *r;
|
|
|
|
fighter *af;
|
|
|
|
battle *b;
|
|
|
|
side *as;
|
|
|
|
faction * f;
|
|
|
|
const resource_type *rtype;
|
2011-03-16 05:04:38 +01:00
|
|
|
|
2014-06-25 07:44:05 +02:00
|
|
|
test_cleanup();
|
2015-11-07 23:34:51 +01:00
|
|
|
test_create_horse();
|
|
|
|
r = test_create_region(0, 0, 0);
|
2015-01-12 20:23:25 +01:00
|
|
|
f = test_create_faction(NULL);
|
2014-06-25 07:44:05 +02:00
|
|
|
au = test_create_unit(f, r);
|
|
|
|
enable_skill(SK_MAGIC, true);
|
|
|
|
enable_skill(SK_RIDING, true);
|
|
|
|
set_level(au, SK_MAGIC, 3);
|
|
|
|
set_level(au, SK_RIDING, 3);
|
|
|
|
au->status = ST_BEHIND;
|
|
|
|
rtype = get_resourcetype(R_HORSE);
|
|
|
|
i_change(&au->items, rtype->itype, 1);
|
2015-01-30 20:37:14 +01:00
|
|
|
|
2014-06-25 07:44:05 +02:00
|
|
|
b = make_battle(r);
|
|
|
|
as = make_side(b, au->faction, 0, 0, 0);
|
|
|
|
af = make_fighter(b, au, as, false);
|
2015-01-30 20:37:14 +01:00
|
|
|
|
2014-06-25 07:44:05 +02:00
|
|
|
CuAssertIntEquals(tc, 1, b->nfighters);
|
|
|
|
CuAssertPtrEquals(tc, 0, af->building);
|
|
|
|
CuAssertPtrEquals(tc, as, af->side);
|
|
|
|
CuAssertIntEquals(tc, 0, af->run.hp);
|
|
|
|
CuAssertIntEquals(tc, ST_BEHIND, af->status);
|
|
|
|
CuAssertIntEquals(tc, 0, af->run.number);
|
|
|
|
CuAssertIntEquals(tc, au->hp, af->person[0].hp);
|
|
|
|
CuAssertIntEquals(tc, 1, af->person[0].speed);
|
|
|
|
CuAssertIntEquals(tc, au->number, af->alive);
|
|
|
|
CuAssertIntEquals(tc, 0, af->removed);
|
|
|
|
CuAssertIntEquals(tc, 3, af->magic);
|
|
|
|
CuAssertIntEquals(tc, 1, af->horses);
|
|
|
|
CuAssertIntEquals(tc, 0, af->elvenhorses);
|
2014-12-12 11:13:25 +01:00
|
|
|
free_battle(b);
|
|
|
|
test_cleanup();
|
2011-03-16 05:04:38 +01:00
|
|
|
}
|
|
|
|
|
2015-01-12 10:55:07 +01:00
|
|
|
static int add_two(building * b, unit * u, building_bonus bonus) {
|
2015-01-30 20:37:14 +01:00
|
|
|
return 2;
|
2011-03-13 02:01:20 +01:00
|
|
|
}
|
|
|
|
|
2011-03-13 02:54:57 +01:00
|
|
|
static void test_defenders_get_building_bonus(CuTest * tc)
|
2011-03-13 02:01:20 +01:00
|
|
|
{
|
2015-01-12 16:57:05 +01:00
|
|
|
unit *du, *au;
|
|
|
|
region *r;
|
|
|
|
building * bld;
|
|
|
|
fighter *df, *af;
|
|
|
|
battle *b;
|
|
|
|
side *ds, *as;
|
|
|
|
int diff;
|
|
|
|
troop dt, at;
|
|
|
|
building_type * btype;
|
|
|
|
|
|
|
|
test_cleanup();
|
2015-11-07 23:34:51 +01:00
|
|
|
r = test_create_region(0, 0, 0);
|
2015-01-12 16:57:05 +01:00
|
|
|
btype = bt_get_or_create("castle");
|
|
|
|
btype->protection = &add_two;
|
|
|
|
bld = test_create_building(r, btype);
|
|
|
|
bld->size = 10;
|
|
|
|
|
2015-01-12 20:23:25 +01:00
|
|
|
du = test_create_unit(test_create_faction(NULL), r);
|
|
|
|
au = test_create_unit(test_create_faction(NULL), r);
|
2015-01-12 16:57:05 +01:00
|
|
|
u_set_building(du, bld);
|
|
|
|
|
|
|
|
b = make_battle(r);
|
|
|
|
ds = make_side(b, du->faction, 0, 0, 0);
|
|
|
|
df = make_fighter(b, du, ds, false);
|
|
|
|
as = make_side(b, au->faction, 0, 0, 0);
|
|
|
|
af = make_fighter(b, au, as, true);
|
|
|
|
|
|
|
|
CuAssertPtrEquals(tc, bld, df->building);
|
|
|
|
CuAssertPtrEquals(tc, 0, af->building);
|
|
|
|
|
|
|
|
dt.fighter = df;
|
|
|
|
dt.index = 0;
|
|
|
|
at.fighter = af;
|
|
|
|
at.index = 0;
|
|
|
|
|
|
|
|
diff = skilldiff(at, dt, 0);
|
|
|
|
CuAssertIntEquals(tc, -2, diff);
|
|
|
|
|
|
|
|
diff = skilldiff(dt, at, 0);
|
|
|
|
CuAssertIntEquals(tc, 0, diff);
|
2014-12-12 11:13:25 +01:00
|
|
|
free_battle(b);
|
|
|
|
test_cleanup();
|
2011-03-13 02:54:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_attackers_get_no_building_bonus(CuTest * tc)
|
|
|
|
{
|
2015-01-12 16:57:05 +01:00
|
|
|
unit *au;
|
|
|
|
region *r;
|
|
|
|
building * bld;
|
|
|
|
fighter *af;
|
|
|
|
battle *b;
|
|
|
|
side *as;
|
|
|
|
building_type * btype;
|
|
|
|
|
|
|
|
test_cleanup();
|
2015-11-07 23:34:51 +01:00
|
|
|
r = test_create_region(0, 0, 0);
|
2015-01-12 16:57:05 +01:00
|
|
|
btype = bt_get_or_create("castle");
|
|
|
|
btype->protection = &add_two;
|
|
|
|
bld = test_create_building(r, btype);
|
|
|
|
bld->size = 10;
|
|
|
|
|
2015-01-12 20:23:25 +01:00
|
|
|
au = test_create_unit(test_create_faction(NULL), r);
|
2015-01-12 16:57:05 +01:00
|
|
|
u_set_building(au, bld);
|
|
|
|
|
|
|
|
b = make_battle(r);
|
|
|
|
as = make_side(b, au->faction, 0, 0, 0);
|
|
|
|
af = make_fighter(b, au, as, true);
|
|
|
|
|
|
|
|
CuAssertPtrEquals(tc, 0, af->building);
|
2014-12-12 11:13:25 +01:00
|
|
|
free_battle(b);
|
|
|
|
test_cleanup();
|
2011-03-13 02:01:20 +01:00
|
|
|
}
|
|
|
|
|
2011-03-16 05:04:38 +01:00
|
|
|
static void test_building_bonus_respects_size(CuTest * tc)
|
|
|
|
{
|
2015-01-12 16:57:05 +01:00
|
|
|
unit *au, *du;
|
|
|
|
region *r;
|
|
|
|
building * bld;
|
|
|
|
fighter *af, *df;
|
|
|
|
battle *b;
|
|
|
|
side *as;
|
|
|
|
building_type * btype;
|
|
|
|
faction * f;
|
|
|
|
|
|
|
|
test_cleanup();
|
2015-11-07 23:34:51 +01:00
|
|
|
r = test_create_region(0, 0, 0);
|
2015-01-12 16:57:05 +01:00
|
|
|
btype = bt_get_or_create("castle");
|
|
|
|
btype->protection = &add_two;
|
|
|
|
bld = test_create_building(r, btype);
|
|
|
|
bld->size = 10;
|
|
|
|
|
2015-01-12 20:23:25 +01:00
|
|
|
f = test_create_faction(NULL);
|
2015-01-12 16:57:05 +01:00
|
|
|
au = test_create_unit(f, r);
|
|
|
|
scale_number(au, 9);
|
|
|
|
u_set_building(au, bld);
|
|
|
|
du = test_create_unit(f, r);
|
|
|
|
u_set_building(du, bld);
|
|
|
|
scale_number(du, 2);
|
|
|
|
|
|
|
|
b = make_battle(r);
|
|
|
|
as = make_side(b, au->faction, 0, 0, 0);
|
|
|
|
af = make_fighter(b, au, as, false);
|
|
|
|
df = make_fighter(b, du, as, false);
|
|
|
|
|
|
|
|
CuAssertPtrEquals(tc, bld, af->building);
|
|
|
|
CuAssertPtrEquals(tc, 0, df->building);
|
2014-12-12 11:13:25 +01:00
|
|
|
free_battle(b);
|
|
|
|
test_cleanup();
|
2011-03-16 05:04:38 +01:00
|
|
|
}
|
|
|
|
|
2015-01-12 16:57:05 +01:00
|
|
|
static void test_building_defence_bonus(CuTest * tc)
|
|
|
|
{
|
|
|
|
unit *au;
|
|
|
|
region *r;
|
|
|
|
building * bld;
|
|
|
|
building_type * btype;
|
|
|
|
faction * f;
|
|
|
|
int def;
|
2015-10-14 12:09:35 +02:00
|
|
|
|
2015-01-12 16:57:05 +01:00
|
|
|
test_cleanup();
|
2015-10-14 12:09:35 +02:00
|
|
|
r = test_create_region(0, 0, 0);
|
|
|
|
btype = test_create_buildingtype("castle");
|
2015-01-30 20:37:14 +01:00
|
|
|
btype->protection = (int(*)(struct building *, struct unit *, building_bonus))get_function("building_protection");
|
2015-01-12 16:57:05 +01:00
|
|
|
btype->construction->defense_bonus = 3;
|
|
|
|
bld = test_create_building(r, btype);
|
|
|
|
bld->size = 1;
|
2015-01-30 20:37:14 +01:00
|
|
|
|
2015-01-12 20:23:25 +01:00
|
|
|
f = test_create_faction(NULL);
|
2015-01-12 16:57:05 +01:00
|
|
|
au = test_create_unit(f, r);
|
|
|
|
scale_number(au, 1);
|
|
|
|
u_set_building(au, bld);
|
|
|
|
|
|
|
|
def = btype->protection(bld, au, DEFENSE_BONUS);
|
|
|
|
CuAssertIntEquals(tc, 3, def);
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2015-11-21 19:02:14 +01:00
|
|
|
static fighter *setup_fighter(battle **bp, unit *u) {
|
2015-11-03 18:59:09 +01:00
|
|
|
battle *b;
|
|
|
|
|
|
|
|
*bp = b = make_battle(u->region);
|
|
|
|
return make_fighter(b, u, make_side(b, u->faction, 0, 0, 0), false);
|
|
|
|
}
|
|
|
|
|
2015-11-21 19:02:14 +01:00
|
|
|
static void test_natural_armor(CuTest * tc)
|
|
|
|
{
|
|
|
|
race *rc;
|
|
|
|
unit *u;
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
rc = test_create_race("human");
|
|
|
|
u = test_create_unit(test_create_faction(rc), test_create_region(0, 0, 0));
|
|
|
|
set_level(u, SK_STAMINA, 2);
|
|
|
|
CuAssertIntEquals(tc, 0, natural_armor(u));
|
|
|
|
set_param(&rc->parameters, "armor.stamina", "1");
|
|
|
|
CuAssertIntEquals(tc, 2, natural_armor(u));
|
|
|
|
set_param(&rc->parameters, "armor.stamina", "2");
|
|
|
|
CuAssertIntEquals(tc, 1, natural_armor(u));
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2015-11-03 14:22:50 +01:00
|
|
|
static void test_calculate_armor(CuTest * tc)
|
|
|
|
{
|
|
|
|
troop dt;
|
|
|
|
battle *b;
|
|
|
|
region *r;
|
|
|
|
unit *du;
|
2015-11-03 18:59:09 +01:00
|
|
|
weapon_type *wtype;
|
|
|
|
armor_type *ashield, *achain;
|
|
|
|
item_type *ibelt, *ishield, *ichain;
|
|
|
|
race *rc;
|
|
|
|
double magres = 0.0;
|
2015-11-03 14:22:50 +01:00
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
r = test_create_region(0, 0, 0);
|
2015-11-03 18:59:09 +01:00
|
|
|
ibelt = it_get_or_create(rt_get_or_create("trollbelt"));
|
|
|
|
ishield = it_get_or_create(rt_get_or_create("shield"));
|
|
|
|
ashield = new_armortype(ishield, 0.0, 0.5, 1, ATF_SHIELD);
|
|
|
|
ichain = it_get_or_create(rt_get_or_create("chainmail"));
|
|
|
|
achain = new_armortype(ichain, 0.0, 0.5, 3, ATF_NONE);
|
|
|
|
wtype = new_weapontype(it_get_or_create(rt_get_or_create("sword")), 0, 0.5, 0, 0, 0, 0, SK_MELEE, 1);
|
|
|
|
rc = test_create_race("human");
|
|
|
|
du = test_create_unit(test_create_faction(rc), r);
|
2015-11-03 19:11:03 +01:00
|
|
|
dt.index = 0;
|
2015-11-03 18:59:09 +01:00
|
|
|
|
|
|
|
dt.fighter = setup_fighter(&b, du);
|
|
|
|
CuAssertIntEquals_Msg(tc, "default ac", 0, calculate_armor(dt, 0, 0, &magres));
|
2015-12-06 18:34:31 +01:00
|
|
|
CuAssertDblEquals_Msg(tc, "magres unmodified", 1.0, magres, 0.01);
|
2015-11-03 18:59:09 +01:00
|
|
|
free_battle(b);
|
|
|
|
|
|
|
|
i_change(&du->items, ibelt, 1);
|
|
|
|
dt.fighter = setup_fighter(&b, du);
|
|
|
|
CuAssertIntEquals_Msg(tc, "magical armor", 1, calculate_armor(dt, 0, 0, 0));
|
|
|
|
rc->armor = 2;
|
|
|
|
CuAssertIntEquals_Msg(tc, "natural armor", 3, calculate_armor(dt, 0, 0, 0));
|
|
|
|
rc->armor = 0;
|
|
|
|
free_battle(b);
|
|
|
|
|
|
|
|
i_change(&du->items, ishield, 1);
|
|
|
|
i_change(&du->items, ichain, 1);
|
|
|
|
dt.fighter = setup_fighter(&b, du);
|
2015-12-05 17:17:21 +01:00
|
|
|
rc->battle_flags &= ~BF_EQUIPMENT;
|
2015-11-03 18:59:09 +01:00
|
|
|
CuAssertIntEquals_Msg(tc, "require BF_EQUIPMENT", 1, calculate_armor(dt, 0, 0, 0));
|
|
|
|
free_battle(b);
|
|
|
|
|
|
|
|
rc->battle_flags |= BF_EQUIPMENT;
|
|
|
|
dt.fighter = setup_fighter(&b, du);
|
|
|
|
CuAssertIntEquals_Msg(tc, "stack equipment rc", 5, calculate_armor(dt, 0, 0, 0));
|
|
|
|
rc->armor = 2;
|
|
|
|
CuAssertIntEquals_Msg(tc, "natural armor adds 50%", 6, calculate_armor(dt, 0, 0, 0));
|
|
|
|
wtype->flags = WTF_NONE;
|
|
|
|
CuAssertIntEquals_Msg(tc, "regular weapon has no effect", 6, calculate_armor(dt, 0, wtype, 0));
|
|
|
|
wtype->flags = WTF_ARMORPIERCING;
|
|
|
|
CuAssertIntEquals_Msg(tc, "armor piercing weapon", 3, calculate_armor(dt, 0, wtype, 0));
|
|
|
|
wtype->flags = WTF_NONE;
|
|
|
|
|
|
|
|
CuAssertIntEquals_Msg(tc, "magical attack", 3, calculate_armor(dt, 0, 0, &magres));
|
2015-12-06 18:34:31 +01:00
|
|
|
CuAssertDblEquals_Msg(tc, "magres unmodified", 1.0, magres, 0.01);
|
2015-11-03 18:59:09 +01:00
|
|
|
|
|
|
|
ashield->flags |= ATF_LAEN;
|
|
|
|
achain->flags |= ATF_LAEN;
|
|
|
|
magres = 1.0;
|
|
|
|
CuAssertIntEquals_Msg(tc, "laen armor", 3, calculate_armor(dt, 0, 0, &magres));
|
|
|
|
CuAssertDblEquals_Msg(tc, "laen magres bonus", 0.25, magres, 0.01);
|
|
|
|
free_battle(b);
|
2015-11-03 14:22:50 +01:00
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2015-12-05 17:17:21 +01:00
|
|
|
static void test_magic_resistance(CuTest *tc)
|
|
|
|
{
|
|
|
|
troop dt;
|
|
|
|
battle *b;
|
|
|
|
region *r;
|
|
|
|
unit *du;
|
|
|
|
armor_type *ashield, *achain;
|
2015-12-05 17:25:47 +01:00
|
|
|
item_type *ishield, *ichain;
|
2015-12-05 17:17:21 +01:00
|
|
|
race *rc;
|
2015-12-06 18:34:31 +01:00
|
|
|
double magres;
|
2015-12-05 17:17:21 +01:00
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
r = test_create_region(0, 0, 0);
|
|
|
|
ishield = it_get_or_create(rt_get_or_create("shield"));
|
|
|
|
ashield = new_armortype(ishield, 0.0, 0.5, 1, ATF_SHIELD);
|
|
|
|
ichain = it_get_or_create(rt_get_or_create("chainmail"));
|
|
|
|
achain = new_armortype(ichain, 0.0, 0.5, 3, ATF_NONE);
|
|
|
|
rc = test_create_race("human");
|
|
|
|
du = test_create_unit(test_create_faction(rc), r);
|
|
|
|
dt.index = 0;
|
|
|
|
|
|
|
|
dt.fighter = setup_fighter(&b, du);
|
|
|
|
calculate_armor(dt, 0, 0, &magres);
|
|
|
|
CuAssertDblEquals_Msg(tc, "no magres bonus", 0.0, magic_resistance(du), 0.01);
|
2015-12-06 18:34:31 +01:00
|
|
|
CuAssertDblEquals_Msg(tc, "no magres reduction", 1.0, magres, 0.01);
|
2015-12-05 17:17:21 +01:00
|
|
|
|
|
|
|
ashield->flags |= ATF_LAEN;
|
|
|
|
ashield->magres = 0.1;
|
|
|
|
calculate_armor(dt, 0, 0, &magres);
|
|
|
|
free_battle(b);
|
|
|
|
|
|
|
|
i_change(&du->items, ishield, 1);
|
|
|
|
i_change(&du->items, ichain, 1);
|
|
|
|
achain->flags |= ATF_LAEN;
|
|
|
|
achain->magres = 0.1;
|
|
|
|
ashield->flags |= ATF_LAEN;
|
|
|
|
ashield->magres = 0.1;
|
|
|
|
dt.fighter = setup_fighter(&b, du);
|
|
|
|
calculate_armor(dt, 0, 0, &magres);
|
2015-12-06 18:34:31 +01:00
|
|
|
CuAssertDblEquals_Msg(tc, "laen reduction", 0.81, magres, 0.01);
|
2015-12-05 17:17:21 +01:00
|
|
|
free_battle(b);
|
|
|
|
|
|
|
|
i_change(&du->items, ishield, -1);
|
|
|
|
i_change(&du->items, ichain, -1);
|
|
|
|
set_level(du, SK_MAGIC, 2);
|
|
|
|
dt.fighter = setup_fighter(&b, du);
|
|
|
|
calculate_armor(dt, 0, 0, &magres);
|
2015-12-06 18:34:31 +01:00
|
|
|
CuAssertDblEquals_Msg(tc, "skill bonus", 0.1, magic_resistance(du), 0.01);
|
|
|
|
CuAssertDblEquals_Msg(tc, "skill reduction", 0.9, magres, 0.01);
|
|
|
|
rc->magres = 0.5; /* gets added to skill bonus */
|
|
|
|
calculate_armor(dt, 0, 0, &magres);
|
|
|
|
CuAssertDblEquals_Msg(tc, "race bonus", 0.6, magic_resistance(du), 0.01);
|
|
|
|
CuAssertDblEquals_Msg(tc, "race reduction", 0.4, magres, 0.01);
|
|
|
|
|
|
|
|
rc->magres = 1.5; /* should not cause negative damage multiplier */
|
2015-12-06 20:48:22 +01:00
|
|
|
CuAssertDblEquals_Msg(tc, "magic resistance is never > 0.9", 0.9, magic_resistance(du), 0.01);
|
2015-12-06 18:34:31 +01:00
|
|
|
calculate_armor(dt, 0, 0, &magres);
|
2015-12-06 20:48:22 +01:00
|
|
|
CuAssertDblEquals_Msg(tc, "damage reduction is never < 0.1", 0.1, magres, 0.01);
|
2015-12-05 17:17:21 +01:00
|
|
|
|
|
|
|
free_battle(b);
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2015-11-03 19:11:03 +01:00
|
|
|
static void test_projectile_armor(CuTest * tc)
|
|
|
|
{
|
|
|
|
troop dt;
|
|
|
|
battle *b;
|
|
|
|
region *r;
|
|
|
|
unit *du;
|
|
|
|
weapon_type *wtype;
|
|
|
|
armor_type *ashield, *achain;
|
|
|
|
item_type *ishield, *ichain;
|
|
|
|
race *rc;
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
r = test_create_region(0, 0, 0);
|
|
|
|
ishield = it_get_or_create(rt_get_or_create("shield"));
|
|
|
|
ashield = new_armortype(ishield, 0.0, 0.5, 1, ATF_SHIELD);
|
|
|
|
ichain = it_get_or_create(rt_get_or_create("chainmail"));
|
|
|
|
achain = new_armortype(ichain, 0.0, 0.5, 3, ATF_NONE);
|
|
|
|
wtype = new_weapontype(it_get_or_create(rt_get_or_create("sword")), 0, 0.5, 0, 0, 0, 0, SK_MELEE, 1);
|
|
|
|
rc = test_create_race("human");
|
|
|
|
rc->battle_flags |= BF_EQUIPMENT;
|
|
|
|
du = test_create_unit(test_create_faction(rc), r);
|
|
|
|
dt.index = 0;
|
|
|
|
|
|
|
|
i_change(&du->items, ishield, 1);
|
|
|
|
i_change(&du->items, ichain, 1);
|
|
|
|
dt.fighter = setup_fighter(&b, du);
|
|
|
|
wtype->flags = WTF_MISSILE;
|
|
|
|
achain->projectile = 1.0;
|
|
|
|
CuAssertIntEquals_Msg(tc, "projectile armor", -1, calculate_armor(dt, 0, wtype, 0));
|
|
|
|
achain->projectile = 0.0;
|
|
|
|
ashield->projectile = 1.0;
|
|
|
|
CuAssertIntEquals_Msg(tc, "projectile shield", -1, calculate_armor(dt, 0, wtype, 0));
|
|
|
|
wtype->flags = WTF_NONE;
|
|
|
|
CuAssertIntEquals_Msg(tc, "no projectiles", 4, calculate_armor(dt, 0, wtype, 0));
|
|
|
|
free_battle(b);
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2011-03-13 02:01:20 +01:00
|
|
|
CuSuite *get_battle_suite(void)
|
|
|
|
{
|
2015-01-12 16:57:05 +01:00
|
|
|
CuSuite *suite = CuSuiteNew();
|
|
|
|
SUITE_ADD_TEST(suite, test_make_fighter);
|
|
|
|
SUITE_ADD_TEST(suite, test_defenders_get_building_bonus);
|
|
|
|
SUITE_ADD_TEST(suite, test_attackers_get_no_building_bonus);
|
|
|
|
SUITE_ADD_TEST(suite, test_building_bonus_respects_size);
|
|
|
|
SUITE_ADD_TEST(suite, test_building_defence_bonus);
|
2015-11-03 14:22:50 +01:00
|
|
|
SUITE_ADD_TEST(suite, test_calculate_armor);
|
2015-11-21 19:02:14 +01:00
|
|
|
SUITE_ADD_TEST(suite, test_natural_armor);
|
2015-12-05 17:17:21 +01:00
|
|
|
SUITE_ADD_TEST(suite, test_magic_resistance);
|
2015-11-03 19:11:03 +01:00
|
|
|
SUITE_ADD_TEST(suite, test_projectile_armor);
|
2015-01-12 16:57:05 +01:00
|
|
|
return suite;
|
2011-03-13 02:01:20 +01:00
|
|
|
}
|