It is currently Wed Apr 24, 2024 7:04 pm

All times are UTC - 8 hours [ DST ]




Post new topic Reply to topic  [ 10 posts ] 
Author Message
Offline
 Post subject: Diagrams on these Forums - 10 numbered moves is not enough.
Post #1 Posted: Fri May 18, 2012 12:44 am 
Lives in gote
User avatar

Posts: 310
Location: Deutschland
Liked others: 272
Was liked: 126
Rank: EGF 4 kyu
"Is it just me or..." ... Ok - apologies for the cliché.

I find that whenever I analyse a board position and post a diagram on these forums, I inevitably require the ability to number eleven moves or more. Seriously, how many sequences in Go have only ten moves?

Ladders sometimes have well over 200 moves - probably a bit excessive because you can number the start of the ladder and the continuation is usually obvious - but even simple things like the 3-3 invasion have more than ten.

I am pretty sure that nothing can be done about this because L19 uses the Sensei's Library diagram system and that can't number more than ten moves. I am pretty sure that posting this is futile but, meh, it needs to be said.

Top
 Profile  
 
Offline
 Post subject: Re: Diagrams on these Forums - 10 numbered moves is not enou
Post #2 Posted: Fri May 18, 2012 3:37 am 
Honinbo

Posts: 9545
Liked others: 1600
Was liked: 1711
KGS: Kirby
Tygem: 커비라고해
The diagram code is open source, so it can be changed, but the trick is in representing moves past 10 in text. Wi up to 10 moves, you can represent a move with a single character in text. As a result, the diagram stays rectangular, regardless of what diagram features you use: each of the 19x19 intersections are represented by a single character.

If you want to represent more than 10 moves in a single diagram, how do you want them represented in text?

_________________
be immersed

Top
 Profile  
 
Offline
 Post subject:
Post #3 Posted: Fri May 18, 2012 7:05 am 
Honinbo
User avatar

Posts: 8859
Location: Santa Barbara, CA
Liked others: 349
Was liked: 2076
GD Posts: 312
Kirby wrote:
how do you want them represented in text?
Is Unicode a possibility?

Top
 Profile  
 
Offline
 Post subject: Re: Diagrams on these Forums - 10 numbered moves is not enou
Post #4 Posted: Fri May 18, 2012 7:26 am 
Lives in sente
User avatar

Posts: 842
Liked others: 180
Was liked: 151
Rank: 3d
GD Posts: 422
KGS: komi
Kirby wrote:
The diagram code is open source, so it can be changed, but the trick is in representing moves past 10 in text. Wi up to 10 moves, you can represent a move with a single character in text. As a result, the diagram stays rectangular, regardless of what diagram features you use: each of the 19x19 intersections are represented by a single character.

If you want to represent more than 10 moves in a single diagram, how do you want them represented in text?


Are the numbered moves bitmaps or actual decorated text? If the former, then surely you can just render smaller numbers.

Top
 Profile  
 
Offline
 Post subject: Re: Diagrams on these Forums - 10 numbered moves is not enou
Post #5 Posted: Fri May 18, 2012 7:54 am 
Tengen

Posts: 4380
Location: North Carolina
Liked others: 499
Was liked: 733
Rank: AGA 3k
GD Posts: 65
OGS: Hyperpape 4k
I believe Kirby means the actual ascii text from which the diagram is produced. It's been discussed (a tiny bit) on sensei's as well: http://senseis.xmp.net/?topic=1220.

The best solution, if you're interested in permitting more than ten moves per diagram is to scrap ascii input and make an interactive diagram creator. Maybe one day I'll do that.

_________________
Occupy Babel!

Top
 Profile  
 
Offline
 Post subject: Re: Diagrams on these Forums - 10 numbered moves is not enou
Post #6 Posted: Fri May 18, 2012 8:06 am 
Oza
User avatar

Posts: 2644
Liked others: 304
Was liked: 631
Rank: kgs 6k
The as ascii diagrams are odd in many ways, but it is better to have onedecent standard than five excellent standards, right?

Top
 Profile  
 
Offline
 Post subject: Re: Diagrams on these Forums - 10 numbered moves is not enou
Post #7 Posted: Fri May 18, 2012 8:12 am 
Tengen

Posts: 4380
Location: North Carolina
Liked others: 499
Was liked: 733
Rank: AGA 3k
GD Posts: 65
OGS: Hyperpape 4k
I agree, and the ten move restriction isn't too onerous. Actually, an interactive diagram creator should happen even if you don't scrap the ascii standard.

_________________
Occupy Babel!

Top
 Profile  
 
Offline
 Post subject: Re: Diagrams on these Forums - 10 numbered moves is not enou
Post #8 Posted: Fri May 18, 2012 4:12 pm 
Honinbo

Posts: 9545
Liked others: 1600
Was liked: 1711
KGS: Kirby
Tygem: 커비라고해
Yup, I meant the ascii representation. The input format is the only limitation.

_________________
be immersed

Top
 Profile  
 
Offline
 Post subject: Re: Diagrams on these Forums - 10 numbered moves is not enou
Post #9 Posted: Sun May 20, 2012 3:49 pm 
Oza
User avatar

Posts: 2644
Liked others: 304
Was liked: 631
Rank: kgs 6k
Can anyone come up with a set of ten unused characters that could boost us up from decimal moves to duodecimal moves? The obvious choice is {ABCDEFGHIJ}, but B and C already have an interpretation. The second most obvious is {!@#$%^&*()}, but @, #, and possibly $ already have in interpretation. In fact, there doesn't seem to be a single block of ten adjacent, unused keys anywhere on my keyboard...

By the way, just as a reminder, the last time we improved something on the site (the move from a default sgf-small to a default sgf-large) it broke all the existing sgf tags on the site. Is there any reason to think that wouldn't happen again?

For reference:

Code:
   In      In     Appears     Meaning
Diagram  Text      as
--------------------------------------------------------
   X       BO            plain black stone
   O       WO            plain white stone
1..9     B1,W2    ,   Black's move 1, White's move 2 [3]
0 (zero) B10,W10  ,   Black's or White's move 10 [3]
   -     B11-B100  -  Black's or White's move 11-100
   B       BC            black stone with circle
   W       WC            white stone with circle
   #       BS            black stone with square
   @       WS            white stone with square
   Y       BT            black stone with triangle
   Q       WT            white stone with triangle
   Z       BX            black stone with cross mark (X)
   P       WX            white stone with cross mark (X)
   C       EC            circle on empty intersection
   S       ES            square on empty intersection
   T       ET            triangle on empty intersection
   M       EX            cross mark (X) on empty intersection
a..z     a..z     a..z    letter on empty intersection

Top
 Profile  
 
Offline
 Post subject: Re: Diagrams on these Forums - 10 numbered moves is not enou
Post #10 Posted: Sun May 20, 2012 5:08 pm 
Honinbo

Posts: 9545
Liked others: 1600
Was liked: 1711
KGS: Kirby
Tygem: 커비라고해
Ten unused characters would just give ten extra possible moves per diagram. This doesn't seem like a huge improvement.

If we do ever make a change, we can be more careful about existing stuff first this time. :-)

_________________
be immersed

Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 10 posts ] 

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group