The minesweeper tag has no wiki summary.
1
vote
1answer
24 views
Android getting Bitmap dimensions depending on resolution of device?
I am currently trying to create a grid of multiple squares (Should be a minesweeper grid one day).
Now my solution of getting every mine a specific position is by using this loop:
for(int i = 0; i ...
0
votes
1answer
26 views
Array problems - Source not found
Hey guys I have got following problem:
I am just trying to create a new array with this code.
public class MineField {
Mine[][] mines;
public MineField(int cols, int rows) {
mines = new ...
0
votes
1answer
25 views
Making Tkinter Photoimage crashes python program
I'm writing a minesweeper game using tkinter, and everything appears to function alright, but python crashes every time after a number of clicks, and I believe it is because I've added images for the ...
-4
votes
0answers
98 views
make a program to solve minesweeper [closed]
i am trying just for fun to make a program (in python to solve the windows minesweeper game)..
I can create the algorithm that solve's the games (maybe with some guesses), but i don't know how my ...
-2
votes
1answer
66 views
Android minesweeper game causes stackoverflow [closed]
I'm trying to do simple minesweeper game in android platform.When i'm clicking a block tile it triggers this recursive function to reveal empty blocks around it.
private void openBlocks(int r,int ...
0
votes
0answers
18 views
Why isn't my reveal space function not working?
The code is functional but the reveal spaces feature isn't working and I was looking for help and advice as to why it isn't working. What the reveal spaces function is supposed to do is reveal all ...
2
votes
0answers
59 views
cascading reveal for minesweeper code
I am making a Java Mine Sweeper program. So far everything is going well except for the cascading and reveal. What would be the method about checking if there are any other spaces without bombs. Can ...
-1
votes
1answer
75 views
Making minesweeper in Python and I need help changing the tiles [closed]
I am attempting to recreate minesweeper in Python and as I attempt to run the code in IDLE My question is now that how do I make it to where when the user inputs their coordinates the location changes ...
0
votes
1answer
45 views
AI algorithm possible solution for shortest path
I need advice for heuristic for minesweeper game. If found 10 fields without mine, i am curious how to estimate what should be the next field to open? I was thinking about finding possibility for ...
0
votes
1answer
122 views
2D Char array Minesweeper game loop
I'm a Comp Sci student taking intro to Comp Sci. Right now we are working on an end of the year project which is a text based minesweeper game using java. For the first part we are suppose to make a ...
0
votes
0answers
53 views
Minesweeper implementation
I am having a hard time trying to implement the game Minesweeper and my progress is shown below and I will add a description of my specific requirements as well.
"Implementing the rules of ...
0
votes
1answer
34 views
Minesweeper C++ - trouble building array from file
For homework I'm making a simple textual minesweeper program. I need to read the array parameters from a text file that will be randomly generated, but to get the program built first I'm using a known ...
1
vote
1answer
100 views
Beginner: JButton/Gridlayout (Similar to Minesweeper)
I am a beginner with Java and eventually I would like to create code for a robot I am making for a senior project. I am planning for the robot to set up dominoes in a specified pattern to then be ...
0
votes
2answers
194 views
Minesweeper recusion for cascading reveal
So i have a the majority of a method that will cascade reveal in a minesweeper game. I have a board of the solution, and one of the current grid. But the problem in that when I run into the 0 spaces, ...
5
votes
2answers
199 views
Algorithmic solution to Minesweeper
I am trying to make the minesweeper solver. As you know there are 2 ways to determine which fields in minefield are safe to open, or to determine which fields are mined and you need to flag it. First ...
0
votes
1answer
120 views
Cascading and Reveal for Java
I am making a Java Mine Sweeper program. So far everything is going well except for the cascading and reveal. I keep on getting StackOverFlowError. Can someone take a look and help me? Thanks!
public ...
1
vote
1answer
72 views
Reveal all spaces in a game of Minesweeper
I made a game of minesweeper with jbuttons and I have no clue how to access all of the buttons again to reveal the final game after you lose. I set the text by using the setText method with jbuttons ...
0
votes
3answers
164 views
Programming challenges Minesweeper help: How to check for a “*” in a 2D string array?
I'm trying to write a Minesweeper program for the programming challenges website and I am having trouble detecting if a certain element in the 2D array is a mine and incrementing the surrounding ...
-1
votes
2answers
80 views
Creating minesweep in C++ using vector arrays [closed]
So basically im trying to create the computer game minesweeper for uni. I got it working with arrays, but now i have found out i have to use vectors instead which i am completely helpless with. If any ...
0
votes
1answer
72 views
How do I make an ImageIcon (or any kind of image really) visible without a JButton?
I'm working on a minesweeper game and I want to make the bomb (or in this case a panda image I created) to show up under the game space when it's pressed. At this point I just want to make it show up ...
0
votes
0answers
239 views
Minesweeper, create a winningscreen
I'm working on a Minesweeper game. We've come quite far and we have a problem right now with determining how to fix a winning screen. So that when you've cleared all buttons and only the mines remain, ...
-5
votes
1answer
82 views
How to toggle text to visible/invisible? [closed]
I'm working on a minesweeper game and we've come quite far on our flagproblem, so that when playing you should be able to toggle between an uncovered button and a flag.
This is the code:
public void ...
3
votes
1answer
103 views
How do I set a value as an Icon?
I have a problem. First I'll show you a small code excerpt from my Minesweeper game I'm making.
lbl_grid[mineX, mineY].Text = "*";
Now, what this does is it sets a mine in my grid to look like a ...
0
votes
0answers
64 views
Set value of textBox = another value
I have a problem with a MineSweeper application me and my classmate is developing in school. We have a form which lets you define your own difficulty of the game (i.e. width, height and number of ...
-1
votes
3answers
176 views
C++ Passing 2D Arrays
I am trying to create a minesweeper game that loads the board from a flat file (no, it's not random). As per the assignment instructions, I am to pass a 2d array to a load function which will then ...
2
votes
2answers
134 views
Recursive Game issue in python
I'm creating a version of Minesweeper in python and have run into a small issue. In this piece of code:
if winGame(mines):
printWorld(gameMap)
print 'You Win!'
answer = ...
1
vote
3answers
107 views
Checking values surrounding “b” in a matrix
Minesweeper, still.
I found a way to do it, but I know there has to be a simplified way to doing this. I have to place a number in the matrix to represent how many bombs ("b") are surrounding it. ...
4
votes
3answers
150 views
Python placing 1's around “b” in grid
I have a grid that looks like this. I place one "b" randomly in the grid and put the number 1 surround the letter "b".This seems to work everywhere except when a 1 is supposed to be placed on the ...
0
votes
4answers
413 views
Placing numbers around bombs in Minesweeper: why do I get “list index out of range”?
I have a function that places 'z' amount of bombs randomly scattered across a 10x10 grid. It looks something like this ("b" represents where the bombs are located.) I need to place a number ...
5
votes
1answer
145 views
Getting element of enum in array
I need to figure out how to get an element on an enum in an array.
Basically, I have a grid of 9x9 buttons. I have two multi-dimensional arrays that houses these values. One houses their names (if the ...
2
votes
1answer
337 views
Improving my minesweeper algorithm c# [closed]
I'm making a minesweeper game, and so far it's completely playable and you can finish the game. However, my solving algorithm sucks. It's pretty messy and I'm looking for a cleaner way, perhaps with ...
12
votes
2answers
612 views
Improving my Minesweeper solving algorithm
I have implemented in Python an algorithm for solving the game 'Minesweeper'. The program works as follows:
Say that the solver clicks a square named 'a'. For sake of example let the number thus ...
0
votes
2answers
119 views
Which metaheuristics are appropriate for building a Minesweeper solver?
I have to build a Minesweeper solver, but don't really know where to start. The problem is, I have to utilize some metaheuristic algorithm, like ant colony optimization, simulated annealing, genetic ...
1
vote
3answers
265 views
Mutable Arrays in Objective-C. How to change/manipulate array elements?
I'm trying to build an array of 400 integers (treated in the context of a 20 x 20 matrix). All elements are initialized to 0, and then 40 random spots are chosen to have an integer 9 (designated as a ...
-2
votes
1answer
100 views
Setting text on a Jbutton once its pressed
Im a big rookie in Java ( and pretty much every language). I am trying to make a Minesweeper game for an assignment and I am still in the beta stages. I am stuck however on how to display the mines as ...
1
vote
1answer
527 views
Recursion stackOverflowError when finding empty cells in Minesweeper game
EDIT: SOLVED!
I simply forgot to include an 'else' statement under the 'else if' which does a blank return
I'm using Java, and I'm making a Minesweeper game.
I am trying to open all adjacent empty ...
0
votes
1answer
196 views
Minesweeper game in C [closed]
Hi guys i'm just building a minesweeper game in C. My block opening algorithm works well when looking any of the three sides(up,down,left,right). But when i try to use all the sides there is a runtime ...
1
vote
2answers
282 views
Right click setIcon() to mark bomb - Minesweeper
I am pretty new to programming and am trying to make a Minesweeper GUI. The game worked perfectly right clicking a JToggleButton displayed a "B" for bomb on the button, but when I replaced the ...
7
votes
1answer
458 views
AI Minesweeper project
I need to implement Minesweeper solver. I have started to implement rule based agent.
I have implemented certain rules. I have a heuristic function for choosing best matching rule for current cell ...
0
votes
1answer
205 views
Accessing each button's properties after they are dynamically generated in vb.net?
I have used the following code to generate buttons dynamically. I want to know how to code in such a way that if i click one button, there should be some change done to some other button in the same ...
0
votes
2answers
209 views
Generate Numbers VB.NET
So I'm developing a minesweeper game and i've assigned the mines, but I've got to generate the numbers around them. I've already developed the code, but it doesnt seem to be working.
It's important to ...
1
vote
2answers
50 views
Verify Gamefield VB.NET
So I'm developing a minesweeper game and im assigning the mines, but I've got to check where are the mines now, in order to generate the numbers. The problem is that when I'm verifying the columns and ...
2
votes
2answers
124 views
Verify Position VB.NET
So I'm developing a minesweeper game and im assigning the mines, but i'm unable to create a algorithm to stop a mine to go to a place where there's already a mine, here's what i have so far:
Public ...
0
votes
2answers
1k views
Java minesweeper method to add numbers around bombs not working right
I wrote this method for my java minesweeper game, it is supposed to check spots surrounding a set of coordinates and then calculate how many bombs are near by.
public void numberMines(){
int ...
1
vote
1answer
3k views
Getting base address of a process
I'm trying to make a program that read the timer value from Minesweeper. (OS is windows 7 64bit)
Using cheat engine I found the base address of the variable, but it changes every time I run ...
0
votes
3answers
142 views
Can't figure out why recursion never resolves
My friend is making a minesweeper clone and he asked me to help with the part where when you click on a non-mine/non-number 'blank' square it reveals all adjacent blanks. The following is the code I ...
1
vote
3answers
1k views
MineSweeper reveal neighbors help needed java
I am currently working on a minesweeper program and i need a little help on revealing neighbors in it. Currently what my program can do for reveals is the following
The 1 would be the button that was ...
0
votes
3answers
190 views
Exception error minesweeper game
Hello I am currently attempting to create a minesweeper game, i have my gui and am using a 2d array in order to store whether or not a location has a mine, however when i attempt to have the game end ...
1
vote
1answer
342 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 ...
0
votes
1answer
337 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 ...
