summaryrefslogtreecommitdiff
path: root/2019-worms/src/bin/benchmark.rs
diff options
context:
space:
mode:
Diffstat (limited to '2019-worms/src/bin/benchmark.rs')
-rw-r--r--2019-worms/src/bin/benchmark.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/2019-worms/src/bin/benchmark.rs b/2019-worms/src/bin/benchmark.rs
new file mode 100644
index 0000000..84e869e
--- /dev/null
+++ b/2019-worms/src/bin/benchmark.rs
@@ -0,0 +1,22 @@
+use std::path::Path;
+
+use time::{Duration, PreciseTime};
+
+use steam_powered_wyrm::game;
+use steam_powered_wyrm::json;
+use steam_powered_wyrm::strategy::{choose_move, ScoreConfig};
+
+fn main() {
+ let max_time = Duration::milliseconds(19950);
+ let start_time = PreciseTime::now();
+
+ match json::read_state_from_json_file(&Path::new(&format!("./tests/example-state.json"))) {
+ Ok(json_state) => {
+ let new_board = game::GameBoard::new(json_state);
+ let _ = choose_move(&new_board, &ScoreConfig::default(), start_time, max_time);
+ }
+ Err(e) => {
+ eprintln!("WARN: State file could not be parsed: {}", e);
+ }
+ };
+}