Check out Grant Acedrex, our featured variant for April, 2024.


[ Help | Earliest Comments | Latest Comments ]
[ List All Subjects of Discussion | Create New Subject of Discussion ]
[ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]

Ratings & Comments

EarliestEarlier Reverse Order LaterLatest
Apothecary Chess-Classic. Large board variant obtained through tinkering with known games.[All Comments] [Add Comment or Rating]
💡📝Aurelian Florea wrote on Sun, May 24, 2020 05:11 PM UTC:

Now when I try to move the joker in a correct manner I get this:

You may not move your White Joker from e1 to f4.

I recognize this line. It is from the post move section and it prevents things like moving one's queen like a knight.

As no moves were displayed either, I think this could be from an error in updating the joker's identity.


🕸Fergus Duniho wrote on Sun, May 24, 2020 06:56 PM UTC:

Without seeing the game in which that is a move, I cannot tell what is going on.


MStwisty-chess[All Comments] [Add Comment or Rating]
🕸Fergus Duniho wrote on Mon, May 25, 2020 12:51 AM UTC:

I'm starting to rewrite this in clearer English. I have this so far:

The board and piece setup are the same as in normal chess. But each player has two camps and can spin either one. Each camp is a 4x4 section of the board. White's camps are on the first four ranks, and Black's are on the last four. Each has a camp on files a through d and another on files e through h. Instead of making a regular move, a player may rotate the pieces in one camp 90 degrees clockwise or counterclockwise.

This covers everything up until this line:

The pawns only go to the last rank of enemy regardless of spin.

It's not clear to me how this works. An example where this rule applies may help to clarify it.

Regarding the last line:

The pawns are promoted when the opponent spin his camp and your pawn reaches at the last rank of enemy.

Who decides what pieces the pawns promote to? The player whose move placed them on the last rank, or the player who owns them?


Citadelir chess. Grand chess + Tamerlane chess + Omega Chess.[All Comments] [Add Comment or Rating]
🕸Fergus Duniho wrote on Mon, May 25, 2020 01:15 AM UTC:

In looking for the link to Full Tamerlane Chess, I found that title belongs to a game by Greg Myers, but his game is currently hidden, because it still needs some work. This leads me to think that maybe you were not referring to his game. Were you referring to Greg Myers's Full Tamerlane Chess, to Tamerlane Chess, or to some other game?

Regarding the piece descriptions, "move" can be a bit of a vague term. In the description of the Elephant, it's unclear whether the piece moves as a Bishop up to two spaces or can leap one or two spaces diagonally. I consulted Tamerlane Chess in case it used the same Elephant, but it does not. Its Elephant can leap two spaces but cannot move one space. The same goes for the Dabbaba.

While the Camel is normally a leaper, your description of it suggest that it might not be. The Templar sounds like it might be the Horse from Chinese and Korean Chess. In general, you need to make a clear distinction between true leapers, which may go directly to a space despite obstacles, and lame leapers, which must pass over certain spaces to reach their destination.


Apothecary Chess-Classic. Large board variant obtained through tinkering with known games.[All Comments] [Add Comment or Rating]
💡📝Aurelian Florea wrote on Mon, May 25, 2020 03:02 AM UTC:

Any joker move would do.

Here: https://www.chessvariants.com/play/pbm/play.php?game=Apothecary+Chess+2&settings=Apothecary2working&submit=Edit

you can find the preset in question. Just move a white mameluke (the camel picture), and then try to move the joker.


🕸Fergus Duniho wrote on Mon, May 25, 2020 03:20 AM UTC:

I'm on my ereader right now and won't be back on my computer until tomorrow morning, which is even later than your morning. My main suggestion for now is to replace #last_type_piece with var last_type_piece in the four Joker* functions, because this sometimes makes a difference.


💡📝Aurelian Florea wrote on Mon, May 25, 2020 04:05 AM UTC:

It works!... I'm so happy!...


Citadelir chess. Grand chess + Tamerlane chess + Omega Chess.[All Comments] [Add Comment or Rating]
💡📝Daphne Snowmoon wrote on Mon, May 25, 2020 04:42 AM UTC:

In looking for the link to Full Tamerlane Chess, I found that title belongs to a game by Greg Myers, but his game is currently hidden, because it still needs some work. This leads me to think that maybe you were not referring to his game. Were you referring to Greg Myers's Full Tamerlane Chess, to Tamerlane Chess, or to some other game?

: I didnt refer him. I found 'Full tamerlane chess' on the other site.

 

Regarding the piece descriptions, "move" can be a bit of a vague term. In the description of the Elephant, it's unclear whether the piece moves as a Bishop up to two spaces or can leap one or two spaces diagonally. I consulted Tamerlane Chess in case it used the same Elephant, but it does not. Its Elephant can leap two spaces but cannot move one space. The same goes for the Dabbaba.

: The elephant and Dabbaba are stemed from Tamerlane chess, but i added some move to them and other pieces.

 

While the Camel is normally a leaper, your description of it suggest that it might not be. The Templar sounds like it might be the Horse from Chinese and Korean Chess. In general, you need to make a clear distinction between true leapers, which may go directly to a space despite obstacles, and lame leapers, which must pass over certain spaces to reach their destination.

: In Citadelir chess, the Camel is also a leaper.

: The Templar moves 1 square orthogonally and then 1 squares diagonally and it can capture a piece with this move. and the Templar can also moves 1 square orthogonally and then 2 squares diagonally but it cannot capture a piece with this move.


Game Courier Developer's Guide. Learn how to design and program Chess variants for Game Courier.[All Comments] [Add Comment or Rating]
🕸📝Fergus Duniho wrote on Mon, May 25, 2020 12:46 PM UTC:

There are two ways of getting the value of a variable. One is to prepend the variable name with the # symbol. This works by replacing the #var_name with its value during preprocessing. This is useful for commands that do not provide any evaluation of expressions. It can be used on any line, regardless of the command.

The other way works only in expressions, and it is to precede the variable name with the keyword var. In some instances, it doesn't matter which you use. But in function definitions it does. Consider these lines of code:

def test1 join "a" #v;
def test2 join "b" var v;
print fn test1;
print fn test2;
set v x;
def test3 join "c" #v;
print fn test1;
print fn test2;
print fn test3;
set v y;
print fn test1;
print fn test2;
print fn test3;

Here is their output:

a#v

b

a#v

bx

cx

a#v

by

cx

As you can tell from examining the output, the method of prepending a variable name with # works only when a function is defined, and it will insert the current value of that variable into the function definition without enabling the function to use the most recent value of the variable on subsequent function calls. But the var keyword will always retrieve the current value of the variable everytime the function is called. For this reason, it is important to use the var keyword in function definitions whenever there is any chance that its value may change. The preprocessing method of retrieving variable values may be used in a function definition only for variables that have already been set and will not change.

The same should apply to prepending constant names with @ or prepending system variables with $. You're probably okay prepending a constant name with @, because its value is not supposed to change. Some system variables change regularly, and some do not. For those that do change, it is better to use the system keyword to retrieve their value in function definitions.


Apothecary Chess-Modern. Large board variant obtained through tinkering with known games.[All Comments] [Add Comment or Rating]
💡📝Aurelian Florea wrote on Mon, May 25, 2020 03:53 PM UTC:

Fergus, we have reached the final hurdle. What I want to do is to insert the joker as part of the move in in the place of the last piece moved as long as the piece is virgin and occupies a spot on a1,b2,c2,d2,e2,f2,g2,i2 or h1 for white. The code for a1 that I tried is below. The if in the first line should have something like and flag a1 but when I do this it never enters the the if block.

if == $origin a1 :
unsetflag a1;
allow commands 2;
allow moves 2;
ask "Do you want to insert your joker now?" "Yes" p2-a1 "No" "skip";
ban allmoves;
ban commands;
allow moves 1 captures 1 promotions 2;
endif;

 

The error it gives is : J p2-a1 and other moves from one space to another are banned here.  This happens when after the ask command I go for yes. This is post move 1 code.


🕸Fergus Duniho wrote on Mon, May 25, 2020 09:41 PM UTC:

This code is in the Post-Move section, which means it is running after the move has been performed. The ask command does not perform a move right then and there. What it does is insert a move into the moves list. To guarantee that a move is allowed before it is made, you should define what is allowed in the Pre-Game section.

Also, the ask command should be used only as an alternative to entering the notation for a move. Once the ask command has been used on the current turn, the move it adds to the move list will be in the move list, and there will no longer be any need to use the ask command each time the same move is repeated. Remember that when you run Game Courier, it repeats all past moves, but when past moves have already been made, there is no longer any need to ask the player which move to make. Moreover, continuing to do so would stop the game from moving forward.

There are three things to check in determining whether to use the ask command. The first is whether the move made possible by the ask command has already been made. If it has been made, there is no need to ask whether to make the move. If it hasn't been made, there are two other things to check. The White_Pawn and Black_Pawn subroutines are designed to allow optional promotion in games with extended promotion zones, such as Grand Chess. Instead of entering a placeholder for an empty move, such as the skip command, these don't do anything special to mark that a Pawn has not promoted. Instead, they both use this condition to tell whether to use askpromote:

if not $answered and == mln $maxmln:

When the ask or askpromote command is used, it sets $answered to true. But this lasts only for the current turn. It will not help when you repeat past moves. So, this line also checks whether it is the latest move with == mln $maxmln. If a promotion move has not been made, and the command has not been answered on the current move, and it is the latest move, it asks what to promote to. Otherwise, it does not.


🕸Fergus Duniho wrote on Tue, May 26, 2020 01:45 AM UTC:

I propose giving the off-board Joker a drop move,which would be handled with the * operator, as in Shogi.


💡📝Aurelian Florea wrote on Tue, May 26, 2020 06:45 AM UTC:

The way I see it, once the user makes the regular move of the virgin piece (the ones allowed to vacate the spot for the joker), the user is then asked if he/she wants the joker to be inserted. I'm thinking that continuemove may be used here.

If a drop is to be used, the joker then starts in the hand I assume, where it is displayed, like in shogi. But there is still the problem of when to insert!


MShalf-random-transcendental-chess[All Comments] [Add Comment or Rating]
Ola Sassersson wrote on Tue, May 26, 2020 01:41 PM UTC:

I've added this game as a footnote to your Fischer-Benko Chess page. Do you mind if I delete this page? I think the games are close enough that only one page is required.


Davor Vujacic wrote on Tue, May 26, 2020 02:31 PM UTC:Excellent ★★★★★

Ok, thanks for your help. Yes, Benko-Fischer Chess is more important one for me. And you can clarify that you are the co-author of Half-Random Transcendental Chess.

 


Apothecary Chess-Modern. Large board variant obtained through tinkering with known games.[All Comments] [Add Comment or Rating]
🕸Fergus Duniho wrote on Tue, May 26, 2020 03:50 PM UTC:

The Joker's entry to the board works similarly to optional Pawn promotion. After moving a previously unmoved piece, it may be placed on the board in the space vacated by the piece just moved. It is not necessary to use continuemove, because there are only two options: moving the Joker to the vacated space or not moving it. The ask command is the appropriate one to use. In using it, here are the things to check. First, check whether the Joker is still off-board. If it isn't off-board, it has already been moved to the board, and there is no need to check whether the player wants to move it to the board. If it's still off-board, check how many turns have passed. If too many turns have passed, you can stop there, perhaps even removing it to indicate that it is no longer available. If there is still time to drop it, check whether the question has been answered and whether it is the latest turn. If it has not been answered, and it is the latest turn, you can use the ask command. But if it has been answered, or it is not the latest turn, this command should not be used.


🕸Fergus Duniho wrote on Tue, May 26, 2020 03:54 PM UTC:

I proposed using a drop move to place the Joker on the board, because in your code, you were adjusting what is allowed before and after moving the Joker. If the Joker's entry to the board is a drop move, you can permanently allow drop moves on the second move, and once the Joker has moved to the board, the player will simply have no more drop moves available. There will be no need to ban drop moves, because the player will have no more legal drop moves after the first and only one that is allowed.


Fischer-Benko Chess. Three pieces are placed randomly, the other five by the players.[All Comments] [Add Comment or Rating]
Ola Sassersson wrote on Tue, May 26, 2020 04:40 PM UTC:

I've published this page now. Unfortunately, I could not figure out how to properly delete the other page (I'm the fresh hire among the editors), but I did manage to remove the link from What's New and search results.


MShalf-random-transcendental-chess[All Comments] [Add Comment or Rating]
Ola Sassersson wrote on Tue, May 26, 2020 04:53 PM UTC:

(Duniho, how do I properly delete this page?)


Omega Chess. Rules for commercial chess variant on board with 104 squares. (12x12, Cells: 104) (Recognized!)[All Comments] [Add Comment or Rating]
Bruce Wright wrote on Tue, May 26, 2020 05:07 PM UTC:

To Kevin Pacey: Your comment that if you used a lone Champion+King it was possible to force mate against a lone King on a "normal" type of Chess board (that is, if the four corner "bolthole" squares were eliminated) sounded wrong to me, so I added that piece to one of the Chess engines I've written and had it compute the endgame database for that piece combination, and sure enough there are only a handful of positions for which a single Champion can force mate, whether on any size of rectangular Chess board or on an Omega Chess board. On the other hand, two Champions can easily force mate either on a rectangular Chess board of any size or on an Omega Chess board. I think you misunderstood Muller's comment - the one I saw says that a WD (or WAD) piece can mate, but doesn't say that this is forced in the typical case.

A word on my qualifications: I am a USCF Expert in standard FIDE Chess as well as the author or co-author of several computer Chess programs including the "Duchess" program that was the runner-up in the World Computer Chess Championships.


MShalf-random-transcendental-chess[All Comments] [Add Comment or Rating]
🕸Fergus Duniho wrote on Tue, May 26, 2020 05:19 PM UTC:

Follow the Edit Content link and click on the Delete Item button.


Omega Chess. Rules for commercial chess variant on board with 104 squares. (12x12, Cells: 104) (Recognized!)[All Comments] [Add Comment or Rating]
Bruce Wright wrote on Tue, May 26, 2020 06:11 PM UTC:

I think that using the 50 move rule for this and several other large Chess variants is probably not appropriate. For example, my Chess engine computes the maximum number of moves to mate in this variant for Bishop+Knight vs King to be 69 moves, for Queen+King vs Rook+King to be 72 moves, and for Knight+Wizard vs King to be 85 moves! Perhaps for this and other large Chess variants it should be a 75 or 100 move rule, or possibly only if the game falls into one of these reduced-material mating patterns.


H. G. Muller wrote on Tue, May 26, 2020 07:24 PM UTC:

Are you sure about those numbers? I cannot do the Omega Chess board, but my EGT generator for a plain 10x10 board says KBNK maximally takes 47 moves (average 39.4), and Knight + Wizard maximally 48 moves (average 40.1). I can imagine that having the Wizard squares could take 2 or 3 moves extra, but not nearly as much as what you mention. The hard part is usually to get the bare King in the desired corner. For Bishop + Knight it might not take any extra moves, as in the standard mating patterns the Bishop would automatically attack the Wizard square as well.

I agree that 50 moves does not leave much room for errors, and in general it can take longer to make progress in large games.

[Edit] Oh, I now also see your previous comment. And no, Kevin did not misunderstand me; for maximum DTM with a WD on 10x10 I get 52 moves, while 95.7% of the positions with the strong side to move are forced wins (see table below). On the Omega board this is of course no longer true; not even a Rook can force mate there. The WAD probably doesn't fare any better.

$ ./3men10x10 KwK
allocate 1010064 at 6d0040
        mated    mate
King captures 129224
mates      16         ( 0.01 sec)
in-1       40      64 ( 0.01 sec)
in-2      208     248 ( 0.01 sec)
in-3       88     916 ( 0.01 sec)
in-4      300     624 ( 0.01 sec)
in-5      224    1428 ( 0.02 sec)
in-6      468     768 ( 0.02 sec)
in-7      528    1696 ( 0.02 sec)
in-8      468    1728 ( 0.02 sec)
in-9      400    1836 ( 0.02 sec)
in-10     480    1080 ( 0.03 sec)
in-11     396    1328 ( 0.03 sec)
in-12     312    1416 ( 0.03 sec)
in-13     512    1192 ( 0.03 sec)
in-14     304    1656 ( 0.03 sec)
in-15      72     812 ( 0.04 sec)
in-16      56     304 ( 0.04 sec)
in-17      80     280 ( 0.04 sec)
in-18     168     392 ( 0.04 sec)
in-19     468     712 ( 0.04 sec)
in-20     768    1408 ( 0.04 sec)
in-21     768    2096 ( 0.04 sec)
in-22     708    2152 ( 0.05 sec)
in-23    1056    2080 ( 0.05 sec)
in-24     908    2812 ( 0.05 sec)
in-25    1640    2620 ( 0.05 sec)
in-26    1376    4128 ( 0.06 sec)
in-27    1516    3720 ( 0.06 sec)
in-28    3944    4524 ( 0.06 sec)
in-29    4536   10044 ( 0.06 sec)
in-30    6588   11060 ( 0.07 sec)
in-31    9456   15224 ( 0.07 sec)
in-32   15880   20516 ( 0.08 sec)
in-33   27248   32184 ( 0.09 sec)
in-34   33956   48452 ( 0.10 sec)
in-35   45448   56908 ( 0.12 sec)
in-36   60972   71044 ( 0.13 sec)
in-37   77556   89008 ( 0.15 sec)
in-38   88852  100212 ( 0.17 sec)
in-39   86540   90180 ( 0.19 sec)
in-40   81708   71664 ( 0.21 sec)
in-41   57772   46460 ( 0.22 sec)
in-42   40900   31352 ( 0.23 sec)
in-43   25296   20336 ( 0.24 sec)
in-44   19160   15656 ( 0.25 sec)
in-45   12944   11152 ( 0.25 sec)
in-46    8928    6976 ( 0.25 sec)
in-47    5456    4136 ( 0.26 sec)
in-48    2520    1968 ( 0.26 sec)
in-49     912     696 ( 0.26 sec)
in-50     224     200 ( 0.26 sec)
in-51      72      56 ( 0.26 sec)
in-52      32      16 ( 0.26 sec)
in-53       0       0 ( 0.27 sec)
won:     928744 ( 95.7%)
lost:    731228 ( 75.4%)
avg:       37.9 moves

Ben Reiniger wrote on Tue, May 26, 2020 08:19 PM UTC:

and if you'll allow the humble 8x8, you can test out that endgame:
https://www.chessvariants.com/membergraphics/MSinteractive-diagrams/EGT.html?betza=WAD&name=Champion&img=champion
(I really like this thing; thanks H.G.!)

I noticed that the Champion's Piececlopedia page has an incorrect diagram (due to the new marker code).  I'll fix that and add a link to the 8x8 checkmating practice after work today.


H. G. Muller wrote on Tue, May 26, 2020 08:28 PM UTC:

And WD on 8x8 can be tried here. It doesn't seem to have much difficulty forcing checkmate against any play, even though it starts in a generally unfavorable position (with the strong side crammed in a corner.) For a piece like WD it could be worse if it starts in the corner opposite from its own King; then there are positions where it is 'dynamically trapped', when it is on the same diagonal as the bare King.


25 comments displayed

EarliestEarlier Reverse Order LaterLatest

Permalink to the exact comments currently displayed.