Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
12answers
3k views

Machine Learning in Game AI

In the old days of gaming, I'm sure simple switch/case statements (in a sense) would have done just fine for most of the game "AI." However, as games have become increasing complex, especially at the ...
12
votes
8answers
507 views

AI algorithm for “RaceTrack” game

does anyone know (or can suggest) a good algorithm for an AI for the RaceTrack pencil-paper game? since you have 9 possible choices in each step and you need to look at least 6-10 steps ahead to ...
6
votes
3answers
569 views

AI for a Final fantasy tactics-like game

I am implementing a small grid based, turn based strategy in the lines of Final Fantasy tactics. Do you have any ideas on how i can approach the target selection, movement and skill selection ...
5
votes
3answers
166 views

Building placement in a 2D discrete game

I am working in a grid-universe - objects only exist at integer locations in a 2 dimensional matrix. Some terms: Square - a discrete location. Each square has an int x and int y coordinate, and no ...
4
votes
2answers
44 views

How to use MinMax trees with Q-Learning?

How to use MinMax trees with Q-Learning? I want to implement a Q-Learning connect four agent and heard that adding MinMax trees into it helps.
4
votes
1answer
74 views

An API to do game AI research in shooters

I'm looking to do a machine learning related course project. I'm basically looking for a framework for a top view 2d shooter game, and apply machine learning algorithms to it. There is a framework ...
4
votes
4answers
443 views

Connect 4 with neural network: evaluation of draft + further steps

I would like to build a Connect 4 engine which works using an artificial neural network - just because I'm fascinated by ANNs. I'be created the following draft of the ANN structure. Would it work? ...
4
votes
8answers
3k views

How to code an artificial neural network (Tic-tac-toe)?

I want to play Tic-tac-toe using an artificial neural network. My configuration for the network is as follows: For each of the 9 fields, I use 2 input neuron. So I have 18 input neurons, of course. ...
2
votes
2answers
259 views

Representation and heuristic of Connect6 game in Prolog

I want to represent game connect6 wiki (maybe predicate stone(P, X, Y), where P is player, X,Y are coords would by good). Also I want to use any good heuristic to solve the problem (to make opponent). ...
2
votes
1answer
237 views

Hidden Markov Models instead of FSM in a first person shooter game

I have been working on a course project in which we implemented an FPS using FSMs, by showing a top 2d view of the game, and using the bots and players and circles. The behaviour of bots was ...
2
votes
1answer
395 views

Flight game AI algorithm?

Greetings all, I am in the designing phase of one of my hobby project.I am going to develop an 3D air-combat game . (inspired by HAWX). But I am wondering how the AI works for enemy crafts ? I guess ...
2
votes
2answers
222 views

Representing a 2D map of doubles in as few “parameters” as possible

I am working on a turn-based-game AI using a neural-network technique known as NEAT. I am attempting to train a network that can move around a two dimensional (X&Y coords) space given a variety of ...
1
vote
2answers
155 views

Advice on writing a solver for Vexed levels

Vexed is a popular puzzle game, with many versions available (some of them GPL free software). It is very suitable for small screen devices; versions are available for Android, iOS, etc. I ...
1
vote
0answers
128 views

Peg Solitaire / Senku solution algorithm

I need to program a solver for the game of Peg solitaire / Senku There's already a question here but the proposed answer is a brute force algorithm with backtracking, which is not the solution I'm ...
1
vote
1answer
292 views

Game AI: Pattern for implementing Sense-Think-Act components?

I'm developing a game. Each entity in the game is a GameObject. Each GameObject is composed of a GameObjectController, GameObjectModel, and GameObjectView. (Or inheritants thereof.) For NPCs, the ...
0
votes
0answers
40 views

A* pathfinding algorithm to identify entrances into current “room”?

Was looking for some online articles that might have a good idea or two in how to approach this but not finding much. Most of it deals with the various ways to generate and follow a path to a known ...