forked from github/server
STIRB PARTEI löscht die Befehle nicht.
Reparatur des Tests für VERGESSE MAGIE (Vertraute)
This commit is contained in:
parent
6b1baec2de
commit
1a8b94da59
|
@ -28,8 +28,6 @@ function test_work()
|
||||||
end
|
end
|
||||||
|
|
||||||
function test_bug_2361_forget_magic()
|
function test_bug_2361_forget_magic()
|
||||||
-- https://bugs.eressea.de/view.php?id=2361
|
|
||||||
-- familiars cannot forget magic
|
|
||||||
local r = region.create(0, 0, "plain")
|
local r = region.create(0, 0, "plain")
|
||||||
local f = faction.create("human")
|
local f = faction.create("human")
|
||||||
local u = unit.create(f, r, 1)
|
local u = unit.create(f, r, 1)
|
||||||
|
@ -38,12 +36,30 @@ function test_bug_2361_forget_magic()
|
||||||
u:add_order("VERGESSE Magie")
|
u:add_order("VERGESSE Magie")
|
||||||
u:set_skill('magic', 5)
|
u:set_skill('magic', 5)
|
||||||
uf.race = 'unicorn'
|
uf.race = 'unicorn'
|
||||||
|
u.familiar = uf
|
||||||
|
process_orders()
|
||||||
|
assert_equal(0, u:get_skill('magic'))
|
||||||
|
assert_nil(u.familiar)
|
||||||
|
-- without a mage, familiars become ghosts:
|
||||||
|
assert_equal('ghost', uf.race_name)
|
||||||
|
assert_equal(0, uf:get_skill('magic'))
|
||||||
|
end
|
||||||
|
|
||||||
|
function test_bug_2361_familiar_cannot_forget_magic_()
|
||||||
|
-- https://bugs.eressea.de/view.php?id=2361
|
||||||
|
local r = region.create(0, 0, "plain")
|
||||||
|
local f = faction.create("human")
|
||||||
|
local u = unit.create(f, r, 1)
|
||||||
|
local uf = unit.create(f, r, 1)
|
||||||
|
u:clear_orders()
|
||||||
|
u:set_skill('magic', 5)
|
||||||
|
uf.race = 'unicorn'
|
||||||
uf:clear_orders()
|
uf:clear_orders()
|
||||||
uf:add_order("VERGESSE Magie")
|
uf:add_order("VERGESSE Magie")
|
||||||
uf:set_skill('magic', 5)
|
uf:set_skill('magic', 5)
|
||||||
u.familiar = uf
|
u.familiar = uf
|
||||||
process_orders()
|
process_orders()
|
||||||
assert_equal(0, u:get_skill('magic'))
|
-- familiars cannot forget magic:
|
||||||
assert_equal(5, uf:get_skill('magic'))
|
assert_equal(5, uf:get_skill('magic'))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -86,6 +86,7 @@ static void chaos(region * r)
|
||||||
if (u && playerrace(u_race(u))) {
|
if (u && playerrace(u_race(u))) {
|
||||||
ADDMSG(&u->faction->msgs, msg_message("chaos_disease", "unit", u));
|
ADDMSG(&u->faction->msgs, msg_message("chaos_disease", "unit", u));
|
||||||
u_setfaction(u, get_monsters());
|
u_setfaction(u, get_monsters());
|
||||||
|
u_freeorders(u);
|
||||||
u_setrace(u, get_race(RC_GHOUL));
|
u_setrace(u, get_race(RC_GHOUL));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -292,6 +292,7 @@ static int forget_cmd(unit * u, order * ord)
|
||||||
if (ufam) {
|
if (ufam) {
|
||||||
a_removeall(&ufam->attribs, NULL);
|
a_removeall(&ufam->attribs, NULL);
|
||||||
u_setfaction(ufam, get_monsters());
|
u_setfaction(ufam, get_monsters());
|
||||||
|
u_freeorders(ufam);
|
||||||
unit_convert_race(ufam, NULL, "ghost");
|
unit_convert_race(ufam, NULL, "ghost");
|
||||||
}
|
}
|
||||||
a_removeall(&u->attribs, &at_mage);
|
a_removeall(&u->attribs, &at_mage);
|
||||||
|
|
|
@ -709,6 +709,7 @@ void give_unit(unit * u, unit * u2, order * ord)
|
||||||
}
|
}
|
||||||
add_give_person(u, u2, u->number, ord, 0);
|
add_give_person(u, u2, u->number, ord, 0);
|
||||||
u_setfaction(u, u2->faction);
|
u_setfaction(u, u2->faction);
|
||||||
|
u_freeorders(u);
|
||||||
u2->faction->newbies += u->number;
|
u2->faction->newbies += u->number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -886,6 +886,12 @@ struct building *inside_building(const struct unit *u)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void u_freeorders(unit *u)
|
||||||
|
{
|
||||||
|
free_orders(&u->orders);
|
||||||
|
set_order(&u->thisorder, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
void u_setfaction(unit * u, faction * f)
|
void u_setfaction(unit * u, faction * f)
|
||||||
{
|
{
|
||||||
if (u->faction == f)
|
if (u->faction == f)
|
||||||
|
@ -896,9 +902,6 @@ void u_setfaction(unit * u, faction * f)
|
||||||
u->faction->num_people -= u->number;
|
u->faction->num_people -= u->number;
|
||||||
}
|
}
|
||||||
set_group(u, NULL);
|
set_group(u, NULL);
|
||||||
free_orders(&u->orders);
|
|
||||||
set_order(&u->thisorder, NULL);
|
|
||||||
|
|
||||||
if (u->nextF) {
|
if (u->nextF) {
|
||||||
u->nextF->prevF = u->prevF;
|
u->nextF->prevF = u->prevF;
|
||||||
}
|
}
|
||||||
|
|
|
@ -179,6 +179,7 @@ extern "C" {
|
||||||
/* cleanup code for this module */
|
/* cleanup code for this module */
|
||||||
void free_units(void);
|
void free_units(void);
|
||||||
void u_setfaction(struct unit *u, struct faction *f);
|
void u_setfaction(struct unit *u, struct faction *f);
|
||||||
|
void u_freeorders(struct unit *u);
|
||||||
void set_number(struct unit *u, int count);
|
void set_number(struct unit *u, int count);
|
||||||
|
|
||||||
int invisible(const struct unit *target, const struct unit *viewer);
|
int invisible(const struct unit *target, const struct unit *viewer);
|
||||||
|
|
|
@ -3764,6 +3764,10 @@ void process(void)
|
||||||
}
|
}
|
||||||
if (ord) {
|
if (ord) {
|
||||||
porder->data.per_order.process(u, ord);
|
porder->data.per_order.process(u, ord);
|
||||||
|
if (!u->orders) {
|
||||||
|
/* GIVE UNIT or QUIT delete all orders of the unit, stop */
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!ord || *ordp == ord)
|
if (!ord || *ordp == ord)
|
||||||
|
|
|
@ -174,6 +174,7 @@ void monsters_desert(struct faction *monsters)
|
||||||
ADDMSG(&u->faction->msgs, msg_message("desertion",
|
ADDMSG(&u->faction->msgs, msg_message("desertion",
|
||||||
"unit region", u, r));
|
"unit region", u, r));
|
||||||
u_setfaction(u, monsters);
|
u_setfaction(u, monsters);
|
||||||
|
u_freeorders(u);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1157,6 +1158,7 @@ void monster_kills_peasants(unit * u)
|
||||||
void make_zombie(unit * u)
|
void make_zombie(unit * u)
|
||||||
{
|
{
|
||||||
u_setfaction(u, get_monsters());
|
u_setfaction(u, get_monsters());
|
||||||
|
u_freeorders(u);
|
||||||
scale_number(u, 1);
|
scale_number(u, 1);
|
||||||
u->hp = unit_max_hp(u) * u->number;
|
u->hp = unit_max_hp(u) * u->number;
|
||||||
u_setrace(u, get_race(RC_ZOMBIE));
|
u_setrace(u, get_race(RC_ZOMBIE));
|
||||||
|
|
|
@ -3553,7 +3553,7 @@ static int sp_charmingsong(castorder * co)
|
||||||
|
|
||||||
/* setze Partei um und loesche langen Befehl aus Sicherheitsgruenden */
|
/* setze Partei um und loesche langen Befehl aus Sicherheitsgruenden */
|
||||||
u_setfaction(target, mage->faction);
|
u_setfaction(target, mage->faction);
|
||||||
set_order(&target->thisorder, NULL);
|
u_freeorders(target);
|
||||||
|
|
||||||
/* setze Parteitarnung, damit nicht sofort klar ist, wer dahinter
|
/* setze Parteitarnung, damit nicht sofort klar ist, wer dahinter
|
||||||
* steckt */
|
* steckt */
|
||||||
|
@ -3796,7 +3796,7 @@ static int sp_migranten(castorder * co)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
u_setfaction(target, mage->faction);
|
u_setfaction(target, mage->faction);
|
||||||
set_order(&target->thisorder, NULL);
|
u_freeorders(target);
|
||||||
|
|
||||||
/* Erfolg melden */
|
/* Erfolg melden */
|
||||||
ADDMSG(&mage->faction->msgs, msg_feedback(mage, co->order, "sp_migranten",
|
ADDMSG(&mage->faction->msgs, msg_feedback(mage, co->order, "sp_migranten",
|
||||||
|
|
|
@ -48,7 +48,9 @@ static int changefaction_handle(trigger * t, void *data)
|
||||||
*/
|
*/
|
||||||
changefaction_data *td = (changefaction_data *)t->data.v;
|
changefaction_data *td = (changefaction_data *)t->data.v;
|
||||||
if (td->unit && td->faction) {
|
if (td->unit && td->faction) {
|
||||||
u_setfaction(td->unit, td->faction);
|
unit * u = td->unit;
|
||||||
|
u_setfaction(u, td->faction);
|
||||||
|
u_freeorders(u);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
log_error("could not perform changefaction::handle()\n");
|
log_error("could not perform changefaction::handle()\n");
|
||||||
|
|
Loading…
Reference in New Issue