some annotated Arasan games from the recent ACCA tournament

Discussion of anything and everything relating to chess playing software and machines.

Moderators: hgm, Rebel, chrisw

jdart
Posts: 4367
Joined: Fri Mar 10, 2006 5:23 am
Location: http://www.arasanchess.org

some annotated Arasan games from the recent ACCA tournament

Post by jdart »

Aaron Becker
Posts: 292
Joined: Tue Jul 07, 2009 4:56 am

Re: some annotated Arasan games from the recent ACCA tournam

Post by Aaron Becker »

Interesting, thanks for posting these. I was hoping for an Arasan-Daydreamer matchup, but unfortunately it never quite happened.
jdart
Posts: 4367
Joined: Fri Mar 10, 2006 5:23 am
Location: http://www.arasanchess.org

Re: some annotated Arasan games from the recent ACCA tournam

Post by jdart »

Arasan did play a non-tourney game with Daydreamer afterwards (drawn):

[Event "?"]
[Site "freechess.org"]
[Date "2010.11.07"]
[Round "?"]
[White "Arasan 12.2"]
[Black "DayDreamerX"]
[Result "1/2-1/2"]
[ECO "B92"]
[WhiteElo "2306"]
[BlackElo "2267"]
[TimeControl "900+5"]

1. e4 c5 2. Nf3 d6 3. d4 cxd4 4. Nxd4 Nf6 5. Nc3 a6 6. Be2 e5 7. Nb3
Be7 8. O-O O-O 9. Kh1 Nc6 10. f4 a5 11. a4 Nb4 12. Bf3 Be6 13. Be3
Qc7 14. f5 Bc4 15. Rf2 Rad8 16. Rd2 Rfe8 17. Bg5 Qb6 18. Qg1 Qxg1+
19. Rxg1 b6 20. g3 h6 21. Bxf6 Bxf6 22. Be2 Bxe2 23. Rxe2 d5 24. exd5
Nxd5 25. Ne4 Be7 26. Nbd2 Rc8 27. c3 Red8 28. Nf3 f6 29. Rd1 Kf7
30. Ree1 Rc7 31. Nh4 Rcd7 32. Ng6 Bc5 33. h4 Ne7 34. Rxd7 Rxd7
35. Nxe7 Kxe7 36. h5 Kd8 37. Kh2 Kc7 38. Kh3 Kc6 39. Rb1 Rd3 40. Nxc5
bxc5 41. Kg2 c4 42. Kh3 e4 43. Kg4 Kd5 44. Rf1 Ke5 45. Rb1 e3 46. Kf3
Kxf5 47. b4 cxb3 48. Rxb3 e2+ 49. Kxe2 Ke4 50. g4 Rg3 51. Rb5 Rg2+
52. Kf1 Rxg4 53. Rxa5 Ke3 54. Ra7 Rg5 55. Rd7 Kf3 56. c4 Ke3 57. c5
Rxc5 58. Rxg7 Kf3 59. Kg1 Rxh5 60. Rg6 f5 61. a5 f4 62. a6 Ra5
63. Rxh6 Kg3 64. Rg6+ Kf3 65. a7 Ra1+ 66. Kh2 Rxa7 67. Kh1 Ke3
68. Kh2 f3 69. Kg3 Re7 70. Ra6 Rg7+ 71. Kh2 f2 72. Ra3+ Kf4 73. Ra4+
Kf5 74. Ra5+ Kf6 75. Ra6+ Kf7 76. Ra7+ Ke6 77. Ra6+ Ke5 78. Ra5+ Ke4
79. Ra4+ Kf3 80. Ra3+ Kg4 81. Rg3+ Kh4 82. Rh3+ Kg5 83. Rg3+ Kh6
84. Rh3+ Kg6 85. Rg3+ Kf6 86. Rf3+ Ke5 87. Rxf2 Ke4 88. Kh1 Rg8
89. Kh2 Ra8 90. Kg1 Rh8 91. Kf1 Ra8 92. Ke1 Ra3 93. Kd1 Rb3 94. Kc1
Rb8 95. Kd1 Rh8 96. Kc1 Ra8 97. Kb1 Rh8 98. Ka1 Kd4 99. Kb1 Kd3
100. Ka1 Kc4 101. Kb1 Kd4 102. Ka1 Ke4 103. Kb1 Ra8 104. Kc1 Rh8
105. Kb1 Ra8 106. Kc1 Rh8 107. Kb1 1/2-1/2 {Game drawn by repetition}
User avatar
Peter Skinner
Posts: 1763
Joined: Sun Feb 26, 2006 1:49 pm
Location: Edmonton, Alberta, Canada
Full name: Peter Skinner

Re: some annotated Arasan games from the recent ACCA tournam

Post by Peter Skinner »

What pgn viewer are you using on your website?

I am currently looking for one on to use on the CCT website.
I was kicked out of Chapters because I moved all the Bibles to the fiction section.
jdart
Posts: 4367
Joined: Fri Mar 10, 2006 5:23 am
Location: http://www.arasanchess.org

Re: some annotated Arasan games from the recent ACCA tournam

Post by jdart »

Peter Skinner wrote:What pgn viewer are you using on your website?

I am currently looking for one on to use on the CCT website.
There are possibly better ways to post games but what I do is this:

I use ChessBase to do the annotations then use a program called Palview4 (http://www.enpassant.dk/chess/palview/) to turn them into HTML. But I had some formatting problems with the output HTML so I also run it through the following Perl script before posting it:

# post-processing for Palview4 game output
if (@ARGV) {
open(DATA,@ARGV[0]) || die "Can't open file " . $_;
$move = "";
$time = 0;
$total_score = 0;
$num_correct = 0;
while (<DATA>)
{
s/<CENTER>//g;
s/<\/CENTER>//g;
if (m/NAME='form0'/) {
print "<div class="controls">\n";
print $_;
}
elsif (/<\/FORM>/) {
print $_;
print "</div>\n";
}
elsif (m/class='pgob'/) {
s/pgob/pgob board/;
print $_;
}
elsif (/<SCRIPT/) {
s/SRC=\'.*\'/SRC=\'game.js\'/;
print $_;
}
else {
print $_;
}
}
}