-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJuozasBot.scala
494 lines (401 loc) · 17.8 KB
/
JuozasBot.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
import util.Random
object ControlFunction
{
var mbCount = 0
var step = 0
var energyLast = 0
def forMaster(bot: Bot) {
if(bot.generation == 0 && bot.energy > 200 && ((step % 5) == 0)){
val rnd = new Random()
val pos = XY.fromDirection45(rnd.nextInt(8))
bot.spawn(pos)
mbCount = mbCount + 1
}
val (directionValue, nearestEnemyMaster, nearestEnemySlave) = analyzeViewAsMaster(bot, bot.view)
val dontFireAggressiveMissileUntil = bot.inputAsIntOrElse("dontFireAggressiveMissileUntil", -1)
val dontFireDefensiveMissileUntil = bot.inputAsIntOrElse("dontFireDefensiveMissileUntil", -1)
val lastDirection = bot.inputAsIntOrElse("lastDirection", 0)
if (bot.generation>0 && nearestEnemyMaster.isDefined && nearestEnemyMaster.get.stepCount < 3) {
var mbBot : MiniBot = bot match {
case m:MiniBot => m
}
mbBot.explode(4)
}
if (bot.generation>0 && nearestEnemySlave.isDefined && nearestEnemySlave.get.stepCount < 2) {
var mbBot : MiniBot = bot match {
case m:MiniBot => m
}
mbBot.explode(3)
}
// determine movement direction
directionValue(lastDirection) += 10 // try to break ties by favoring the last direction
val bestDirection45 = directionValue.zipWithIndex.maxBy(_._1)._2
val direction = XY.fromDirection45(bestDirection45)
bot.move(direction)
bot.set("lastDirection" -> bestDirection45)
}
def forSlave(bot: MiniBot) {
bot.inputOrElse("mood", "Lurking") match {
case "Aggressive" => reactAsAggressiveMissile(bot)
case "Defensive" => reactAsDefensiveMissile(bot)
case s: String => bot.log("unknown mood: " + s)
}
}
def reactAsAggressiveMissile(bot: MiniBot) {
bot.view.offsetToNearest('m') match {
case Some(delta: XY) =>
// another master is visible at the given relative position (i.e. position delta)
// close enough to blow it up?
if(delta.length <= 2) {
// yes -- blow it up!
bot.explode(4)
} else {
// no -- move closer!
bot.move(delta.signum)
bot.set("rx" -> delta.x, "ry" -> delta.y)
}
case None =>
// no target visible -- follow our targeting strategy
val target = bot.inputAsXYOrElse("target", XY.Zero)
// did we arrive at the target?
if(target.isNonZero) {
// no -- keep going
val unitDelta = target.signum // e.g. CellPos(-8,6) => CellPos(-1,1)
bot.move(unitDelta)
// compute the remaining delta and encode it into a new 'target' property
val remainder = target - unitDelta // e.g. = CellPos(-7,5)
bot.set("target" -> remainder)
} else {
// yes -- but we did not detonate yet, and are not pursuing anything?!? => switch purpose
bot.set("mood" -> "Lurking", "target" -> "")
bot.say("Lurking")
}
}
}
def reactAsDefensiveMissile(bot: MiniBot) {
bot.view.offsetToNearest('s') match {
case Some(delta: XY) =>
// another slave is visible at the given relative position (i.e. position delta)
// move closer!
bot.move(delta.signum)
bot.set("rx" -> delta.x, "ry" -> delta.y)
case None =>
// no target visible -- follow our targeting strategy
val target = bot.inputAsXYOrElse("target", XY.Zero)
// did we arrive at the target?
if(target.isNonZero) {
// no -- keep going
val unitDelta = target.signum // e.g. CellPos(-8,6) => CellPos(-1,1)
bot.move(unitDelta)
// compute the remaining delta and encode it into a new 'target' property
val remainder = target - unitDelta // e.g. = CellPos(-7,5)
bot.set("target" -> remainder)
} else {
// yes -- but we did not annihilate yet, and are not pursuing anything?!? => switch purpose
bot.set("mood" -> "Lurking", "target" -> "")
bot.say("Lurking")
}
}
}
/** Analyze the view, building a map of attractiveness for the 45-degree directions and
* recording other relevant data, such as the nearest elements of various kinds.
*/
def analyzeViewAsMaster(bot: Bot, view: View) = {
val directionValue = Array.ofDim[Double](8)
var nearestEnemyMaster: Option[XY] = None
var nearestEnemySlave: Option[XY] = None
val cells = view.cells
val cellCount = cells.length
for(i <- 0 until cellCount) {
val cellRelPos = view.relPosFromIndex(i)
if(cellRelPos.isNonZero) {
val stepDistance = cellRelPos.stepCount
val value: Double = cells(i) match {
case 'M' => // our master
if (bot.generation > 0 && bot.energy > 280) {
800.0
} else
0.0
case 'm' => // another master: not dangerous, but an obstacle
nearestEnemyMaster = Some(cellRelPos)
if(stepDistance < 2) -1000 else -500
case 's' => // another slave: potentially dangerous?
nearestEnemySlave = Some(cellRelPos)
-100 / stepDistance
case 'S' => // out own slave
if (bot.generation>0) -50.0 else 0.0
case 'P' => // good plant: less valuable, but does not run
if(stepDistance == 1) 500
else if(stepDistance == 2) 300
else (150 - stepDistance * 10).max(10)
case 'b' => // bad beast: dangerous, but only if very close
if(stepDistance < 4) -400 / stepDistance else -50 / stepDistance
case 'p' => // bad plant: bad, but only if I step on it
if(stepDistance < 2) -1000 else 0
case 'W' => // wall: harmless, just don't walk into it
if(stepDistance < 2) -1000 else 0
case _ => 0.0
}
val direction45 = cellRelPos.toDirection45
directionValue(direction45) += value
}
}
if (bot.generation > 0
&& bot.energy > 280) {
var mbBot : MiniBot = bot match {
case m:MiniBot => m
}
val masterDirection = mbBot.offsetToMaster.toDirection45
directionValue(masterDirection) += 800
}
(directionValue, nearestEnemyMaster, nearestEnemySlave)
}
}
// -------------------------------------------------------------------------------------------------
// Framework
// -------------------------------------------------------------------------------------------------
class ControlFunctionFactory {
def create = (input: String) => {
val (opcode, params) = CommandParser(input)
opcode match {
case "React" =>
val bot = new BotImpl(params)
if( bot.generation == 0 ) {
ControlFunction.forMaster(bot)
} else {
ControlFunction.forMaster(bot)
}
bot.toString
case _ => "" // OK
}
}
}
// -------------------------------------------------------------------------------------------------
trait Bot {
// inputs
def inputOrElse(key: String, fallback: String): String
def inputAsIntOrElse(key: String, fallback: Int): Int
def inputAsXYOrElse(keyPrefix: String, fallback: XY): XY
def view: View
def energy: Int
def time: Int
def generation: Int
// outputs
def move(delta: XY) : Bot
def say(text: String) : Bot
def status(text: String) : Bot
def spawn(offset: XY, params: (String,Any)*) : Bot
def set(params: (String,Any)*) : Bot
def log(text: String) : Bot
}
trait MiniBot extends Bot {
// inputs
def offsetToMaster: XY
// outputs
def explode(blastRadius: Int) : Bot
}
case class BotImpl(inputParams: Map[String, String]) extends MiniBot {
// input
def inputOrElse(key: String, fallback: String) = inputParams.getOrElse(key, fallback)
def inputAsIntOrElse(key: String, fallback: Int) = inputParams.get(key).map(_.toInt).getOrElse(fallback)
def inputAsXYOrElse(key: String, fallback: XY) = inputParams.get(key).map(s => XY(s)).getOrElse(fallback)
val view = View(inputParams("view"))
val energy = inputParams("energy").toInt
val time = inputParams("time").toInt
val generation = inputParams("generation").toInt
def offsetToMaster = inputAsXYOrElse("master", XY.Zero)
// output
private var stateParams = Map.empty[String,Any] // holds "Set()" commands
private var commands = "" // holds all other commands
private var debugOutput = "" // holds all "Log()" output
/** Appends a new command to the command string; returns 'this' for fluent API. */
private def append(s: String) : Bot = { commands += (if(commands.isEmpty) s else "|" + s); this }
/** Renders commands and stateParams into a control function return string. */
override def toString = {
var result = commands
if(!stateParams.isEmpty) {
if(!result.isEmpty) result += "|"
result += stateParams.map(e => e._1 + "=" + e._2).mkString("Set(",",",")")
}
if(!debugOutput.isEmpty) {
if(!result.isEmpty) result += "|"
result += "Log(text=" + debugOutput + ")"
}
result
}
def log(text: String) = { debugOutput += text + "\n"; this }
def move(direction: XY) = append("Move(direction=" + direction + ")")
def say(text: String) = append("Say(text=" + text + ")")
def status(text: String) = append("Status(text=" + text + ")")
def explode(blastRadius: Int) = append("Explode(size=" + blastRadius + ")")
def spawn(offset: XY, params: (String,Any)*) =
append("Spawn(direction=" + offset +
(if(params.isEmpty) "" else "," + params.map(e => e._1 + "=" + e._2).mkString(",")) +
")")
def set(params: (String,Any)*) = { stateParams ++= params; this }
def set(keyPrefix: String, xy: XY) = { stateParams ++= List(keyPrefix+"x" -> xy.x, keyPrefix+"y" -> xy.y); this }
}
// -------------------------------------------------------------------------------------------------
/** Utility methods for parsing strings containing a single command of the format
* "Command(key=value,key=value,...)"
*/
object CommandParser {
/** "Command(..)" => ("Command", Map( ("key" -> "value"), ("key" -> "value"), ..}) */
def apply(command: String): (String, Map[String, String]) = {
/** "key=value" => ("key","value") */
def splitParameterIntoKeyValue(param: String): (String, String) = {
val segments = param.split('=')
(segments(0), if(segments.length>=2) segments(1) else "")
}
val segments = command.split('(')
if( segments.length != 2 )
throw new IllegalStateException("invalid command: " + command)
val opcode = segments(0)
val params = segments(1).dropRight(1).split(',')
val keyValuePairs = params.map(splitParameterIntoKeyValue).toMap
(opcode, keyValuePairs)
}
}
// -------------------------------------------------------------------------------------------------
/** Utility class for managing 2D cell coordinates.
* The coordinate (0,0) corresponds to the top-left corner of the arena on screen.
* The direction (1,-1) points right and up.
*/
case class XY(x: Int, y: Int) {
override def toString = x + ":" + y
def isNonZero = x != 0 || y != 0
def isZero = x == 0 && y == 0
def isNonNegative = x >= 0 && y >= 0
def updateX(newX: Int) = XY(newX, y)
def updateY(newY: Int) = XY(x, newY)
def addToX(dx: Int) = XY(x + dx, y)
def addToY(dy: Int) = XY(x, y + dy)
def +(pos: XY) = XY(x + pos.x, y + pos.y)
def -(pos: XY) = XY(x - pos.x, y - pos.y)
def *(factor: Double) = XY((x * factor).intValue, (y * factor).intValue)
def distanceTo(pos: XY): Double = (this - pos).length // Phythagorean
def length: Double = math.sqrt(x * x + y * y) // Phythagorean
def stepsTo(pos: XY): Int = (this - pos).stepCount // steps to reach pos: max delta X or Y
def stepCount: Int = x.abs.max(y.abs) // steps from (0,0) to get here: max X or Y
def signum = XY(x.signum, y.signum)
def negate = XY(-x, -y)
def negateX = XY(-x, y)
def negateY = XY(x, -y)
/** Returns the direction index with 'Right' being index 0, then clockwise in 45 degree steps. */
def toDirection45: Int = {
val unit = signum
unit.x match {
case -1 =>
unit.y match {
case -1 =>
if(x < y * 3) Direction45.Left
else if(y < x * 3) Direction45.Up
else Direction45.UpLeft
case 0 =>
Direction45.Left
case 1 =>
if(-x > y * 3) Direction45.Left
else if(y > -x * 3) Direction45.Down
else Direction45.LeftDown
}
case 0 =>
unit.y match {
case 1 => Direction45.Down
case 0 => throw new IllegalArgumentException("cannot compute direction index for (0,0)")
case -1 => Direction45.Up
}
case 1 =>
unit.y match {
case -1 =>
if(x > -y * 3) Direction45.Right
else if(-y > x * 3) Direction45.Up
else Direction45.RightUp
case 0 =>
Direction45.Right
case 1 =>
if(x > y * 3) Direction45.Right
else if(y > x * 3) Direction45.Down
else Direction45.DownRight
}
}
}
def rotateCounterClockwise45 = XY.fromDirection45((signum.toDirection45 + 1) % 8)
def rotateCounterClockwise90 = XY.fromDirection45((signum.toDirection45 + 2) % 8)
def rotateClockwise45 = XY.fromDirection45((signum.toDirection45 + 7) % 8)
def rotateClockwise90 = XY.fromDirection45((signum.toDirection45 + 6) % 8)
def wrap(boardSize: XY) = {
val fixedX = if(x < 0) boardSize.x + x else if(x >= boardSize.x) x - boardSize.x else x
val fixedY = if(y < 0) boardSize.y + y else if(y >= boardSize.y) y - boardSize.y else y
if(fixedX != x || fixedY != y) XY(fixedX, fixedY) else this
}
}
object XY {
/** Parse an XY value from XY.toString format, e.g. "2:3". */
def apply(s: String) : XY = { val a = s.split(':'); XY(a(0).toInt,a(1).toInt) }
val Zero = XY(0, 0)
val One = XY(1, 1)
val Right = XY( 1, 0)
val RightUp = XY( 1, -1)
val Up = XY( 0, -1)
val UpLeft = XY(-1, -1)
val Left = XY(-1, 0)
val LeftDown = XY(-1, 1)
val Down = XY( 0, 1)
val DownRight = XY( 1, 1)
def fromDirection45(index: Int): XY = index match {
case Direction45.Right => Right
case Direction45.RightUp => RightUp
case Direction45.Up => Up
case Direction45.UpLeft => UpLeft
case Direction45.Left => Left
case Direction45.LeftDown => LeftDown
case Direction45.Down => Down
case Direction45.DownRight => DownRight
}
def fromDirection90(index: Int): XY = index match {
case Direction90.Right => Right
case Direction90.Up => Up
case Direction90.Left => Left
case Direction90.Down => Down
}
def apply(array: Array[Int]): XY = XY(array(0), array(1))
}
object Direction45 {
val Right = 0
val RightUp = 1
val Up = 2
val UpLeft = 3
val Left = 4
val LeftDown = 5
val Down = 6
val DownRight = 7
}
object Direction90 {
val Right = 0
val Up = 1
val Left = 2
val Down = 3
}
// -------------------------------------------------------------------------------------------------
case class View(cells: String) {
val size = math.sqrt(cells.length).toInt
val center = XY(size / 2, size / 2)
def apply(relPos: XY) = cellAtRelPos(relPos)
def indexFromAbsPos(absPos: XY) = absPos.x + absPos.y * size
def absPosFromIndex(index: Int) = XY(index % size, index / size)
def absPosFromRelPos(relPos: XY) = relPos + center
def cellAtAbsPos(absPos: XY) = cells.charAt(indexFromAbsPos(absPos))
def indexFromRelPos(relPos: XY) = indexFromAbsPos(absPosFromRelPos(relPos))
def relPosFromAbsPos(absPos: XY) = absPos - center
def relPosFromIndex(index: Int) = relPosFromAbsPos(absPosFromIndex(index))
def cellAtRelPos(relPos: XY) = cells.charAt(indexFromRelPos(relPos))
def offsetToNearest(c: Char) = {
val matchingXY = cells.view.zipWithIndex.filter(_._1 == c)
if( matchingXY.isEmpty )
None
else {
val nearest = matchingXY.map(p => relPosFromIndex(p._2)).minBy(_.length)
Some(nearest)
}
}
}