Results 1 to 10 of 42

Thread: Eschecs - Pascal chess program

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Tested. It works on Linux+Wine.

    It killed my queen but I don't know when. May be an option to repeat the last movement or marking the last computer movement...

    Anyway, good work.
    No signature provided yet.

  2. #2
    Quote Originally Posted by Ñuño Martínez View Post
    Tested. It works on Linux+Wine.
    Thank you for testing. Glad to know that it works on Wine.


    Quote Originally Posted by Ñuño Martínez View Post
    It killed my queen but I don't know when. May be an option to repeat the last movement or marking the last computer movement...
    I am making something for you.

    Quote Originally Posted by Ñuño Martínez View Post
    Anyway, good work.
    Thank you.

    By the way, there would be three new messages to translate, if you would.

    Code:
        'Please wait...', // txWaiting
        'UCI protocol accepted.'#10#10'Engine name: %s'#10'Author: %s', // txUciOk
        'Cannot connect to the engine.', // txConnectionFailure

  3. #3
    Quote Originally Posted by Roland Chastain View Post
    By the way, there would be three new messages to translate, if you would.

    Code:
        'Please wait...', // txWaiting
        'UCI protocol accepted.'#10#10'Engine name: %s'#10'Author: %s', // txUciOk
        'Cannot connect to the engine.', // txConnectionFailure
    Here you have:
    Code:
        'Espere, por favor...', // txWaiting
        'Protocolo UCI aceptado.'#10#10'Nombre del motor: %s'#10'Autor: %s', // txUciOk
        'No pudo conectarse al motor.', // txConnectionFailure
    The first one can be also "Espere un momento, por favor..." ("Please wait a minute/moment...").
    No signature provided yet.

  4. #4

  5. #5
    Hello! Here is a new version.

    Now the last move of the computer is indicated by an arrow.

    Secondly, the name of the opening (in english) is displayed in the title bar.
    Attached Images Attached Images
    Last edited by Roland Chastain; 24-12-2022 at 05:02 AM. Reason: Deleted broken link

  6. #6
    Hey why not record entire game history and allow players to replay it entirely. This feature can be quite useful for people to analyze their mistakes. Also you could record your game play and allow others to watch it being played some other time.
    Implementing this is actually pretty trivial. All you need is to log is the name of the chess pice, origin and destination field which can all be stored in a single 5 character long string.
    So in your first picture the last black movement would be "PD7D5" where P stands for chest piece Peon D7 is place of origin and D5 is the place the pice has been moved to. So in end you simply end up with a simple text file storing all of the moves made in a game.

  7. #7
    Quote Originally Posted by SilverWarior View Post
    Hey why not record entire game history and allow players to replay it entirely. This feature can be quite useful for people to analyze their mistakes.
    Thank you for your suggestion. Here you are:

    Eschecs 3.0.4

    You navigate with the keyboard arrows:


    • Left: go back to previous position
    • Right: go to next position
    • Up: go to last position
    • Down: go back to first position


    Quote Originally Posted by SilverWarior View Post
    Also you could record your game play and allow others to watch it being played some other time.
    Why not in a future version. Currently the game is automatically and silently saved when you quit the program using the corresponding menu item (or using the Escape key).
    Last edited by Roland Chastain; 21-11-2017 at 06:59 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •