2019-12-08 18:17:28 +00:00
|
|
|
// Hyperbolic Rogue - checkmate rule
|
|
|
|
// Copyright (C) 2011-2019 Zeno Rogue, see 'hyper.cpp' for details
|
|
|
|
|
|
|
|
/** \file checkmove.cpp
|
|
|
|
* \brief Check the validity of move (checkmate rule)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "hyper.h"
|
|
|
|
|
|
|
|
namespace hr {
|
|
|
|
|
|
|
|
#if HDR
|
|
|
|
#define PUREHARDCORE_LEVEL 10
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** are we in the hardcore mode */
|
|
|
|
EX bool hardcore = false;
|
|
|
|
/** when did we switch to the hardcore mode */
|
|
|
|
EX int hardcoreAt;
|
2021-05-27 10:57:12 +00:00
|
|
|
/** are we in the casual mode */
|
|
|
|
EX bool casual = false;
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
EX bool pureHardcore() { return hardcore && hardcoreAt < PUREHARDCORE_LEVEL; }
|
|
|
|
|
|
|
|
/** can we still move? */
|
|
|
|
EX bool canmove = true;
|
|
|
|
|
|
|
|
// how many monsters are near
|
|
|
|
EX eMonster who_kills_me;
|
|
|
|
|
|
|
|
EX int lastkills;
|
|
|
|
|
2020-01-18 15:03:32 +00:00
|
|
|
EX vector<bool> legalmoves;
|
2019-12-08 18:17:28 +00:00
|
|
|
|
2021-05-24 14:14:02 +00:00
|
|
|
/* why is a move illegal */
|
|
|
|
EX vector<int> move_issues;
|
|
|
|
|
|
|
|
#if HDR
|
|
|
|
static const int miVALID = 10000;
|
|
|
|
static const int miENTITY = 11000;
|
|
|
|
static const int miRESTRICTED = 10100;
|
|
|
|
static const int miTHREAT = 10010;
|
|
|
|
static const int miWALL = 10001;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
EX int checked_move_issue;
|
|
|
|
EX int yasc_code;
|
|
|
|
|
|
|
|
EX void check_if_monster() {
|
|
|
|
eMonster m = cwt.peek()->monst;
|
|
|
|
if(m && m != passive_switch && !isFriendly(m))
|
|
|
|
checked_move_issue = miENTITY;
|
|
|
|
}
|
|
|
|
|
2019-12-08 18:17:28 +00:00
|
|
|
EX bool hasSafeOrb(cell *c) {
|
|
|
|
return
|
|
|
|
c->item == itOrbSafety ||
|
|
|
|
c->item == itOrbShield ||
|
|
|
|
c->item == itOrbShell ||
|
|
|
|
(c->item == itOrbYendor && yendor::state(c) == yendor::ysUnlocked);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HDR
|
2020-11-05 13:24:01 +00:00
|
|
|
struct player_move_info {
|
|
|
|
movei mi;
|
2019-12-08 18:17:28 +00:00
|
|
|
cell *swordlast[2], *swordtransit[2], *swordnext[2];
|
2020-11-05 13:24:01 +00:00
|
|
|
player_move_info(movei mi);
|
2019-12-08 18:17:28 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
EX vector<player_move_info> pmi;
|
|
|
|
EX vector<cell*> pushes;
|
|
|
|
|
|
|
|
player_move_info::player_move_info(movei _mi) : mi(_mi) {
|
|
|
|
for(int b=0; b<2; b++) swordlast[b] = sword::pos(multi::cpid, b);
|
|
|
|
|
|
|
|
dynamicval<sword::sworddir> x7(sword::dir[multi::cpid], sword::shift(mi, sword::dir[multi::cpid]));
|
|
|
|
|
|
|
|
for(int b=0; b<2; b++) {
|
|
|
|
swordnext[b] = sword::pos(multi::cpid, b);
|
|
|
|
swordtransit[b] = NULL;
|
|
|
|
if(swordnext[b] && swordnext[b] != swordlast[b] && !isNeighbor(swordlast[b], swordnext[b])) {
|
|
|
|
forCellEx(c2, swordnext[b])
|
|
|
|
if(c2 != mi.t && c2 != mi.s && isNeighbor(c2, S3==3 ? swordlast[b] : mi.t))
|
|
|
|
swordtransit[b] = c2;
|
|
|
|
if(S3 == 4)
|
|
|
|
forCellEx(c2, mi.s)
|
|
|
|
if(c2 != mi.s && isNeighbor(c2, swordlast[b]))
|
|
|
|
swordtransit[b] = c2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-08 18:17:28 +00:00
|
|
|
EX bool krakensafe(cell *c) {
|
|
|
|
return items[itOrbFish] || items[itOrbAether] ||
|
|
|
|
(c->item == itOrbFish && c->wall == waBoat) ||
|
|
|
|
(c->item == itOrbAether && c->wall == waBoat);
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
EX bool monstersnear(cell *c, eMonster who) {
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
bool eaten = false;
|
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
if(hardcore && who == moPlayer) return false;
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
int res = 0;
|
|
|
|
bool fast = false;
|
2021-07-10 03:28:24 +00:00
|
|
|
bool kraken_will_destroy_boat = false;
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
elec::builder b;
|
|
|
|
if(elec::affected(c)) { who_kills_me = moLightningBolt; res++; }
|
|
|
|
|
|
|
|
if(c->wall == waArrowTrap && c->wparam == 2) {
|
|
|
|
who_kills_me = moArrowTrap; res++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(auto c1: crush_now) if(c == c1) {
|
|
|
|
who_kills_me = moCrusher; res++;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
if(who == moPlayer || items[itOrbEmpathy]) {
|
2019-12-08 18:17:28 +00:00
|
|
|
fast = (items[itOrbSpeed] && (items[itOrbSpeed] & 1));
|
2021-07-10 03:33:38 +00:00
|
|
|
if(who == moPlayer && !isPlayerOn(c) && c->item == itOrbSpeed && !items[itOrbSpeed]) fast = true;
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(havewhat&HF_OUTLAW) {
|
|
|
|
for(cell *c1: gun_targets(c))
|
2020-02-29 16:58:59 +00:00
|
|
|
if(c1->monst == moOutlaw && !c1->stuntime) {
|
2019-12-08 18:17:28 +00:00
|
|
|
res++; who_kills_me = moOutlaw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int t=0; t<c->type; t++) {
|
|
|
|
cell *c2 = c->move(t);
|
|
|
|
|
|
|
|
// consider monsters who attack from distance 2
|
|
|
|
if(c2) forCellEx(c3, c2) if(c3 != c) {
|
|
|
|
// only these monsters can attack from two spots...
|
|
|
|
if(!among(c3->monst, moLancer, moWitchSpeed, moWitchFlash))
|
|
|
|
continue;
|
2020-08-20 14:21:44 +00:00
|
|
|
if(c3->monst == moWitchSpeed && cwt.at->land != laPower)
|
|
|
|
continue;
|
2019-12-08 18:17:28 +00:00
|
|
|
// take logical_adjacent into account
|
|
|
|
if(c3->monst != moWitchFlash)
|
2020-08-20 14:21:44 +00:00
|
|
|
if(!logical_adjacent(c3, c3->monst, c2) || !logical_adjacent(c2, c3->monst, c) || (c3->monst == moWitchSpeed && c2->land != laPower))
|
2019-12-08 18:17:28 +00:00
|
|
|
continue;
|
2020-02-29 16:58:59 +00:00
|
|
|
if(elec::affected(c3)) continue;
|
2020-11-05 13:24:01 +00:00
|
|
|
if(c3->stuntime > (who == moPlayer ? 0 : 1)) continue;
|
2019-12-08 18:17:28 +00:00
|
|
|
// speedwitches can only attack not-fastened monsters,
|
|
|
|
// others can only attack if the move is not fastened
|
|
|
|
if(c3->monst == moWitchSpeed && items[itOrbSpeed]) continue;
|
|
|
|
if(c3->monst != moWitchSpeed && fast) continue;
|
|
|
|
// cannot attack if the immediate cell is impassable (except flashwitches)
|
|
|
|
if(c3->monst != moWitchFlash) {
|
2020-02-29 16:58:59 +00:00
|
|
|
if(!passable(c2, c3, 0)) continue;
|
2019-12-08 18:17:28 +00:00
|
|
|
if(isPlayerOn(c2) && items[itOrbFire]) continue;
|
|
|
|
}
|
|
|
|
// flashwitches cannot attack if it would kill another enemy
|
|
|
|
if(c3->monst == moWitchFlash && flashWouldKill(c3, 0)) continue;
|
|
|
|
res++, who_kills_me = c3->monst;
|
|
|
|
}
|
|
|
|
|
|
|
|
// consider normal monsters
|
|
|
|
if(c2 &&
|
2020-11-05 13:24:01 +00:00
|
|
|
isArmedEnemy(c2, who) &&
|
|
|
|
(c2->monst != moLancer || isUnarmed(who) || !logical_adjacent(c, who, c2))) {
|
2019-12-08 18:17:28 +00:00
|
|
|
eMonster m = c2->monst;
|
|
|
|
if(elec::affected(c2)) continue;
|
|
|
|
if(fast && c2->monst != moWitchSpeed) continue;
|
|
|
|
// Krakens just destroy boats
|
2021-07-10 03:28:24 +00:00
|
|
|
if(who == moPlayer && c2->monst == moKrakenT && c->wall == waBoat) {
|
|
|
|
kraken_will_destroy_boat = true;
|
|
|
|
continue;
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
// they cannot attack through vines
|
2020-11-05 13:24:01 +00:00
|
|
|
if(!canAttack(c2, c2->monst, c, who, AF_NEXTTURN)) continue;
|
2019-12-08 18:17:28 +00:00
|
|
|
if(c2->monst == moWorm || c2->monst == moTentacle || c2->monst == moHexSnake) {
|
|
|
|
if(passable_for(c2->monst, c, c2, 0))
|
|
|
|
eaten = true;
|
|
|
|
else if(c2->monst != moHexSnake) continue;
|
|
|
|
}
|
|
|
|
res++, who_kills_me = m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-10 03:28:24 +00:00
|
|
|
if(kraken_will_destroy_boat && !krakensafe(c) && warningprotection(XLAT("This move appears dangerous -- are you sure?"))) {
|
|
|
|
if (res == 0) who_kills_me = moWarning;
|
|
|
|
res++;
|
|
|
|
} else {
|
|
|
|
if(who == moPlayer && res && (markOrb2(itOrbShield) || markOrb2(itOrbShell)) && !eaten)
|
|
|
|
res = 0;
|
|
|
|
if(who == moPlayer && res && markOrb2(itOrbDomination) && c->monst)
|
|
|
|
res = 0;
|
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
return !!res;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
EX bool monstersnear_aux() {
|
2020-03-02 01:38:18 +00:00
|
|
|
changes.value_set(passive_switch, (gold() & 1) ? moSwitch1 : moSwitch2);
|
2019-12-08 18:17:28 +00:00
|
|
|
multi::cpid++;
|
|
|
|
bool b = false;
|
|
|
|
bool recorduse[ittypes];
|
|
|
|
for(int i=0; i<ittypes; i++) recorduse[i] = orbused[i];
|
|
|
|
if(multi::cpid == multi::players || multi::players == 1 || multi::checkonly) {
|
2020-05-16 00:38:13 +00:00
|
|
|
|
|
|
|
if(shmup::delayed_safety) return false;
|
2020-11-05 13:24:01 +00:00
|
|
|
|
|
|
|
for(int i=0; i<isize(pmi); i++)
|
|
|
|
for(int j=0; j<isize(pmi); j++) if(i != j) {
|
|
|
|
if(swordConflict(pmi[i], pmi[j])) {
|
2019-12-08 18:17:28 +00:00
|
|
|
b = true;
|
|
|
|
who_kills_me = moEnergySword;
|
|
|
|
}
|
2020-11-05 13:24:01 +00:00
|
|
|
if(pmi[i].mi.t == pmi[j].mi.t)
|
2019-12-08 18:17:28 +00:00
|
|
|
{ b = true; who_kills_me = moFireball; }
|
2020-11-05 13:24:01 +00:00
|
|
|
if(celldistance(pmi[i].mi.t, pmi[j].mi.t) > 8)
|
2019-12-08 18:17:28 +00:00
|
|
|
{ b = true; who_kills_me = moAirball; }
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
for(auto& pushto: pushes)
|
|
|
|
for(auto& mi: pmi)
|
|
|
|
if(pushto == mi.mi.t) {
|
|
|
|
b = true; who_kills_me = moTongue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i=0; i<isize(pushes); i++)
|
|
|
|
for(int j=0; j<i; j++)
|
|
|
|
if(pushes[i] == pushes[j]) {
|
|
|
|
b = true; who_kills_me = moCrushball;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i=0; !b && i<isize(pmi); i++)
|
|
|
|
b = monstersnear(pmi[i].mi.t, moPlayer);
|
2019-12-08 18:17:28 +00:00
|
|
|
}
|
|
|
|
else b = !multimove();
|
|
|
|
multi::cpid--;
|
|
|
|
for(int i=0; i<ittypes; i++) orbused[i] = recorduse[i];
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
/** like monstersnear but add the potential moves of other players into account */
|
|
|
|
EX bool monstersnear_add_pmi(player_move_info pmi0) {
|
|
|
|
pmi.push_back(pmi0);
|
|
|
|
bool b = monstersnear_aux();
|
|
|
|
pmi.pop_back();
|
2019-12-08 18:17:28 +00:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX bool multimove() {
|
|
|
|
if(multi::cpid == 0) lastkills = tkills();
|
2020-11-05 13:24:01 +00:00
|
|
|
if(!multi::playerActive(multi::cpid)) return !monstersnear_aux();
|
2019-12-08 18:17:28 +00:00
|
|
|
cellwalker bcwt = cwt;
|
|
|
|
cwt = multi::player[multi::cpid];
|
|
|
|
bool b = movepcto(multi::whereto[multi::cpid]);
|
|
|
|
if(b) {
|
|
|
|
multi::aftermove = true;
|
|
|
|
multi::player[multi::cpid] = cwt;
|
|
|
|
multi::whereto[multi::cpid].d = MD_UNDECIDED;
|
|
|
|
int curkills = tkills();
|
|
|
|
multi::kills[multi::cpid] += (curkills - lastkills);
|
|
|
|
lastkills = curkills;
|
|
|
|
}
|
|
|
|
cwt = bcwt;
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX namespace multi {
|
|
|
|
EX bool checkonly = false;
|
|
|
|
EX bool aftermove;
|
|
|
|
EX }
|
|
|
|
|
2020-11-05 13:24:01 +00:00
|
|
|
EX bool swordConflict(const player_move_info& sm1, const player_move_info& sm2) {
|
2019-12-08 18:17:28 +00:00
|
|
|
if(items[itOrbSword] || items[itOrbSword2])
|
|
|
|
for(int b=0; b<2; b++)
|
2020-11-05 13:24:01 +00:00
|
|
|
if(sm1.mi.s == sm2.swordlast[b] || sm1.mi.s == sm2.swordtransit[b] || sm1.mi.s == sm2.swordnext[b])
|
|
|
|
if(sm1.mi.t == sm2.swordlast[b] || sm1.mi.t == sm2.swordtransit[b] || sm1.mi.t == sm2.swordnext[b])
|
2019-12-08 18:17:28 +00:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
EX void checkmove() {
|
|
|
|
|
|
|
|
if(dual::state == 2) return;
|
|
|
|
if(shmup::on) return;
|
|
|
|
|
|
|
|
dynamicval<eGravity> gs(gravity_state, gravity_state);
|
|
|
|
|
|
|
|
#if CAP_INV
|
|
|
|
if(inv::on) inv::compute();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(multi::players > 1 && !multi::checkonly) return;
|
|
|
|
if(hardcore) return;
|
|
|
|
bool orbusedbak[ittypes];
|
|
|
|
|
|
|
|
// do not activate orbs!
|
|
|
|
for(int i=0; i<ittypes; i++) orbusedbak[i] = orbused[i];
|
|
|
|
|
2020-01-18 15:03:32 +00:00
|
|
|
legalmoves.clear(); legalmoves.resize(cwt.at->type+1, false);
|
2021-05-24 14:14:02 +00:00
|
|
|
move_issues.clear(); move_issues.resize(cwt.at->type, 0);
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
canmove = haveRangedTarget();
|
|
|
|
items[itWarning]+=2;
|
2021-05-24 14:14:02 +00:00
|
|
|
if(movepcto(-1, 0, true))
|
|
|
|
canmove = legalmoves[cwt.at->type] = true;
|
2019-12-08 18:17:28 +00:00
|
|
|
|
2021-05-24 14:14:02 +00:00
|
|
|
if(true) {
|
|
|
|
for(int i=0; i<cwt.at->type; i++) {
|
|
|
|
if(movepcto(1, -1, true)) {
|
2019-12-08 18:17:28 +00:00
|
|
|
canmove = legalmoves[cwt.spin] = true;
|
2021-05-24 14:14:02 +00:00
|
|
|
}
|
|
|
|
check_if_monster();
|
|
|
|
move_issues[cwt.spin] = checked_move_issue;
|
|
|
|
if(!legalmoves[cwt.spin]) {
|
2021-05-27 10:58:50 +00:00
|
|
|
if(movepcto(0, 1, true)) {
|
2021-05-24 14:14:02 +00:00
|
|
|
canmove = legalmoves[cwt.spin] = true;
|
|
|
|
}
|
|
|
|
check_if_monster();
|
|
|
|
move_issues[cwt.spin] = checked_move_issue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-08 18:17:28 +00:00
|
|
|
if(kills[moPlayer]) canmove = false;
|
2021-05-24 14:14:02 +00:00
|
|
|
|
|
|
|
yasc_code = 0;
|
|
|
|
for(int i=0; i<cwt.at->type; i++)
|
|
|
|
yasc_code += move_issues[i];
|
2019-12-08 18:17:28 +00:00
|
|
|
|
|
|
|
#if CAP_INV
|
|
|
|
if(inv::on && !canmove && !inv::incheck) {
|
|
|
|
if(inv::remaining[itOrbSafety] || inv::remaining[itOrbFreedom])
|
|
|
|
canmove = true;
|
|
|
|
else {
|
|
|
|
inv::check(1);
|
|
|
|
checkmove();
|
|
|
|
inv::check(-1);
|
|
|
|
}
|
|
|
|
if(canmove)
|
|
|
|
pushScreen(inv::show);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(!canmove) {
|
|
|
|
achievement_final(true);
|
|
|
|
if(cmode & sm::NORMAL) showMissionScreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(canmove && timerstopped) {
|
|
|
|
timerstart = time(NULL);
|
|
|
|
timerstopped = false;
|
|
|
|
}
|
|
|
|
items[itWarning]-=2;
|
|
|
|
|
|
|
|
for(int i=0; i<ittypes; i++) orbused[i] = orbusedbak[i];
|
|
|
|
if(recallCell.at && !markOrb(itOrbRecall)) activateRecall();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|