Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
205 views

Winners on a Pentago board

For those who don't know what Pentago is, it's not really that important to the problem, but suffice to say that you have a 6x6 board with four quadrants. Each player takes turns placing a piece and ...
4
votes
1answer
104 views

Peg solitaire – checking pegs vs. checking holes in a depth-first search

I am trying to solve Peg Solitaire with a depth-first search algorithm – it should be possible to solve the game since "modern computers can easily examine all game positions in a reasonable time". ...
4
votes
3answers
402 views

Implementing a turn-based web game

I want to implement a turn-based game for the web. My first choice right now is Battleship. Nothing too complicated but still something decently fun. Some of the features I want are being able to ...
4
votes
9answers
526 views

Given a word, how do I get the list of all words, that differ by one letter?

Let's say I have the word "CAT". These words differ from "CAT" by one letter (not the full list) CUT CAP PAT FAT COT etc. Is there an elegant way to generate this? Obviously, one way to do it is ...
3
votes
5answers
732 views

Java ArrayList Comparison- TicTacToe

I am trying to make a really simple Tic-Tac-Toe game. I have stored values of "X" and "O" in a 0-8 ArrayList (3x3 square, essentially). I can do the following for each instance of a winning situation: ...
2
votes
1answer
45 views

Drawing stones on the board for Android Go game App

I am an Android Newbie and I'm developing Go game application for android. I'm having a problem with drawing single stone on my board. Here is my onDraw() method. public void onDraw(Canvas canvas) { ...
2
votes
3answers
377 views

algorithm to check a connect four field

I'm wondering what's the best way to check for a winner on a connect four field. Basically you have to check rows, columns and diagonals. My ideas: Before I check anything, I could join all fields ...
2
votes
1answer
137 views

Board Game, Token Movement C#

will someone help me in this moving of my token, which is found in the diceroll() method, if the user clicks the dice roll button, the token will round the board. the problem is the token is going ...
2
votes
3answers
464 views

Opensource simple card game/solitaire engine example needed

I am looking forward to write a card solitaire game, including AI (if this simple can be called so) playing algorithm. No multiplayer facilities needed. I suppose there are some wheels I need not to ...
2
votes
2answers
981 views

Static Evaluation Function for Checkers

I'm trying to write an evaluation function for a game of checkers that I'm developing but I can't find the right documentation. I've read several documents on the web witch describe different ...
1
vote
2answers
149 views

Simulated Annealing and Yahtzee!

I've picked up Programming Challenges and found a Yahtzee! problem which I will simplify: There are 13 scoring categories There are 13 rolls by a player (comprising a play) Each roll must fit in a ...
1
vote
1answer
183 views

A rule for Checkers(draughts) Deadlock

I am writing a program that play Checkers against human, with a min-max game tree. Everything went fine until facing a problem. Here is the scenario described as an illustration. ->Let X be a black ...
0
votes
1answer
166 views

Qt: update pixmap grid layout with 2d array values

I am undertaking a game using a combination of c++ in visual studios 2010 and Qt 4.7 (both windows). The game is a clone of battleship and is console input based. I have created my gui how I want it ...
0
votes
8answers
252 views

OutOfBoundsException for TicTacToe Game; Issue: arrays?

I am the beginnings of writing a tic-tac-toe game. I just ran it and got the following stack trace: Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 at ...
0
votes
4answers
496 views

Representing a Monopoly board in flash?

I'm brand new to Flash (and game programming, really), but want to learn a bit of it. My overall learning project is to create a Monopoly clone in Flash. Unfortunately, I'm struggling to get over even ...
0
votes
3answers
290 views

Flexible library or server for board games (chess or others)?

I'm looking for a program or library that I could use for experimenting with board games (chess mostly, but not necessarily -- other similarly complex board games are OK too). I'll test different ...
-1
votes
2answers
78 views

15 puzzle game in java

I am creating a 15 puzzle game in java. I have already created a game panel and written method that finds the position of the empty place (not JButton) on a field and a method that controls whether it ...
-1
votes
2answers
63 views

Issue with ActionListener configuration in Java in memory game

I am trying to create a memory game, but I'am having some troubles. My previous post was: ActionListener problm in Java (game). Please do not close this question. Here is my code: import ...
-2
votes
2answers
159 views

Algorithms for board games and card games (A.I.) [closed]

do you know board games(tic-tac-toe, game of the generals etc. preferably played 1on1 and has only 3 end results which are win, lose or draw) that still has room for the optimization of the algorithm ...
-5
votes
1answer
111 views

Knowing if the solutions given to form a Sudoku Board is valid or not, using 2d arrays

Suppose that the user entered 81 numbers and the program, 9x9 sudoku board, that I'll make will tell that, "the solution you entered is valid" or otherwise. How can I check each element in the row if ...