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>
|
2015-01-30 20:37:14 +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.
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
#include <platform.h>
|
|
|
|
|
#include <kernel/config.h>
|
|
|
|
|
#include "shock.h"
|
|
|
|
|
|
2014-11-01 12:57:01 +01:00
|
|
|
|
#include "magic.h"
|
|
|
|
|
|
2010-08-08 10:06:34 +02:00
|
|
|
|
/* kernel includes */
|
|
|
|
|
#include <kernel/curse.h>
|
|
|
|
|
#include <kernel/faction.h>
|
2014-06-09 18:54:48 +02:00
|
|
|
|
#include <kernel/messages.h>
|
2010-08-08 10:06:34 +02:00
|
|
|
|
#include <kernel/spell.h>
|
|
|
|
|
#include <kernel/unit.h>
|
|
|
|
|
|
|
|
|
|
/* util includes */
|
|
|
|
|
#include <util/attrib.h>
|
|
|
|
|
#include <util/base36.h>
|
|
|
|
|
#include <util/event.h>
|
|
|
|
|
#include <util/log.h>
|
|
|
|
|
#include <util/resolve.h>
|
|
|
|
|
#include <util/rng.h>
|
2013-12-31 10:06:28 +01:00
|
|
|
|
|
|
|
|
|
#include <storage.h>
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
|
|
/* libc includes */
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
/***
|
|
|
|
|
** shock
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------- */
|
|
|
|
|
/* do_shock - Schockt die Einheit, z.B. bei Verlust eines */
|
|
|
|
|
/* Vertrauten. */
|
|
|
|
|
/* ------------------------------------------------------------- */
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static void do_shock(unit * u, const char *reason)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2015-01-30 20:37:14 +01:00
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (u->number > 0) {
|
|
|
|
|
/* HP - Verlust */
|
|
|
|
|
u->hp = (unit_max_hp(u) * u->number) / 10;
|
|
|
|
|
u->hp = _max(1, u->hp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Aura - Verlust */
|
|
|
|
|
if (is_mage(u)) {
|
|
|
|
|
set_spellpoints(u, max_spellpoints(u->region, u) / 10);
|
2011-03-07 08:02:35 +01:00
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2015-01-30 20:37:14 +01:00
|
|
|
|
/* Evt. Talenttageverlust */
|
|
|
|
|
for (i = 0; i != u->skill_size; ++i)
|
|
|
|
|
if (rng_int() % 5 == 0) {
|
|
|
|
|
skill *sv = u->skills + i;
|
|
|
|
|
int weeks = (sv->level * sv->level - sv->level) / 2;
|
|
|
|
|
int change = (weeks + 9) / 10;
|
|
|
|
|
reduce_skill(u, sv, change);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dies ist ein Hack, um das skillmod und familiar-Attribut beim Mage
|
|
|
|
|
* zu l<EFBFBD>schen wenn der Familiar get<EFBFBD>tet wird. Da sollten wir <EFBFBD>ber eine
|
|
|
|
|
* saubere Implementation nachdenken. */
|
|
|
|
|
|
|
|
|
|
if (strcmp(reason, "trigger") == 0) {
|
|
|
|
|
remove_familiar(u);
|
|
|
|
|
}
|
|
|
|
|
if (u->faction != NULL) {
|
|
|
|
|
ADDMSG(&u->faction->msgs, msg_message("shock",
|
|
|
|
|
"mage reason", u, _strdup(reason)));
|
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static int shock_handle(trigger * t, void *data)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2015-01-30 20:37:14 +01:00
|
|
|
|
/* destroy the unit */
|
|
|
|
|
unit *u = (unit *)t->data.v;
|
|
|
|
|
if (u && u->number) {
|
|
|
|
|
do_shock(u, "trigger");
|
|
|
|
|
}
|
|
|
|
|
unused_arg(data);
|
|
|
|
|
return 0;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static void shock_write(const trigger * t, struct storage *store)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2015-01-30 20:37:14 +01:00
|
|
|
|
unit *u = (unit *)t->data.v;
|
|
|
|
|
trigger *next = t->next;
|
|
|
|
|
while (next) {
|
|
|
|
|
/* make sure it is unique! */
|
|
|
|
|
if (next->type == t->type && next->data.v == t->data.v)
|
|
|
|
|
break;
|
|
|
|
|
next = next->next;
|
|
|
|
|
}
|
|
|
|
|
if (next && u) {
|
|
|
|
|
log_error("more than one shock-attribut for %s on a unit. FIXED.\n", unitid(u));
|
|
|
|
|
write_unit_reference(NULL, store);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
write_unit_reference(u, store);
|
|
|
|
|
}
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
static int shock_read(trigger * t, struct storage *store)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2015-01-30 20:37:14 +01:00
|
|
|
|
int result =
|
|
|
|
|
read_reference(&t->data.v, store, read_unit_reference, resolve_unit);
|
|
|
|
|
if (result == 0 && t->data.v == NULL) {
|
|
|
|
|
return AT_READ_FAIL;
|
|
|
|
|
}
|
|
|
|
|
return AT_READ_OK;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
trigger_type tt_shock = {
|
2015-01-30 20:37:14 +01:00
|
|
|
|
"shock",
|
|
|
|
|
NULL,
|
|
|
|
|
NULL,
|
|
|
|
|
shock_handle,
|
|
|
|
|
shock_write,
|
|
|
|
|
shock_read
|
2010-08-08 10:06:34 +02:00
|
|
|
|
};
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
trigger *trigger_shock(unit * u)
|
2010-08-08 10:06:34 +02:00
|
|
|
|
{
|
2015-01-30 20:37:14 +01:00
|
|
|
|
trigger *t = t_new(&tt_shock);
|
|
|
|
|
t->data.v = (void *)u;
|
|
|
|
|
return t;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
}
|