Three Colour Go

For discussing go rule sets and rule theory
User avatar
shapenaji
Lives in sente
Posts: 1103
Joined: Tue Apr 20, 2010 10:58 pm
Rank: EGF 4d
GD Posts: 952
Location: Netherlands
Has thanked: 407 times
Been thanked: 422 times

Re: Three Colour Go

Post by shapenaji »

The big problem I see with these alternate geometries is that it's very difficult to visualize territory. Things which appear adjacent are not, and so I get the feeling that the game becomes more about capturing stones.

I'm more of a fan of keeping a cartesian grid(although polar coordinates might be interesting), but then changing the shape of the board, adding "terrain" etc...

I think, in fact, that you might be able to get people to use some of the strange geometries by adding them as features on an otherwise grid-like board. Then people can use them in interesting ways while still keeping the capacity to see the territory on the board.
Tactics yes, Tact no...
User avatar
emeraldemon
Gosei
Posts: 1744
Joined: Sun May 02, 2010 1:33 pm
GD Posts: 0
KGS: greendemon
Tygem: greendemon
DGS: smaragdaemon
OGS: emeraldemon
Has thanked: 697 times
Been thanked: 287 times

Re: Three Colour Go

Post by emeraldemon »

I think it would be much easier to do in ascii:

Code: Select all

      ..  ..  ..  ..  
    ..  ..  ..  ..  .. 
  ..  ..  ..  ..  ..  .. 
..  ..  ..  ..  ..  ..  .. 
  ..  ..  ..  ..  ..  .. 
    ..  ..  ..  ..  .. 
      ..  ..  ..  .. 



Every dot is a playable point, Each has 3 liberties, except the edges, with 2 or 1. It's pretty easy to make boards of different sizes this way:

Code: Select all

  ..  ..  
..  ..  .. 
  ..  .. 


Bigger:

Code: Select all

        ..  ..  ..  ..  ..  
      ..  ..  ..  ..  ..  .. 
    ..  ..  ..  ..  ..  ..  .. 
  ..  ..  ..  ..  ..  ..  ..  .. 
..  ..  ..  ..  ..  ..  ..  ..  .. 
  ..  ..  ..  ..  ..  ..  ..  .. 
    ..  ..  ..  ..  ..  ..  .. 
      ..  ..  ..  ..  ..  .. 
        ..  ..  ..  ..  .. 

I can attach the python function I made to print these, it's about 5 lines of code. If someone's interested, I'd be up for a game :)
Post Reply