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
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
use rand::{thread_rng, Rng};
use wasm_bindgen::prelude::*;

#[wasm_bindgen]
#[repr(u8)]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Difficulty {
    Easy = 0,
    Medium = 1,
    Hard = 2,
}

#[wasm_bindgen]
pub struct State {
    board: Vec<Vec<char>>,
    difficulty: Difficulty,
}

#[wasm_bindgen]
pub struct Move {
    pub index: usize,
    pub score: i32,
}

#[wasm_bindgen]
impl State {
    pub fn new(diff: Difficulty) -> State {
        State {
            board: vec![vec!['0'; 3]; 3],
            difficulty: diff,
        }
    }

    fn get_board(&self) -> Vec<Vec<char>> {
        self.board.clone()
    }

    pub fn update_board(&mut self, index: usize, val: char) {
        if index <= 8 && (val == 'x' || val == 'o' || val == '0') {
            let value_orig = self.get_val_by_index(index);
            if (value_orig != 'x' && value_orig != 'o') || val == '0' {
                self.set_val_by_index(index, val);
            }
        }
    }
    pub fn get_val_by_index(&self, index: usize) -> char {
        if index < 3 {
            self.board[0][index]
        } else if index < 6 {
            self.board[1][index - 3]
        } else if index < 9 {
            self.board[2][index - 6]
        } else {
            '0'
        }
    }
    fn set_val_by_index(&mut self, index: usize, val: char) {
        if index < 3 {
            let mut board = self.get_board();
            let mut inner = board[0].clone();
            inner[index] = val;
            board[0] = inner;
            self.set_board(board);
        } else if index < 6 {
            let mut board = self.get_board();
            let mut inner = board[1].clone();
            inner[index - 3] = val;
            board[1] = inner;
            self.set_board(board);
        } else {
            let mut board = self.get_board();
            let mut inner = board[2].clone();
            inner[index - 6] = val;
            board[2] = inner;
            self.set_board(board);
        }
    }
    fn set_board(&mut self, new_board: Vec<Vec<char>>) -> () {
        self.board = new_board;
    }

    pub fn is_tie(&self) -> bool {
        self.get_empty_spots().is_empty()
    }

    pub fn is_win(&self, x_or_o: char) -> bool {
        (self.board[0][0] == x_or_o && self.board[0][1] == x_or_o && self.board[0][2] == x_or_o)
            || (self.board[1][0] == x_or_o
                && self.board[1][1] == x_or_o
                && self.board[1][2] == x_or_o)
            || (self.board[2][0] == x_or_o
                && self.board[2][1] == x_or_o
                && self.board[2][2] == x_or_o)
            || (self.board[0][0] == x_or_o
                && self.board[1][0] == x_or_o
                && self.board[2][0] == x_or_o)
            || (self.board[0][1] == x_or_o
                && self.board[1][1] == x_or_o
                && self.board[2][1] == x_or_o)
            || (self.board[0][2] == x_or_o
                && self.board[1][2] == x_or_o
                && self.board[2][2] == x_or_o)
            || (self.board[0][0] == x_or_o
                && self.board[1][1] == x_or_o
                && self.board[2][2] == x_or_o)
            || (self.board[0][2] == x_or_o
                && self.board[1][1] == x_or_o
                && self.board[2][0] == x_or_o)
    }

    pub fn reset_board(&mut self, diff: Difficulty) {
        self.board = vec![vec!['0'; 3]; 3];
        self.difficulty = diff;
    }

    pub fn next_move(&mut self, is_x: bool) -> usize {
        match self.difficulty {
            Difficulty::Easy => {
                if rand::random() {
                    self.random_next_move(is_x).index
                } else {
                    self.best_next_move(is_x).index
                }
            }
            Difficulty::Medium => {
                let mut rng = thread_rng();
                let value: f64 = rng.gen();
                if value > 0.8 {
                    self.random_next_move(is_x).index
                } else {
                    self.best_next_move(is_x).index
                }
            }
            Difficulty::Hard => self.best_next_move(is_x).index,
        }
    }
    fn random_next_move(&self, _is_x: bool) -> Move {
        let empties = self.get_empty_spots();
        let random_index: usize = thread_rng().gen_range(0, empties.len());
        Move {
            score: 0,
            index: empties[random_index],
        }
    }
    pub fn best_next_move(&mut self, is_x: bool) -> Move {
        let player_1 = 'x';
        let player_2 = 'o';
        if self.is_win(player_1) {
            return Move {
                index: 0,
                score: 10,
            };
        }
        if self.is_win(player_2) {
            return Move {
                index: 0,
                score: -10,
            };
        }

        let empty_spots = self.get_empty_spots();
        if empty_spots.is_empty() {
            return Move { index: 0, score: 0 };
        }
        let mut moves = Vec::new();
        for index in empty_spots {
            let curr_player = if is_x { 'x' } else { 'o' };

            self.update_board(index, curr_player);
            let curr_move = self.best_next_move(!is_x);
            moves.push(Move {
                score: curr_move.score,
                index,
            });
            self.update_board(index, '0');
        }
        if is_x {
            let mut best_score: i32 = -10_000_000;
            let mut best_score_index: usize = 0;
            for value in moves {
                if value.score > best_score {
                    best_score = value.score;
                    best_score_index = value.index;
                }
            }
            Move {
                index: best_score_index,
                score: best_score,
            }
        } else {
            let mut best_score: i32 = 10_000_000;
            let mut best_score_index: usize = 0;
            for value in moves {
                if value.score < best_score {
                    best_score = value.score;
                    best_score_index = value.index;
                }
            }

            Move {
                index: best_score_index,
                score: best_score,
            }
        }
    }
    fn get_empty_spots(&self) -> Vec<usize> {
        let mut result = Vec::new();
        for (index_i, row) in self.get_board().iter().enumerate() {
            for (index_j, value) in row.iter().enumerate() {
                if *value == '0' {
                    if index_i == 0 {
                        result.push(index_j);
                    } else if index_i == 1 {
                        result.push(index_j + 3);
                    } else {
                        result.push(index_j + 6);
                    }
                }
            }
        }
        result
    }
}