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 ]

Ratings & Comments

Later Reverse Order EarlierEarliest
Game Courier Logs. View the logs of games played on Game Courier.[All Comments] [Add Comment or Rating]
🕸📝Fergus Duniho wrote at 10:18 PM UTC in reply to Kevin Pacey from 08:57 PM:

Yes, I originally would have thought when an Advancer made a move that threatened a King, an enforcing preset would automatically announce check.

However, maybe the Advancer, being an Ultima-like piece, does not actually make a check in an Ultima-like game (which Butterfly Chess is not)?

So I now ask, is that the usual assumption that Applet generated preset code makes for every CV put through the generating process?

I don't know how a generated preset works, but the checked subroutine I use in the fairychess include file normally checks for captures by displacement by checking if each enemy piece on the board can move to the King's position. This would not normally work with Ultima pieces, which do not normally capture by displacement, but I have managed to use this subroutine with Ultima without modifying it. First, let's look at the subroutine:

sub checked king:
    my from piece;
    local movetype;

    set movetype CHECK;
    if isupper cond empty var king $moved space var king:
        def enemies onlylower;
    else:
        def enemies onlyupper;
    endif;
    for (from piece) fn enemies:
        if fn const alias #piece #from var king:
            return #from;
        endif;
    next;
    return false;
endsub;

The key to working with Ultima is that it sets movetype to CHECK. With this in mind, I have written functions for Ultima pieces like this:

def Black_Withdrawer fn join "Black_Withdrawer_" var movetype #0 #1;

Depending upon the value of movetype, it will call either Black_Withdrawer_MOVE or Black_Withdrawer_CHECK, which I have defined separately and differently. Thanks to setting movetype to CHECK, the checked subroutine will use the *_CHECK functions for Ultima pieces. Instead of going through a normal move, one of these functions will check whether the piece at the first coordinate can capture the piece at the second. For example:

def Black_Withdrawer_CHECK 
empty where #frm - file #frm file #to - rank #frm rank #to
and == distance #frm #to 1
and not near #frm I 1
=frm =to;

This first makes sure that the piece is not next to a White Immobilizer (designated as I). It then verifies that the two spaces are adjacent. Calculating the direction away from the piece at #to, it checks whether there is an adjacent empty space in that direction. If there is, it returns true.


Crossroads. Members-Only Crossing the diagonals generate figures. (9x9, Cells: 81) [All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Constabulary Chess. Members-Only Chess on an 8x10 board with compound piece types added. (8x10, Cells: 80) [All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Game Courier Logs. View the logs of games played on Game Courier.[All Comments] [Add Comment or Rating]
Kevin Pacey wrote at 08:57 PM UTC in reply to H. G. Muller from 06:53 AM:

@ H.G.:

Yes, I originally would have thought when an Advancer made a move that threatened a King, an enforcing preset would automatically announce check.

However, maybe the Advancer, being an Ultima-like piece, does not actually make a check in an Ultima-like game (which Butterfly Chess is not)? So I now ask, is that the usual assumption that Applet generated preset code makes for every CV put through the generating process? If so, maybe an option can be added to the Applet to ask if Ultima-like pieces should announce check.

A problem for Butterfly Chess, anyway, is that if check is not announced for Advancers, what happens if the opponent's next move leaves his king vulnerable to capture by the Advancer. Does the preset announce the opponent made an illegal move (my much preferred choice, implicit in Butterfly Chess rules), or can the king be captured (if so, is a win announced, or does a player type in 'won' after his K-capturing Advancer move is manually entered, or does he tell his opponent to make a legal move instead)?


Overboard. Members-Only Very large board with original pieces. (16x16, Cells: 256) [All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Self Eliminator. You are allowed to take your own pieces. (8x8, Cells: 64) [All Comments] [Add Comment or Rating]
Lev Grigoriev wrote at 08:25 PM UTC in reply to Giulio Quaresima from 01:13 PM:

Yea, Interactive Diagrams on this site already do that by the way)


Sign in to the Chess Variant Pages. Sign in to the Chess Variant Pages.[All Comments] [Add Comment or Rating]
Lev Grigoriev wrote at 08:21 PM UTC in reply to Bob Greenwade from Tue May 7 03:30 PM:

Loop Chess, watch in What’s New.


Interactive Diagram[All Comments] [Add Comment or Rating]
HaruN Y wrote at 07:16 PM UTC:

Cold mountain by DgamerA

files=8 ranks=12 promoZone=1 promoChoice=D graphicsDir=/graphics.dir/alfaeriePNG/ squareSize=50 graphicsType=png spell=protect trackPieces=2 royal=K lightShade=#c52ec2 darkShade=#2cbbce firstRank=1 borders=0 rimColor=#201345 coordColor=#aaaaaa holeColor=#4de392 hole::::a1,h1,a12,h12 pawn:P:ifmnDfmWfceF:pawn:a3,b3,c3,d3,e3,f3,g3,h3,a4,b4,c4,d4,e4,f4,g4,h4,,a9,b9,c9,d9,e9,f9,g9,h9,a10,b10,c10,d10,e10,f10,g1 morph=D/D......D Cat:T:WmDmHcF:tiger:d2,,d11 modern elephant:M:FA:elephantferz:b1,c1,d1,e1,f1,g1,b2,c2,f2,g2,,b11,c11,f11,g11,b12,c12,d12,e12,f12,g12 dragon king:D:RF:promotedrook:a2,h2,,a11,h11 king:K:K:king:e2,,e11

Crossroads. Members-Only Crossing the diagonals generate figures. (9x9, Cells: 81) [All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Electro Chess. Members-Only Every piece has a charge, every square is an electric field. (9x9, Cells: 81) [All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Crossroads. Members-Only Crossing the diagonals generate figures. (9x9, Cells: 81) [All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Electro Chess. Members-Only Every piece has a charge, every square is an electric field. (9x9, Cells: 81) [All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Crossroads. Members-Only Crossing the diagonals generate figures. (9x9, Cells: 81) [All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Checkmating Applet. Practice your checkmating skill with fairy pieces.[All Comments] [Add Comment or Rating]
Bob Greenwade wrote at 04:25 PM UTC in reply to HaruN Y from 04:05 PM:

Well, for names, since the Bishops are also slow checkmaters, I'd give them names to fit: Conway and Buzzi (it doesn't matter which is which). The Rooks are fine as Trumpets, but I'd go with Left and Right. Ranged Oyster would seem better as Giant Oyster (I do like the Oyster part).

As for icons, the Sloth and Turtle would be the Aardvark and Turtle (respectively) with the Three in front. The Conway and Buzzi could be Abbot and Abbess, either alone or with the Confused emoticon, Grey color, or Hourglass behind. The Trumpets are probably fine as they are (at least until I can figure out and upload a Trumpet icon for the set). A Giant Oyster could be what you use, or perhaps Malkia or Kuhani with the Large modifier.

(I'd do some experimenting to see which of these icons would look best, but I have a few other things going on today, and my brain isn't quite firing on all cylinders.)


Morphomania. Members-Only Morphing wherever you look. (9x9, Cells: 81) [All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Crossroads. Members-Only Crossing the diagonals generate figures. (9x9, Cells: 81) [All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

@ Bob Greenwade[All Comments] [Add Comment or Rating]
Bob Greenwade wrote at 04:13 PM UTC:

Yesterday was such a weird day that I forgot to post the PotD, even though by the end of the day I thought I'd done it. So...

295. Quarterback. Expanding on my set of pieces with an American Football theme, the Quarterback is probably the most complex of the lot.

The piece's basic move is to any space within a two-square range, but without leaping.

It also has two options for an initial move. The first is to "jump" the front line: it can leap two spaces in any direction forward; or it can leap over any piece in one of the three spaces directly in front of it to the second space beyond that, without capture.*

The other option for an initial move is the chess equivalent of a pass: the Quarterback swaps places with any friendly piece on the board. (K2nNifhSiffNipfampfamfhKipfampfhamfKimpfapsampz(vs)amfWimpfapsampszafsmWiudU)**

At first I thought I'd need to adjust this piece and make the stars smaller, but once it rendered fully I decided that that would be unnecessary.

(As for today's piece, I'll try to get that up this afternoon.)

*In the XBetza code, I'm frankly a little unsure about the part about jumping over a piece to the second beyond, even though I tested all four parts of that and they all worked as expected.

**Probably this would be much shorter with bracket notation; my brain isn't functioning right to figure it out right now, though.


25 comments displayed

Later Reverse Order EarlierEarliest

Permalink to the exact comments currently displayed.