Tagged Questions
In the Middle Ages and during the Renaissance, chess was a part of noble culture; it was used to teach war strategy and was dubbed the "King's Game". Gentlemen are "to be meanly seene in the play at Chestes". The game structure and nature of chess is related to several branches of mathematics. Many combinatorical and topological problems connected to chess were known of for hundreds of years. [Wikipedia, 2011, http://en.wikipedia.org/wiki/Chess]
60
votes
29answers
6k views
Programmer Puzzle: Encoding a chess board state throughout a game
Not strictly a question, more of a puzzle...
Over the years, I've been involved in a few technical interviews of new employees. Other than asking the standard "do you know X technology" questions, ...
49
votes
22answers
12k views
Is there a perfect algorithm for chess?
I was recently in a discussion with a non-coder person on the possibilities of chess computers. I'm not well versed in theory, but think I know enough.
I argued that there could not exist a ...
19
votes
8answers
3k views
What are some good resources for writing a chess engine?
I'm interested in writing a chess engine (mostly as a learning exercise) and would be interested in any resources that people know of that could be of interest or use, anything really: Papers, Books, ...
18
votes
11answers
2k views
How hard is it to implement a chess engine?
I'm wondering how hard it would be to implement a chess engine. Are there already open-source implementations?
It seems that you'd need a scoring function for a given board constellation, and a very ...
15
votes
5answers
2k views
Knight's Shortest Path Chess Question
I've been practicing for an upcoming programming competition and I have stumbled across a question that I am just completely bewildered at. However, I feel as though it's a concept I should learn now ...
14
votes
4answers
3k views
Chess game in javascript
Is there any Chess game API , purely written in javascipt ? No Flash!
Anybody know the algorithm(in general) used in Chess games ?
14
votes
9answers
845 views
Chess Optimizations
ok, so i have been working on my chess program for a while and i am beginning to hit a wall. i have done all of the standard optimizations (negascout, iterative deepening, killer moves, history ...
13
votes
2answers
3k views
Object Oriented Design for a Chess game
I am trying to get a feel of how to design and think in an Object Oriented manner and want to get some feedback from the community on this topic. The following is an example of a chess game that I ...
9
votes
7answers
503 views
Statistical approach to chess?
Reading about how Google solves the translation problem got me thinking. Would it be possible to build a strong chess engine by analysing several million games and determining the best possible move ...
9
votes
5answers
1k views
Smallest Chess Playing Program
I was wondering if anyone knew of a "World's Smallest Chess Program". By this I mean a text based program that can play a game of chess following all the rules (castling, en passent, underpromotion, ...
8
votes
4answers
619 views
A chess board representation in Haskell
I am primarily a C++/Java/Python programmer and have recently started diving into Haskell. The only other functional languages that I have ever dabbled in are Scheme and Ocaml (both of which are ...
8
votes
4answers
459 views
Best chess engine under permissive free software license
What is the best chess engine released under permissive free software license? By permissive free software license I mean, that it is legal to incorporate the engine's code into my project without ...
8
votes
8answers
945 views
What is the state of the art in computer chess tree searching?
I'm not interested in tiny optimizations giving few percents of the speed.
I'm interested in the most important heuristics for alpha-beta search. And most important components for evaluation function.
...
8
votes
11answers
2k views
How do I model a chessboard when programming a computer to play chess?
What data structures would you use to represent a chessboard for a computer chess program?
6
votes
3answers
215 views
Asking for algorithm to find N Knights global shortest path
I've stampled upon a curious problem.
I've got an unbounded chessboard, N knights starting locations and N target locations.
The task is to find minimal number of moves for all knights to reach all ...
6
votes
4answers
182 views
Displaying chess pieces with unicode in eclipse using java
Im just trying to display some unicode chess symbols in eclipse using java, however it just prints out the random rectangles, and unless chess pieces have taken a radical change in style lately- i ...
6
votes
1answer
346 views
Detecting Chess moves from successive image differences using OpenCV tools
Hey, I am coding up a simple chess playing robot's vision system, I am trying to improve on some previous research to allow camera and a standard chess set be used and both be allowed to move during ...
6
votes
7answers
523 views
Determine if two chess positions are equal
I'm currently debugging my transposition table for a chess variant engine where pieces can be placed (ie. originally not on the board). I need to know how often I'm hitting key collisions. I'm saving ...
6
votes
14answers
2k views
Preventing cheating in online chess games?
In many online chess lobbies, I've seen instances of 'engining', where a cheater would open a chess program at the same time as the main game window. He would then set it up so that the opponent's ...
6
votes
4answers
1k views
Programming a chess AI
I'm looking to try and write a chess AI. Is there something i can use on the .NET framework (or maybe even a chess program scripted in Lua) that will let me write and test a chess AI without worrying ...
6
votes
9answers
992 views
Recommended data format for describing the rules of chess
I'm going to be writing a chess server and one or more clients for chess and I want to describe the rules of chess (e.g. allowable moves based on game state, rules for when a game is complete) in a ...
5
votes
2answers
81 views
FEN (Chess notation) to HTML generator? Open source Java
Before we implement our own, is there an existing Open Source piece of Java code that takes a chess FEN string and converts it into an HTML representation of the chess board?
A FEN code looks like ...
5
votes
6answers
595 views
Chess piece hierarchy design: inheritance vs type fields
I have a base class for pieces
class piece;
and an array containing derived objects
piece* board[8][8];
Advantage, clean design through virtual functions. Disadvantage, if I have to find a ...
5
votes
6answers
697 views
Good use of recursion in chess programming?
As part of a homework assignment, I have to program a simple chess game in Java. I was thinking of taking the opportunity to experiment with recursion, and I was wondering if there's an obvious ...
5
votes
8answers
4k views
How to program a neural network for chess?
I want to program a chess engine which learns to make good moves and win against other players. I've already coded a representation of the chess board and a function which outputs all possible moves. ...
4
votes
2answers
472 views
A C++ based variants chess engine design question
I have a chess variants engine that plays suicide chess and losers chess along with normal chess. I might, over time, add more variants to my engine. The engine is implemented completely in C++ with ...
4
votes
2answers
1k views
Creating chess GUI in WPF
Firstly: apologies if this is a duplicate post. Things got a bit confusing as I'm trying to post/register at same time.
I started investigating running UCI chess engines from a simple WPF window, got ...
4
votes
2answers
1k views
How does minimax work?
Here's the case. I'm trying to make a Chess engine. Not that I believe that I can make anything better than what's already out there, but I want to see how it works. I've made some of the important ...
4
votes
2answers
962 views
Chess move validation library
Is there any library which can be used to validate chess moves and simulate games in .NET? It would be great if the library can understand moves in Algebraic notation and also provide simple API for ...
4
votes
5answers
1k views
Anyone know of a good .Net Chess Engine
I'm looking for a decent .Net chess engine. If there is a good chess existing one, any recommendation as to a good candidate to port to .Net?
3
votes
2answers
90 views
chess sliding pieces bitboards
I understood non-sliding pieces quite easily but I've been having some trouble with the sliding pieces.
I currently have 64 bitboards (1 for each square, not saved in a array as well as 8 bitboards ...
3
votes
5answers
130 views
Creating a Board Presentation for Chess Game
I am starting to make a 8 x 8 square board for Chess Game Assignment. However, I am wondering if there's anything hint to create the square rather than the 2D array in Java.
one of the restrictions ...
3
votes
1answer
377 views
Drawing in JLayeredPane over exising JPanels
I am working on developing a Chess game. I want to have the board Container utilize a GridLayout to display an 8x8 grid of JPanels. (This will make functions such as highlighting selected squares and ...
3
votes
2answers
304 views
A question about AlphaBeta algorithim
I have experienced AlphaBeta algorithm with my own old chess engine and now i am trying to write new engine and i see that algorithim encounter beta cut-offs but in my opinion, this should never be ...
3
votes
6answers
404 views
C++, using one byte to store two variables
I am working on representation of the chess board, and I am planning to store it in 32 bytes array, where each byte will be used to store two pieces. (That way only 4 bits are needed per piece)
Doing ...
3
votes
3answers
685 views
chess AI for GAE
I am looking for a Chess AI that can be run on Google App Engine. Most chess AI's seem to be written in C and so can not be run on the GAE. It needs to be strong enough to beat a casual player, but ...
3
votes
3answers
396 views
what would you do in a chessboard? (piece position)
would you create 3 list(of coordinate) for
empty position
black position
white position
or just looping though the array when needed and play with the result every time?
what would be best? ...
3
votes
9answers
1k views
What RESTful API would you use for a turn-based game server?
How would you model a turn-based game server as a RESTful API? For example, a chess server, where you could play a game of chess against another client of the same API. You would need some way of ...
2
votes
4answers
123 views
Could a program determine if another program plays chess?
I'm wondering about the following issue. I obviously don't expect any practical solutions but I would appreciate any developer's thoughts on this:
Would it be theoretically possible to have a program ...
2
votes
1answer
78 views
What is an exact evaluation function?
I've been searching for hours and I haven't been able to come up with a decent definition of "exact evaluation function".
Preferably with regards to chess AI, I'd like to know what an exact ...
2
votes
1answer
67 views
How to code the chess stalemate rule ?
I'm trying to write a chess game and find that I cannot find solutions to find a stalemate situation. I'm trying to google, but can't find anything. Is there a well-known algorithm or something?
2
votes
1answer
117 views
Minimax with Alpha-beta pruning, getting the result
I have followed the pseducode on the wikipedia article, and I think I got it working. However, it returns the score, and that doesn't exactly help when I want to know what move I want to make.
I ...
2
votes
0answers
285 views
Code Golf: Determining the winner of a Chess game [closed]
Migrated to http://codegolf.stackexchange.com/questions/3727/determining-the-winner-of-a-chess-game.
Challenge
Being someone who plays far too much chess in his spare time, I thought I'd set a ...
2
votes
0answers
85 views
Where can I find a large corpus of chess commentary? [closed]
I'm hoping to find a corpus of play-by-play style commentary* for an NLP project that involves predicting game outcomes from such commentary.
I can't shake the feeling that with the huge interest in ...
2
votes
3answers
131 views
Getting occupancy bit masks for bitboards
I'm playing with bitboards to represent a chess board and check for legal moves. The thing that I'm stuck with is calculation of occupancy between the source and destination squares in sliding piece ...
2
votes
3answers
180 views
Recognizing colors/patterns in webpage
I want to try to create a learning chess application as a school project. My first plan was to simply pit this AI against itself, but to really show if it has been succesful it needs to be able to ...
2
votes
2answers
706 views
Free JavaScript chessboard
Could anybody suggest a free (as in freedom) and open source JavaScript chessboard?
My plan is to hook it up with some server-side Python code, most probably it will be the flask web framework.
I ...
2
votes
1answer
363 views
3d Models in WPF
My question is simply
How can I get a file with .3ds or .obj extension loaded in a wpf project?
How can I drag and drop that 3d model with the mouse?
(I'm doing a 3d chess project)
2
votes
3answers
710 views
Free Chess AI library, ideally in Lua (or something easily translatable to Lua)?
Title says it all. A full game or application is not needed; just a core library that ideally can:
be competitive against a human
have configurable difficulty
have customizable moves (I might need ...
2
votes
4answers
496 views
how to develop a multi player chess?
I wana develop a multi-player chess using c# but I don't have any idea of how to implement the restriction rules of chess with c# to be honest i've never done even a little bit of game programming in ...