Git Product home page Git Product logo

Comments (4)

jhlywa avatar jhlywa commented on June 10, 2024 1

The Chess object is stateful and currently doesn't easily support switching colors without making a move. You can use this in a pinch:

const side = "b";
const [position, _, castling] = chess.fen().split(" ");
const fen = `${position} ${side} ${castling} - 0 1`;
chess.load(fen);
console.log(chess.moves());

Keep in mind this code could allow undefined/illegal behavior (e.g. switching sides while one side is in check).

from chess.js.

bigg-S avatar bigg-S commented on June 10, 2024

I appreciate the response. I tried it and it worked. Thank you!

from chess.js.

bigg-S avatar bigg-S commented on June 10, 2024

Hello, I am using the .moves function but it seem not to be getting all the possible moves for a piece at a particular position. This is how am using it:

`__stFunExt.findPossibleMoves = function(type, color, to) {

const board = new Chess();

if(color === "white"){
    board.put({type: type, color: 'w'}, to);
} 

if(color === "black") {
    const side = "b";
    const [position, _, castling] = board.fen().split(" ");
    const fen = `${position} ${side} ${castling} - 0 1`;
    board.load(fen);
    
    board.put({type: type, color: 'b'}, to);
}

const possibleMoves = board.moves({square: to});`

Is there something wrong with how am using it?

from chess.js.

bigg-S avatar bigg-S commented on June 10, 2024

I think I know the issue in my code, When I create an instance of Chess(), a board is initialized and it has the pieces set to their default positions. To correct this I have to use a single instance and update it whenever a move is made, Help me confirm if this is right. Thanks.

from chess.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.