diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-04-27 20:08:48 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-04-27 20:08:48 +0200 |
commit | 450d22758ec169ece8f71bc6bd6c79603c136874 (patch) | |
tree | db03f4a02a202424ecd6bd5eacbd68a6ccc81295 /planetwars-matchrunner/src/lib.rs | |
parent | 39940aaabd057cb498d51cd2cceef7be187ab3d2 (diff) | |
download | planetwars.dev-450d22758ec169ece8f71bc6bd6c79603c136874.tar.xz planetwars.dev-450d22758ec169ece8f71bc6bd6c79603c136874.zip |
return winner when running a match
Diffstat (limited to 'planetwars-matchrunner/src/lib.rs')
-rw-r--r-- | planetwars-matchrunner/src/lib.rs | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/planetwars-matchrunner/src/lib.rs b/planetwars-matchrunner/src/lib.rs index b7a9e53..1f1a4c7 100644 --- a/planetwars-matchrunner/src/lib.rs +++ b/planetwars-matchrunner/src/lib.rs @@ -52,7 +52,11 @@ pub trait BotSpec: Send + Sync { ) -> Box<dyn PlayerHandle>; } -pub async fn run_match(config: MatchConfig) { +pub struct MatchOutcome { + pub winner: Option<usize>, +} + +pub async fn run_match(config: MatchConfig) -> MatchOutcome { let pw_config = PwConfig { map_file: config.map_path, max_turns: 100, @@ -103,8 +107,18 @@ pub async fn run_match(config: MatchConfig) { // ) // .unwrap(); - let match_state = pw_match::PwMatch::create(match_ctx, pw_config); + let mut match_state = pw_match::PwMatch::create(match_ctx, pw_config); match_state.run().await; + + let final_state = match_state.match_state.state(); + let survivors = final_state.living_players(); + let winner = if survivors.len() == 1 { + Some(survivors[0]) + } else { + None + }; + + MatchOutcome { winner } } // writing this as a closure causes lifetime inference errors |