Moar trolling. Adapted from @Astrobytes.
[troll.git] / src / main / java / com / codingame / game / Player.java
1 package com.codingame.game;
2
3 import java.util.List;
4
5 import java.util.regex.Pattern;
6 import java.util.Scanner;
7 import java.util.InputMismatchException;
8 import java.util.NoSuchElementException;
9
10 import com.codingame.gameengine.core.AbstractMultiplayerPlayer;
11 import com.codingame.gameengine.module.entities.Group;
12 import com.codingame.gameengine.module.entities.Text;
13 import com.codingame.gameengine.module.entities.Sprite;
14
15 public class Player extends AbstractMultiplayerPlayer {
16     Model.Player model;
17     View.Player view;
18
19     @Override
20     public int getExpectedOutputLines() {
21         return 1;
22     }
23
24     // same-typed positional parameters… a disaster waiting to happen
25     void gameInit(int roadLength, int initialStones) {
26         sendInputLine(String.format("%d %d", roadLength, initialStones));
27     }
28
29     void sendGameTurn() {
30         type = null;             //
31         stoneThrow = null;       // correctness over stability!
32         messageString = null;    //
33
34         sendInputLine(String.format("%d %d %d",
35                                     model.getTrollDistance(),
36                                     model.getStones(),
37                                     model.getOppStones()));
38         execute();
39     }
40
41     static enum Action { Throw, Timeout, Invalid }
42     Action type;
43     Integer stoneThrow;
44     String messageString;
45
46     private void reportMsg(String tag) {
47         System.err.println("Message @" + tag + ": " + messageString);
48     }
49
50     void receiveGameTurn() {
51         messageString = "";
52         try { messageString = getOutputs().get(0); }
53         catch (TimeoutException e) { type = Action.Timeout; return; }
54
55         Scanner s = new Scanner(messageString);
56         try { stoneThrow = s.nextInt(); }
57         catch (InputMismatchException e) { type = Action.Invalid; return; }
58         catch (NoSuchElementException e) { type = Action.Invalid; return; }
59
60         s.useDelimiter(eol);
61         if (s.hasNext(rest)) messageString = s.next(rest);
62         else messageString = "";
63         type = Action.Throw;
64     }
65
66     private static final Pattern rest = Pattern.compile(".*");
67     private static final Pattern eol = Pattern.compile("\n");
68 }