Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
817 views

Game server for an android/iOS turn-based board-game

i'm currently programming an iPhone game and I would like to create an online multiplayer mode. In the future, this app will be port to Android devices, so I was wondering how to create the ...
3
votes
4answers
2k views

How do I represent a hextile/hex grid in memory?

Say I'm building a board game with a hextile grid, like Settlers of Catan: Note that each vertex and edge may have an attribute (a road and settlement above). How would I make a data structure ...
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
2answers
121 views

AS3 OOP. How do I make an object move across a game board depending on the value of the dice?

I am creating a board game and I am using Object Oriented Programming with AS3. I created a movie clip with a circle that moves across the game board. There are 18 squares and 18 frames. I have a ...
2
votes
1answer
178 views

android board game devopment help

I'm new to developing Android games, but not new to developing mobile games (J2ME). I'm currently developing a board game, for a school project, with 2 things - a board and a spinning wheel (both are ...
1
vote
2answers
125 views

How to create a Backgammon board in ASP.NET with C#

I have created a backgammon game in c++ that is played in console. Now I want to update it to be played online. At the moment both players would be playing from the same computer, so I don't need to ...
1
vote
1answer
79 views

Finding if a path between 2 sides of a game board exists

I'm working on a game as an assignment for school in java. The game currently is designed for Console. The game is for 2 players, one attacking from North to South, and the other from West to East. ...
0
votes
1answer
221 views

android zoomable and scrollable board game

I'm developing a Android board game and have a question regarding creating a board that is zoomable and scrollable. The board contains a static background, characters (players) and the actual "level" ...
0
votes
1answer
128 views

Checkers/Draughts Server and Board implementation (through a web browser using Ruby on Rails)

I'm developing a two player checkers website. The idea is to allow people sign up and add to a list of friends they have. They can then send or accept requests to/from a friend on their list to play a ...