Check out Glinski's Hexagonal Chess, our featured variant for May, 2024.


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

Comments by MichaelNelson

LatestLater Reverse Order EarlierEarliest
MSnemerothsimplified[All Comments] [Add Comment or Rating]
Michael Nelson wrote on Sun, Nov 12, 2023 04:07 AM UTC:

Need to post a board diagram and do some endgame studies.


Colorful Osmosis Chess. All basic pieces are colorbound or colorwithching. (10x10, Cells: 100) [All Comments] [Add Comment or Rating]
💡📝Michael Nelson wrote on Sun, Nov 12, 2023 02:53 AM UTC:

Edited some minor typos.


Zillions of Games. It can play an endless variety of abstract board games, and we have a large collection of Chess variants you can play on it.[All Comments] [Add Comment or Rating]
Michael Nelson wrote on Wed, Nov 8, 2023 03:10 AM UTC:

This code works perfectly with correctly defined zones:

(define push-n (n (while on-board? (if empty? add (verify false))(if (in-zone? board-edge-n) add (verify false)) cascade n))) (define push-e (e (while on-board? (if empty? add (verify false))(if (in-zone? board-edge-e) add (verify false)) cascade e))) (define push-s (s (while on-board? (if empty? add (verify false))(if (in-zone? board-edge-s) add (verify false)) cascade s))) (define push-w (w (while on-board? (if empty? add (verify false))(if (in-zone? board-edge-w) add (verify false)) cascade w)))

The (verify false)'s are essential to stop move generation when the final square is found, otherwise, Zillions crashes. I decided to use rook-wise pushes to complement the piece's bishop-like move.


Michael Nelson wrote on Tue, Nov 7, 2023 03:10 PM UTC:

I solved the Mason move by using single-step moves and add-partial.

The last piece I'm coding can push a line of pieces. This almost does what I want:

(define push ($1 (verify not-empty?) cascade (while (not-empty? $1) $1 cascade) $1 add))

But if the piece at the end of the line is at the edge of the board, I want to capture it (push it off the board). The above code disallows the move if the last piece is at the board's edge. I wonder if there is a solution using zones or dummy squares.

The piece is inspired by Nemeroth's Go Away (but it can only push one line at a time, and any effects of or on the pushed pieces are ignored).

Indeed, the whole game is inspired by Nemeroth, but on the whole, it's much simpler to code in Zillions. There is an unapproachable piece, a piece that turns the target square to stone (by a rifle-capture-like move), a piece that moves and captures as a king, a piece that lays down a line of stones, and so on. Stones do not move on their own but can be captured or pushed (a bit like ichor without the bookkeeping). Victory is by stalemate or opponent's repetition. There is no concept of compulsion or multiple-occupancy squares.

My game loses much of Nemeroth's peculiar flavor but is interesting in its own right. Pushing pieces of the board will make it complete. I will need to clean up the Zillions file and author a page.


Michael Nelson wrote on Mon, Nov 6, 2023 01:53 PM UTC:

The Zillions user forum seems dead. I registered, but can't start a new topic.

I have the following move macro:

(define Mason-step ((verify (empty? $1))(create Stone) $1 add))

How do I turn this into a slide? All my attempts are generating pares errors.


Divergent Dreamers. Army for Chess with Different Armies where pieces can only move when it has a neighbour. (8x8, Cells: 64) [All Comments] [Add Comment or Rating]
Michael Nelson wrote on Sat, Oct 28, 2023 05:26 PM UTC:

You need to define what it means for a piece to travel. I assume it means "move without having a neighbor", but this should be specified.


Colorful Osmosis Chess. All basic pieces are colorbound or colorwithching. (10x10, Cells: 100) [All Comments] [Add Comment or Rating]
💡📝Michael Nelson wrote on Sat, Oct 28, 2023 05:21 PM UTC:

Made a slight edit: Pawns may promote to basic or compound pieces. This shortens Z vs. Z games from averaging 100+ moves to 50-70, due to typically more aggressive play. Now King+Pawn vs.King is a win if the enemy King can't stop the Pawn. One will always choose a Cardinal in this case. But in more complex positions, other choices may work better.


@ Bob Greenwade[All Comments] [Add Comment or Rating]
Michael Nelson wrote on Sat, Oct 28, 2023 02:00 AM UTC in reply to Bob Greenwade from Fri Oct 27 04:32 PM:

You're right of course, Bob. Should be interesting pieces, though. Perhaps a game where the winds are extinction royalty? I expect it will use a large board. I may try my hand at it myself in a a day or two.


Colorful Osmosis ChessA Zillions-of-Games file
ZIP file. All basic pieces are colorbound or colorwithching and can create compounds. (10x10, Cells: 100) [All Comments] [Add Comment or Rating]
💡📝Michael Nelson wrote on Fri, Oct 27, 2023 09:38 PM UTC:

This page should be ready for publication.


Colorful Osmosis Chess. All basic pieces are colorbound or colorwithching. (10x10, Cells: 100) [All Comments] [Add Comment or Rating]
💡📝Michael Nelson wrote on Fri, Oct 27, 2023 09:27 PM UTC:

This page should be ready for publication.


@ Bob Greenwade[All Comments] [Add Comment or Rating]
Michael Nelson wrote on Fri, Oct 27, 2023 04:17 PM UTC in reply to Bob Greenwade from 02:21 PM:

The North Wind would be an aggressive attacker with a good deal of forward forking power but relatively poor in retreating, while the South Wind is a rather nice defender but hasn't got much attack potential. Bob, do you feel like designing Four Winds Chess?


Help Name My Game[Subject Thread] [Add Response]
Michael Nelson wrote on Fri, Oct 27, 2023 04:33 AM UTC:

I have a complete.zrf and should be able to submit as soon as I build the web pages. The game should be in the editor's hands tomorrow or the next day.


Michael Nelson wrote on Fri, Oct 27, 2023 02:49 AM UTC:

I have a name: Colorful Osmosis Chess. Colorful refers to the importance of color-bound and color-switching pieces while osmosis is a synonym of absorption. I decided to not use triple and quadruple compounds. On the right of the King, the positions of the Bishop and Camel are reversed, thus using rotational symmetry as in Shogi rather than mirror symmetry as in FIDE Chess. This provides one Bishop and one Camel on each color. The absence of castling and promotion at the Pawn line rather than the back rank is also very Shogi-like.


Michael Nelson wrote on Thu, Oct 26, 2023 08:56 PM UTC in reply to Bob Greenwade from 05:11 PM:

I like the Evangelist piece name and I will experiment with triple compounds. The Knight-Camel-Bishop-Harvester quadruple compound would be strange a more than a little frightening. It covers more squares than the Amazon (aka the Terror), but unlike the Amazon, can't mate unassisted.


Michael Nelson wrote on Thu, Oct 26, 2023 08:45 PM UTC in reply to H. G. Muller from 05:54 PM:

My mistake. You are correct--it doesn't cover one of the wazir moves even at the edge of the board. But it does confine the King rather nicely as you bring in the King or another piece to cover that square.


Michael Nelson wrote on Thu, Oct 26, 2023 04:39 PM UTC:

I have invented a new variant and have a working .zrf. I don't have a satisfying name for it. (Rather reminiscent of my first variant Separate Realms.)

The essential idea is to use four basic pieces, two leapers, and two sliders. One of each type is color-bound, and the other is color-switching.

For the leapers, I have the Knight and Camel, and the Bishop is the obvious choice for the color-bound slider. For the color-switching slider, I'm using Jörg Knappen's Harvestman from Seenschach, which moves a wazir and then continues as a crooked bishop.

Also, simple pieces can combine with captured enemy pieces as in Assimilation Chess, but the compounds do not split, and there are no King compounds.

So Gnu, Cardinal, and Caliph can appear as well as three Harvestman combinations I've never seen before. I've named the Bishop compound the Metropolitan (a title used in Eastern Orthodoxy for a prelate ranking above an archbishop but below a patriarch). The Camel compound is the Imam, which has the property of mating a bare King on an empty board unassisted. I haven't done the endgame studies to see if mate can be forced. The Knight compound is named Battlemaster, after the Fighter subclass in D&D 5e.

The Harvestman is a good Rook substitute on the whole, though not as good at forcing mate. It does however move in a general rook-like direction with greater mobility. Intuition says this is a reasonable trade-off.

The game is played on a 9x9 board with normal Pawn movement including promotion at the enemy Pawn line rather than the back rank, allowing very FIDE-like Pawn play. Castling is forbidding, so the King is very exposed in the center of the back rank. This is rather reminiscent of Shogi.

A very playable game judged by Zillions vs. itself play. Now I need a name, and I can change some piece names if that fits the theme better.


Boyscout. Moves in a diagonal zigzagline.[All Comments] [Add Comment or Rating]
Michael Nelson wrote on Tue, Oct 24, 2023 05:13 PM UTC:

I'm looking for a good name for a piece that moves one square as a Wazir and then continues as a Crooked Bishop. I am using this piece in a game where the four basic piece types are two leapers, one color-bound, and one color-switching; and two sliders, one color-bound, and one color-switching. Three of my basic pieces are Bishop, Knight, and Camel. I devised an approximately Rook-valued piece that is always color-switching. I would also be interested in possible alternative pieces that are color-switching and approximately Rook-valued.


Royal Lion Chess. Chess with a Royal Lion and many strong pieces. (10x10, Cells: 100) [All Comments] [Add Comment or Rating]
💡📝Michael Nelson wrote on Thu, Jul 13, 2023 07:44 PM UTC:

BTW, mating positions do exist for Royal Lion and Amazon vs. Royal Lion, but I'm not sure mate can be forced.


💡📝Michael Nelson wrote on Thu, Jul 13, 2023 07:31 PM UTC in reply to Bob Greenwade from Sat Jul 1 06:21 PM:

(deleted)


💡📝Michael Nelson wrote on Thu, Jul 13, 2023 07:25 PM UTC in reply to Jean-Louis Cazaux from Sat Jul 1 08:07 PM:

By intention, the Royal Lion is hard to checkmate. The games run quite long (100+ moves) but draws are not common per Zillions vs. itself at a strong setting. This won't be to everyone's taste. If further testing indicates the game is drawish, perhaps bare Lion should be a win, but so far it doesn't seem to be.


💡📝Michael Nelson wrote on Sat, Jun 10, 2023 06:16 PM UTC:

The page should be ready for publication now. I have a working .ZRF, but it needs a bit of polishing.


Decima. Variant on 10 by 10 board where you win when you have 10 points on the 10th row. (10x10, Cells: 100) [All Comments] [Add Comment or Rating]
💡📝Michael Nelson wrote on Wed, Jun 7, 2023 04:51 PM UTC:

I notice the download link for the Decima .zrf is broken. I am downloading .zrf's for my games and some others, this is the only one missing.


ChessVA computer program
. Program for playing numerous Chess variants against your PC.[All Comments] [Add Comment or Rating]
Michael Nelson wrote on Thu, Jun 1, 2023 06:06 PM UTC:Excellent ★★★★★

A much better player than Zillions. I notice that version 2.2 is scriptable, and the scripting language looks easier than Zillions' Lisp-based scripting language (which is a monumental pain in the a** to debug--all those nested parens). Does ChessV have a scripting reference? I'd love to see it rather than ask a thousand questions in this thread.


Royal Bishop Chess. Simple variant with royal bishop. (8x8, Cells: 64) [All Comments] [Add Comment or Rating]
Michael Nelson wrote on Fri, May 5, 2023 04:56 PM UTC:

Can the Royal Bishop move across attacked squares? A Chess King when castling cannot, neither can the Royal Queen in the excellent Cassia Britania. I'm assuming the same limitation applies to the Royal Bishop, but the piece description should explicitly say one way or the other. Example, can a Royal Bishop on e5 move to g7 which is not attacked even though f6 is?


Cylindrical Chess. Sides of the board are supposed to be connected. (8x8, Cells: 64) [All Comments] [Add Comment or Rating]
Michael Nelson wrote on Tue, Mar 21, 2023 01:45 PM UTC:Good ★★★★

Very nice touchup of the page. You might have mentioned that in problems, there is more than one way to use the cylinder concept. The one here described is chess on a horizontal cylinder, which is the only form that is playable as a game. Other forms have appeared in problems: the vertical cylinder with the first and last ranks connected and the anchor ring both basically both a vertical and horizontal cylinder simultaneously. In the latter case, a1 is connected to both a8 and h1 (and in some version h8 as well, if you really want to go crazy). With rooks and queens instantly attacking each other and the kings in mutual check, we'd need special rules to play this, but a KBB vs K ending on such a board can be analyzed, as well as more complex problems.


25 comments displayed

LatestLater Reverse Order EarlierEarliest

Permalink to the exact comments currently displayed.