summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 9f69b873c57f4afced68e73cf6926957cd56aed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
use std::cmp::Ordering;
use std::io::prelude::*;
use std::io::stdin;

mod command;
mod consts;
mod json;
mod state;

use command::*;
use state::*;

fn main() {
    for line in stdin().lock().lines() {
        let round_number = line.expect("Failed to read line from stdin: {}");
        let command =
            match json::read_state_from_json_file(&format!("./rounds/{}/state.json", round_number))
            {
                Ok(state) => choose_command(&state),
                Err(e) => {
                    eprintln!("WARN: State file could not be parsed: {}", e);
                    Command::Nothing
                }
            };
        println!("C;{};{}", round_number, command);
    }
}

fn choose_command(state: &GameState) -> Command {
    /* TODO:
     * - Simulate both player and opponent moves
     */
    let player_moves = state.valid_moves(0);
    let naive_result = player_moves
        .into_iter()
        .map(|player_move| {
            let mut state = state.clone();
            state.update([player_move, Command::Accelerate]);
            (player_move, state)
        })
        .flat_map(|(player_move, state)| {
            state.valid_moves(0).into_iter().map(move |second_move| {
                let mut second_move_state = state.clone();
                second_move_state.update([second_move, Command::Accelerate]);
                (player_move, second_move_state)
            })
        })
        .max_by(|(_, a), (_, b)| compare_states(a, b))
        .unwrap()
        .0;
    naive_result
}

fn compare_states(a: &GameState, b: &GameState) -> Ordering {
    if a.status == GameStatus::PlayerOneWon && b.status == GameStatus::PlayerOneWon {
        a.players[0].speed.cmp(&b.players[0].speed)
    } else if a.status == GameStatus::PlayerOneWon {
        Ordering::Greater
    } else if b.status == GameStatus::PlayerOneWon {
        Ordering::Less
    } else {
        let weighted_position_a = a.players[0].position.x + a.players[0].boosts * 2;
        let weighted_position_b = b.players[0].position.x + b.players[0].boosts * 2;

        weighted_position_a
            .cmp(&weighted_position_b)
            .then(a.players[0].speed.cmp(&b.players[0].speed))
            .then(a.players[0].position.x.cmp(&b.players[0].position.x))
            .then(a.players[0].boosts.cmp(&b.players[0].boosts))
    }
}