A gameplay element that tests the ingenuity of the player. It can have one or more logically-concluded solutions.

learn more… | top users | synonyms

0
votes
0answers
41 views

Creating a puzzle from solved sudoku

I'm trying to create a Sudoku puzzle generator in php. As I got deeper, I found that this is not an easy-as-I-guessed thing to do. So I have divided the problem into two parts, Getting a complete ...
0
votes
3answers
125 views

Hardcore or casual? Help me understand please

I am working on an easy casual physics puzzle on iOS for kids and thought of this question. In my honest opinion casual kids games must have simple gameplay - one tap or command for a step, several ...
3
votes
1answer
132 views

What algorithm to use to fill a KenKen square board with cages?

I am working on recreating KenKen, a popular math puzzle involving a blank grid that is divided into "cages". Each cage is just a collection of adjacent squares and has a clue which is generally a ...
0
votes
1answer
71 views

Cost of changing scene in andengine

I'm working on a simple 2d puzzle with small textures (in count and quantity). Now after I finished the game logic I'm considering tow options to switch between levels: Remove all objects manually ...
-2
votes
3answers
153 views

Last level of puzzle games - hard or easy? [closed]

Currently I am creating a puzzle game, and I am finishing all the levels... and then I run into this problem: From puzzle games that I played, I find that the design of the very last level goes into ...
6
votes
2answers
234 views

Identifying quad patterns in a two-dimensional array

In the tech demo I'm trying to make, tetrominoe-style blocks will be placed by the player, at which point the game checks to see if they've made a quad with any existing shapes on the board (a 2D ...
2
votes
2answers
429 views

Creating practically solvable 15 puzzle inputs

I am now developing a 15 puzzle game. I know the method to detect unsolvable puzzles. But unlike 8-puzzle, solution for 15-puzzle takes quite long time for some input states and can be solved within 5 ...
1
vote
4answers
137 views

Logic that can traverse all possible layouts, but not checking every combination of identical pieces?

Suppose we have a grid of arbitrary size, which is filled by blocks of various widths and heights. There are many 2x2 blocks (meaning they take a total of 4 cells in the grid) and many 3x3 blocks, as ...
5
votes
1answer
1k views

Why is this 8 puzzle unsolvable?

I am developing a 8 puzzle game. I went through the rules in this (see Detecting Unsolvable Puzzles) link, which tell you how to detect if an initial state is unsolvable. It says that if the number of ...
10
votes
2answers
373 views

Finding shapes in 2D Array, then optimising

I've just been allowed an image...The image below from my game shows some darkened blocks, which have been recognised as being part of a "T" shape. As can be seen, the code has darkened the blocks ...
1
vote
1answer
197 views

Creating an interactive grid for a puzzle game

I am trying to make a slitherlink game, and am not too sure how to approach creating the game, more specifically the grid structure on which the puzzle will be played on. This is what a empty and ...
1
vote
1answer
844 views

Efficient algorithm for match-3 block detection and clearing?

So I'm making a game with elements of a match-3 puzzler (e.g. Columns, Bejeweled, Tetris Attack). However, I don't know where to begin in terms of creating an algorithm that lets me detect matches ...
-4
votes
2answers
272 views

How to create my first game? [closed]

I'm entering the world of game development. I'm comfortable with C++ and Java. I'm okay with algorithms. How should I start out with game development? I'd love to start from creating simple puzzle ...
2
votes
1answer
181 views

“Untangle”-Game AI

I am trying to program an AI for such untangle games like Untangle game. I tried the following possibilities: 1) Just set one node after the other to a random place. If every node was moved once, ...
0
votes
0answers
73 views

Cannot figure how to plan a Matryoshka themed game

Me and my partner are planning to write a Matryoshka themed game (http://en.wikipedia.org/wiki/Matryoshka_doll). It will be a side-scroller/platformer and the main idea is that the character will be ...
6
votes
1answer
453 views

Puzzle game: clipping of non-convex polygons on the figures

I have an original figure in the SVG file. I need to break it randomly on parts, an example of which is specified below: I have an idea, to use for partitioning Voronoi diagram (Fortune's algorithm). ...
0
votes
3answers
505 views

Feasible 4D first person gameplay

I put together a quick demo of a 4d first person environment last night in XNA. It uses 3d cross-sectioning instead of projection. (Use A and O to move in and out from 0 to 1 in the W axis.) In my ...
-3
votes
1answer
376 views

match-3, 4, 5, 6? Algorithm for a puzzle match game that will change the number of matches required

I was wondering if someone had an idea or had some thoughts behind creating a match-3, match-4, match-5... all the way to match-10 just by changing a variable. I think it is easy to do a match 3 or ...
10
votes
3answers
442 views

Prototyping a puzzle game for solvability of levels

I am in the prototyping phase of making a puzzle game for iOS. The basic premise of what the player has to do is get from point A to point B by navigating through a maze like setup, while moving ...
0
votes
1answer
308 views

Making a 2d puzzle game like Unblock Me for iOS and need advice.

I have a simple game on the Apple App Store written entirely in Objective-C and Cocoa Touch. I would like my next game to be like the Unblock Me game or Auqeduct where you have to drag pieces around ...
4
votes
5answers
1k views

What is the average team size for mobile games like these?

I know that it is maybe too broad question but please give me at least some guidance. What is the average team size for mobile games like in ...
0
votes
3answers
1k views

Designing an entity system for a tile-based puzzle game

I'm developing a tile-based game creation library in C# and along with it I'm creating a game to test all of its functions. This is a screenshot of the game: You've probably never heard of the ...
3
votes
1answer
374 views

XNA 2D Board game - trouble with the cursor

I just have started making a simple 2D board game using XNA, but I got stuck at the movement of the cursor. This is my problem: I have a 10x10 table on with I should use a cursor to navigate. I ...
2
votes
4answers
654 views

Best platform for puzzle game development on the iPad

I have a series of hidden object and puzzle games mapped out that I want to develop for the iPad and although I have written programs before, it's been a while. I've been trying to find the best ...
3
votes
1answer
326 views

Better data structure for a game like Bubble Witch

I'm implementing a bubble-witch-like game (http://www.king.com/games/puzzle-games/bubble-witch/), and I was thinking on what's the better way to store the "bubbles" and to work with. I thought of ...
6
votes
1answer
387 views

First Steps. Windows Phone game development

I'm pretty new in game development. Have a couple ideas wich could be cool. First that comes to mind is to develop a 2D game (kinda puzzles) for Windows Phone Mango. You may ask: "Why Windows Phone?". ...
3
votes
3answers
321 views

Time limit on puzzle games: yea or nay?

Of course, it goes without saying that this can only work when the puzzle is randomly generated (say, something like minesweeper/bejeweled) and not hand-designed levels (such as trainyard, theseus ...
14
votes
2answers
375 views

Avoiding impossible states in an adventure game

I'm looking at creating a fairly complex choose-your-own adventure style of game, but I'm looking for a technique or method to help with the game design. It will be a multi-branching story, and at ...
3
votes
2answers
178 views

'Unblock' / 'Yellow Out' game questions

I would very much like to build a game that is known as 'Unblock' or 'Yellow Out'. It is a puzzle game in which the task is to move a car out of a parking space by moving other cars in certain ...
21
votes
1answer
829 views

Determine position of a rotated element in Tetris

Tetris-Tiles are stored as a 4x4 boolean matrix. Each rotation step has it's own matrix, the representation of the T-Block would look like this: [ 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, ...
0
votes
0answers
255 views

Ideas for a puzzle in first-person [closed]

I'm working on a very small game, a puzzle in first person similar to games like Portal and The Trap: http://www.youtube.com/watch?v=Z3ELRzlGegc I would love to hear some ideas about challenges, and ...
3
votes
2answers
1k views

Simple puzzles in platform games

I'm working on simple platformer game. I've got already finished programming the main part of game, which is moving and collecting items. I want a unique game puzzle in every level, but I can't ...
5
votes
2answers
175 views

Are there any resources for motion-planning puzzle design?

Some background: I'm poking at a set of puzzles along the lines of Rush Hour/Sokoban/etc; for want of a better description, call them 'motion planning' puzzles - the player has to figure out the ...
4
votes
1answer
607 views

Typical Method Of Building Puzzle Levels

I am designing a puzzle game for the iphone and was wondering as most puzzle games consist of the player progressing through multiple levels. You see for example Angry Birds has over 100 levels. Once ...
5
votes
1answer
654 views

Random generation of interesting puzzle levels?

I'm making a Sokoban-like game i.e. there's a grid that has some crates on it you can push and you have to get the crates on crosses to win the level (although I'm going to add some extra elements to ...
15
votes
8answers
673 views

Does it make the game more fun when the user is forced to progress through the levels sequentially rather than letting them pick and play?

For the first time in my game, I'm stuck with a real design dilemma. I guess that's a good thing ;) I'm building a word puzzle game that has five levels, each with 30 puzzles. Currently, the user ...
10
votes
5answers
1k views

Data Structures for Logic Games / Deduction Rules / Sufficient Set of Clues?

I've been cogitating about developing a logic game similar to Einstein's Puzzle , which would have different sets of clues for every new game replay. What data structures would you use to handle the ...
12
votes
4answers
1k views

What makes puzzle games addictive?

I'm currently developing a puzzle game for Android that is sort of along the lines of Alchemy. I was wondering what makes games like Alchemy or Bejeweled so addicting? How do I keep players ...