From 574d79947b5ca03d922d019d0ee00fd9bdeef1df Mon Sep 17 00:00:00 2001 From: Vincent Rodley Date: Thu, 28 Aug 2025 10:44:32 +1200 Subject: [PATCH] renamed files --- README.md | 4 +++- cli/{game.py => cli_game.py} | 2 -- cli/settings.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename cli/{game.py => cli_game.py} (99%) diff --git a/README.md b/README.md index 36c15c0..7439658 100644 --- a/README.md +++ b/README.md @@ -36,4 +36,6 @@ Both game modes include: ### GUI -- Add the CPU \ No newline at end of file +- Add the CPU +- animations +- make the cursor follow the mouse \ No newline at end of file diff --git a/cli/game.py b/cli/cli_game.py similarity index 99% rename from cli/game.py rename to cli/cli_game.py index 2f474da..c725c79 100644 --- a/cli/game.py +++ b/cli/cli_game.py @@ -256,9 +256,7 @@ def cpu_move_provider(player, board): try: with open("settings.json", "r") as f: settings = json.load(f) - print(f"Settings: {settings}") search_depth = settings.get("cpu_search_depth", 5) - print(f"search depth: {search_depth}") except (FileNotFoundError, json.JSONDecodeError): search_depth = 5 diff --git a/cli/settings.json b/cli/settings.json index d8c5202..a9b2bc9 100644 --- a/cli/settings.json +++ b/cli/settings.json @@ -1,4 +1,4 @@ { - "display_mode": "emojis", + "display_mode": "coloured_background", "cpu_search_depth": 5 } \ No newline at end of file