Check out Symmetric Chess, our featured variant for March, 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 ]

Comments/Ratings for a Single Item

Earlier Reverse Order LaterLatest
Metamachy. Large game with a variety of regular fairy pieces.[All Comments] [Add Comment or Rating]
🕸Fergus Duniho wrote on Tue, Aug 8, 2017 11:20 PM UTC:

Thanks for putting this up. You didn't mention that the Prince moves as a non-royal King, one space in any direction.

I played both sides with Zillions-of-Games to get the ambiguities in the rules clarified.

When I attacked a space vertically in front of a King with a Knight, it could not leap as a Knight to the space the Knight was actually attacking, but it could still move as a Knight to the other space. So it looks like the overpassed square applies only to orthogonal and diagonal moves, not to hippogonal moves. But looking at the code, I see that the King is given two paths for each hippogonal move. So I setup a position where both the Mao path and the Moa path of the King to a particular space are attacked, but the space itself is not attacked, and the King could not move to that space. So the rule is that a King may make a Knight leap if there is at least one two-step path to the space with an unattacked space, and this path may be like the move of a Mao (Chinese Chess Knight) or a Moa, which goes diagonally, then orthogonally outward.

Also, while a Camel is attacking a space near the White King, it's within a Knight's leap away from the King, nothing is attacking any space the King would have to pass over, and nothing is protecting the Camel, yet the King cannot capture it. So it looks like the King's two-space leap must be non-capturing. Looking at the code, this is confirmed. The King may make its skip move, as it is called in the code, only to an empty space.

Finally, I setup a stalemate position, and Zillions reported that it was a draw. So it looks like stalemate is a draw.


📝H. G. Muller wrote on Wed, Aug 9, 2017 12:48 PM UTC:

OK, thank you for clearing this up. I will make the article conform to the Zillions implementation.

Perhaps you could try the following as well? (I don't have Zillions):

Is the not-passing-through-check rule also enforced when the square jumped over is occupied? And does it depend on the player to which the occupying piece belongs? Logically, if the King tries to move f1-d1, and e1 is attacked (by a Knight, say), it should be forbidden when there is a friendly piece on e1, but allowed if there is an enemy, as the Knight cannot capture the King on e1 when there also is a piece of his own on e1. (At least, I think so; it is not very logical in the first place that the King could be on a square already occupied by another piece, to be checked there...)


🕸Fergus Duniho wrote on Wed, Aug 9, 2017 01:34 PM UTC:

The code for the King's skip move looks like this:

  (define skip
( 
(verify never-moved?) 
(verify not-attacked?)
	   $1 
	(verify not-attacked?)
	   $2
		(verify empty?)
	        (set-attribute never-moved? false)
	   ;     (set-attribute never-skipped? false)
		 add
	 ))

The only condition on the first step of this move is that the space is not attacked. A space is considered attacked in Zillions-of-Games only when an enemy piece could legally move there.


📝H. G. Muller wrote on Wed, Aug 9, 2017 02:09 PM UTC:

Well, I don't understand Zillions coding. But do you mean 'legally' as 'also not leaving the player in check'? I.e. would player A be allowed to move his virgin King from f1 to d1 if e1 was attacked by a Rook of player B that was pinned on the King of player B?

For orthodox Chess being in check is defined in terms of pseudo-legal moves, and 'not passing through check' would also forbid castling when a pinned piece attacks the square through which the King passes, and thus does not have a legal move to that square.

Capturing your own pieces is not even pseudo-legal, however, so I guess it is would never be a problem to jump over an enemy piece.


🕸Fergus Duniho wrote on Wed, Aug 9, 2017 03:53 PM UTC:

Here's how the function works. It starts with the piece on the space it was already on before moving. It then verifies two things, that the piece hasn't moved, and that it is not attacked. The first checks an attribute of the piece, and the second checks whether an enemy piece could reach the space using its powers of movement. If these are both true, it continues to process the move. The $1 is a variable standing in for the first argument passed to the function. This will be a direction, and it will move in that direction to a new space. It then verifies that this space is not attacked. If this is true, it then proceeds in the direction provided by the second argument, $2. The one thing it verifies here is that the space is empty. If it is, it continues with the rest of the function. The next line sets the piece attribute "never-moved?" to false, which will stop the piece from making a second move of this type. The line after this is commented out. It would have set an attribute that appears to be redundant and unused. With the last line, the add command makes this an official legal move, understood in terms of the piece's powers of movement, but not in terms of whether the move would create an illegal position.

Consider the game of Chess. A King cannot legally move to a space the other King could otherwise move to, because then it would be moving into check. This implies that each King can attack a space it cannot actually legally move to. And this is what attacked means in Zillions-of-Games. It identifies a space that the King would be in check on if it moved there.


📝H. G. Muller wrote on Wed, Aug 9, 2017 07:45 PM UTC:

Ah, but this is new information. You can also not make the jump when in check. I did not get that from the description on Jean-Louis' website.

Btw, it seems that this in-check business has been a seriously disputed issue at one time in the history of orthodox Chess, whether you could be in check by a pinned piece, or whether you could step your King next to an enemy King when you were protected (so that the opponent King could not legally move to the square your King was on to capture the latter). In Tai Shogi there is a similar issue, because there is a rule that says an Emperor (which is a universal leaper) cannot capture a protected piece, and it is not clear whether a piece is protected by the opponent Emperor (as he is also subject to this rule, and might thus not be able to recapture your Emperor if you had a second attacker to the square).

But I understand that this 'attacked' test in Zillions would never say that a piece is attacked by a piece of the same player.


sirius628 wrote on Wed, Aug 9, 2017 11:09 PM UTC:

There's a problem here. The Pawns and Princes promote only to Queen, and never to Lion or Eagle.


📝H. G. Muller wrote on Thu, Aug 10, 2017 12:44 PM UTC:

Oh, it seems I broke something when making it possible to have multiple diagrams on one page: all collapsable legends now get different HTML IDs, so the test whether the legend table is open or closed, which decides whether you automatically get the default piece, now looks for a legend with the wrong name, and as a result considers it closed.

[Edit] OK, I fixed the JavaScript, and now you will have again promotion choice. (In the legend table, when it is open. When it is collapsed, you get the default piece, which is Queen here.) Don't forget to hold Shift down when you reload the Metamachy article, to also force loading the new .js file instead of using the cached one.


Erik Lerouge wrote on Thu, Nov 8, 2018 07:26 PM UTC:

I made a GC preset for Metamachy here.


🕸Fergus Duniho wrote on Tue, Feb 5, 2019 11:20 PM UTC:

I have made good progress toward making a rule-enforcing preset for Metamachy. The last thing to do is to enable Black to place pieces before White moves. Game Courier is not currently set up to allow anyone to do anything before the first player moves. One way to handle this would be to give the first move to Black, but this would involve inverting the board, switching the sections coding for each side, and listing White as the second player in the movelist. I would rather avoid all that, but that means working out a way to allow the second player a pre-game move.


📝H. G. Muller wrote on Wed, Feb 6, 2019 09:37 AM UTC:

Well, I guess black logically is the first player in Metamachy. Don't you have the same problem in Shogi?


🕸Fergus Duniho wrote on Thu, Feb 7, 2019 11:15 PM UTC:

Ideally, I want to treat Metamachy as a game in which White has the first move of the first turn but Black has a special setup move before White moves. The trouble is that the more complicated Game Courier has gotten, the more difficult it has become to change how it behaves. I have some ideas for what to do, but I also worry about breaking things to get it done. It also takes a lot of inspection of the code to figure out how it works and what can be changed. Some of my ideas might also be useful for supporting multi-player games, but that's another thing I have not added yet because of the difficulty in doing so.


💡📝Jean-Louis Cazaux wrote on Fri, Nov 15, 2019 10:57 PM UTC:

Hello friends,

Two things. I would like to know what was not clear in my description of metamachy? I could make corrections.

Second, it is a bit severe against me as the inventor to write about the Prince "Despite what its name suggests, it has no royal properties". It moves like a King, I think this is a strong royal property. It can be checked, and this is logical, the capture of the Prince should not be the end. A Prince is not a King. Its name is well chosen or I miss something.

Best regards


J Andrew Lipscomb wrote on Sat, Nov 16, 2019 02:49 AM UTC:

The term "royal" in this context specifically means the "capture/mate me to win" property. The term "prince" has been used both for pieces with the King-move but no such property (Tempête sur l'Échiquier comes to mind) and for pieces that serve as a backup royal (Chu Shogi, Tamerlane). Prince is a reasonable term for either, but the clarification is also reasonable.


📝H. G. Muller wrote on Sun, Nov 17, 2019 12:18 PM UTC:

Not clear from your description at http://history.chess.free.fr/metamachy.htm was:

  • Whether stalemate is a win, draw or loss.
  • What the "overpassed squares" are in case of the initial King move to the second ring. In particular whether moving like a Knight (from f1 to g3, say) passes over f2, g2, neither, either or both. And what it means for those squares to be "under attack" when they are occupied. (For D or A move it can be assumed that these are the W and F squares in the same direction, respectively.)
  • Whether the King can capture with its initial jumping moves.
  • Whether a Prince can capture en passant, in addition to being e.p.-capturable. Especially since, in the description of the Pawn, you present its ability to capture e.p. as a "consequence" of its ability to capture diagonally, rather than as an additional rule that could very well have been different. Since the Prince can also capture diagonally, does this have the same (but this time unmentioned) 'consequence'? And is this then a consequence just of being able to capture, (so that the Prince can also e.p.-capture orthogonally), or does the direction matter (and how about backward diagonal then)?

Note that my remark on the non-royal nature of the Prince is not meant as criticism on you piece naming, but just as a warning to the reader that the Metamachy type of Prince is not like the Shogi Prince (which also moves like King) in that it has to be captured / mated too in order to win the game and cannot expose itself to pseudo-legal attack. I would have said the same for Queen where it not that the Queen is an orthodox Chess piece that can move into check, and would automatically be assumed the same in other variants. Note that in your Metamachy description you use 'royal' in exactly the same meaning as I use it here, when you describe the Prince as "a non-royal King".


💡📝Jean-Louis Cazaux wrote on Sun, Nov 17, 2019 02:56 PM UTC:

Thank you for all these explanations and feedbacks. I will correct soon the description on my own page. 

  • The end-o-game rules, checkmate, stalemate, etc. are identical to standard chess
  • King's jump: you guessed well. At his first move, the King may jump to a free square at 2 squares' distance. It does not matter if the square jumped over is occupied or not; however, the jump os forbidden if that intermediate square is threatened by an enemy piece. When jumping like a Knight, at least one of the two intermediate squares must be free of threat. The King's jump is not permitted if the King is in check.
  • The King cannot capture with its initial jumping moves (it may jump to a free square only)
  • En passant: any time a Pawn or a Prince takes a double step and passes through the capture square of an opposing Pawn, that Pawn may capture the Pawn or the Prince as if it had only moved one square. This en passant capture must be made in the immediate move following the double step. Only a Pawn may capture en passant; the Prince does not have this option.

📝H. G. Muller wrote on Sun, Nov 17, 2019 03:12 PM UTC:

So just to be absolutely sure: when moving Kf1-f3, with a black Knight on g4 attacking f2 (but pinned on the black King on g5 by a white Rook on g3), this would be illegal if f2 was empty or occupied by a white piece, but legal if it was occupied by a black piece (assuming f1 and f3 not under black attack)?


Kevin Pacey wrote on Fri, Jan 3, 2020 04:59 AM UTC:

For what it's worth, here's my tentative estimates for the piece values of this (12x12) variant, at least in the endgame phase:

Pa=1.6; El= 1.76; Cam=2; N=2.6; Can=2.75; Pr=3.58; B=3.75; R=5.5; Li=8.12 Ea=9.23; Q=10.25 and K's fighting value=1.77.


Greg Strong wrote on Sat, Jan 11, 2020 04:48 PM UTC:

In my game here, I want to capture En Passant.  It does not show as a legal move, although if I tell it to make the move anyway, it does work.


🕸Fergus Duniho wrote on Sat, Jan 11, 2020 08:27 PM UTC:

That's now fixed. The function was testing whether a rankname equalled a filename, which would always return false. It was supposed to compare the ranknames of two coordinates.


Greg Strong wrote on Sun, Jan 12, 2020 12:24 AM UTC:

Confirmed.  Thanks!


dax00 wrote on Thu, Jan 23, 2020 02:02 AM UTC:

Pretty sure I prefer the Eagle over a Queen. So much versatility.


Kevin Pacey wrote on Thu, Jan 23, 2020 04:08 AM UTC:

Before finalizing my own tentative estimate for the value of the Eagle (quite a bit less than a queen), I read Ralph Betza's article on Bent Riders, in the Piece Articles section of this website. If I understood his writings right, I'd already arrived at a similar value to what his would be for the Gryphon (what is called the Eagle in this game), even though I used a sketchier form of calculation. However, Betza worked out his theories for piece values before people began to try to estimate fairy piece values with the aid of computers.

P.S.: In the Piece Articles section, too, the Article 'Who is Who on Eight by Eight' puts ZoG's value for a Gryphon only about a chess pawn's worth less than a queen, so quite a difference in value, although those are old ZoG values that need to be taken with a grain of salt in many cases.


dax00 wrote on Thu, Jan 23, 2020 04:34 AM UTC:

Where the Queen provides distributed pressure, the Gryphon provides concentrated pressure. Against reasonable play, where you expect your opponent to try to make his pieces work together (reasonable to assume pieces are relatively close together), I assert that the Gryphon is a better piece for pressuring the opponent overall. Even when kicked away, it can often still maintain distant defense. And the forking potential is massive.

I was never one to subscribe to a calculatory method of evaluating piece values, rather in favor of practical analysis through actual play. 

Even if I were to concede that a Gryphon is about a pawn less in worth than a Queen on an 8×8 board (which I do not), it makes sense that the Gryphon's initial diagonal move would mitigate its strength more so on the smaller board than on the 12×12 board of Metamachy, so for this game its value should be at least comparable if not superior.


Kevin Pacey wrote on Thu, Jan 23, 2020 07:02 AM UTC:

It seems upon re-checking, I made an error in my calculations for the Eagle's value, then reinforced that by reading Betza's article the wrong way. For now I'll go back and use a value based on the old ZoG article's exact ratio that's found between a gryphon (Eagle, here) and a queen, if only for the sake of providing a quick and dirty numerical estimate, even though it may prove to be too low later on (with much experience). The value of bent riders is something I hadn't tried to calculate on my own before.

P.S.: If I am now reading the Betza article right, he values a gryphon (i.e. Eagle) as worth 88% of a queen, which is almost exactly the value that the old ZoG article implies it has.


25 comments displayed

Earlier Reverse Order LaterLatest

Permalink to the exact comments currently displayed.