Skip to content

Connect-M: A sample CMSC 14200 course project implementation

Notifications You must be signed in to change notification settings

angelaabongwa/connectm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Connect-M

This repository contains a design and implementation for Connect-M (a general version of Connect Four). It is an example of what a completed CMSC 14200 course project should look like.

Setup

Running the code in this repository requires using a number of Python libraries. We recommend creating a virtual environment before installing these libraries. To do so, run the following from the root of your local repository:

python3 -m venv venv

To activate your virtual environment, run the following:

source venv/bin/activate

You should now see (venv) in your terminal prompt, indicating that the virtual environment is active, e.g.:

(venv) student@linux1:~/repos/connectm$

Using a virtual environment has many benefits, but the main one is that you can install Python libraries just for a specific project you're working on (in this case, the connectm repository) without interfering with the Python libraries you may already have elsewhere on your computer.

To install the required Python libraries run the following:

pip3 install -r requirements.txt

To deactivate the virtual environment (e.g., because you're done working on the connectm code), just run the following:

deactivate

Running the TUI

To run the TUI, run the following from the root of the repository:

python3 src/tui.py

The TUI displays the state of the board, and asks for a player's next move. You must specify a column number (1 through 7) where you would like to drop a piece. If the number is not valid for any reason, you will be prompted again.

You can also play against a bot like this:

python3 src/tui.py --player2 <bot>

Where <bot> is either random-bot or smart-bot (the bots are described further below).

You can even have two bots play against each other:

python3 src/tui.py --player1 <bot> --player2 <bot>

The TUI inserts an artificial delay of half a second between each bot's move, so that you can more easily observe the progress of the game. You can modify this delay using the --bot-delay <seconds> parameter.

Running the GUI

To run the GUI, run the following from the root of the repository:

python3 src/gui.py

The GUI displays the state of the board. To drop a piece, press a key between 1 and 7 (depending on what column you want to drop a piece in).

Like the TUI, you can play against a bot, or have two bots play against each other like this:

python3 src/tui.py --player2 <bot>

python3 src/tui.py --player1 <bot> --player2 <bot>

The --bot-delay <seconds> parameter is also supported.

Bots

The bots.py file includes two classes:

  • RandomBot: A bot that will just choose a move at random
  • SmartBot: A bot that will try to make a winning move if possible. If not such move is possible, it checks whether the opposing player would win in the next move and, if so, it blocks that move. Otherwise, it just picks a move at random.

These two classes are used in the TUI and GUI, but you can also run bots.py to run 10,000 simulated games where two bots face each other, and see the percentage of wins and ties. For example:

$ python3 src/bot.py --player1 random --player2 random
Bot 1 (random) wins: 55.59%
Bot 2 (random) wins: 44.12%
Ties: 0.29%

$ python3 src/bot.py --player1 random --player2 smart
Bot 1 (random) wins: 4.23%
Bot 2 (smart) wins: 95.51%
Ties: 0.26%

You can control the number of simulated games using the -n <number of games> parameter to bots.py.

Running with stubs and mocks

Stub and mock implementations of the ConnectMBoard class are available in the mocks.py file.

The TUI and GUI both accept a --mode <mode> parameter, where <mode> is one of:

  • real: Use the ConnectMBoard (default)
  • stub: Use the ConnectMBoardStub
  • mock: Use the ConnectMBoardMock

The bots have their own mock class (ConnectMBoardBotMock), which is used in a series of automated tests that can be run like this:

pytest tests/test_bot.py

About

Connect-M: A sample CMSC 14200 course project implementation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%