|
1 | 1 | package examplefuncsplayer;
|
2 | 2 |
|
3 | 3 | import battlecode.common.*;
|
4 |
| -import javafx.scene.paint.Paint; |
5 | 4 |
|
6 | 5 | import java.util.Arrays;
|
7 | 6 | import java.util.HashMap;
|
|
10 | 9 | import java.util.Random;
|
11 | 10 | import java.util.Set;
|
12 | 11 |
|
13 |
| -import org.omg.CORBA.SystemException; |
| 12 | +import java.util.EnumMap; |
| 13 | +import java.util.List; |
| 14 | +import java.util.PriorityQueue; |
| 15 | +import java.util.stream.Stream; |
| 16 | +import jdk.internal.access.SharedSecrets; |
| 17 | + |
14 | 18 |
|
15 | 19 | /**
|
16 | 20 | * RobotPlayer is the class that describes your main robot strategy.
|
17 | 21 | * The run() method inside this class is like your main function: this is what we'll call once your robot
|
18 | 22 | * is created!
|
19 | 23 | */
|
20 |
| -public strictfp class RobotPlayer { |
| 24 | +public class RobotPlayer { |
| 25 | + private record ImportantGameObservations(int numNearbyAllyRobots, int numNearbyEnemyRobots) {} |
21 | 26 |
|
22 | 27 | /**
|
23 | 28 | * We will use this variable to count the number of turns this robot has been alive.
|
@@ -75,6 +80,42 @@ public static void run(RobotController rc) throws GameActionException {
|
75 | 80 | // different types. Here, we separate the control depending on the UnitType, so we can
|
76 | 81 | // use different strategies on different robots. If you wish, you are free to rewrite
|
77 | 82 | // this into a different control structure!
|
| 83 | + |
| 84 | + // Check that various Java features haven't broken |
| 85 | + boolean canAttack = UnitType.isTowerType(UnitType.SOLDIER); |
| 86 | + Map<UnitType, Integer> enumMap = new EnumMap<>(UnitType.class); |
| 87 | + enumMap.put(UnitType.SOLDIER, 42); |
| 88 | + Map<Integer, Integer> hashMap = new HashMap<>(); |
| 89 | + hashMap.put(123, 456); |
| 90 | + PriorityQueue<Integer> priorityQueue = new PriorityQueue<>(); |
| 91 | + priorityQueue.add(4); |
| 92 | + priorityQueue.add(7); |
| 93 | + priorityQueue.add(2); |
| 94 | + int[] intArr = new int[]{3, 3, 5, 8, 5, 3, 4, 6, 8, 5, 7, 4, 3, 7, 6, 4, 3}; |
| 95 | + Arrays.sort(intArr); |
| 96 | + Integer[] objArr = new Integer[]{3, 3, 5, 8, 5, 3, 4, 6, 8, 5, 7, 4, 3, 7, 6, 4, 3}; |
| 97 | + Arrays.sort(objArr); |
| 98 | + Integer[] data = new Integer[]{1, 2, 3, 4, 5}; |
| 99 | + List<Integer> dataList = Arrays.asList(data); |
| 100 | + Stream<Integer> dataStream = dataList.stream(); |
| 101 | + Stream<Integer> evenDataStream = dataStream.filter(x -> x % 2 == 0); |
| 102 | + //Object[] evenData = evenDataStream.toArray(); |
| 103 | + // This seems to fail, because jdk.internal.misc.SharedSecrets hardcodes class names as strings |
| 104 | + // See https://github.com/openjdk/jdk/blob/master/src/java.base/share/classes/jdk/internal/access/SharedSecrets.java#L101 |
| 105 | + // TODO: these strings probably need to be sanitized on a case-by-case basis |
| 106 | + List<Integer> listData = evenDataStream.toList(); |
| 107 | + System.out.println("DATA " + listData); |
| 108 | + // Let's use some features from Java 9+ |
| 109 | + // var was introduced with Java 10, and record types with Java 16 |
| 110 | + var numNearbyAllies = rc.senseNearbyRobots(-1, rc.getTeam()).length; |
| 111 | + var numNearbyEnemies = rc.senseNearbyRobots(-1, rc.getTeam().opponent()).length; |
| 112 | + var observations = new ImportantGameObservations(numNearbyAllies, numNearbyEnemies); |
| 113 | + if (observations.numNearbyAllyRobots() > observations.numNearbyEnemyRobots()) { |
| 114 | + System.out.println("I have a good feeling about this!"); |
| 115 | + } else { |
| 116 | + System.out.println("I have a baaaaad feeling about this!"); |
| 117 | + } |
| 118 | + |
78 | 119 | switch (rc.getType()){
|
79 | 120 | case SOLDIER: runSoldier(rc); break;
|
80 | 121 | case MOPPER: runMopper(rc); break;
|
|
0 commit comments