import util;
////////////////////////////////////////////////////////////////////////////////
class Pos
{
public immutable int y, x;
mixin DeriveCreate;
mixin DeriveCompare;
mixin DeriveShow;
Pos clone() const { return cast(Pos) this; }
const @property:
Pos wait() { return this.clone(); }
Pos up() { return new Pos(y+1, x); }
Pos down() { return new Pos(y-1, x); }
Pos left() { return new Pos(y, x-1); }
Pos right() { return new Pos(y, x+1); }
alias wait W,w;
alias up U,u;
alias down D,d;
alias left L,l;
alias right R,r;
}
unittest
{
assert( (new Pos(2,1)).U == new Pos(3,1) );
assert( (new Pos(0,1)).D == new Pos(-1,1) );
assert( (new Pos(2,1)).L == new Pos(2,0) );
assert( (new Pos(2,1)).R == new Pos(2,2) );
int[Pos] aa;
aa[new Pos(1,2)] = 1;
aa[new Pos(1,2)] = 2;
aa[new Pos(2,1)] = 3;
assert( aa.length==2 );
assert( aa[new Pos(1,2)]==2 );
}
////////////////////////////////////////////////////////////////////////////////
class Water
{
public immutable int base, pace;
mixin DeriveCreate;
mixin DeriveCompare;
mixin DeriveShow;
Water clone() const { return cast(Water) this; }
static load(string[string] params)
{
return new Water(params.get("Water", "0").to!int(),
params.get("Flooding", "0").to!int());
}
int level(int turn) const
{
return pace ? base+(turn/pace) : base;
}
int until_rise(int turn) const
{
return pace ? pace-turn%pace : int.max;
}
}
unittest
{
Water w = new Water(1, 3);
assert( 1 == w.level(0) );
assert( 1 == w.level(1) );
assert( 1 == w.level(2) );
assert( 2 == w.level(3) );
assert( 2 == w.level(4) );
assert( 2 == w.level(5) );
assert( 3 == w.level(6) );
w = new Water(1, 0);
assert( 1 == w.level(0) );
assert( 1 == w.level(1) );
assert( 1 == w.level(2) );
assert( 1 == w.level(3) );
assert( 1 == w.level(4) );
assert( 1 == w.level(5) );
}
////////////////////////////////////////////////////////////////////////////////
class Hige
{
public immutable int pace;
mixin DeriveCreate;
mixin DeriveCompare;
mixin DeriveShow;
Hige clone() const { return cast(Hige)this; }
static load(string[string] params)
{
return new Hige(params.get("Growth", "25").to!int());
}
bool is_growing_turn(int turn) const
{
return pace ? turn%pace == pace-1 : false;
}
int until_rise(int turn) const
{
return pace ? pace-turn%pace : int.max;
}
}
////////////////////////////////////////////////////////////////////////////////
class Map
{
mixin DeriveShow;
char[][] data;
Pos robot;
Pos lift;
int waterproof;
Pos[char] tr_target;
Pos[][char] tr_source;
int razor;
int collected_lambda;
int total_lambda;
bool cleared;
Pos[] may_update;
Map clone() const { return new Map(this); }
this(in Map m) {
foreach(s; m.data)
this.data ~= s.dup;
this.robot = m.robot.clone();
this.lift = m.lift.clone();
this.waterproof = m.waterproof;
this.tr_target = cast(Pos[char])m.tr_target;
this.tr_source = cast(Pos[][char])m.tr_source;
this.razor = m.razor;
this.collected_lambda = m.collected_lambda;
this.total_lambda = m.total_lambda;
this.may_update = (cast(Map)m).may_update.dup;
this.cleared = m.cleared;
}
this(string[] raw_data, string[string] params, char[char] trampo)
{
int width = 0;
foreach(r; raw_data)
width = max(width, r.length);
foreach(r; raw_data) {
this.data ~= r.dup;
this.data[$-1].length = width;
this.data[$-1][r.length..$] = ' ';
}
for(int y=1; y<=H; ++y)
for(int x=1; x<=W; ++x) {
if(this[y,x] == 'R')
this.robot = new Pos(y,x);
if(this[y,x] == 'L' || this[y,x] == 'O')
this.lift = new Pos(y,x);
if(this[y,x] == '\\' || this[y,x] == '@')
total_lambda++;
if(this[y,x] == '*' || this[y,x] == '@')
may_update ~= new Pos(y,x);
}
Pos[char] tr_pos;
for(int y=1; y<=H; ++y)
for(int x=1; x<=W; ++x) {
char c = this[y,x];
if('1'<=c && c<='9' || 'A'<=c&&c<='I')
tr_pos[c] = new Pos(y,x);
}
this.waterproof = params.get("Waterproof", "5").to!int();
foreach(fr,to; trampo) {
tr_target[fr] = tr_pos[to];
if(to !in tr_source) tr_source[to] = [];
tr_source[to] ~= tr_pos[fr];
}
this.razor = params.get("Razors", "0").to!int();
}
const @property {
int H() { return data.length; }
int W() { return data[0].length; }
}
const {
char opIndex(int y, int x)
{
// Adjust coordinate to the spec. bottom-left is (1,1).
--y, --x;
if(y<0||H<=y||x<0||W<=x)
return '#';
return data[H-1-y][x];
}
char opIndex(in Pos p)
{
return this[p.y, p.x];
}
}
void opIndexAssign(char c, int y, int x)
{
// Adjust coordinate to the spec. bottom-left is (1,1).
--y, --x;
if(y<0||H<=y||x<0||W<=x)
return;
data[H-1-y][x] = c;
}
void opIndexAssign(char c, in Pos p)
{
this[p.y, p.x] = c;
}
Pos[] objects(char c) const {
Pos[] ans;
for(int y=1; y<=H; ++y)
for(int x=1; x<=W; ++x)
if(this[y,x] == c)
ans ~= new Pos(y,x);
return ans;
}
Pos[] razors() const { return objects('!'); }
Pos[] lambdas() const { return objects('\\'); }
bool command(char c, int turn, bool hige_day)
{
assert( this[robot] == 'R' );
if(c=='R') return move( 0, +1, hige_day);
if(c=='L') return move( 0, -1, hige_day);
if(c=='U') return move(+1, 0, hige_day);
if(c=='D') return move(-1, 0, hige_day);
if(c=='W') return move( 0, 0, hige_day);
if(c=='S') return use_razor(hige_day);
assert(false);
}
bool use_razor(bool hige_day)
{
if(razor) {
razor--;
for(int dy=-1; dy<=+1; ++dy)
for(int dx=-1; dx<=+1; ++dx)
if(this[robot.y+dy,robot.x+dx] == 'W') {
emptified(new Pos(robot.y+dy,robot.x+dx));
this[robot.y+dy,robot.x+dx] = ' ';
}
}
return update(hige_day);
}
bool rocky(char c) { return c=='*' || c=='@'; }
void emptified(Pos p) {
for(int dy=0; dy<=+1; ++dy)
for(int dx=-1; dx<=+1; ++dx)
may_update ~= new Pos(p.y+dy, p.x+dx);
}
bool move(int dy, int dx, bool hige_day)
{
emptified(robot);
int y = robot.y;
int x = robot.x;
if( '\\' == this[y+dy,x+dx] )
collected_lambda++;
if( '!' == this[y+dy,x+dx] )
razor++;
if( 'O' == this[y+dy,x+dx] )
cleared = true;
if( " \\!.O".count(this[y+dy,x+dx])==1 ) {
this[y,x]=' ';
this[y+dy,x+dx]='R';
robot = new Pos(y+dy,x+dx);
} else if(dy==0 && rocky(this[y+dy,x+dx]) && ' '==this[y+dy*2,x+dx*2]) {
char rock = this[y+dy,x+dx];
this[y,x]=' ';
this[y+dy,x+dx]='R';
this[y+dy*2,x+dx*2]=rock;
robot = new Pos(y+dy,x+dx);
} else if('A'<=this[y+dy,x+dx] && this[y+dy,x+dx]<='I') {
this[y,x]=' ';
Pos tp = tr_target[this[y+dy,x+dx]];
foreach(p; tr_source[this[tp]]) {
emptified(p);
this[p] = ' ';
}
this[tp] = 'R';
robot = tp;
}
return update(hige_day);
}
bool update(bool hige_day)
{
// Write after all the updates are processed.
Tuple!(int,int,char)[] write_buffer;
void write(int y, int x, char c) { write_buffer ~= tuple(y,x,c); }
void writep(Pos p, char c) { write_buffer ~= tuple(0+p.y,0+p.x,c); }
scope(exit) {
may_update.length = 0;
foreach(wr; write_buffer) {
this[wr[0],wr[1]] = wr[2];
if(rocky(wr[2]))
may_update ~= new Pos(wr[0],wr[1]);
if(wr[2]==' ')
emptified(new Pos(wr[0], wr[1]));
}
}
if(collected_lambda == total_lambda)
if(this[lift]=='L')
this[lift] = 'O';
bool dead = false;
if( hige_day ) {
for(int y=1; y<=H; ++y)
for(int x=1; x<=W; ++x)
if(this[y,x]=='W')
may_update ~= new Pos(y,x);
}
sort(may_update);
foreach(p; may_update) {
int y = p.y, x = p.x;
char rock = this[p];
if(rocky(this[p])) {
if(this[p.D]==' ') {
writep(p, ' ');
writep(p.D, (rock=='@'&&this[p.D.D]!=' ' ? '\\' : rock));
if(robot == p.D.D)
dead=true;
}
else if((rocky(this[p.D]) || this[p.D]=='\\') && this[p.R]==' ' && this[p.R.D]==' ') {
writep(p, ' ');
writep(p.R.D,(rock=='@'&&this[p.R.D.D]!=' ' ? '\\' : rock));
if(robot == p.R.D.D)
dead=true;
}
else if(rocky(this[p.D]) && this[p.L]==' ' && this[p.L.D]==' ') {
writep(p, ' ');
writep(p.L.D, (rock=='@'&&this[p.L.D.D]!=' ' ? '\\' : rock));
if(robot == p.L.D.D)
dead=true;
}
}
else if(this[p]=='W') {
if(hige_day) {
for(int dy=-1; dy<=+1; ++dy)
for(int dx=-1; dx<=+1; ++dx)
if(this[p.y+dy,p.x+dx] == ' ')
write(p.y+dy,p.x+dx,'W');
}
}
}
return dead;
}
}
////////////////////////////////////////////////////////////////////////////////
class Game
{
mixin DeriveShow;
this(File input)
{
string[] raw_data;
string[string] params;
// Raw map data; read until empty line.
for(string line; !(line=input.readln().chomp()).empty; )
raw_data ~= line;
// Additional commands; read until EOF.
char[char] trampo;
for(string line; !(line=input.readln()).empty; ) {
string[] ss = line.split();
if( ss.length == 2 )
params[ss[0]] = ss[1];
if( ss.length == 4 && ss[0]=="Trampoline" && ss[2]=="targets" )
trampo[ss[1][0]] = ss[3][0];
}
this.map = new Map(raw_data, params, trampo);
this.water = Water.load(params);
this.hige = Hige.load(params);
}
Game clone() const { return new Game(this); }
this(in Game g) {
map = g.map.clone();
water = g.water.clone();
hige = g.hige.clone();
turn = g.turn;
dead = g.dead;
under_water = g.under_water;
}
void command(char c)
{
assert(c != 'A');
if(dead || cleared)
return;
// TODO: clarify the event order
bool dead_now = map.command(c, turn, hige.is_growing_turn(turn));
if( dead_now )
dead = true;
if(!map.cleared) {
if( map.robot.y <= water_level )
++under_water;
else
under_water = 0;
if( under_water > map.waterproof )
dead = true;
}
turn += 1;
}
Map map;
Water water;
Hige hige;
int turn = 0;
bool dead = false;
int under_water = 0;
// TODO: when adding members, take care of clone().
// TODO: fix this poor design.
@property const:
long score() { return map.collected_lambda*(dead?25L:cleared?75L:50L)-turn; }
int water_level() { return water.level(turn); }
int water_until_rise() { return water.until_rise(turn); }
int hige_until_rise() { return hige.until_rise(turn); }
int hp() { return map.waterproof - under_water; }
bool cleared() { return map.cleared; }
}