Tagged Questions
The minesweeper tag has no wiki summary.
57
votes
10answers
3k views
How can I find the data structure that represents mine layout of Minesweeper in memory?
I'm trying to learn about reverse engineering, using Minesweeper as a sample application. I've found this MSDN article on a simple WinDbg command that reveals all the mines but it is old, is not ...
8
votes
3answers
800 views
What's the algorithm behind minesweeper generation
Well I have been through many sites teaching on how to solve it, but was wondering how to create it. I am not interested much in the coding aspects of it, but wanted to know more on the algorithms ...
5
votes
2answers
115 views
Generate a minesweeper board which doesn't need guessing
I am designing a Minesweeper-like game (with modified rules), and I want to prevent player from guessing. My goal is: The generated board is with few revealed squares, and player can solve the entire ...
4
votes
8answers
3k views
Minesweeper algorithm
I am pretty sure most of you know about the minesweeper game. I wanted to code (in C#) my own minesweeper game and was looking for some input as to what would be a good algorithm for that game. I have ...
2
votes
3answers
70 views
How Can i target one of my pictureboxes created on runtime? VB.NET
So basically, i have successfully randomized certain pictureboxes in a grid to contain mines, and show that mine, and for testing purposes, those mines are currently showing. What do you think I need ...
2
votes
4answers
178 views
Stackoverflow exception in java minesweeper game
I was trying to make a minesweeper game in Java, but I keep running into this error. This function sets the current square to clicked and any adjacent squares to be clicked and continues recursively. ...
1
vote
1answer
53 views
Capture simultaneous right and left click event triggers on label
I'm writing a simple minesweeper game over my Christmas break and I'm adding in the feature where you click with both mouse buttons on a number and it unveils the hidden boxes around it when it's safe ...
1
vote
3answers
48 views
Randomly placing items in a list of lists in Python
I'm a beginner at using Python and I've been trying to code a Minesweeper game. Basically, I'm a bit lost on how to set up my class so that it creates a 5x5 grid of cells using a list of lists, then ...
1
vote
1answer
61 views
vb.net: Minesweeper clicking events
I've started making a Minesweeper game in vb.net using a dynamically created grid of buttons, which are stored in a 2D array. I have another 2D array (Boolean), that keeps track of whether a certain ...
1
vote
1answer
57 views
Javascript recursion not working
I'm making a jquery minesweeper and am currently working on the revealing function for when you click a block with 0 adjacent mines. The intended result is to loop through all 8 adjacent blocks reveal ...
1
vote
2answers
145 views
minesweeper java
I am working on a minesweeper program in Java. I have my bombs distributed throughout the field, and I have my actionlisteners responding to clicks and mouselistener, responding to right clicks. I ...
1
vote
1answer
508 views
Python Minesweeper game with GUI using Tkinter How to display on buttons correctly?
I am creating a minesweeper game in python 2.7. I have run into several problems when attempting to create the GUI. I have used a library called easyGUI (found here: http://easygui.sourceforge.net/) ...
1
vote
3answers
580 views
Java minesweeper game problem. hiding mines when the game begins?
I've been able to successfully initiate a minefield when the game begins with 10 mines randomly scattered over the field. However, I'm having problems hiding these mines from the user when the game ...
1
vote
2answers
401 views
Creation 2D array for Mine game
Hello
I am trying to create emulation of "Mine game"
suppose we have matrix
0 0 0 0
0 0 -1 0
0 0 0 -1
0 -1 0 -1
now each cell that not equal -1 should be ...
0
votes
1answer
48 views
VB.NET: Force user to use the topmost form
I'm programming a Minesweeper clone in Visual Studio 2010, with VB.NET, as a Windows Form Application, and I'm having trouble with the Game Won and Game Lost forms. When I show those forms, I want the ...
0
votes
0answers
56 views
Full screen video playback in java
I am creating a minesweeper game in java looks pretty much like the windows one. However when I click on a bomb instead of just losing and each bomb exploding I want the screen to go black and play a ...
0
votes
2answers
102 views
Minesweeper VB.NET issue
So basically, i have 2 int variables, x and y i am using to create a grid of pictureboxes.
This is all fluid and built on runtime.
I am trying to specifically change the picturebox on click if mine ...
0
votes
3answers
104 views
Program is generating same random numbers on each run?
I just finished coding a Minesweeper type game, and everything's good except for that each time I run the application, it generates the same number (I ran it 3 different times, saved the output to 3 ...
0
votes
2answers
196 views
Minesweeper algorithm
I am about to design my own minesweeper in Java.
And while analyzing the real windows 7 minesweeper, I came across this situation.
The uncovered square(pointed by arrow), may be 1 or mayn't have ...
0
votes
3answers
268 views
Minesweeper Action Events
Is there a way to make certain event actions specific to left and right mouse clicks?
I'm creating a minesweeper gui, so when a square is left-clicked it will be uncovered, & when it's ...
0
votes
3answers
381 views
UVA 10189: Minesweeper
Here's the link to the problem: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=13&page=show_problem&problem=1130
This is my code and it works perfectly; ...
0
votes
1answer
453 views
jquery recursive function
Im trying to make a minesweeper game in jquery.
When a user clicks on a table cell, a check is done to see if there is a number or an x in the square. If there is not, this function is called and the ...
0
votes
3answers
689 views
Message Dialog Box Reappears After OK button is clicked
After getting good help previously, I have completed my Minesweeper game. However, there is one problem that I can't figure out. The game itself works fine, however, I have an option for the user to ...
0
votes
5answers
558 views
NullPointer Exception when calling method from a difference class
JAVA-
Hi,
I am writing a minesweeper program (first biggie) and am really stuck. The program itself is comprised of 2 classes (one for the logic, one for the GUI) as per the specifications that I am ...
-1
votes
2answers
95 views
How to detect a “win” in a Minesweeper game?
I am working on a Minesweeper which I have pretty much complete.
The only thing missing is the detection of winning. What would be the best way to implement this? I know its going to be part of the ...