2012-06-03 22:39:42 +02:00
|
|
|
#include <platform.h>
|
2014-07-06 08:06:51 +02:00
|
|
|
#include <kernel/config.h>
|
2012-05-27 17:38:17 +02:00
|
|
|
#include "economy.h"
|
|
|
|
|
2014-07-06 05:14:11 +02:00
|
|
|
#include <util/message.h>
|
2015-02-16 20:39:50 +01:00
|
|
|
#include <kernel/building.h>
|
|
|
|
#include <kernel/item.h>
|
|
|
|
#include <kernel/faction.h>
|
|
|
|
#include <kernel/messages.h>
|
|
|
|
#include <kernel/order.h>
|
|
|
|
#include <kernel/pool.h>
|
2014-07-06 05:14:11 +02:00
|
|
|
#include <kernel/race.h>
|
2012-05-27 17:38:17 +02:00
|
|
|
#include <kernel/region.h>
|
2017-02-15 20:50:45 +01:00
|
|
|
#include <kernel/resources.h>
|
2012-05-27 17:38:17 +02:00
|
|
|
#include <kernel/ship.h>
|
2014-07-06 05:14:11 +02:00
|
|
|
#include <kernel/terrain.h>
|
2015-02-16 20:39:50 +01:00
|
|
|
#include <kernel/unit.h>
|
|
|
|
|
2017-02-15 20:50:45 +01:00
|
|
|
#include <util/attrib.h>
|
2015-02-16 20:39:50 +01:00
|
|
|
#include <util/language.h>
|
2012-05-27 17:38:17 +02:00
|
|
|
|
2012-05-31 04:17:08 +02:00
|
|
|
#include <CuTest.h>
|
2012-05-27 17:38:17 +02:00
|
|
|
#include <tests.h>
|
2015-11-14 15:32:31 +01:00
|
|
|
#include <assert.h>
|
2012-05-27 17:38:17 +02:00
|
|
|
|
|
|
|
static void test_give_control_building(CuTest * tc)
|
|
|
|
{
|
2014-07-06 05:14:11 +02:00
|
|
|
unit *u1, *u2;
|
|
|
|
building *b;
|
|
|
|
struct faction *f;
|
|
|
|
region *r;
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
f = test_create_faction(0);
|
2015-10-13 22:31:03 +02:00
|
|
|
r = test_create_region(0, 0, 0);
|
2014-07-06 05:14:11 +02:00
|
|
|
b = test_create_building(r, 0);
|
|
|
|
u1 = test_create_unit(f, r);
|
|
|
|
u_set_building(u1, b);
|
|
|
|
u2 = test_create_unit(f, r);
|
|
|
|
u_set_building(u2, b);
|
|
|
|
CuAssertPtrEquals(tc, u1, building_owner(b));
|
|
|
|
give_control(u1, u2);
|
|
|
|
CuAssertPtrEquals(tc, u2, building_owner(b));
|
|
|
|
test_cleanup();
|
2012-05-27 17:38:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_give_control_ship(CuTest * tc)
|
|
|
|
{
|
2014-07-06 05:14:11 +02:00
|
|
|
unit *u1, *u2;
|
|
|
|
ship *sh;
|
|
|
|
struct faction *f;
|
|
|
|
region *r;
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
f = test_create_faction(0);
|
2015-10-13 22:31:03 +02:00
|
|
|
r = test_create_region(0, 0, 0);
|
2014-07-06 05:14:11 +02:00
|
|
|
sh = test_create_ship(r, 0);
|
|
|
|
u1 = test_create_unit(f, r);
|
|
|
|
u_set_ship(u1, sh);
|
|
|
|
u2 = test_create_unit(f, r);
|
|
|
|
u_set_ship(u2, sh);
|
|
|
|
CuAssertPtrEquals(tc, u1, ship_owner(sh));
|
|
|
|
give_control(u1, u2);
|
|
|
|
CuAssertPtrEquals(tc, u2, ship_owner(sh));
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2014-07-06 06:12:34 +02:00
|
|
|
struct steal {
|
2014-07-06 05:14:11 +02:00
|
|
|
struct unit *u;
|
|
|
|
struct region *r;
|
|
|
|
struct faction *f;
|
2014-07-06 06:12:34 +02:00
|
|
|
};
|
2014-07-06 05:14:11 +02:00
|
|
|
|
2014-11-03 08:33:07 +01:00
|
|
|
static void setup_steal(struct steal *env, struct terrain_type *ter, struct race *rc) {
|
2014-07-06 06:12:34 +02:00
|
|
|
env->r = test_create_region(0, 0, ter);
|
|
|
|
env->f = test_create_faction(rc);
|
|
|
|
env->u = test_create_unit(env->f, env->r);
|
2014-07-06 05:14:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_steal_okay(CuTest * tc) {
|
2014-07-06 06:12:34 +02:00
|
|
|
struct steal env;
|
2014-07-06 05:14:11 +02:00
|
|
|
race *rc;
|
2014-11-03 08:33:07 +01:00
|
|
|
struct terrain_type *ter;
|
2014-07-06 05:14:11 +02:00
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
ter = test_create_terrain("plain", LAND_REGION);
|
|
|
|
rc = test_create_race("human");
|
|
|
|
rc->flags = 0;
|
2014-07-06 06:12:34 +02:00
|
|
|
setup_steal(&env, ter, rc);
|
|
|
|
CuAssertPtrEquals(tc, 0, check_steal(env.u, 0));
|
2014-07-06 05:14:11 +02:00
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_steal_nosteal(CuTest * tc) {
|
2014-07-06 06:12:34 +02:00
|
|
|
struct steal env;
|
2014-07-06 05:14:11 +02:00
|
|
|
race *rc;
|
|
|
|
terrain_type *ter;
|
|
|
|
message *msg;
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
ter = test_create_terrain("plain", LAND_REGION);
|
|
|
|
rc = test_create_race("human");
|
|
|
|
rc->flags = RCF_NOSTEAL;
|
2014-07-06 06:12:34 +02:00
|
|
|
setup_steal(&env, ter, rc);
|
|
|
|
CuAssertPtrNotNull(tc, msg = check_steal(env.u, 0));
|
2014-07-06 05:14:11 +02:00
|
|
|
msg_release(msg);
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_steal_ocean(CuTest * tc) {
|
2014-07-06 06:12:34 +02:00
|
|
|
struct steal env;
|
2014-07-06 05:14:11 +02:00
|
|
|
race *rc;
|
|
|
|
terrain_type *ter;
|
|
|
|
message *msg;
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
ter = test_create_terrain("ocean", SEA_REGION);
|
|
|
|
rc = test_create_race("human");
|
2014-07-06 06:12:34 +02:00
|
|
|
setup_steal(&env, ter, rc);
|
|
|
|
CuAssertPtrNotNull(tc, msg = check_steal(env.u, 0));
|
2014-07-06 05:14:11 +02:00
|
|
|
msg_release(msg);
|
|
|
|
test_cleanup();
|
2012-05-27 17:38:17 +02:00
|
|
|
}
|
|
|
|
|
2015-02-16 20:39:50 +01:00
|
|
|
static struct unit *create_recruiter(void) {
|
|
|
|
region *r;
|
|
|
|
faction *f;
|
|
|
|
unit *u;
|
|
|
|
const resource_type* rtype;
|
|
|
|
|
2017-03-11 14:22:21 +01:00
|
|
|
r=test_create_region(0, 0, NULL);
|
2015-02-16 20:39:50 +01:00
|
|
|
rsetpeasants(r, 999);
|
2017-03-11 14:22:21 +01:00
|
|
|
f = test_create_faction(NULL);
|
2015-02-16 20:39:50 +01:00
|
|
|
u = test_create_unit(f, r);
|
|
|
|
rtype = get_resourcetype(R_SILVER);
|
|
|
|
change_resource(u, rtype, 1000);
|
|
|
|
return u;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_heroes_dont_recruit(CuTest * tc) {
|
|
|
|
unit *u;
|
|
|
|
|
2017-03-11 14:22:21 +01:00
|
|
|
test_setup();
|
|
|
|
init_resources();
|
2015-02-16 20:39:50 +01:00
|
|
|
u = create_recruiter();
|
2017-03-11 14:22:21 +01:00
|
|
|
|
2015-02-16 20:39:50 +01:00
|
|
|
fset(u, UFL_HERO);
|
2015-10-13 15:45:38 +02:00
|
|
|
unit_addorder(u, create_order(K_RECRUIT, default_locale, "1"));
|
2015-02-16 20:39:50 +01:00
|
|
|
|
|
|
|
economics(u->region);
|
|
|
|
|
|
|
|
CuAssertIntEquals(tc, 1, u->number);
|
2015-08-17 19:35:07 +02:00
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "error_herorecruit"));
|
2015-02-16 20:39:50 +01:00
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_normals_recruit(CuTest * tc) {
|
|
|
|
unit *u;
|
|
|
|
|
2017-03-11 14:22:21 +01:00
|
|
|
test_setup();
|
|
|
|
init_resources();
|
2015-02-16 20:39:50 +01:00
|
|
|
u = create_recruiter();
|
2015-10-13 15:45:38 +02:00
|
|
|
unit_addorder(u, create_order(K_RECRUIT, default_locale, "1"));
|
2015-02-16 20:39:50 +01:00
|
|
|
|
|
|
|
economics(u->region);
|
|
|
|
|
|
|
|
CuAssertIntEquals(tc, 2, u->number);
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2015-11-14 15:32:31 +01:00
|
|
|
typedef struct request {
|
|
|
|
struct request *next;
|
|
|
|
struct unit *unit;
|
|
|
|
struct order *ord;
|
|
|
|
int qty;
|
|
|
|
int no;
|
|
|
|
union {
|
|
|
|
bool goblin; /* stealing */
|
|
|
|
const struct luxury_type *ltype; /* trading */
|
|
|
|
} type;
|
|
|
|
} request;
|
|
|
|
|
|
|
|
static void test_tax_cmd(CuTest *tc) {
|
|
|
|
order *ord;
|
|
|
|
faction *f;
|
|
|
|
region *r;
|
|
|
|
unit *u;
|
|
|
|
item_type *sword, *silver;
|
|
|
|
request *taxorders = 0;
|
|
|
|
|
|
|
|
|
2017-03-11 14:22:21 +01:00
|
|
|
test_setup();
|
|
|
|
init_resources();
|
2015-11-26 18:48:21 +01:00
|
|
|
config_set("taxing.perlevel", "20");
|
2015-11-14 15:32:31 +01:00
|
|
|
f = test_create_faction(NULL);
|
2017-03-11 14:22:21 +01:00
|
|
|
r = test_create_region(0, 0, NULL);
|
2015-11-14 15:32:31 +01:00
|
|
|
assert(r && f);
|
|
|
|
u = test_create_unit(f, r);
|
|
|
|
|
|
|
|
ord = create_order(K_TAX, f->locale, "");
|
|
|
|
assert(ord);
|
|
|
|
|
|
|
|
tax_cmd(u, ord, &taxorders);
|
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "error48"));
|
|
|
|
test_clear_messages(u->faction);
|
|
|
|
|
|
|
|
silver = get_resourcetype(R_SILVER)->itype;
|
|
|
|
|
2017-03-11 14:22:21 +01:00
|
|
|
sword = test_create_itemtype("sword");
|
2017-02-24 20:47:47 +01:00
|
|
|
new_weapontype(sword, 0, frac_zero, NULL, 0, 0, 0, SK_MELEE, 1);
|
2015-11-14 15:32:31 +01:00
|
|
|
i_change(&u->items, sword, 1);
|
|
|
|
set_level(u, SK_MELEE, 1);
|
|
|
|
|
|
|
|
tax_cmd(u, ord, &taxorders);
|
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "error_no_tax_skill"));
|
|
|
|
test_clear_messages(u->faction);
|
|
|
|
|
|
|
|
set_level(u, SK_TAXING, 1);
|
|
|
|
tax_cmd(u, ord, &taxorders);
|
|
|
|
CuAssertPtrEquals(tc, 0, test_find_messagetype(u->faction->msgs, "error_no_tax_skill"));
|
|
|
|
CuAssertPtrNotNull(tc, taxorders);
|
|
|
|
|
2015-12-07 17:59:50 +01:00
|
|
|
rsetmoney(r, 11);
|
2015-11-14 15:32:31 +01:00
|
|
|
expandtax(r, taxorders);
|
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "income"));
|
2015-11-14 17:14:38 +01:00
|
|
|
/* taxing is in multiples of 10 */
|
|
|
|
CuAssertIntEquals(tc, 10, i_get(u->items, silver));
|
2015-11-14 15:32:31 +01:00
|
|
|
test_clear_messages(u->faction);
|
|
|
|
i_change(&u->items, silver, -i_get(u->items, silver));
|
|
|
|
|
2015-12-07 17:59:50 +01:00
|
|
|
rsetmoney(r, 1000);
|
2015-11-14 15:32:31 +01:00
|
|
|
taxorders = 0;
|
|
|
|
tax_cmd(u, ord, &taxorders);
|
|
|
|
expandtax(r, taxorders);
|
|
|
|
CuAssertIntEquals(tc, 20, i_get(u->items, silver));
|
|
|
|
test_clear_messages(u->faction);
|
|
|
|
|
|
|
|
free_order(ord);
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2016-10-01 18:34:38 +02:00
|
|
|
/**
|
|
|
|
* see https://bugs.eressea.de/view.php?id=2234
|
|
|
|
*/
|
2016-08-21 20:01:30 +02:00
|
|
|
static void test_maintain_buildings(CuTest *tc) {
|
|
|
|
region *r;
|
|
|
|
building *b;
|
|
|
|
building_type *btype;
|
|
|
|
unit *u;
|
2016-09-27 08:25:58 +02:00
|
|
|
faction *f;
|
2016-08-21 20:01:30 +02:00
|
|
|
maintenance *req;
|
|
|
|
item_type *itype;
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
btype = test_create_buildingtype("Hort");
|
|
|
|
btype->maxsize = 10;
|
|
|
|
r = test_create_region(0, 0, 0);
|
2016-09-27 08:25:58 +02:00
|
|
|
f = test_create_faction(0);
|
|
|
|
u = test_create_unit(f, r);
|
2016-08-21 20:01:30 +02:00
|
|
|
b = test_create_building(r, btype);
|
|
|
|
itype = test_create_itemtype("money");
|
|
|
|
b->size = btype->maxsize;
|
|
|
|
u_set_building(u, b);
|
|
|
|
|
2017-02-18 21:15:14 +01:00
|
|
|
/* this building has no upkeep, it just works: */
|
2016-08-21 20:01:30 +02:00
|
|
|
b->flags = 0;
|
2016-08-21 20:04:51 +02:00
|
|
|
maintain_buildings(r);
|
2016-08-21 20:01:30 +02:00
|
|
|
CuAssertIntEquals(tc, BLD_MAINTAINED, fval(b, BLD_MAINTAINED));
|
2016-10-01 18:34:38 +02:00
|
|
|
CuAssertPtrEquals(tc, 0, f->msgs);
|
|
|
|
CuAssertPtrEquals(tc, 0, r->msgs);
|
2016-08-21 20:01:30 +02:00
|
|
|
|
|
|
|
req = calloc(2, sizeof(maintenance));
|
|
|
|
req[0].number = 100;
|
|
|
|
req[0].rtype = itype->rtype;
|
|
|
|
btype->maintenance = req;
|
|
|
|
|
2017-02-18 21:15:14 +01:00
|
|
|
/* we cannot afford to pay: */
|
2016-08-21 20:01:30 +02:00
|
|
|
b->flags = 0;
|
2016-08-21 20:04:51 +02:00
|
|
|
maintain_buildings(r);
|
2016-08-21 20:01:30 +02:00
|
|
|
CuAssertIntEquals(tc, 0, fval(b, BLD_MAINTAINED));
|
2016-10-01 18:34:38 +02:00
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(f->msgs, "maintenancefail"));
|
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(r->msgs, "maintenance_nowork"));
|
|
|
|
test_clear_messagelist(&f->msgs);
|
|
|
|
test_clear_messagelist(&r->msgs);
|
2016-09-27 15:02:22 +02:00
|
|
|
|
2017-02-18 21:15:14 +01:00
|
|
|
/* we can afford to pay: */
|
2016-08-21 20:01:30 +02:00
|
|
|
i_change(&u->items, itype, 100);
|
|
|
|
b->flags = 0;
|
2016-08-21 20:04:51 +02:00
|
|
|
maintain_buildings(r);
|
2016-08-21 20:01:30 +02:00
|
|
|
CuAssertIntEquals(tc, BLD_MAINTAINED, fval(b, BLD_MAINTAINED));
|
|
|
|
CuAssertIntEquals(tc, 0, i_get(u->items, itype));
|
2016-09-27 15:40:03 +02:00
|
|
|
CuAssertPtrEquals(tc, 0, r->msgs);
|
|
|
|
CuAssertPtrEquals(tc, 0, test_find_messagetype(f->msgs, "maintenance_nowork"));
|
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(f->msgs, "maintenance"));
|
2016-10-01 18:34:38 +02:00
|
|
|
test_clear_messagelist(&f->msgs);
|
2016-08-21 20:01:30 +02:00
|
|
|
|
2017-02-18 21:15:14 +01:00
|
|
|
/* this building has no owner, it doesn't work: */
|
2016-08-21 20:01:30 +02:00
|
|
|
u_set_building(u, NULL);
|
|
|
|
b->flags = 0;
|
2016-08-21 20:04:51 +02:00
|
|
|
maintain_buildings(r);
|
2016-08-21 20:01:30 +02:00
|
|
|
CuAssertIntEquals(tc, 0, fval(b, BLD_MAINTAINED));
|
2016-09-27 15:40:03 +02:00
|
|
|
CuAssertPtrEquals(tc, 0, f->msgs);
|
2016-09-27 08:25:58 +02:00
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(r->msgs, "maintenance_noowner"));
|
2016-10-01 18:34:38 +02:00
|
|
|
test_clear_messagelist(&r->msgs);
|
2016-08-21 20:01:30 +02:00
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2016-09-18 11:34:54 +02:00
|
|
|
static void test_recruit(CuTest *tc) {
|
|
|
|
unit *u;
|
|
|
|
faction *f;
|
|
|
|
|
|
|
|
test_setup();
|
|
|
|
f = test_create_faction(0);
|
|
|
|
u = test_create_unit(f, test_create_region(0, 0, 0));
|
|
|
|
CuAssertIntEquals(tc, 1, u->number);
|
2017-03-12 12:53:10 +01:00
|
|
|
CuAssertIntEquals(tc, 1, f->num_people);
|
|
|
|
CuAssertIntEquals(tc, 1, f->num_units);
|
2016-09-18 11:34:54 +02:00
|
|
|
add_recruits(u, 1, 1);
|
|
|
|
CuAssertIntEquals(tc, 2, u->number);
|
2017-03-12 12:53:10 +01:00
|
|
|
CuAssertIntEquals(tc, 2, f->num_people);
|
|
|
|
CuAssertIntEquals(tc, 1, f->num_units);
|
2016-09-18 11:34:54 +02:00
|
|
|
CuAssertPtrEquals(tc, u, f->units);
|
|
|
|
CuAssertPtrEquals(tc, NULL, u->nextF);
|
|
|
|
CuAssertPtrEquals(tc, NULL, u->prevF);
|
2016-09-18 13:49:34 +02:00
|
|
|
CuAssertPtrEquals(tc, NULL, test_find_messagetype(f->msgs, "recruit"));
|
|
|
|
add_recruits(u, 1, 2);
|
|
|
|
CuAssertIntEquals(tc, 3, u->number);
|
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(f->msgs, "recruit"));
|
2016-09-18 11:34:54 +02:00
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2016-10-04 09:14:49 +02:00
|
|
|
static void test_income(CuTest *tc)
|
|
|
|
{
|
|
|
|
race *rc;
|
|
|
|
unit *u;
|
|
|
|
test_setup();
|
|
|
|
rc = test_create_race("nerd");
|
|
|
|
u = test_create_unit(test_create_faction(rc), test_create_region(0, 0, 0));
|
|
|
|
CuAssertIntEquals(tc, 20, income(u));
|
|
|
|
u->number = 5;
|
|
|
|
CuAssertIntEquals(tc, 100, income(u));
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2017-04-02 14:43:53 +02:00
|
|
|
static void test_modify_material(CuTest *tc) {
|
|
|
|
unit *u;
|
|
|
|
struct item_type *itype;
|
|
|
|
resource_type *rtype;
|
|
|
|
resource_mod *mod;
|
|
|
|
|
|
|
|
test_setup();
|
|
|
|
init_resources();
|
|
|
|
|
|
|
|
u = test_create_unit(test_create_faction(0), test_create_region(0, 0, 0));
|
|
|
|
set_level(u, SK_WEAPONSMITH, 1);
|
|
|
|
|
|
|
|
/* the unit's race gets 2x savings on iron used to produce goods */
|
|
|
|
itype = test_create_itemtype("iron");
|
|
|
|
rtype = itype->rtype;
|
|
|
|
mod = rtype->modifiers = calloc(2, sizeof(resource_mod));
|
|
|
|
mod[0].type = RMT_USE_SAVE;
|
|
|
|
mod[0].value = frac_make(2, 1);
|
|
|
|
mod[0].race = u_race(u);
|
|
|
|
|
|
|
|
itype = test_create_itemtype("sword");
|
|
|
|
make_item(u, itype, 1);
|
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "error_cannotmake"));
|
|
|
|
CuAssertIntEquals(tc, 0, get_item(u, itype));
|
|
|
|
test_clear_messages(u->faction);
|
|
|
|
itype->construction = calloc(1, sizeof(construction));
|
|
|
|
itype->construction->skill = SK_WEAPONSMITH;
|
|
|
|
itype->construction->minskill = 1;
|
|
|
|
itype->construction->maxsize = 1;
|
|
|
|
itype->construction->reqsize = 1;
|
|
|
|
itype->construction->materials = calloc(2, sizeof(requirement));
|
|
|
|
itype->construction->materials[0].rtype = rtype;
|
|
|
|
itype->construction->materials[0].number = 2;
|
|
|
|
|
|
|
|
set_item(u, rtype->itype, 1); /* 1 iron should get us 1 sword */
|
|
|
|
make_item(u, itype, 1);
|
|
|
|
CuAssertIntEquals(tc, 1, get_item(u, itype));
|
|
|
|
CuAssertIntEquals(tc, 0, get_item(u, rtype->itype));
|
|
|
|
|
|
|
|
u_setrace(u, test_create_race("smurf"));
|
|
|
|
set_item(u, rtype->itype, 2); /* 2 iron should be required now */
|
|
|
|
make_item(u, itype, 1);
|
|
|
|
CuAssertIntEquals(tc, 2, get_item(u, itype));
|
|
|
|
CuAssertIntEquals(tc, 0, get_item(u, rtype->itype));
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_modify_skill(CuTest *tc) {
|
|
|
|
unit *u;
|
|
|
|
struct item_type *itype;
|
|
|
|
/* building_type *btype; */
|
|
|
|
resource_type *rtype;
|
|
|
|
resource_mod *mod;
|
|
|
|
|
|
|
|
test_setup();
|
|
|
|
init_resources();
|
|
|
|
|
|
|
|
u = test_create_unit(test_create_faction(0), test_create_region(0, 0, 0));
|
|
|
|
set_level(u, SK_WEAPONSMITH, 1);
|
|
|
|
|
|
|
|
itype = test_create_itemtype("iron");
|
|
|
|
rtype = itype->rtype;
|
|
|
|
|
|
|
|
itype = test_create_itemtype("sword");
|
|
|
|
make_item(u, itype, 1);
|
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "error_cannotmake"));
|
|
|
|
CuAssertIntEquals(tc, 0, get_item(u, itype));
|
|
|
|
test_clear_messages(u->faction);
|
|
|
|
itype->construction = calloc(1, sizeof(construction));
|
|
|
|
itype->construction->skill = SK_WEAPONSMITH;
|
|
|
|
itype->construction->minskill = 1;
|
|
|
|
itype->construction->maxsize = -1;
|
|
|
|
itype->construction->reqsize = 1;
|
|
|
|
itype->construction->materials = calloc(2, sizeof(requirement));
|
|
|
|
itype->construction->materials[0].rtype = rtype;
|
|
|
|
itype->construction->materials[0].number = 1;
|
|
|
|
|
|
|
|
/* our race gets a +1 bonus to the item's production skill */
|
|
|
|
mod = itype->rtype->modifiers = calloc(2, sizeof(resource_mod));
|
|
|
|
mod[0].type = RMT_PROD_SKILL;
|
|
|
|
mod[0].value.sa[0] = SK_WEAPONSMITH;
|
|
|
|
mod[0].value.sa[1] = 1;
|
|
|
|
mod[0].race = u_race(u);
|
|
|
|
|
|
|
|
set_item(u, rtype->itype, 2); /* 2 iron should get us 2 swords */
|
|
|
|
make_item(u, itype, 2);
|
|
|
|
CuAssertIntEquals(tc, 2, get_item(u, itype));
|
|
|
|
CuAssertIntEquals(tc, 0, get_item(u, rtype->itype));
|
|
|
|
|
|
|
|
mod[0].value.sa[0] = NOSKILL; /* match any skill */
|
|
|
|
set_item(u, rtype->itype, 2);
|
|
|
|
make_item(u, itype, 2);
|
|
|
|
CuAssertIntEquals(tc, 4, get_item(u, itype));
|
|
|
|
CuAssertIntEquals(tc, 0, get_item(u, rtype->itype));
|
|
|
|
|
|
|
|
|
|
|
|
u_setrace(u, test_create_race("smurf"));
|
|
|
|
set_item(u, rtype->itype, 2);
|
|
|
|
make_item(u, itype, 1); /* only enough skill to make 1 now */
|
|
|
|
CuAssertIntEquals(tc, 5, get_item(u, itype));
|
|
|
|
CuAssertIntEquals(tc, 1, get_item(u, rtype->itype));
|
|
|
|
|
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void test_modify_production(CuTest *tc) {
|
2017-02-15 17:09:23 +01:00
|
|
|
unit *u;
|
|
|
|
struct item_type *itype;
|
|
|
|
const struct resource_type *rt_silver;
|
2017-02-15 20:50:45 +01:00
|
|
|
resource_type *rtype;
|
2017-02-17 21:45:10 +01:00
|
|
|
double d = 0.6;
|
2017-02-15 17:09:23 +01:00
|
|
|
|
|
|
|
test_setup();
|
|
|
|
init_resources();
|
2017-02-15 20:50:45 +01:00
|
|
|
|
|
|
|
/* make items from other items (turn silver to stone) */
|
2017-02-15 17:09:23 +01:00
|
|
|
rt_silver = get_resourcetype(R_SILVER);
|
2017-02-15 20:50:45 +01:00
|
|
|
itype = test_create_itemtype("stone");
|
|
|
|
rtype = itype->rtype;
|
2017-02-15 17:09:23 +01:00
|
|
|
u = test_create_unit(test_create_faction(0), test_create_region(0,0,0));
|
|
|
|
make_item(u, itype, 1);
|
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "error_cannotmake"));
|
|
|
|
CuAssertIntEquals(tc, 0, get_item(u, itype));
|
|
|
|
test_clear_messages(u->faction);
|
|
|
|
itype->construction = calloc(1, sizeof(construction));
|
|
|
|
itype->construction->skill = SK_ALCHEMY;
|
|
|
|
itype->construction->minskill = 1;
|
|
|
|
itype->construction->maxsize = 1;
|
|
|
|
itype->construction->reqsize = 1;
|
|
|
|
itype->construction->materials = calloc(2, sizeof(requirement));
|
|
|
|
itype->construction->materials[0].rtype = rt_silver;
|
|
|
|
itype->construction->materials[0].number = 1;
|
|
|
|
set_level(u, SK_ALCHEMY, 1);
|
|
|
|
set_item(u, rt_silver->itype, 1);
|
|
|
|
make_item(u, itype, 1);
|
|
|
|
CuAssertIntEquals(tc, 1, get_item(u, itype));
|
|
|
|
CuAssertIntEquals(tc, 0, get_item(u, rt_silver->itype));
|
2017-02-15 20:50:45 +01:00
|
|
|
|
|
|
|
/* make level-based raw materials, no materials used in construction */
|
|
|
|
free(itype->construction->materials);
|
|
|
|
itype->construction->materials = 0;
|
|
|
|
rtype->flags |= RTF_LIMITED;
|
2017-02-25 21:24:47 +01:00
|
|
|
rmt_create(rtype);
|
2017-03-22 20:37:09 +01:00
|
|
|
add_resource(u->region, 1, 300, 150, rtype); /* there are 300 stones at level 1 */
|
|
|
|
CuAssertIntEquals(tc, 300, region_getresource(u->region, rtype));
|
2017-02-15 20:50:45 +01:00
|
|
|
set_level(u, SK_ALCHEMY, 10);
|
|
|
|
|
|
|
|
make_item(u, itype, 10);
|
|
|
|
split_allocations(u->region);
|
|
|
|
CuAssertIntEquals(tc, 11, get_item(u, itype));
|
2017-03-22 20:37:09 +01:00
|
|
|
CuAssertIntEquals(tc, 290, region_getresource(u->region, rtype)); /* used 10 stones to make 10 stones */
|
2017-02-15 20:50:45 +01:00
|
|
|
|
2017-08-09 19:39:29 +02:00
|
|
|
rtype->modifiers = calloc(3, sizeof(resource_mod));
|
2017-04-02 14:43:53 +02:00
|
|
|
rtype->modifiers[0].type = RMT_PROD_SAVE;
|
2017-02-26 13:55:19 +01:00
|
|
|
rtype->modifiers[0].race = u->_race;
|
|
|
|
rtype->modifiers[0].value.sa[0] = (short)(0.5+100*d);
|
|
|
|
rtype->modifiers[0].value.sa[1] = 100;
|
2017-08-09 19:39:29 +02:00
|
|
|
rtype->modifiers[1].type = RMT_END;
|
2017-02-15 20:50:45 +01:00
|
|
|
make_item(u, itype, 10);
|
|
|
|
split_allocations(u->region);
|
|
|
|
CuAssertIntEquals(tc, 21, get_item(u, itype));
|
2017-03-22 20:37:09 +01:00
|
|
|
CuAssertIntEquals(tc, 284, region_getresource(u->region, rtype)); /* 60% saving = 6 stones make 10 stones */
|
2017-02-16 20:26:34 +01:00
|
|
|
|
2017-02-18 11:19:42 +01:00
|
|
|
make_item(u, itype, 1);
|
|
|
|
split_allocations(u->region);
|
|
|
|
CuAssertIntEquals(tc, 22, get_item(u, itype));
|
2017-03-22 20:37:09 +01:00
|
|
|
CuAssertIntEquals(tc, 283, region_getresource(u->region, rtype)); /* no free lunches */
|
2017-02-18 11:19:42 +01:00
|
|
|
|
2017-03-11 14:41:25 +01:00
|
|
|
rtype->modifiers[0].value = frac_make(1, 2);
|
2017-03-02 19:21:11 +01:00
|
|
|
make_item(u, itype, 6);
|
|
|
|
split_allocations(u->region);
|
|
|
|
CuAssertIntEquals(tc, 28, get_item(u, itype));
|
2017-03-22 20:37:09 +01:00
|
|
|
CuAssertIntEquals(tc, 280, region_getresource(u->region, rtype)); /* 50% saving = 3 stones make 6 stones */
|
2017-03-02 19:21:11 +01:00
|
|
|
|
2017-04-02 14:43:53 +02:00
|
|
|
rtype->modifiers[0].type = RMT_PROD_REQUIRE;
|
2017-02-26 13:55:19 +01:00
|
|
|
rtype->modifiers[0].race = NULL;
|
|
|
|
rtype->modifiers[0].btype = bt_get_or_create("mine");
|
2017-03-11 14:41:25 +01:00
|
|
|
|
2017-04-02 14:43:53 +02:00
|
|
|
test_clear_messages(u->faction);
|
2017-02-16 20:26:34 +01:00
|
|
|
make_item(u, itype, 10);
|
2017-04-02 14:43:53 +02:00
|
|
|
CuAssertIntEquals(tc, 28, get_item(u, itype));
|
2017-05-06 15:53:21 +02:00
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "building_needed"));
|
2017-02-16 20:26:34 +01:00
|
|
|
|
2017-04-02 14:43:53 +02:00
|
|
|
rtype->modifiers[0].type = RMT_PROD_REQUIRE;
|
|
|
|
rtype->modifiers[0].race = test_create_race("smurf");
|
|
|
|
rtype->modifiers[0].btype = NULL;
|
|
|
|
|
|
|
|
test_clear_messages(u->faction);
|
|
|
|
make_item(u, itype, 10);
|
|
|
|
CuAssertIntEquals(tc, 28, get_item(u, itype));
|
|
|
|
CuAssertPtrNotNull(tc, test_find_messagetype(u->faction->msgs, "error117"));
|
|
|
|
|
|
|
|
rtype->modifiers[1].type = RMT_PROD_REQUIRE;
|
|
|
|
rtype->modifiers[1].race = u_race(u);
|
|
|
|
rtype->modifiers[1].btype = NULL;
|
2017-08-09 19:39:29 +02:00
|
|
|
rtype->modifiers[2].type = RMT_END;
|
2017-04-02 14:43:53 +02:00
|
|
|
|
|
|
|
test_clear_messages(u->faction);
|
|
|
|
make_item(u, itype, 10);
|
|
|
|
CuAssertPtrEquals(tc, NULL, u->faction->msgs);
|
|
|
|
split_allocations(u->region);
|
|
|
|
CuAssertIntEquals(tc, 38, get_item(u, itype));
|
|
|
|
|
2017-02-15 17:09:23 +01:00
|
|
|
test_cleanup();
|
|
|
|
}
|
|
|
|
|
2012-05-27 17:38:17 +02:00
|
|
|
CuSuite *get_economy_suite(void)
|
|
|
|
{
|
2014-07-06 05:14:11 +02:00
|
|
|
CuSuite *suite = CuSuiteNew();
|
|
|
|
SUITE_ADD_TEST(suite, test_give_control_building);
|
|
|
|
SUITE_ADD_TEST(suite, test_give_control_ship);
|
2016-10-04 09:14:49 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_income);
|
2017-04-02 14:43:53 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_modify_production);
|
|
|
|
SUITE_ADD_TEST(suite, test_modify_skill);
|
|
|
|
SUITE_ADD_TEST(suite, test_modify_material);
|
2014-07-06 05:14:11 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_steal_okay);
|
|
|
|
SUITE_ADD_TEST(suite, test_steal_ocean);
|
|
|
|
SUITE_ADD_TEST(suite, test_steal_nosteal);
|
2015-02-16 20:39:50 +01:00
|
|
|
SUITE_ADD_TEST(suite, test_normals_recruit);
|
|
|
|
SUITE_ADD_TEST(suite, test_heroes_dont_recruit);
|
2015-11-14 15:32:31 +01:00
|
|
|
SUITE_ADD_TEST(suite, test_tax_cmd);
|
2016-08-21 20:01:30 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_maintain_buildings);
|
2016-09-18 11:34:54 +02:00
|
|
|
SUITE_ADD_TEST(suite, test_recruit);
|
2014-07-06 05:14:11 +02:00
|
|
|
return suite;
|
2012-05-27 17:38:17 +02:00
|
|
|
}
|