commit aeeb1ed2f8f61f0d9fff14091553186bb337a432 parent d05def61791415b2803cfe5467d87328e8e593f1 Author: A Koens <[email protected]> Date: Wed, 7 Sep 2022 21:11:28 +0200 Create TODOs.txt Has some extra information for thing things that need and can be added to the project. Diffstat:
A | TODOs.txt | 33 | +++++++++++++++++++++++++++++++++ |
1 file changed, 33 insertions(+), 0 deletions(-)
diff --git a/TODOs.txt b/TODOs.txt @@ -0,0 +1,32 @@ +MODELS:: +- Game logic for tic tac toe. +- Game logic for Reversi/Othello. + + +VIEWS:: +- Design main menu. +- Design Tic Tac Toe window. +- Design Reversi/Othello window. +- Add animations / responsive interface features. + + +CONTROLLERS:: +- Add event handlers for the menu buttons. +- Add event handlers for the games. + + +NETWORK:: +- Create module to connect to and send and recieve data from server. +- Implement all the protocols. +- Implement Error handling for the protocols. + + +AI:: +- Random placing AI. +- Minimax => Minimax Alpha-Beta Pruning => Minimax ABP + Weight map +- Pre-calculate possible moves and their best possible responses. (Difficult / Optional) +- Use Machine Learning. (Optional) + + +THREADING:: +- Handle ai decision making on seperate thread. +\ No newline at end of file