[Solved] The Connect 4 Game

$25

File Name: The_Connect_4_Game.zip
File Size: 169.56 KB

SKU: [Solved] The Connect 4 Game Category: Tag:
5/5 - (1 vote)

The purpose of this assignment is to create a working text-mode version of the popular game, Connect 4.

Overview of the gameConnect 4 is a turn based 2 player game played on a 6 rows by 7 columns board. Each player on his turn chooses a column to put a piece at. A piece played in a column falls till it reaches the bottom of the column, or it gets stacked above another piece. The winner is the player who forms a line of 4 adjacent pieces of his color (horizontal, vertical or diagonal).

Problem statementYou are required to create a text mode version of the Connect 4 game. The text mode version displays the board using characters (for example x for one player, o for the other player, and a space for an empty slot).

The game starts by asking whether to start a 1 player game (Player vs. Computer), or a 2 player game (Player vs. Player).

Player vs. PlayerAfter choosing the type of game, the game starts. When it is a humans turn, the program asks the player for the column to play, and plays the piece for him at this location.

If the column is full, or is invalid, the program warns the user about the error, and asks him again to re-enter the column to play.

When the game is finished, the program displays the winner.If the board is full and no player win, the program displays Withdraw

Player vs. ComputerIf the user chooses to play against the computer, the computer should, on his turn, choose a reasonable move, and play it.Notice that you are not required creating a strong computer player. This requirement is totally outside the scope of this assignment.You are also free to choose any method by which the computer chooses its moves.

Hints: You can use two dimensions array Computer can play at any random column. Search how you can generate random number between 1 and 7 It will be a plus from you if you can make computer be a little clever.Sample run: (inputs are in green)

Welcome to connect4Select game typeEnter 1 for Player vs. ComputerEnter 2 for Player vs. Player2Starting game

Player 1: 41 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | | | | || | | | | | || | | x | | | |

Player 2: 51 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | | | | || | | | | | || | | x | o | | |

Player 1: 51 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | | | | || | | | x | | || | | x | o | | |

Player 2: 51 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | | o | | || | | | x | | || | | x | o | | |Player 1: 11 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | | o | | | | | | | x | | | x | | | x | o | | |

Player 2: 9Invalid place, play againPlayer 2: 51 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | o | | || | | | o | | | | | | | x | | | x | | | x | o | | |

Player 1: 51 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | x | | || | | | o | | || | | | o | | | | | | | x | | | x | | | x | o | | |

Player 2: 51 | 2 | 3 | 4 | 5 | 6 | 7 || | | | o | | || | | | x | | || | | | o | | || | | | o | | | | | | | x | | | x | | | x | o | | |

Player 1: 21 | 2 | 3 | 4 | 5 | 6 | 7 || | | | o | | || | | | x | | || | | | o | | || | | | o | | | | | | | x | | | x | x | | x | o | | | Player 2: 71 | 2 | 3 | 4 | 5 | 6 | 7 || | | | o | | || | | | x | | || | | | o | | || | | | o | | | | | | | x | | | x | x | | x | o | | o |

Player 1: 5Invalid place, play againPlayer 1: 8Invalid place, play againPlayer 1: 31 | 2 | 3 | 4 | 5 | 6 | 7 || | | | o | | || | | | x | | || | | | o | | || | | | o | | || | | | x | | | x | x | x | x | o | | o |

Player 1 is the Winner!Sample run 2: (inputs are in green)

Welcome to connect4Select game typeEnter 1 for Player vs. ComputerEnter 2 for Player vs. Player1Starting game

Player 1: 41 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | | | | || | | | | | || | | x | | | |

Player 2: 71 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | | | | || | | | | | || | | x | | | o |

Player 1: 41 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | | | | || | | x | | | || | | x | | | o |

Player 2: 31 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | | | | || | | x | | | || | o | x | | | o | Player 1: 41 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | x | | | || | | x | | | || | o | x | | | o |

Player 2: 31 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | | | | || | | x | | | || | o | x | | | || | o | x | | | o |

Player 1: 4

1 | 2 | 3 | 4 | 5 | 6 | 7 || | | | | | || | | | | | || | | x | | | || | | x | | | || | o | x | | | || | o | x | | | o |

Player 1 is the Winner!

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] The Connect 4 Game
$25