Skip to content

This project will teach you how to work with multidimensional arrays in Java. You will be dealing with algorithms for generating the playfield and processing player moves. You will also find out what collections and stacks are.

Notifications You must be signed in to change notification settings

chamodanethra/minesweeper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

minesweeper

This project will teach you how to work with arrays (Problem has been solved using one dimensional arrrays and data structures even though original question had asked to use multidimensional arrays if needed.) in Java. You will be dealing with algorithms for generating the playfield and processing player moves. You will also find out what collections and stacks are.

Description

In this stage, you will upgrade your program to act just like the original Minesweeper game! We won't show all the hints from the beginning anymore, but we will allow the player to explore the minefield by themselves, which is much more challenging and fun.

The game starts with an unexplored minefield that has a user-defined number of mines.

The player can:

  • Mark unexplored cells as cells that potentially have a mine, and also remove those marks. Any empty cell can be marked, not just the cells that contain a mine. The mark is removed by marking the previously marked cell.

  • Explore a cell if they think it does not contain a mine.

There are three possibilities after exploring a cell:

  1. If the cell is empty and has no mines around, all the cells around it, including the marked ones, can be explored, and it should be done automatically. Also, if next to the explored cell there is another empty one with no mines around, all the cells around it should be explored as well, and so on, until no more can be explored automatically.

  2. If a cell is empty and has mines around it, only that cell is explored, revealing a number of mines around it.

  3. If the explored cell contains a mine, the game ends and the player loses.

There are two possible ways to win:

  1. Marking all the cells that have mines correctly.

  2. Opening all the safe cells so that only those with unexplored mines are left.

Objectives

In this final stage, your program should contain the following additional functionality:

  1. Print the current state of the minefield starting with all unexplored cells at the beginning, ask the player for their next move with the message Set/unset mine marks or claim a cell as free:, treat the player's move according to the rules, and print the new minefield state. Ask for the player's next move until the player wins or steps on a mine. The player's input contains a pair of cell coordinates and a command: mine to mark or unmark a cell, free to explore a cell.

  2. If the player explores a mine, print the field in its current state, with mines shown as X symbols. After that, output the message You stepped on a mine and failed!.

  3. Generate mines like in the original game: the first cell explored with the free command cannot be a mine; it should always be empty. You can achieve this in many ways – it's up to you.

Use the following symbols to represent each cell's state:

  • . as unexplored cells

  • / as explored free cells without mines around it

  • Numbers from 1 to 8 as explored free cells with 1 to 8 mines around them, respectively

  • X as mines

  • * as unexplored marked cells

About

This project will teach you how to work with multidimensional arrays in Java. You will be dealing with algorithms for generating the playfield and processing player moves. You will also find out what collections and stacks are.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages