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>
|
2014-12-08 21:19:18 +01:00
|
|
|
|
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.
|
|
|
|
|
**/
|
|
|
|
|
|
2018-02-24 19:41:36 +01:00
|
|
|
|
#ifdef _MSC_VER
|
2010-08-08 10:06:34 +02:00
|
|
|
|
#include <platform.h>
|
2018-02-24 19:41:36 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
2010-08-08 10:06:34 +02:00
|
|
|
|
#include "randenc.h"
|
|
|
|
|
|
2018-02-24 19:41:36 +01:00
|
|
|
|
#include "chaos.h"
|
2010-08-08 10:06:34 +02:00
|
|
|
|
#include "economy.h"
|
2016-12-23 18:05:38 +01:00
|
|
|
|
#include "monsters.h"
|
2014-08-27 06:40:18 +02:00
|
|
|
|
#include "move.h"
|
2018-08-01 10:04:12 +02:00
|
|
|
|
#include "spy.h"
|
2016-03-08 15:13:49 +01:00
|
|
|
|
#include "study.h"
|
2018-02-24 19:41:36 +01:00
|
|
|
|
#include "volcano.h"
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2018-02-24 19:41:36 +01:00
|
|
|
|
#include "spells/unitcurse.h"
|
|
|
|
|
#include "spells/regioncurse.h"
|
2017-08-21 20:48:00 +02:00
|
|
|
|
|
2017-08-21 20:18:19 +02:00
|
|
|
|
/* attributes includes */
|
2018-02-24 19:41:36 +01:00
|
|
|
|
#include "attributes/racename.h"
|
|
|
|
|
#include "attributes/reduceproduction.h"
|
2017-08-21 20:18:19 +02:00
|
|
|
|
|
2010-08-08 10:06:34 +02:00
|
|
|
|
/* kernel includes */
|
2018-02-24 19:41:36 +01:00
|
|
|
|
#include "kernel/building.h"
|
|
|
|
|
#include "kernel/config.h"
|
|
|
|
|
#include "kernel/curse.h"
|
|
|
|
|
#include "kernel/equipment.h"
|
|
|
|
|
#include "kernel/faction.h"
|
|
|
|
|
#include "kernel/item.h"
|
|
|
|
|
#include "kernel/messages.h"
|
|
|
|
|
#include "kernel/order.h"
|
|
|
|
|
#include "kernel/plane.h"
|
|
|
|
|
#include "kernel/pool.h"
|
|
|
|
|
#include "kernel/race.h"
|
|
|
|
|
#include "kernel/region.h"
|
|
|
|
|
#include "kernel/ship.h"
|
|
|
|
|
#include "kernel/terrain.h"
|
|
|
|
|
#include "kernel/terrainid.h"
|
|
|
|
|
#include "kernel/unit.h"
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
|
|
/* util includes */
|
2018-09-29 11:37:17 +02:00
|
|
|
|
#include "kernel/attrib.h"
|
2018-02-24 19:41:36 +01:00
|
|
|
|
#include "util/language.h"
|
|
|
|
|
#include "util/lists.h"
|
|
|
|
|
#include "util/log.h"
|
|
|
|
|
#include "util/rand.h"
|
|
|
|
|
#include "util/message.h"
|
|
|
|
|
#include "util/rng.h"
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
|
|
/* libc includes */
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <math.h>
|
2017-12-11 18:35:30 +01:00
|
|
|
|
#include <stdio.h>
|
2010-08-08 10:06:34 +02:00
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
#include <attributes/iceberg.h>
|
|
|
|
|
extern struct attrib_type at_unitdissolve;
|
|
|
|
|
|
|
|
|
|
/* In a->data.ca[1] steht der Prozentsatz mit dem sich die Einheit
|
2016-11-23 18:56:40 +01:00
|
|
|
|
* aufl<EFBFBD>st, in a->data.ca[0] kann angegeben werden, wohin die Personen
|
2010-08-08 10:06:34 +02:00
|
|
|
|
* verschwinden. Passiert bereits in der ersten Runde! */
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static void dissolve_units(void)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
region *r;
|
|
|
|
|
unit *u;
|
|
|
|
|
int n;
|
|
|
|
|
int i;
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
for (r = regions; r; r = r->next) {
|
|
|
|
|
for (u = r->units; u; u = u->next) {
|
|
|
|
|
attrib *a = a_find(u->attribs, &at_unitdissolve);
|
|
|
|
|
if (a) {
|
|
|
|
|
message *msg;
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
if (u->age == 0 && a->data.ca[1] < 100)
|
|
|
|
|
continue;
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
/* TODO: Durch einzelne Berechnung ersetzen */
|
|
|
|
|
if (a->data.ca[1] == 100) {
|
|
|
|
|
n = u->number;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
n = 0;
|
|
|
|
|
for (i = 0; i < u->number; i++) {
|
|
|
|
|
if (rng_int() % 100 < a->data.ca[1])
|
|
|
|
|
n++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
/* wenn keiner verschwindet, auch keine Meldung */
|
|
|
|
|
if (n == 0) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
scale_number(u, u->number - n);
|
|
|
|
|
|
|
|
|
|
switch (a->data.ca[0]) {
|
|
|
|
|
case 1:
|
|
|
|
|
rsetpeasants(r, rpeasants(r) + n);
|
|
|
|
|
msg =
|
|
|
|
|
msg_message("dissolve_units_1", "unit region number race", u, r,
|
|
|
|
|
n, u_race(u));
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
if (r->land && !fval(r, RF_MALLORN)) {
|
|
|
|
|
rsettrees(r, 2, rtrees(r, 2) + n);
|
|
|
|
|
msg =
|
|
|
|
|
msg_message("dissolve_units_2", "unit region number race", u, r,
|
|
|
|
|
n, u_race(u));
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
msg =
|
|
|
|
|
msg_message("dissolve_units_3", "unit region number race", u, r,
|
|
|
|
|
n, u_race(u));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
if (u_race(u) == get_race(RC_STONEGOLEM)
|
|
|
|
|
|| u_race(u) == get_race(RC_IRONGOLEM)) {
|
|
|
|
|
msg =
|
|
|
|
|
msg_message("dissolve_units_4", "unit region number race", u, r,
|
|
|
|
|
n, u_race(u));
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
msg =
|
|
|
|
|
msg_message("dissolve_units_5", "unit region number race", u, r,
|
|
|
|
|
n, u_race(u));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
add_message(&u->faction->msgs, msg);
|
|
|
|
|
msg_release(msg);
|
2011-03-07 08:02:35 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
remove_empty_units();
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
void drown(region * r)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
if (fval(r->terrain, SEA_REGION)) {
|
2015-11-05 11:11:02 +01:00
|
|
|
|
unit **up = &r->units;
|
2014-12-08 21:19:18 +01:00
|
|
|
|
while (*up) {
|
|
|
|
|
unit *u = *up;
|
2015-11-02 13:06:14 +01:00
|
|
|
|
|
2017-05-24 08:52:19 +02:00
|
|
|
|
if (!(u->ship || u->number == 0 || canswim(u) || canfly(u))) {
|
2014-12-08 21:19:18 +01:00
|
|
|
|
scale_number(u, 0);
|
|
|
|
|
ADDMSG(&u->faction->msgs, msg_message("drown", "unit region", u, r));
|
|
|
|
|
}
|
2015-11-02 13:12:19 +01:00
|
|
|
|
|
|
|
|
|
up = &u->next;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
2014-12-08 21:19:18 +01:00
|
|
|
|
remove_empty_units_in_region(r);
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-06 21:04:30 +01:00
|
|
|
|
static void melt_iceberg(region * r, const terrain_type *t_ocean)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
attrib *a;
|
|
|
|
|
unit *u;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
for (u = r->units; u; u = u->next)
|
|
|
|
|
freset(u->faction, FFL_SELECT);
|
|
|
|
|
for (u = r->units; u; u = u->next)
|
|
|
|
|
if (!fval(u->faction, FFL_SELECT)) {
|
|
|
|
|
fset(u->faction, FFL_SELECT);
|
|
|
|
|
ADDMSG(&u->faction->msgs, msg_message("iceberg_melt", "region", r));
|
|
|
|
|
}
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2016-11-23 18:56:40 +01:00
|
|
|
|
/* driftrichtung l<>schen */
|
2014-12-08 21:19:18 +01:00
|
|
|
|
a = a_find(r->attribs, &at_iceberg);
|
|
|
|
|
if (a)
|
|
|
|
|
a_remove(&r->attribs, a);
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2016-11-23 18:56:40 +01:00
|
|
|
|
/* Geb<65>ude l<>schen */
|
2014-12-08 21:19:18 +01:00
|
|
|
|
while (r->buildings) {
|
|
|
|
|
remove_building(&r->buildings, r->buildings);
|
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
/* in Ozean wandeln */
|
2017-11-06 21:04:30 +01:00
|
|
|
|
terraform_region(r, t_ocean);
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static void move_iceberg(region * r)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
attrib *a;
|
|
|
|
|
direction_t dir;
|
|
|
|
|
region *rc;
|
|
|
|
|
|
|
|
|
|
a = a_find(r->attribs, &at_iceberg);
|
|
|
|
|
if (!a) {
|
|
|
|
|
dir = (direction_t)(rng_int() % MAXDIRECTIONS);
|
|
|
|
|
a = a_add(&r->attribs, make_iceberg(dir));
|
2011-03-07 08:02:35 +01:00
|
|
|
|
}
|
2014-12-08 21:19:18 +01:00
|
|
|
|
else {
|
|
|
|
|
if (rng_int() % 100 < 20) {
|
|
|
|
|
dir = (direction_t)(rng_int() % MAXDIRECTIONS);
|
|
|
|
|
a->data.i = dir;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
dir = (direction_t)a->data.i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rc = rconnect(r, dir);
|
|
|
|
|
|
|
|
|
|
if (rc && !fval(rc->terrain, ARCTIC_REGION)) {
|
|
|
|
|
if (fval(rc->terrain, SEA_REGION)) { /* Eisberg treibt */
|
|
|
|
|
ship *sh, *shn;
|
|
|
|
|
unit *u;
|
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
|
|
for (u = r->units; u; u = u->next)
|
|
|
|
|
freset(u->faction, FFL_SELECT);
|
|
|
|
|
for (u = r->units; u; u = u->next)
|
|
|
|
|
if (!fval(u->faction, FFL_SELECT)) {
|
|
|
|
|
fset(u->faction, FFL_SELECT);
|
|
|
|
|
ADDMSG(&u->faction->msgs, msg_message("iceberg_drift",
|
|
|
|
|
"region dir", r, dir));
|
|
|
|
|
}
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
x = r->x;
|
|
|
|
|
y = r->y;
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
runhash(r);
|
|
|
|
|
runhash(rc);
|
|
|
|
|
r->x = rc->x;
|
|
|
|
|
r->y = rc->y;
|
|
|
|
|
rc->x = x;
|
|
|
|
|
rc->y = y;
|
|
|
|
|
rhash(rc);
|
|
|
|
|
rhash(r);
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
/* rc ist der Ozean (Ex-Eisberg), r der Eisberg (Ex-Ozean) */
|
|
|
|
|
|
|
|
|
|
/* Schiffe aus dem Zielozean werden in den Eisberg transferiert
|
|
|
|
|
* und nehmen Schaden. */
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
for (sh = r->ships; sh; sh = sh->next)
|
|
|
|
|
freset(sh, SF_SELECT);
|
|
|
|
|
|
|
|
|
|
for (sh = r->ships; sh; sh = sh->next) {
|
2016-11-23 18:56:40 +01:00
|
|
|
|
/* Meldung an Kapit<69>n */
|
2015-11-22 10:44:46 +01:00
|
|
|
|
double dmg = config_get_flt("rules.ship.damage.intoiceberg", 0.1);
|
2014-12-08 21:19:18 +01:00
|
|
|
|
damage_ship(sh, dmg);
|
|
|
|
|
fset(sh, SF_SELECT);
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2016-11-23 18:56:40 +01:00
|
|
|
|
/* Personen, Schiffe und Geb<65>ude verschieben */
|
2014-12-08 21:19:18 +01:00
|
|
|
|
while (rc->buildings) {
|
|
|
|
|
rc->buildings->region = r;
|
|
|
|
|
translist(&rc->buildings, &r->buildings, rc->buildings);
|
|
|
|
|
}
|
|
|
|
|
while (rc->ships) {
|
2015-11-22 10:44:46 +01:00
|
|
|
|
double dmg = config_get_flt("rules.ship.damage.withiceberg", 0.1);
|
2014-12-08 21:19:18 +01:00
|
|
|
|
fset(rc->ships, SF_SELECT);
|
|
|
|
|
damage_ship(rc->ships, dmg);
|
|
|
|
|
move_ship(rc->ships, rc, r, NULL);
|
|
|
|
|
}
|
|
|
|
|
while (rc->units) {
|
|
|
|
|
building *b = rc->units->building;
|
|
|
|
|
u = rc->units;
|
|
|
|
|
u->building = 0; /* prevent leaving in move_unit */
|
|
|
|
|
move_unit(rc->units, r, NULL);
|
|
|
|
|
u_set_building(u, b); /* undo leave-prevention */
|
|
|
|
|
}
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2016-11-23 18:56:40 +01:00
|
|
|
|
/* Besch<63>digte Schiffe k<>nnen sinken */
|
2014-12-08 21:19:18 +01:00
|
|
|
|
|
|
|
|
|
for (sh = r->ships; sh;) {
|
|
|
|
|
shn = sh->next;
|
|
|
|
|
if (fval(sh, SF_SELECT)) {
|
|
|
|
|
u = ship_owner(sh);
|
|
|
|
|
if (sh->damage >= sh->size * DAMAGE_SCALE) {
|
|
|
|
|
if (u != NULL) {
|
|
|
|
|
ADDMSG(&u->faction->msgs, msg_message("overrun_by_iceberg_des",
|
|
|
|
|
"ship", sh));
|
|
|
|
|
}
|
2018-08-01 10:04:12 +02:00
|
|
|
|
sink_ship(sh);
|
2014-12-08 21:19:18 +01:00
|
|
|
|
remove_ship(&sh->region->ships, sh);
|
|
|
|
|
}
|
|
|
|
|
else if (u != NULL) {
|
|
|
|
|
ADDMSG(&u->faction->msgs, msg_message("overrun_by_iceberg",
|
|
|
|
|
"ship", sh));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
sh = shn;
|
|
|
|
|
}
|
2011-03-07 08:02:35 +01:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
}
|
|
|
|
|
else if (rng_int() % 100 < 20) { /* Eisberg bleibt als Gletscher liegen */
|
|
|
|
|
unit *u;
|
|
|
|
|
|
|
|
|
|
rsetterrain(r, T_GLACIER);
|
|
|
|
|
a_remove(&r->attribs, a);
|
|
|
|
|
|
|
|
|
|
for (u = r->units; u; u = u->next)
|
|
|
|
|
freset(u->faction, FFL_SELECT);
|
|
|
|
|
for (u = r->units; u; u = u->next)
|
|
|
|
|
if (!fval(u->faction, FFL_SELECT)) {
|
|
|
|
|
fset(u->faction, FFL_SELECT);
|
|
|
|
|
ADDMSG(&u->faction->msgs, msg_message("iceberg_land", "region", r));
|
|
|
|
|
}
|
2011-03-07 08:02:35 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static void move_icebergs(void)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
region *r;
|
2017-11-06 21:04:30 +01:00
|
|
|
|
static int terrain_cache;
|
|
|
|
|
static const terrain_type *t_iceberg, *t_ocean;
|
2014-12-08 21:19:18 +01:00
|
|
|
|
|
2017-11-06 21:04:30 +01:00
|
|
|
|
if (terrain_changed(&terrain_cache)) {
|
|
|
|
|
t_iceberg = newterrain(T_ICEBERG);
|
|
|
|
|
t_ocean = newterrain(T_OCEAN);
|
|
|
|
|
}
|
2014-12-08 21:19:18 +01:00
|
|
|
|
for (r = regions; r; r = r->next) {
|
2017-11-06 21:04:30 +01:00
|
|
|
|
if (r->terrain == t_iceberg && !fval(r, RF_SELECT)) {
|
2014-12-08 21:19:18 +01:00
|
|
|
|
int select = rng_int() % 10;
|
|
|
|
|
if (select < 4) {
|
|
|
|
|
/* 4% chance */
|
|
|
|
|
fset(r, RF_SELECT);
|
2017-11-06 21:04:30 +01:00
|
|
|
|
melt_iceberg(r, t_ocean);
|
2014-12-08 21:19:18 +01:00
|
|
|
|
}
|
|
|
|
|
else if (select < 64) {
|
|
|
|
|
/* 60% chance */
|
|
|
|
|
fset(r, RF_SELECT);
|
|
|
|
|
move_iceberg(r);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-07 08:02:35 +01:00
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-13 16:13:33 +02:00
|
|
|
|
static void create_icebergs(void)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
region *r;
|
2017-11-05 19:35:06 +01:00
|
|
|
|
const struct terrain_type *t_iceberg, *t_sleep;
|
|
|
|
|
|
|
|
|
|
t_iceberg = get_terrain("iceberg");
|
|
|
|
|
t_sleep = get_terrain("iceberg_sleep");
|
|
|
|
|
assert(t_iceberg && t_sleep);
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
for (r = regions; r; r = r->next) {
|
2017-11-05 19:35:06 +01:00
|
|
|
|
if (r->terrain == t_sleep && chance(0.05)) {
|
2014-12-08 21:19:18 +01:00
|
|
|
|
bool has_ocean_neighbour = false;
|
|
|
|
|
direction_t dir;
|
|
|
|
|
unit *u;
|
|
|
|
|
|
|
|
|
|
freset(r, RF_SELECT);
|
|
|
|
|
for (dir = 0; dir < MAXDIRECTIONS; dir++) {
|
2018-02-26 19:48:52 +01:00
|
|
|
|
region *rc = rconnect(r, dir);
|
2014-12-08 21:19:18 +01:00
|
|
|
|
if (rc && fval(rc->terrain, SEA_REGION)) {
|
|
|
|
|
has_ocean_neighbour = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!has_ocean_neighbour)
|
|
|
|
|
continue;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2017-11-05 19:35:06 +01:00
|
|
|
|
r->terrain = t_iceberg;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
fset(r, RF_SELECT);
|
|
|
|
|
move_iceberg(r);
|
|
|
|
|
|
|
|
|
|
for (u = r->units; u; u = u->next) {
|
|
|
|
|
freset(u->faction, FFL_SELECT);
|
|
|
|
|
}
|
|
|
|
|
for (u = r->units; u; u = u->next) {
|
|
|
|
|
if (!fval(u->faction, FFL_SELECT)) {
|
|
|
|
|
fset(u->faction, FFL_SELECT);
|
|
|
|
|
ADDMSG(&u->faction->msgs, msg_message("iceberg_create", "region", r));
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static void godcurse(void)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
region *r;
|
|
|
|
|
|
|
|
|
|
for (r = regions; r; r = r->next) {
|
2017-08-21 20:48:00 +02:00
|
|
|
|
if (is_cursed(r->attribs, &ct_godcursezone)) {
|
2014-12-08 21:19:18 +01:00
|
|
|
|
unit *u;
|
|
|
|
|
for (u = r->units; u; u = u->next) {
|
|
|
|
|
skill *sv = u->skills;
|
|
|
|
|
while (sv != u->skills + u->skill_size) {
|
|
|
|
|
int weeks = 1 + rng_int() % 3;
|
|
|
|
|
reduce_skill(u, sv, weeks);
|
|
|
|
|
++sv;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (fval(r->terrain, SEA_REGION)) {
|
|
|
|
|
ship *sh;
|
|
|
|
|
for (sh = r->ships; sh;) {
|
|
|
|
|
ship *shn = sh->next;
|
2015-11-22 10:44:46 +01:00
|
|
|
|
double dmg = config_get_flt("rules.ship.damage.godcurse", 0.1);
|
2014-12-08 21:19:18 +01:00
|
|
|
|
damage_ship(sh, dmg);
|
|
|
|
|
if (sh->damage >= sh->size * DAMAGE_SCALE) {
|
2017-12-29 06:13:28 +01:00
|
|
|
|
unit *uo = ship_owner(sh);
|
|
|
|
|
if (uo) {
|
|
|
|
|
ADDMSG(&uo->faction->msgs,
|
|
|
|
|
msg_message("godcurse_destroy_ship", "ship", sh));
|
|
|
|
|
}
|
2018-08-01 10:04:12 +02:00
|
|
|
|
sink_ship(sh);
|
2014-12-08 21:19:18 +01:00
|
|
|
|
remove_ship(&sh->region->ships, sh);
|
|
|
|
|
}
|
|
|
|
|
sh = shn;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** handles the "orcish" curse that makes units grow like old orks
|
2016-08-29 20:44:43 +02:00
|
|
|
|
* TODO: This would probably be better handled in an age-function for the curse,
|
2010-08-08 10:06:34 +02:00
|
|
|
|
* but it's now being called by randomevents()
|
|
|
|
|
*/
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static void orc_growth(void)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
region *r;
|
|
|
|
|
for (r = regions; r; r = r->next) {
|
|
|
|
|
unit *u;
|
|
|
|
|
for (u = r->units; u; u = u->next) {
|
2016-08-29 20:44:43 +02:00
|
|
|
|
if (u->attribs && !has_skill(u, SK_MAGIC) && !has_skill(u, SK_ALCHEMY)
|
2014-12-08 21:19:18 +01:00
|
|
|
|
&& !fval(u, UFL_HERO)) {
|
2017-08-21 20:18:19 +02:00
|
|
|
|
curse *c = get_curse(u->attribs, &ct_orcish);
|
|
|
|
|
if (c) {
|
|
|
|
|
int n;
|
|
|
|
|
int increase = 0;
|
|
|
|
|
int num = get_cursedmen(u, c);
|
|
|
|
|
double prob = curse_geteffect(c);
|
|
|
|
|
const item_type * it_chastity = it_find("ao_chastity");
|
|
|
|
|
|
|
|
|
|
if (it_chastity) {
|
|
|
|
|
num -= i_get(u->items, it_chastity);
|
|
|
|
|
}
|
|
|
|
|
for (n = num; n > 0; n--) {
|
|
|
|
|
if (chance(prob)) {
|
|
|
|
|
++increase;
|
2016-08-29 20:44:43 +02:00
|
|
|
|
}
|
2017-08-21 20:18:19 +02:00
|
|
|
|
}
|
|
|
|
|
if (increase) {
|
|
|
|
|
unit *u2 = create_unit(r, u->faction, increase, u_race(u), 0, NULL, u);
|
|
|
|
|
transfermen(u2, u, u2->number);
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2017-08-21 20:18:19 +02:00
|
|
|
|
ADDMSG(&u->faction->msgs, msg_message("orcgrowth",
|
|
|
|
|
"unit amount race", u, increase, u_race(u)));
|
2016-08-29 20:44:43 +02:00
|
|
|
|
}
|
2014-12-08 21:19:18 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-23 18:56:40 +01:00
|
|
|
|
/** Talente von D<>monen verschieben sich.
|
2010-08-08 10:06:34 +02:00
|
|
|
|
*/
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static void demon_skillchanges(void)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
region *r;
|
2016-10-03 20:36:46 +02:00
|
|
|
|
static const race *rc_demon;
|
|
|
|
|
static int rc_cache;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2016-10-03 20:36:46 +02:00
|
|
|
|
if (rc_changed(&rc_cache)) {
|
|
|
|
|
rc_demon = get_race(RC_DAEMON);
|
|
|
|
|
}
|
2014-12-08 21:19:18 +01:00
|
|
|
|
for (r = regions; r; r = r->next) {
|
|
|
|
|
unit *u;
|
|
|
|
|
for (u = r->units; u; u = u->next) {
|
2016-10-03 20:36:46 +02:00
|
|
|
|
if (u_race(u) == rc_demon) {
|
2016-03-13 13:31:54 +01:00
|
|
|
|
demon_skillchange(u);
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Eisberge entstehen und bewegen sich.
|
|
|
|
|
* Einheiten die im Wasser landen, ertrinken.
|
|
|
|
|
*/
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static void icebergs(void)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
create_icebergs();
|
|
|
|
|
move_icebergs();
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-23 18:56:40 +01:00
|
|
|
|
#define HERBROTCHANCE 5 /* Verrottchance f<>r Kr<4B>uter (ifdef HERBS_ROT) */
|
2018-05-13 16:17:03 +02:00
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static void rotting_herbs(void)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-06-23 16:28:10 +02:00
|
|
|
|
region *r;
|
2015-11-22 16:14:27 +01:00
|
|
|
|
int rule_rot = config_get_int("rules.economy.herbrot", HERBROTCHANCE);
|
2014-06-23 16:28:10 +02:00
|
|
|
|
if (rule_rot == 0) return;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2014-06-23 16:28:10 +02:00
|
|
|
|
for (r = regions; r; r = r->next) {
|
|
|
|
|
unit *u;
|
|
|
|
|
for (u = r->units; u; u = u->next) {
|
|
|
|
|
const struct item_type *it_bag = it_find("magicherbbag");
|
|
|
|
|
item **itmp = &u->items;
|
|
|
|
|
int rot_chance = rule_rot;
|
|
|
|
|
|
|
|
|
|
if (it_bag && *i_find(itmp, it_bag)) {
|
|
|
|
|
rot_chance = (rot_chance * 2) / 5;
|
|
|
|
|
}
|
|
|
|
|
while (*itmp) {
|
|
|
|
|
item *itm = *itmp;
|
|
|
|
|
int n = itm->number;
|
|
|
|
|
double k = n * rot_chance / 100.0;
|
|
|
|
|
if (fval(itm->type, ITF_HERB)) {
|
2018-02-24 19:41:36 +01:00
|
|
|
|
int delta = (int)normalvariate(k, k / 4);
|
|
|
|
|
if (n < delta) delta = n;
|
2014-06-23 16:28:10 +02:00
|
|
|
|
if (!i_change(itmp, itm->type, -delta)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
itmp = &itm->next;
|
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
void randomevents(void)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2014-12-08 21:19:18 +01:00
|
|
|
|
region *r;
|
|
|
|
|
faction *monsters = get_monsters();
|
|
|
|
|
|
2017-11-06 21:04:30 +01:00
|
|
|
|
if (config_get_int("modules.iceberg", 0)) {
|
2017-11-05 19:35:06 +01:00
|
|
|
|
icebergs();
|
|
|
|
|
}
|
2017-11-05 20:52:04 +01:00
|
|
|
|
for (r = regions; r; r = r->next) {
|
|
|
|
|
drown(r);
|
|
|
|
|
}
|
2014-12-08 21:19:18 +01:00
|
|
|
|
godcurse();
|
|
|
|
|
orc_growth();
|
|
|
|
|
demon_skillchanges();
|
2017-11-06 21:10:37 +01:00
|
|
|
|
if (volcano_module()) {
|
2017-11-06 21:04:30 +01:00
|
|
|
|
volcano_update();
|
|
|
|
|
}
|
2014-12-08 21:19:18 +01:00
|
|
|
|
/* Monumente zerfallen, Schiffe verfaulen */
|
|
|
|
|
|
|
|
|
|
for (r = regions; r; r = r->next) {
|
|
|
|
|
building **blist = &r->buildings;
|
|
|
|
|
while (*blist) {
|
|
|
|
|
building *b = *blist;
|
|
|
|
|
if (fval(b->type, BTF_DECAY) && !building_owner(b)) {
|
2018-02-24 19:41:36 +01:00
|
|
|
|
int delta = (b->size * 20) / 100;
|
|
|
|
|
if (delta < 1) delta = 1;
|
|
|
|
|
b->size -= delta;
|
2014-12-08 21:19:18 +01:00
|
|
|
|
if (b->size == 0) {
|
|
|
|
|
remove_building(blist, r->buildings);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (*blist == b)
|
|
|
|
|
blist = &b->next;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
/* monster-einheiten desertieren */
|
|
|
|
|
if (monsters) {
|
2016-12-23 18:05:38 +01:00
|
|
|
|
monsters_desert(monsters);
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
2014-12-08 21:19:18 +01:00
|
|
|
|
|
2014-12-13 11:30:34 +01:00
|
|
|
|
chaos_update();
|
2014-12-08 21:19:18 +01:00
|
|
|
|
rotting_herbs();
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2014-12-08 21:19:18 +01:00
|
|
|
|
dissolve_units();
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
2014-12-16 14:18:29 +01:00
|
|
|
|
|
|
|
|
|
void plagues(region * r)
|
|
|
|
|
{
|
|
|
|
|
int peasants;
|
|
|
|
|
int i;
|
|
|
|
|
int dead = 0;
|
|
|
|
|
|
|
|
|
|
peasants = rpeasants(r);
|
2015-05-15 19:08:44 +02:00
|
|
|
|
dead = (int)(0.5 + PLAGUE_VICTIMS * peasants);
|
2014-12-16 14:18:29 +01:00
|
|
|
|
for (i = dead; i != 0; i--) {
|
|
|
|
|
if (rng_double() < PLAGUE_HEALCHANCE && rmoney(r) >= PLAGUE_HEALCOST) {
|
|
|
|
|
rsetmoney(r, rmoney(r) - PLAGUE_HEALCOST);
|
|
|
|
|
--dead;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dead > 0) {
|
|
|
|
|
message *msg = add_message(&r->msgs, msg_message("pest", "dead", dead));
|
|
|
|
|
msg_release(msg);
|
|
|
|
|
deathcounts(r, dead);
|
|
|
|
|
rsetpeasants(r, peasants - dead);
|
|
|
|
|
}
|
|
|
|
|
}
|