during the game sometimes situations occur, where it is purely random whether one reveals a mine or steps onto it. in such cases the game should dynamically rearrange, making either click the correct one.
I don't think this is something which should be fixed. This situation is simply a part of the game. One of it's elements :) Check wikipedia article on minesweeper. If you still have objections reopen (with some reasoning provided)
acutally, the wp article explicitly confirms the existence of variants that eliminate the guessing factor. ;) apart from that, you meant "wontfix", not "fixed". but i think this should be implemented, even if only as an option.
Created attachment 24261 [details] Screenshot showing guessing situation Screenshot of game's stage described in bug report.
I would like to add additional support for this wish. Some sort of method to generate solvable fields without the need for guessing that is not obvious to the player would be nice. For example, the method to always make a guess correct would not be an ideal method. Generation may have to wait until after the first square is opened to ensure a solveable game from that point. This could also be a toggle like many other kde games that have options to always generate solvable puzzles (e.g. kmahjongg).
Created attachment 28552 [details] Solution to comment #3 You don't need to guess, i assure you fields F7 and G5 are clear. If G5 had a bomb, then H5 and I5 had to be empty, and that would violate the rule on I4. If F7 had a bomb, then F8 and F9 had to be empty, and that would violate the rule on E9. I prefer the game the way it is.
You are indeed correct that those locations are not bombs, and opening them up _may_ reveal other avenues of advancement. However, KMines is not immune to true guessing situations. I will see if I can come up with one when I get home tonight and attach it. Using a solution finder it would be possible to identify all sources of the need to guess and rearrange to generate a game where pure logic can prevail. The only trick is the playing field could not be generated until after the very first square is opened. If you delay until then a static field can be generated from that point on instead of using other methods that change the field throughout the course of play. This could also be a toggle as it is in many other kde games that provide options to eliminate luck or guesswork if desired.
Created attachment 28558 [details] Another guess scenario Here is a hard mode game where I believe I've taken every course of action that does not involve guesswork. Feel free to correct me if I am wrong.
Created attachment 28559 [details] update I found 3 more safe squares, but they did not seem to help.
*** Bug 263510 has been marked as a duplicate of this bug. ***
Created attachment 66308 [details] simple guessing situation A simple solution to avoid most (but not entirely all) guessing situations could be as follows: If a mine is revealed (and normally the game would be lost) the game could try to move this mine to an unrevealed box. Only if this is not possible without the need to change any of the displayed numbers, the game is lost. in pseudocode: function mine_clicked (box mine_box) { // try to move mine to a neighbour box foreach (box b in mine_box.neighbours) { // is this box a candidate? if (b.revealed == true) continue; if (b.contains_mine == true) continue; // check if displayed numbers would change (only neighbour boxes can change) ok = true; foreach (box n in merge(mine_box.neighbours, b.neighbours)) { // no problem if no number is displayed if (n.revealed == false) continue; // no problem if number does not change if (mine_box.neighbours.contains(n) && b.neighbours.contains(n)) continue; // otherwise: mine cannnot be moved ok = false; } // move mine and stop if (ok == true) { b.contains_mine = true; mine_box.contains_mine = false; break; } } if (mine_box.contains_mine) { game_over(); } else { reveal(mine_box); } }
Created attachment 66309 [details] simple guessing situation Damn, if forgot to save the cropped image. Is it possible to delete it (some private information are shown in the background)?
Take a look at the answer posted here: http://stackoverflow.com/questions/1738128/minesweeper-solving-algorithm Currently kmines delays the creation of the playing field until the user clicks, then safe guards against placing mines on the clicked square or it's neighbors (improvement #2). We can use improvement #3 to remove the need to guess completely. Here is the workflow: Create a solver function that tries to solve the game without guessing. (See the link provided, it has code from stg mines which is licensed under MIT.) It should return if solving is possible. After a user clicks a square, load up all squares in an area and randomly shuffle them. For each square in our list try to place a mine there. Then see if the solver can still solve the puzzle. If it can not solve don't place the mine and try again for the next square in the list. Stop when either you have placed all your mines, or you have run out of squares. In the case that you ran out of squares you can either try again with a new shuffled list or just call it good with the reduced number of mines (you 'maxed' out the difficulty). PS this feature should probably have an option to be disabled, for players that prefer classic mode (I'm sure some exist). Having played stg mines I can say that in rare cases it does cause a 1 to 2 second delay on the first move when playing with a lot of mines. But it doesn't really bother me playing if I can see that the clock doesn't start ticking until after the grid is generated.
I support this feature request and would offer a possible solution - please https://github.com/JoergStrebel/minesweeper I am a fan of KMines and I think this would improve the player experience. Could you please give me some feedback if you would be interested into incorporating such a functionality into KMines? I could contribute a patch if enough people find it interesting. Extending KMines should not be so hard.
(In reply to JStrebel from comment #13) > I support this feature request and would offer a possible solution - please > https://github.com/JoergStrebel/minesweeper > I am a fan of KMines and I think this would improve the player experience. > > Could you please give me some feedback if you would be interested into > incorporating such a functionality into KMines? > I could contribute a patch if enough people find it interesting. Extending > KMines should not be so hard. I was also thinking of implementing this option. So, to me at least, this is wanted. However, I was simply going to port over the algorithm given in https://www.chiark.greenend.org.uk/~sgtatham/puzzles/js/mines.html, which I see you've already considered (and rejected?). From your github repo, it seems obvious that you've put a lot more thought into this than I have, so I think I'll keep an eye on your repo and see what comes of your effort before doing anything. Thanks
> I was also thinking of implementing this option. So, to me at least, this is > wanted. However, I was simply going to port over the algorithm given in > https://www.chiark.greenend.org.uk/~sgtatham/puzzles/js/mines.html, which I > see you've already considered (and rejected?). The thing with this algorithm is that it claims to always produce solvable minefields, but I am not so sure. This algorithm is also used in the Android app "Antimine" (https://play.google.com/store/apps/details?id=com.logical.minato&hl=en_US&gl=US). I have been playing ca. 30 games there on medium difficulty and I ran into numerous situation, where I had the impression that only guessing would help me (and I have screenshots for others to check my assumption). So I am not so sure that this algorithm is really effective. I said above that KMines should be easy to extend with the Gecode library, but I am not so sure anymore. KDE games use a pretty intricate build system. I tried to build the current version of KMines on openSUSE Leap 15.3, but I failed because of outdated dependencies. Maybe I need to build a fork first and then investigate how to incorporate my changes into the official KMines repo.
Created attachment 158078 [details] Losing KMines on the first click Here is a scenario where I failed at the first click. If nothing else, it would be nice if the game generated the board after the user starts playing.