commit 5f90da3a5288bb0717fc5181e1ae6d306ab79265
parent ca81dfc2ea62448ca232abba8a0513df45fb0f31
Author: Merlijn <[email protected]>
Date: Sat, 21 Jan 2023 22:47:32 +0100
Adding stats saving
Diffstat:
3 files changed, 115 insertions(+), 31 deletions(-)
diff --git a/src/main/java/nl/isygameclient/Headless.java b/src/main/java/nl/isygameclient/Headless.java
@@ -1,7 +1,6 @@
package nl.isygameclient;
import com.google.gson.Gson;
-import com.google.gson.JsonElement;
import com.google.gson.reflect.TypeToken;
import nl.isygameclient.models.Ai;
import nl.isygameclient.models.Game;
@@ -10,52 +9,32 @@ import nl.isygameclient.models.PlayerManager;
import nl.isygameclient.models.games.othello.Othello;
import nl.isygameclient.util.Vector2D;
+import java.io.BufferedWriter;
+import java.io.File;
+import java.io.FileWriter;
import java.io.IOException;
-import java.lang.reflect.Array;
import java.lang.reflect.Type;
+import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.NoSuchFileException;
+import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.*;
-import java.util.stream.Stream;
-public class Headless {
+public class Headless implements Runnable {
+ private Thread t;
private static final String JSON_FILENAME = "heuristics.json";
public static void main(String[] args) {
- var heuristics = loadHeuristics();
- if (heuristics == null) {
- System.err.println("No heuristics in file.");
- return;
- }
-
- Map<String, Game> games = new HashMap<>();
-
- // Create Matches
- for (Map.Entry<String, int[][]> heuristic1 : heuristics.entrySet()) {
- for (Map.Entry<String, int[][]> heuristic2 : heuristics.entrySet()) {
-
- ArrayList<Player> players = new ArrayList<>();
- players.add(new Ai("ai1{ " + heuristic1.getKey() + "}", "black", heuristic1.getValue()));
- players.add(new Ai("ai2{ " + heuristic2.getKey() + "}", "white", heuristic2.getValue()));
-
- var playerManager = new PlayerManager(0, players);
- Othello othello = new Othello(playerManager);
- games.put("ai1: " + heuristic1.getKey() + "; against " + "ai2: " + heuristic2.getKey(), othello);
- }
- }
-
- for (Map.Entry<String, Game> game : games.entrySet()) {
- // add threading.
- simulate(game.getKey(), game.getValue());
- }
+ new Headless().run();
}
private static void simulate(String name, Game game) {
var playerManager = game.getPlayerManager();
Map<Player, ArrayList<Long>> playersTimePerMoves = new HashMap<>();
Map<Player, LinkedList<Vector2D<Integer, Integer>>> movesMade = new HashMap<>();
+ DataSaver dataSaver = new DataSaver();
System.out.println("Starting game: " + name);
while (!game.isGameOver()) {
@@ -78,8 +57,10 @@ public class Headless {
System.out.println("Is game draw: " + game.isDraw());
System.out.println("Game winners: " + game.getWinners().toString());
System.out.println("Moves made: " + movesMade);
+ dataSaver.saveData(game.isDraw() + " | " + game.getWinners().toString() + " | " + movesMade);
+
long totalGameTime = 0;
- for (Map.Entry<Player, ArrayList<Long>> playerTimePerMoves: playersTimePerMoves.entrySet()) {
+ for (Map.Entry<Player, ArrayList<Long>> playerTimePerMoves : playersTimePerMoves.entrySet()) {
var player = playerTimePerMoves.getKey();
var moveTimes = playerTimePerMoves.getValue();
System.out.println(player + "'s Time per moves: " + moveTimes);
@@ -106,4 +87,83 @@ public class Headless {
}
return null;
}
+
+ @Override
+ public void run() {
+ var heuristics = loadHeuristics();
+ if (heuristics == null) {
+ System.err.println("No heuristics in file.");
+ return;
+ }
+
+ Map<String, Game> games = new HashMap<>();
+
+ // Create Matches
+ for (Map.Entry<String, int[][]> heuristic1 : heuristics.entrySet()) {
+ for (Map.Entry<String, int[][]> heuristic2 : heuristics.entrySet()) {
+
+ ArrayList<Player> players = new ArrayList<>();
+ players.add(new Ai("ai1{ " + heuristic1.getKey() + "}", "black", heuristic1.getValue()));
+ players.add(new Ai("ai2{ " + heuristic2.getKey() + "}", "white", heuristic2.getValue()));
+
+ var playerManager = new PlayerManager(0, players);
+ Othello othello = new Othello(playerManager);
+ games.put("ai1: " + heuristic1.getKey() + "; against " + "ai2: " + heuristic2.getKey(), othello);
+ }
+ }
+
+ for (Map.Entry<String, Game> game : games.entrySet()) {
+ // add threading.
+ simulate(game.getKey(), game.getValue());
+ }
+ }
+
+ public void start() {
+ if (t == null) {
+ t = new Thread(this);
+ t.start();
+ }
+ }
+}
+
+class DataSaver {
+ private final String path;
+ private final File file;
+
+ public DataSaver() {
+ this.path = "./data/temp/" + this.randomString() + ".csv";
+ this.file = new File(this.path);
+ try {
+ this.file.createNewFile();
+ } catch (IOException ex) {
+ System.out.print("Could not create file.");
+ }
+
+ this.saveData("Is game draw? | Game winners? | Moves made?");
+ }
+
+ public String randomString() {
+ String alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
+ StringBuilder sb = new StringBuilder();
+ Random random = new Random();
+ int length = 7;
+
+ for (int i = 0; i < length; i++) {
+ int index = random.nextInt(alphabet.length());
+ char randomChar = alphabet.charAt(index);
+ sb.append(randomChar);
+ }
+ return sb.toString();
+ }
+
+ public void saveData(String data) {
+ try {
+ BufferedWriter output = new BufferedWriter(new FileWriter(this.path, true));
+ output.write(data);
+ output.newLine();
+ output.close();
+ } catch (IOException ex) {
+ System.out.print("Invalid Path");
+ }
+ }
}
diff --git a/src/main/java/nl/isygameclient/Multithreading.java b/src/main/java/nl/isygameclient/Multithreading.java
@@ -0,0 +1,18 @@
+package nl.isygameclient;
+
+import java.util.ArrayList;
+
+public class Multithreading {
+ public static void main(String args[]) {
+ ArrayList<Headless> threaths = new ArrayList<>();
+ int threads = 1;
+ for (int i = 0; i < threads; i++) {
+ threaths.add(i, new Headless());
+ threaths.get(i).start();
+ }
+ }
+
+ private void mergeFiles(int threads) {
+
+ }
+}
+\ No newline at end of file
diff --git a/src/main/java/nl/isygameclient/network/GameClient.java b/src/main/java/nl/isygameclient/network/GameClient.java
@@ -1,6 +1,11 @@
package nl.isygameclient.network;
import java.io.IOException;
+import java.nio.charset.Charset;
+import java.nio.charset.StandardCharsets;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
import java.util.List;
import java.util.Map;
import java.util.Random;