2016-10-26 11:45:44 +02:00
|
|
|
#include <platform.h>
|
|
|
|
|
|
|
|
#include "guard.h"
|
|
|
|
#include "monster.h"
|
|
|
|
|
|
|
|
#include <kernel/config.h>
|
|
|
|
#include <kernel/faction.h>
|
|
|
|
#include <kernel/unit.h>
|
|
|
|
#include <kernel/race.h>
|
|
|
|
#include <kernel/item.h>
|
|
|
|
#include <kernel/region.h>
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#include <CuTest.h>
|
|
|
|
#include "tests.h"
|
|
|
|
|
2016-10-26 11:55:31 +02:00
|
|
|
static void test_guard_unskilled(CuTest * tc)
|
|
|
|
// TODO: it would be better to test armedmen()
|
|
|
|
{
|
|
|
|
unit *u, *ug;
|
|
|
|
region *r;
|
|
|
|
item_type *itype;
|
|
|
|
|
|
|
|
test_setup();
|
|
|
|
itype = it_get_or_create(rt_get_or_create("sword"));
|
|
|
|
new_weapontype(itype, 0, 0.0, NULL, 0, 0, 0, SK_MELEE, 2);
|
|
|
|
r = test_create_region(0, 0, 0);
|
|
|
|
u = test_create_unit(test_create_faction(0), r);
|
|
|
|
ug = test_create_unit(test_create_faction(0), r);
|
|
|
|
i_change(&ug->items, itype, 1);
|
|
|
|
set_level(ug, SK_MELEE, 1);
|
|
|
|
setguard(ug, GUARD_ALL);
|
|
|
|
CuAssertPtrEquals(tc, 0, is_guarded(r, u, GUARD_PRODUCE));
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_guard_armed(CuTest * tc)
|
|
|
|
{
|
|
|
|
unit *u, *ug;
|
|
|
|
region *r;
|
|
|
|
item_type *itype;
|
|
|
|
|
|
|
|
test_setup();
|
|
|
|
itype = it_get_or_create(rt_get_or_create("sword"));
|
|
|
|
new_weapontype(itype, 0, 0.0, NULL, 0, 0, 0, SK_MELEE, 2);
|
|
|
|
r = test_create_region(0, 0, 0);
|
|
|
|
u = test_create_unit(test_create_faction(0), r);
|
|
|
|
ug = test_create_unit(test_create_faction(0), r);
|
|
|
|
i_change(&ug->items, itype, 1);
|
|
|
|
set_level(ug, SK_MELEE, 2);
|
|
|
|
setguard(ug, GUARD_ALL);
|
|
|
|
CuAssertPtrEquals(tc, ug, is_guarded(r, u, GUARD_PRODUCE));
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2016-10-26 11:48:52 +02:00
|
|
|
static void test_guard_unarmed(CuTest * tc)
|
|
|
|
{
|
|
|
|
unit *u, *ug;
|
|
|
|
region *r;
|
|
|
|
race *rc;
|
|
|
|
|
|
|
|
test_setup();
|
|
|
|
rc = test_create_race("mountainguard");
|
|
|
|
rc->flags |= RCF_UNARMEDGUARD;
|
|
|
|
r = test_create_region(0, 0, 0);
|
|
|
|
u = test_create_unit(test_create_faction(0), r);
|
|
|
|
ug = test_create_unit(test_create_faction(rc), r);
|
|
|
|
setguard(ug, GUARD_ALL);
|
|
|
|
CuAssertPtrEquals(tc, ug, is_guarded(r, u, GUARD_PRODUCE));
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2016-10-26 11:45:44 +02:00
|
|
|
static void test_guard_monsters(CuTest * tc)
|
|
|
|
{
|
|
|
|
unit *u, *ug;
|
|
|
|
region *r;
|
|
|
|
|
|
|
|
test_setup();
|
|
|
|
r = test_create_region(0, 0, 0);
|
|
|
|
u = test_create_unit(test_create_faction(0), r);
|
|
|
|
ug = test_create_unit(get_monsters(), r);
|
|
|
|
setguard(ug, GUARD_ALL);
|
|
|
|
CuAssertPtrEquals(tc, ug, is_guarded(r, u, GUARD_PRODUCE));
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
|
|
|
CuSuite *get_guard_suite(void)
|
|
|
|
{
|
|
|
|
CuSuite *suite = CuSuiteNew();
|
2016-10-26 11:55:31 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_guard_unskilled);
|
|
|
|
SUITE_ADD_TEST(suite, test_guard_armed);
|
2016-10-26 11:48:52 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_guard_unarmed);
|
2016-10-26 11:45:44 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_guard_monsters);
|
|
|
|
return suite;
|
|
|
|
}
|