Questions tagged [chess]
Chess is a classic, two-player board game; this tag should be used for questions dealing with chess AI, data structures and algorithms.
23 questions
1
vote
2
answers
301
views
Why is my negamax algorithm returning negative infinity scores?
I'm currently in the process of writing my own chess engine in java and am having a little trouble with negamax. I've opted for negamax since its easier on the eyes and reduces the number of lines of ...
0
votes
1
answer
408
views
0
votes
1
answer
601
views
How do I implement a countdown timer for a multiplayer chess game?
There's a lot of multiplayer games out there that uses countdown timers to set a time limit in their game sessions, but how is it actually implemented?
For example, in a chess multiplayer game based ...
3
votes
1
answer
965
views
In a chess simulator, how to efficiently determine checkmate?
I'm working on a small C++ chess simulator game for the first time, and I have a bit of a programming dilemma. I have searched for similar questions on this site and StackOverflow, but can't find a ...
0
votes
1
answer
289
views
Get on what tile has mouse clicked
I am writing a chess game using Java and Swing, And I wanted to get the tile position on which a mouse clicked. I searched through internet, but all of them were really off, and never accurate. When I ...
0
votes
0
answers
22
views
Get tile position on what a mouse clicked [duplicate]
I am writing a chess game using Java and Swing, And I wanted to get the tile position on which a mouse clicked. I searched through internet, but all of them were really off, and never accurate. When I ...
0
votes
1
answer
210
views
How to get the address of a nearby square on a chess board?
I'm making a chess game from scratch and I got stuck.
So far I have all my figures placed, I have the positions set, I've already done the collision detection and everything.
When I click the figure ...
-1
votes
1
answer
300
views
detecting if a chess move is valid for a given pawn , preferably using Linear algebra
I'm making a chess game, where you simply drag and drop a pawn on the board with respect to each player's turn.
when it comes to dropping a pawn we need to validate weather the move is allowed. for ...
1
vote
1
answer
1k
views
developing a uci compatible chess engine
I have understanding of how chess engines work in theory. I know the algorithms like minimax and alpha beta pruning. I want to develop a UCI compatible chess engine.I know that UCI protocols are these:...
3
votes
1
answer
626
views
What are patterns and how to use them? (Othello/Chess...)
I'm currently trying to make a Othello-playing program. My biggest concern at the moment is the evaluation function of game positions. Currently my evaluation function is quite primitive...move ...
3
votes
1
answer
3k
views
How can I use GPL software like Stockfish Chess Engine in my Unity game?
I am working on a 3D Chess game and I want to implement an A.I bot to play with the player. I found a chess engine called Stockfish which serves this purpose, and I would like to implement that engine ...
1
vote
2
answers
877
views
Chess engine stock fish process for mobile
I am making the chess interface I designed for a game. I am using the process to get answers from a stock fish binary:
...
0
votes
2
answers
175
views
Procedural Turn Based Puzzle Generation?
Alright, we have a large set of possible moves (what the player is allowed to do). We also have a well defined state of success that defines the desired goal.
We want to generate a configuration where ...
8
votes
2
answers
2k
views
NegaScout with Zobrist Transposition Tables in Chess
I'm trying to put Transposition tables into my alpha beta scout. I do see an incremental speed boost I think toward mid or late game, however, even with a table size of 1-2GB, its may or may not be ...
1
vote
1
answer
471
views
Human vs human android chess game design [closed]
First of all I am total amateur in game development and sorry for my poor English.
I want to make android human vs human chess game. So I am wondering how to design it?
scenario 1: User connect to ...
4
votes
2
answers
2k
views
Can I use an AI engine written in C++ in my Unity game? If yes, how can I do this?
I am studying some chess and others AI algorithms and the majority of these implementations are made in C and C++, my question is, if I make a chess board and all the graphic thing in Unity, can I ...
20
votes
6
answers
7k
views
Elegant solution for coloring chess tiles
I am re-developing a chess game I wrote in Java, and was wondering if there is an elegant algorithm to color chess tiles on a numbered chess board.
Right now my solution uses if else statements to ...
-4
votes
1
answer
179
views
Any faster method?
Manhattan distance is used to the center in chess code that uses an 0x88 board .
0x88 board is 128 square.
...
-6
votes
1
answer
241
views
6
votes
3
answers
5k
views
Which algorithm used in Advance Wars type turn based games
Has anyone tried to develop, or know of an algorithm such as used in a typical turn based game like Advance Wars, where the number of objects and the number of moves per object may be too large to ...
8
votes
3
answers
2k
views
The best algorithm enhancing alpha-beta?
I'm studying AI. My teacher gave us source code of a chess-like game and asked us to enhance it. My exercise is to improve the alpha/beta algorithm implementing in that game. The programmer already ...
16
votes
2
answers
1k
views
AI: Learning vs. Strategizing
I have a theory on AI that I would like to write a "whitepaper" about. The distinction I want to explore in AI is learning vs. strategizing. My question is, where can I read other material about this ...
3
votes
1
answer
195
views
Chess engine on which to apply a custom-made OpenGL skin [closed]
Is there any open source chess engine that I can use to practice my OpenGL skill-set? I think it would be a neat exercise.