David Denny's Portfolio

Back to the home page


Java Minesweeper:

Intoduction and Theory

Java Minesweeper is a simple project that had the main objectives of understanding the Java
programming language and the numerous Object-Oriented Programming concepts therein. In order to
achieve these goals, I implemented the iconic game Minesweeper in Java. OOP concepts were used
throughout the project, ensuring my understanding of concepts like Exception Handling, Instance
Lists, File Handling, and Encapsulation. The program offers a user-friendly interface and
functional gameplay.

This project allowed for some group collaboration. As Team Lead and Lead Programmer, I was
responsible for developing nearly all aspects of the program while also assisting team members
with documentation. This project allowed us to take the idea from initial concept to completion.

As mentioned, the Minesweeper program contains various instances of OOP and Java concepts
throughout. A brief description of the project’s code can be found below in the embedded slides,
describing these various concepts in greater detail. Please also refer to the live demo at the
website’s homepage, in which you can interact with this program in a live environment!

Code

The code is fairly self explanatory and well-commented. For clarity, the below slides and logic
diagrams touch on the functionality of our Minesweeper program, and how to play it. Specifically,
the logic diagrams detail the primary logic for the functions navigated by the user’s inputs.
Additionally, the entire project’s code, consolidated into one file, can be found at the download
link below. A JavaScript varient of this program can aldo be found in this zipped folder.
These files can also be found in my GitHub:

David Denny Java Minesweeper Project Code



A diagram of main()'s data flow

A diagram of olayMinesweeper()'s data flow
Conclusion

The Java Minesweeper project successfully met its objectives by demonstrating a strong
understanding of Java and key Object-Oriented Programming concepts. Through effective
implementation and collaboration, the program achieved a fully functional and user-friendly
Minesweeper game. The project not only reinforced fundamental programming skills but also
provided hands-on experience in software development, documentation, and team coordination.
Ultimately, this project served as a valuable learning experience.

Back to the home page