- fixed side-effects table, added footnote
- clarified displacement
- described checking opponent's King
- clarified static Serpent
- clarified castling blocked
- clarified piece actions
- clarified Scout can be rerouted around any non-empty field
- described en passant blocked, denied, turned into capture, divergence, ...
- described activation after en passant
- described multiple rushes, en passants in a cascade
- described en passant in close quarters
- described en passant affected by a Star, Starchild
- switched to non-shifted tilde
- and many more tiny edits, fixes, ...
Croatian Chess
Croatian Chess is a collection of various chess variants, starting as a simple and natural enhancement to classical chess and growing ever more complex with each new variant.
En passant finally described! And checking opponent's King! More news at 11! Also, the book has been updated ...
Updating the book!
I'm updating the book, since previous update was three months ago, and there were some meaningful changes, which include:
- changed reposition symbol to backslash,
- removed unsupported castling notation examples,
- added delayed column to variants table, description,
- removed monogamous promotion,
- changed draw offer cancelled symbol,
- clarified resurrecting converted pieces,
- clarified only captured and oblationed pieces can be resurrected,
- clarified resurrecting Waves, Starchilds,
- fixed grammar: Starchild can be activated,
- and many more fixed edits, typos.
Some of changes were made to ease parsing user notation; for instance, repositioning symbol used to be just comma, which is also used for list of captured pieces during (double) trance-journey. Another example, cancelled draw offer was previously written as (-), now minus sign has been removed from brackets, since it's also used to separate destination from any previous step.
For castling notation, previously one could specify for Rook starting, any or all intermediate fields; now it accepts only destinations, either full position or just a file, optionally preceded by Rook symbol. So, Kh1-d1&Re1 is acceptable notation, but Kh1-d1&Ra1-e1 is not anymore; because King is not transparent to Rook, it's just a very special move. Another reason is that it also simplifies parsing user notation, without losing any valuable information.
I also removed monogamous promotion; after some thinking it was obvious to me that promotion does not add anything to the game, but only complicates things for players, and for no good reason. I thought I had one when I was setting promotion rules, but certain choices doesn't make a good story. I prefer freedom of choice over (unnecessary) rules. There is also a moment when one has to consider simplifying design, when possible.
The book was compiled on Jan 13, 2024, version is 20250113.203449, and can be found in usual places.
Grepping over history
In a series of posts for a future, forgetful me; today's topic is a way to search for changes in a file content over past git commits. Turns out it's not that easy, it's either a two step process; or, one gets laundry list of every occurrence of whatever is searched for that ever existed.
I opted for two step process; first search for commit IDs of interest, then get files in that commit:
- git log --grep=<regexp> lists all commits with a message pattern,
- git log -G <regexp> lists all commits with a content pattern,
- git log -S <regexp> lists all commits with different count of content pattern (additions vs. deletions),
- every search can be further restricted to a file (or folder), e.g. git log ... -- path/to/file/.
Too much coffee
Since the very last post, I reverted most of the changes to the repository. Too little sleep, and too much coffee will do that to you. You see, I overlooked that out of 8 divergent pieces in the latest variant, 6 are available to any one player, and 4 of those are also transparent. Which means that every single piece in a move (and especially the ones starting a cascade) has to recursively build its path along chessboard, to find out its longest path.
Except, that is not completely correct; generated path for the first piece has to maximize momentum, not its length; and obviously enough, those two things are not necessarily the same. Also, I still need a way to filter out all generated paths according to parsed user notation, since it might contain specific fields visited, and side-effects exerted. And so, I do need a parser; hence revert.
Not all is lost, most of development on now archived branch was also merged back into mainline development; including newly assigned reposition symbol. I also renamed modules storing parsed notation, because those were all too easily confused with modules parsing user notation. Storage for parsed notation (at very least, steps and side-effects) should also be part of generated paths, since paths also has to contain everything encountered on a current chessboard.
Before I delve more deeply into generating paths, I plan to clean-up losing tags, try to resolve TODOs in parse modules, and also have parsing user notation covered with tests. As for tests, one can easily get drown in those, and still fail to test some peculiar interaction. I think, I should give up on testing all of interactions since there are simply too many of those, and cover only the simplest forms.
For instance, I should have one battery of tests just for step separators, the other one just for side-effects, and another still for ply separators, and one for move statuses; each of those should test only one separator, side-effect, status. It might be possible to generate tests based just on a chessboard set-up, and test all interactions that way. However, without a proper way to generate all legal moves for a given situation on a chessboard, it's too early to think about it.
Early spring clean-up time it is, I guess. And after all of that, on to generating and filtering paths.