Questions tagged [minesweeper]
Minesweeper game is an abstract puzzle game, where numbers give information about adjacent mines.
89 questions
3
votes
2
answers
128
views
Minesweeper in React -- design for state management/data flow
I've pasted here a basic implementation I've done of a Minesweeper game. This is not the full functionality, only the populating/revealing of squares. The idea is that the user inputs ...
8
votes
4
answers
3k
views
Recreating Minesweeper
First, I have to say that this game lacks 5 features that I don't care:
Flags
Chording
Timer
Actual mouse movement
Good graphics
When starting the program, the player is meeted with a "Choose ...
7
votes
1
answer
472
views
Minesweeper game implementation in (vanilla) JS
I decided to write my own version of a Mine Sweeper game as an excuse for a Javascript/HTML/CSS project. Just to make the question self-contained: Mine Sweeper is a game with a rectangular board ...
2
votes
1
answer
976
views
Minesweeper using SFML with C++
Hi, I am making a Minesweeper game using SFML 2.0.
I am just a beginner in C++ and started using the framework for 2 weeks now, so it is safe to say I may have made lots of mistake especially when it ...
8
votes
2
answers
127
views
rustymines - a mine sweeping game with a shenanigan
I am learning Rust for about a week now. I just finished my first little working project, a mine sweeping game. The game comes with a little extra feature, namely old, broken (rusty) mines, that will ...
4
votes
1
answer
124
views
Tkinter Minesweeper Clone V2
Intro
Having spent quite a bit of time learning Python, I thought it was time to work on something. However, an Google search for "python projects 2022" came up with projects I had already ...
3
votes
1
answer
206
views
Minesweeper using Tkinter
I have completed a Minesweeper program in Python using Tkinter.
A few questions:
I feel I should convert this to Object-Oriented Programming. Any starting tips?
Expanding on the above, I have way too ...
4
votes
3
answers
800
views
Text Based Minesweeper in Java
I have been working on a text based minesweeper game in Java and I am looking for some ways to improve it. I worked through this project through JetBrains academy. I will attach the instructions of ...
4
votes
3
answers
262
views
Minesweeper program using Tkinter
I have completed my minesweeper game using Tkinter and would like to know ways to improve. I also have a question for extra features: does anybody know a way to have an opening start, like Google ...
5
votes
2
answers
487
views
Mine sweeping game for the terminal
Over the holidays I was bored due to lockdown and implemented a mine sweeping game for the terminal. Any feedback is welcome.
...
2
votes
1
answer
189
views
Display routine for Minesweeper on PyQT5
I'm trying to recreate minesweeper in python with PyQT5.
I have this function that updates the GUI by using nested for loops (one for column, and one for row) to check each cell in a 19x19 area to ...
9
votes
1
answer
1k
views
Minesweeper implementation java
I'm writing Minesweeper implementation in Java. I have little experience yet, so I need some advices:
about improving code, making it more readable and flexible
about coding style
about common ...
10
votes
2
answers
821
views
Yet another minesweeper field calculator
The task is to read in a data file containing a representation of a rectangular array with '*' signifying a mine and '.' signifying the absence of one. Each such array is preceded by a row and column ...
5
votes
1
answer
257
views
C++ Mine Sweeper Attempt
Saw this question and though I wanted to try.
So my version of reading Mine Sweeper: For the Online Judge
Some Utilities Classes
...
4
votes
2
answers
645
views
Online Judge 10189: Minesweeper (C++)
I'm new to C++ (not to programming in general), which I want to learn to participate in some programming contests.
I solved the Online Judge Minesweeper Challange.
Since I'm not familiar with C++, any ...