This tag is for the game of Chess and problems getting computers to play it.
-7
votes
0answers
41 views
Compiler error when trying to run c++ code on ios [closed]
I'm trying to compile Arasan engine for iOS in Xcode.
these are the errors I'm getting:
and this is the file where class Bitboard is defined:
...
-4
votes
0answers
92 views
knight tour on 8x8 board in c [closed]
Is there any possibility to implement a C program that solve the knight tour problem on 8x8 chessboard? I read that there are too many possibilities and a computer machine can't solve it. I am asking ...
-4
votes
0answers
23 views
Anybody interested in assisting (paid) with programming a chess app for iOS? [closed]
We have an app for iPad/iPhone and looking to improve it - anybody interested (and qualified) to help? Chess programming experience is a must.
2
votes
1answer
60 views
Chess: high branching factor
I'm trying to develop a simple chess engine, but I'm struggling with its performance. I've implemented Negamax with alpha-beta pruning and iterative deepening (without any additional heuristics), but ...
0
votes
1answer
86 views
Chess engine in c or java, performance difference?
I have a simple chess app based on the Fruit engine on iOS devices. Now I'd like to do a chess app for Android. It seems like I have the following options:
port the c Fruit engine to Java
use ...
2
votes
0answers
16 views
how to communicate with uci protocol using matlab
im looking for a method to how communicate with a chess engine with uci protocol using matlab.
the chess engine is rybka and its an exe file.
when i run the rybka.exe i can communicate via dos command ...
-5
votes
0answers
27 views
Java Chess Inheritance Issues [closed]
Basically, all I want to do is to have the fun() method in ChessMethods() run(giving me the x-coordinate) without completely changing my program. I know the entire program is quite inefficient, but ...
90
votes
2answers
2k views
What does this oft-encountered array group mean in programs?
I am new to competitive programming, and I noticed frequently, many of the great coders have these four lines in their code (particularly in those involving arrays):
int di[] = { 1, -1, 0, 0, 1, -1, ...
0
votes
1answer
28 views
Java GUI getComponent(), panel.remove()
I started creating GUI for my Chess school project. And i got seriously stuck, while trying to implement figure moving.
I've got a window LayerPane, which represents main application window. In this ...
-3
votes
0answers
41 views
Taking an input file and representing it as a chess board varying in size depending on the file.
Hey I am completely stumped on this problem I have. I am trying to take an input file and generate a board of the specific size with the chess pieces on the certain places. I believe that I have ...
0
votes
3answers
42 views
Formatting JButtons inside JPanels
So, I'm making a chessboard, and whenever I try to put down the buttons, they keep reorienting and get more and more messy towards the bottom right. The first button in the top right (squareB[0][0]) ...
0
votes
3answers
69 views
Chess in ASP.NET MVC (how to implement M-V-C here)
I just started learning ASP.NET. I have a project at uni - chess (/w playing algorithm, alpha-beta pruning). I decided to implement it in ASP.NET to learn.
And here is my question: what should the ...
-6
votes
0answers
66 views
Chess in C++ with input and movement [closed]
I am building a chess game and need some help! This is a very simple chess game.
Currently I am able to have the player move his pieces, however he has to put in (0, 0) as opposed to a board that has ...
0
votes
1answer
47 views
Chess Layering Issue
I'm fairly new to Java, and I decided to try to make a Chess game with Swing.
I know that my program is extremely inefficient, but that is not really my problem.
My issue is that I cannot view the ...
-3
votes
0answers
58 views
How this Javascript code for Chess Move Validation works? [closed]
How this Javascript code for Chess Move Validation works?
isValidMove: function(nPosX, nPosY, nTargetX, nTargetY) {
var startSq = nPosY * 10 + nPosX + 21, nPiece = this.aBoard[startSq];
...
-2
votes
0answers
43 views
Chrome Chess App with AI [closed]
How this Toledo Chess AI code works?
Its might be based on MiniMax algorithm..But i'm not sure about that..
The whole code seems to be too tough for me..and i'm kind of beginner to javascript.
// ...
8
votes
2answers
138 views
Jagged array versus one big array?
Not so sure how to ask this question, but I have 2 ways (so far) for a lookup array
Option 1 is:
bool[][][] myJaggegArray;
myJaggegArray = new bool[120][][];
for (int i = 0; i < 120; ++i)
{
if ...
0
votes
1answer
83 views
Chess task - King,Rook Vs King
I want to do a C program to find the minimum no. of moves needed to check mate in a king and rook Vs king,I am supposed to use mini max algorithm.A lot of search haven't led me to any thing ...
1
vote
1answer
140 views
How to declare chess pieces whose location causes the chess board object to update and store the piece at the given location
If I'm working on designing a simple chess game code and I've already created my board layout,
I'm wondering how it is that I implement the pieces (P, p, R, r, N, n, B, b, Q, q, K, k) (capitals ...
1
vote
1answer
120 views
How to send data from an Android application to a server?
I'm developping an online Chess game in Android. The first player uses the app and the second a webpage in html.
What i want to do is to send the text with the information of every move each player ...
1
vote
2answers
170 views
Is implementing state pattern a good design choice for simple chess game? [closed]
I am trying to write an offline no AI no GUI synchronized command-line chess game that two users play (or one user play both white & black). That means there's only 1 thread.
The chess game ...
0
votes
2answers
137 views
multiple instances of “the value of the local variable is not used”
I'm learning Java and trying to make a chess game. The first thing I want to do is set up a frame as a board and then use an 8x8 grid of JButtons to make the squares on the board, however it appears ...
0
votes
1answer
50 views
Need to put the B's and W's on the corresponding chessboard spaces
I've gotten closer but I just can't figure it out. I'm not great in Java. I know that the missing B's and W's are there, it's just that they are the same colour as the background. If anyone can ...
0
votes
2answers
144 views
Trying to create a frame full of JButtons, but my JButtons won't load
I'm making a chess game for a project and one of the first things I want to do is create a frame, then fill it with 64 JButtons (organised 8x8) which will each act as the squares on a chess board. I'm ...
0
votes
2answers
70 views
Using ActionListener to swap two icons in a grid
I'm trying to move a piece from one square in a grid to another by clicking first on the piece and then clicking on the square to move it too.
How can I save the location of the first icon, and then ...
1
vote
1answer
83 views
Changing ImageIcon in a Java grid
I have a simple chess board which I'm trying to add pieces too. I want to change the icon image without adding more squares. How can I do this?
I just want to overwrite the image which is in that ...
3
votes
1answer
208 views
Javascript chess notation conversion function
I am looking for a javascript library to convert PGN files with move notations including piece and destination like:
... 3. cxd5 Qxd5 ...
Into notation only with the square co-ordinates, like:
...
0
votes
1answer
39 views
chess in GWT+MVP and trying to store states in the local storage
I have done this till now
public void addStorage() {
stockStore = Storage.getLocalStorageIfSupported();
if (stockStore != null) {
stockStore.setItem(("Index" + index), ("state" + ...
1
vote
2answers
280 views
Button click event in Swing
I have created chess board using JButton and for pieces I used ASCII values.
I added ActionListener to all the buttons. When i clicked source(first) button actionPerformed event is called and i ...
-1
votes
2answers
146 views
I need an open source VC++ chess interface? [closed]
THE PROBLEM:
I've searched about an open source interface programmed with C++, and I found "Tarrasch" but it uses wxWidgets library, I've failed to setup the library, so I've searched many other ...
2
votes
1answer
146 views
Changing colors of GridLayout elements
Note: this question may look a bit like another I've posted a few weeks ago. Back then I was not working with adding the buttons as arrays, thats what makes it more difficult for me this time.
I'm ...
1
vote
3answers
89 views
Making processing intensive web code (chess engine)
I've made some a couple of chess engines in Processing (a simplified Java language) and wanted to make one on a website. I'm guessing JavaScript would be the most obvious thing to make it in, but I ...
0
votes
0answers
63 views
Control leaving while loop before it should [closed]
Doing a little chess project. In this method I am checking to see if the king is in check.
public boolean IsKingInCheck(int ky, int kx)//determines if the King is in check
{
boolean incheck = ...
0
votes
1answer
99 views
What will be the most descriptive name for my method that returns a list of chess pieces attacking a square [closed]
Edit:
Once again, thanks to those who commented and answered. Agreed, not the best question in the world, but I needed a little push to get past this obstacle in my mind. What I have taken with me in ...
-3
votes
3answers
85 views
Random actions in JAVA
I'm writing my first own chess game in Java.
My code already works for two players, manually playing from the keyboard, and I would like to expand it to a player against the computer game.
My problem ...
2
votes
3answers
216 views
How do I implement chess with backbone.js with a RESTful api?
When one player makes a move that is sent to the server. And that move is pushed by the server to the second player. As far as I know, the server pushing the move to the second player goes against ...
0
votes
4answers
279 views
Chessboard in opengl
I'm trying to create 5x5 chessboard in OpenGL. I have been able to design a 5x6, and 8x8 but the code just won't work for the 5x5.
Can someone look over the code and maybe point out where my mistake ...
-2
votes
2answers
233 views
How many chess knights(horses) can be placed on board? [closed]
I need help with this algorithmization problem. I have NxM chessboard and I have to print how much knighs can be placed on it, without putting another knight in danger. I know that for normal ...
0
votes
2answers
232 views
Java Bishop Chess Board
Im working on figuring out the maximum number of bishops I can place on a nxn board without them being able to attack each other. Im having trouble checking the Diagonals. below is my method to check ...
0
votes
3answers
150 views
Putting 8 Queen in a Chess (without treating each other) ! [I Want All the possible result!]
I want to place 8 Queen (or Vizier) in a chess board in order that none of them can treat the others!
Like This Picture
First,
I wanted to do it in procedural way but it seems that it's not ...
0
votes
1answer
89 views
chess PGN viewer .NET [closed]
Does anyone knows of a simple chess viewer written in .NET?
I just need the classes to load a PGN file and "play" each move in turn.
A plus would be the ability to create a PGN file by playing the ...
2
votes
1answer
80 views
Bug in Quiescence Search
I have been steadily working on a chess program and have a minimax search, iterative deepening and transposition tables soon to come. At the moment, however, I have a bug which I have isolated to be ...
2
votes
3answers
191 views
Fast Hashtable in Java
I'm creating a chess program that utilizes a hash table of previously evaluated positions to (hopefully) reduce search time. Only problem is I'm using an ArrayList to store the hash values and the ...
0
votes
0answers
114 views
Illegal function call inside lambda
I'm working on a function to calculate valid moves for pawns in a game of chess. The function white-pawn-move works. When I tried to generalize it for either player's pawns (pawn-move), I run into an ...
-1
votes
1answer
174 views
2-d chess board recognition [closed]
I'm trying to develop an Android app that reads a 2-d chess image and recognize the position
(rows are numbered by 1 to 8 and columns a to h ) then:
Which square the piece occupied?
What piece it is ...
-3
votes
2answers
203 views
using JPanel in chess in java [closed]
in making a chess game in java using JPanel,is there a method that returns whether the container contains anything? for example by defining an array like this: JPanel [8][8] we want to check if there ...
2
votes
1answer
52 views
JavaScript FileSystem API as Chess Alpha Beta data storage
I'm starting to write a Chess program in JavaScript and possibly some Node.JS if I find the need to involve the server in the Chess AI logic, which is still plausible at least in my possibly ignorant ...
0
votes
0answers
254 views
Alpha Beta Algorithm correctness [closed]
I've implemented the following Alpha Beta Search for my Chess program, but it's not making the same decisions as Minimax - even though the leaf node heuristic thats used is identical. I'm having a ...
0
votes
0answers
53 views
language for Chess Evaluation (experimentation) [closed]
So I am aware of the speed and end benefits of C(++) for this task in a conventional way; however, I am looking for a language that would be interesting/powerful from the standpoint of:
Statistical ...
0
votes
0answers
67 views
removeclass at previous element always(chess)
I need delete rooks(Class) which are created after move rook(to current div)...After 1-time everything ok. And removeclass to previous rook is ok. But after 2-nd something goes wrong. When i move my ...



