Page 5 of 5

Re: Would someone be interested in programming....

Posted: Thu Oct 11, 2007 12:34 am
by Ovyron
So, does it only support ttf files?

Re: Would someone be interested in programming....

Posted: Thu Oct 11, 2007 10:03 am
by hgm
I guess so. I did not change anything in the basic mechanism for accessing and interpreting the fonts; it is still as Allessandro Scotti made it. I just expanded the number of piece types Winboard can support. In the native bitmap mode of Winboard the Queen-side alternatives for Rook, Knight and Bishop just show up as copies of of their King-side counterparts.

Perhaps I should have a go now at changing the board size as well. I have no idea how difficult this will be; one problem is that Winboard defines board width and height though the same constant BOARD_SIZE. So I would have to go through the entire code to decide in every place where this constant is used if it refers to the height or width of the board, and specify it accordingly...

Re: Would someone be interested in programming....

Posted: Thu Oct 11, 2007 10:24 am
by nczempin
hgm wrote:I guess so. I did not change anything in the basic mechanism for accessing and interpreting the fonts; it is still as Allessandro Scotti made it. I just expanded the number of piece types Winboard can support. In the native bitmap mode of Winboard the Queen-side alternatives for Rook, Knight and Bishop just show up as copies of of their King-side counterparts.

Perhaps I should have a go now at changing the board size as well. I have no idea how difficult this will be; one problem is that Winboard defines board width and height though the same constant BOARD_SIZE. So I would have to go through the entire code to decide in every place where this constant is used if it refers to the height or width of the board, and specify it accordingly...
You could also leave the constant and just make it uniformly bigger, and somehow invalidate the extra squares. Just a hacker's thought.

Re: Would someone be interested in programming....

Posted: Fri Oct 12, 2007 12:09 am
by hgm
Wow! I have a user-selectable board size now, through command-line options /boardWidth and /boardHeight. 8-)