OSDN Git Service

Experimantal implementation for specified games, codenamed Buoy.
[shogi-server/shogi-server.git] / changelog
1 2009-07-29 Daigo Moriwaki <daigo at debian dot org>
2
3         * [shogi-server]
4           - A experimental new feature, codenamed Buoy: it allows players to
5             play a game starting with a specified position. First, a player
6             sets a buoy game with moves to a specific position. Then, two
7             players can play a new game with the game name.
8             New commands:
9             + %%SETBUOY <game_name> <moves> [count]
10               Set a new buoy game.
11               ex. %%SETBUOYGAME buoy_foo-900-0 +7776FU 10
12               ex. %%SETBUOYGAME buoy_foo-1500-0 +7776FU-3334FU
13               - game_name is a valid game name with a prefix "buoy_".
14               ex. buoy_foo-900-0
15               - moves are initial moves from the Hirate position to a
16               spcific position that you want to start with.
17               ex. +7776FU-3334FU+8786FU
18               - count is an optional attribute to tell how many times the
19               game can be played (default 1). The count is decremented
20               when the game finishes. If the count reaches zero, the buoy
21               game is removed automatically by the server.
22               ex. 10
23             + %%DELETEBUOY <game_name>
24               Delete a buoy game. The only owner who set up the game is
25               allowed to delete it.
26               ex. %%DELETEBUOY buoy_foo-900-0
27               - game_name is the buoy game name that was created.
28             + %%GETBUOYCOUNT <game_name>
29               Show a current count of the buoy game or zero for non-existing
30               games.
31
32
33 2009-07-11 Daigo Moriwaki <daigo at debian dot org>
34
35         * [shogi-server]
36           - shogi_server/command.rb: refactored commands out of player.rb.
37
38 2009-06-18 Daigo Moriwaki <daigo at debian dot org>
39
40         * [shogi-server]
41           - An emtpy floodgate_history.yaml caused a server error. This
42             issue has been fixed. 
43             (Closes: #15124)
44
45 2009-06-17 Daigo Moriwaki <daigo at debian dot org>
46
47         * [shogi-server]
48           - If a new game matched between two players is not started within
49             a certain time (default 120 seconds) (i.e. the agree_waiting or
50             start_waiting state lasts too long), the Server REJECTs the game.
51             (Closes: #14425)
52
53 2009-06-15 Daigo Moriwaki <daigo at debian dot org>
54
55         * [shogi-server]
56           - When a Gote player AGREEd a new game and then a Sente player
57             logged out (LOGOUT), the Gote incorrectly received a LOGOUT message 
58             from the server. Since Gote's state was not AGREEd or STARTed yet,
59             the Gote should be REJECTed. This issue has been fixed. 
60             (Closes: #17335)
61
62 2009-06-14 Daigo Moriwaki <daigo at debian dot org>
63
64         * [shogi-server]
65           - The Board could not recognize a certain pattern of
66             Oute-Sennichite. This issue has been fixed.
67             (Closes: #13966)
68
69 2009-03-22 Daigo Moriwaki <daigo at debian dot org>
70
71         * [utils/correct-bug14635.rb]
72           - Added a new file. This program corrects illegal lines introduced
73             by the #14635 bug.
74
75 2009-03-07 Daigo Moriwaki <daigo at debian dot org>
76
77         * [csa-file-filter]
78           - Improved performance.
79
80 2009-02-15 Daigo Moriwaki <daigo at debian dot org>
81
82         * [shogi-server]
83           - A duplicated comment that is the one of the previous (or older)
84             move might be erroneously recorded in a csa file. This issue has 
85             been fixed. (Closes: #15080)
86
87 2009-02-11 Daigo Moriwaki <daigo at debian dot org>
88
89         * [utils/csa-filter.rb]
90           - Added a new file. This program filters CSA files.
91
92 2009-02-01 Daigo Moriwaki <daigo at debian dot org>
93
94         * [shogi-server]
95           - The shogi-server records csa files of games in an illegal
96             format. This issue has been fixed. (Closes: #14635)
97           - A ##[MONITOR] command for showing a game result such as %TORYO
98             was not correct. This issue has been fixed.  
99
100 2009-01-13 Daigo Moriwaki <daigo at debian dot org>
101
102         * [shogi-server]
103           - It failed to proccess a game result, OuteKaihiMoreWin where a
104             checked king does not escape. This issue has been fixed.
105
106 2009-01-02 Daigo Moriwaki <daigo at debian dot org>
107
108         * [shogi-server]
109           - shogi_server/timeout_queue.rb: the timeout parameter of the
110             constructor was not respected erroneously. This issue
111             has been fixed.
112           - shogi_server/players.rb: When a player was finishing with its
113             write socket broken, there was a chance that the thread of the
114             player in the giant lock had to wait for a long time (about 20
115             seconds), which might cause threads of other players stop and 
116             time out. (Closes: #14469)
117
118 2008-12-30 Daigo Moriwaki <daigo at debian dot org>
119
120         * [mk_html]
121           - Added a new option: --footer filename, which inserts contents of 
122             the filename at the bottom of a genrated page. A text specific to 
123             wdoor should be written by using this option. 
124             (Closes: #14470)
125           - It does no more depend on RDoc. RDoc::usage does not work well
126             (due to RDoc).
127
128 2008-12-28 Daigo Moriwaki <daigo at debian dot org>
129
130         * [mk_rate]
131           - Check kifu files more carefully so that files that contain
132             incomplete records are skipped.
133           - mk_rate might have failed to alloc due to out of memory. Now it
134             consumes less memory (about 200MB instead of 2GB).
135           - File names can be put into STDIN instead of specifying directory
136             names in command line arguments.
137         * [csa-file-filter]
138           - New file. It filters kifu files and is of use for a pre-filter
139             of mk_rate.
140
141 2008-12-13 Daigo Moriwaki <daigo at debian dot org>
142
143         * [shogi-server]
144           - Improved an existance check and etc. of directories specified
145             by command line options, expecially in case of the daemon mode. 
146             (Closes: #14244)
147           - A lotated log file is moved to $topdir/YYYY/MM/DD.
148             (Closes: #14245)
149
150 2008-11-27 Daigo Moriwaki <daigo at debian dot org>
151
152         * [shogi-server]
153           - Added sample/*.sh for command line samples.
154
155 2008-11-24 Daigo Moriwaki <daigo at debian dot org>
156
157         * [shogi-server]
158           - Added a new option --floodgate-history, which allows users to
159             specify a file name that stores the records of games. The
160             records are taken care of when games are matched.
161
162 2008-10-18 Daigo Moriwaki <daigo at debian dot org>
163
164         * [utils/eval_graph.rb]
165           - Display time control graphs as well.
166             Thanks to Nishimura-san for this idea.
167             (Closes: #13678)
168
169 2008-10-08 Daigo Moriwaki <daigo at debian dot org>
170
171         * [shogi-server]
172           - Ruby 1.8.7 (or later) must be used. Ruby 1.8.6 is not supported.
173           - Daemon mode is available.
174           - shogi_server/piece_ky.rb is again merged with
175             shogi_server/piece.rb, then has been removed.  
176           - Added a test case, TC_usi.rb.
177
178 2008-06-30 Daigo Moriwaki <daigo at debian dot org>
179
180         * [shogi-server]
181           - Added a new option --player-log-dir, which allows users to log
182             messages that are received or sent to the wire.
183
184 2008-06-28 Daigo Moriwaki <daigo at debian dot org>
185
186         * [shogi-server]
187           - A rating comment line is now written before the first move in a
188             record file instead of after the last move, which allows other
189             applications watching a game to recognize players in the middle 
190             of the game. (Closes #12821)
191           - If a player, including a monitor, stuck at the time of sending
192             messages to the wire, which means that the giant lock was locked,
193             it might have prevented other players from processing until
194             timeout occurred. This issue has been fixed. (Closes #12555)
195
196 2008-06-27 Daigo Moriwaki <daigo at debian dot org>
197
198         * [shogi-server]
199           -  Pairing players might not have shuffled players because of
200              poor shuffling algorithm. This issue has been fixed.
201              (Closes: #12661)
202
203 2008-06-25 Daigo Moriwaki <daigo at debian dot org>
204
205         * [players_graph.rb]
206           - Check invalid arguments. (Closes: #12856)
207
208 2008-06-23 Daigo Moriwaki <daigo at debian dot org>
209
210         * [mk_rate]
211           - Added a new option: --fixed-rate and --fixed-rate-player
212             whose rate always results in that rate. (Closes: #12800)
213
214 2008-06-06 Daigo Moriwaki <daigo at debian dot org>
215
216         * [shogi-server]
217           - The source has been splited to multiple sub files.
218           - The program now depends on rubygems and activesupport.
219           - The program can reload the source files on the flight, by
220             sending a HUP signal to the server.
221           - The server log will be rotated daily.
222
223 2008-05-18 Daigo Moriwaki <daigo at debian dot org>
224
225         * [shogi-server]
226           - Last game results (win or lose) of x1 players were not
227             available on the next game. This issue has been fixed.
228             Thanks to Tomoyuki Kaneko for debugging.
229           - For draw games, "'rating" line in a .csa file was 
230             wrong (meaningless). This issue has been fixed.
231
232 2008-05-16 Daigo Moriwaki <daigo at debian dot org>
233
234         * [news]
235           - The repository has been converted from CVS to Subversion.
236
237 2008-05-13 Daigo Moriwaki <daigo at debian dot org>
238
239         * [shogi-server]
240           - Floodgate's thread could cause an error when players.yaml was
241             cleared by another program (mk_rate). This issue has been 
242             fixed.
243           - Give default values to BasicPlayer, which fixed undefined 
244             method error in Pairing.
245
246 2008-05-10 Daigo Moriwaki <daigo at debian dot org>
247
248         * [shogi-server]
249           - The server could not recognize uchifuzume as an illegal move.
250             This bug has been fixed.
251           - The server crashed by an undefined method error.
252             This issue has been fixed.
253
254 2008-05-05 Daigo Moriwaki <daigo at debian dot org>
255
256         * [shogi-server]
257           - .csa files will be located in a sub directory such as
258             "2008/05/05/*.csa". Thease days, we have many games in a day. 
259             This change will help users browse a file list.
260
261 2008-05-03 Daigo Moriwaki <daigo at debian dot org>
262
263         * [mk_html]
264           - Show players who have accessed in the last 30 minutes with 
265             different colors.
266
267 2008-04-22 Daigo Moriwaki <daigo at debian dot org>
268
269         * [mk_html]
270           - When YSS was not rated on the wdoor mode, wrong rate24 scores
271             were displayed. This issue has been fixed. Now YSS absence 
272             results in "N/A".
273
274 2008-04-21 Daigo Moriwaki <daigo at debian dot org>
275
276         * [mk_rate]
277           - The half-life period is now configurable.
278             ex $ ./mk_rate --half-life 14 --half-life-ignore 7 <records>
279
280 2008-04-12 Daigo Moriwaki <daigo at debian dot org>
281
282         * [shogi-server]
283           - Renamed variables (@id) since they caused Ruby's warning.
284
285 2008-04-11 Daigo Moriwaki <daigo at debian dot org>
286
287         * [shogi-server]
288           - Improved a way to handle diferred moves (2008-03-24's change),
289             based on Tomoyuki Kaneko's patch.
290
291 2008-04-01 Daigo Moriwaki <daigo at debian dot org>
292
293         * [shogi-server]
294           - An incorrect LOGIN crashed the server. This issue has been
295             fixed.
296
297 2008-03-24 Daigo Moriwaki <daigo at debian dot org>
298
299         * [shogi-server]
300           - Converting characters for comments in moves caused an error. This 
301             issue has been fixed.
302           - If a player moves in the opponent's turn, it is illegal. But the
303             current CSA protocol does not clearly define a way to tell so to 
304             the players. This shogi-server internally keeps such a move in a
305             buffer and replay it when the player of the move gets his/her 
306             turn.
307
308 2008-03-16 Daigo Moriwaki <daigo at debian dot org>
309
310         * [shogi-server]
311           - Erroneously, Board#to_s's current player was always Black.
312             It caused wrong determination of sennichite since it did not
313             care about the current player of a state. This has been fixed.
314             Thanks Takada-san for reporting this bug.
315
316 2008-03-10 Daigo Moriwaki <daigo at debian dot org>
317
318         * [util/players-graph.rb]
319           - Applied Kaneko-san's patch, which also shows expected-rate24
320             rates.
321           - Small PNG gets smaller.
322
323 2008-03-08 Daigo Moriwaki <daigo at debian dot org>
324
325         * [mk_html]
326         - Added an option --wdoor. In this mode, a rate expected at Shogi
327           Club 24 is calculated from YSS's rating (he is 2400 now). 
328
329 2008-03-04 Daigo Moriwaki <daigo at debian dot org>
330
331         * [mk_rate]
332           - If the computed ratings do not stabilize, then mk_rate aborts.
333               $ ./mk_rate dir && ./mk_rate dir > players.yaml 
334             can avoid rewriting the invalid ratings to the file.
335
336 2008-02-23 Daigo Moriwaki <daigo at debian dot org>
337
338         * [shogi-server]
339           - A comment is converted to EUC-JP and then written in a log.
340             Note that this conversion guesses the input encoding. Clients
341             are recommended to send EUC-JP compatible strings to the
342             server.
343
344 2008-02-21 Daigo Moriwaki <daigo at debian dot org>
345
346         * [util/players-graph.rb]
347           - Released. Draw a chart for a player's rating score.
348
349 2008-02-17 Daigo Moriwaki <daigo at debian dot org>
350
351         * [shogi-server]
352           - An illegal teban specified for Floodgate login could crash the
353             server. This issue has been fixed.
354
355 2008-02-16 Daigo Moriwaki <daigo at debian dot org>
356
357         * [shogi-server]
358           - Thread.abort_on_exception is now false, meaning that 
359             a thread's abort does not affect the others. 
360           - The uchifuzume check did not generate promoting moves, which
361             could crash the server with illegal moves. This issue has
362             been fixed.
363
364 2008-02-14 Daigo Moriwaki <daigo at debian dot org>
365
366         * [shogi-server]
367           - Added a new pairing variation, Swiss-like style. Winners at the
368             previous games (his/her point of view, not the server's) are 
369             paired first, and then the others are matched. This is the 
370             default option now.
371           - Pairing classes are located in a separate source file,
372             pairing.rb. The file is 'load'ed each time to be used,
373             meaning that modifying the code will be applied to a running
374             server.
375           - You can specify a single player who will be out of pairing
376             when there are odd players waiting for Floodgate.
377
378 2008-02-13 Daigo Moriwaki <daigo at debian dot org>
379
380         * [shogi-server]
381           - When there are odd players wating for Floodgate, the random
382             pairing deletes the player who has ever played the most games.
383
384 2008-02-08 Daigo Moriwaki <daigo at debian dot org>
385
386         * [ml_html]
387           - For the Not-Yet-Rated group, those who have not connected
388             recently are not listed.
389         * [shogi-server]
390           - Floodgate's thread checks the current time each 10 secs.
391
392 2008-02-05 Daigo Moriwaki <daigo at debian dot org>
393
394         * [mk_rate] [mk_html]
395           - Display not-yet-rated players as well.
396         * [mk_html]
397           - Use Yahoo! UI Library.
398
399 2008-02-04 Daigo Moriwaki <daigo at debian dot org>
400
401         * [shogi-server] [webserver]
402           - In the daemon mode, if the specified directory was a relative
403             path, the server could fail to start with a permission denied
404             error. This issue has been fixed. The path is interpreted as 
405             an absolute path before switching to daemon. 
406           - In the daemon mode, a wrong process id was written in 
407             '--pid-file'. This issue has been fixed. Also, the pid file
408             will be removed when the server shuts down.
409
410 2008-02-03 Daigo Moriwaki <daigo at debian dot org>
411
412         * [shogi-server]
413           - Game names that are recognized as the floodgate mode are now 
414             /^floodgate-\d+-\d+$/.
415           - Floodgate could not schedule the next time when it was the next
416             day. This issue has been fixed.
417
418 2008-02-02 Daigo Moriwaki <daigo at debian dot org>
419
420         * [shogi-server]
421           - Implemented a new feature, Floodgate mode, for covenience with
422             public rating games. Now there is a special game "wdoor-900-0".
423             Matching players for that game is scheduled each 30 minitues.
424
425 2007-11-03 Daigo Moriwaki <daigo at debian dot org>
426
427         * [mk_rate]
428          - Support Ruby 1.8.6 patch level 111 (or higher) and GSL 1.10 (or higher).
429            It may not work with lower verions. 
430
431 2007-09-06 Daigo Moriwaki <daigo at debian dot org>
432
433         * [shogi-server]
434           - The logic to detect Oute-Sennichite was not complete. Both players
435             (checking side and escaping side) may cause Oute-Sennichite. The old
436             logic only cared for the checking player. This issue has been fixed.
437
438 2007-06-16  Daigo Moriwaki <daigo at debian dot org>
439
440         * [webserver]
441           - Initial version. This web server is an interface between HTTP and
442             shogi-server. Shogi-server commands will be available over HTTP. As
443             of now %%LIST and %%WHO commands are supported.
444         * [mk_rate]
445           - Bumped up GAME_LIMIT (from 10) to 15 because the calculation of
446             rates sometimes went wrong (infinite values).
447
448 2007-04-21  Daigo Moriwaki <daigo at debian dot org>
449
450         * [shogi-server]
451           - Implemented `CHALLENGE' command, and the server will respond with
452             `CHALLENGE ACCEPTED'. Note that this command is dummy for this server
453             because it is only available for CSA's official testing server and does
454             not belong to the CSA standard protocol.  Therefor, when clients receive
455             `CHALLENGE ACCEPTED' from this server, they must ignore it.
456           - Show revision in a start up message.
457
458 2007-04-01  Daigo Moriwaki <daigo at debian dot org>
459
460         * [shogi-server]
461           - Implemented one of the keepalive protocol in CSA protocol; If clients
462             send LF, the server sends back LF.
463           - More care for socket errors.
464
465 2007-03-27  Daigo Moriwaki <daigo at debian dot org>
466
467         * [mk_rate] When there were too few games to rate players (i.e. no
468           player to rate), mk_rate caused an error. Now it no longer shows
469           the error.
470
471 2007-03-10  Daigo Moriwaki <daigo at debian dot org>
472
473         * [mk_html] Popup shows additional information.
474
475 2007-03-02  Daigo Moriwaki <daigo at debian dot org>
476
477         * [shogi-server]
478           - Use WEBrick for server framework.
479           - Daemon mode is available.
480
481 2007-02-26  Daigo Moriwaki <daigo at debian dot org>
482
483         * [shogi-server]
484           - Failed to show usage. This issue has been fixed. 
485           - Initial start of the server failed beacause of empty players.yaml.
486             This issues has been fixed.
487
488 2007-02-18  Daigo Moriwaki <daigo at debian dot org>
489
490         * [mk_html]
491           - Show groups in the order specified in players.html.
492           - Players who gamed recently have a background color.
493         * [mk_rate]
494           - Implemented half-life effect. Numbers of win/lose decrease by this effect.
495
496 2006-11-26  Daigo Moriwaki <daigo at debian dot org>
497
498         * [shogi-server] Sente (gote) was able to move gote's (sente's) hand.
499           That move should be illegal. This issue has been fixed.
500
501 2006-11-01  Daigo Moriwaki <daigo at debian dot org>
502
503         * [mk_rate] Skip "abnormal" games, which were finished because of
504           network failure or communication error.  Recently some programs seem
505           to have a lot of tries to connect to the Shogi Server at wdoor for
506           debugging. We should ignore such games for a while to get a meaningful
507           ratings.
508
509 2006-10-30  Daigo Moriwaki <daigo at debian dot org>
510
511         * [mk_rate][mk_html]
512           - Put players into "connected" groups in order to
513             show a correct, meaningful rating. In the group, each player has at
514             least a game with other players.
515           - The format of players.yaml was updated.
516         * [shogi-server] Followed the new format of players.yaml.
517
518 2006-10-08  Daigo Moriwaki <daigo at debian dot org>
519
520         * [mk_rate] Corrected making win_loss_matrix.
521
522 2006-10-02  Daigo Moriwaki <daigo at debian dot org>
523
524         * [mk_rate] players who never win or lose are not rated in order
525           the calculation to complete.
526
527 2006-09-30  Daigo Moriwaki <daigo at debian dot org>
528
529         * [shogi-server] The CSA mode supports the trip in a password.
530
531 2006-09-22  Daigo Moriwaki <daigo at debian dot org>
532
533         * [shogi-server] Refactored the login procedures.
534
535 2006-09-21  Daigo Moriwaki <daigo at debian dot org>
536
537         * [mk_rate] It failed parse draw games. Now this bug has been fixed.
538         * [mk_html] Add CSS to look better.
539
540 2006-09-15  Daigo Moriwaki <daigo at debian dot org>
541
542         * [shogi-server]
543           - Remove the trip in a password. Now the password is hashed.
544         * [mk_rate]
545           - Support @NORATE syntax in a name, which avoids the player is
546             rated.
547
548 2006-09-09  Daigo Moriwaki <daigo at debian dot org>
549
550         * [shogi-server]
551           - Support a new command, %%VERSION. It shows the server's revision#.
552
553 2006-09-07  Daigo Moriwaki <daigo at debian dot org>
554
555         * [shogi-server]
556           - Re-design: trip is now a suffix of the password, not name.
557           - Simplified the output of %%RATING.
558         * [mk_rate]
559           - Support "@" indentificaton in a name; players with same
560             before-@-names are mapped to one.
561
562 2006-09-05  Daigo Moriwaki <daigo at debian dot org>
563
564         * [mk_rate] Fix a bug. It solves the correct rate.
565
566 2006-08-18  Daigo Moriwaki <daigo at debian dot org>
567
568         * [mk_rate] Re-design. 
569           - Correct the equations.
570           - Apply deaccelerated Newton method.
571
572 2006-08-16  Daigo Moriwaki <daigo at debian dot org>
573
574         * [mk_rate]
575           - Fix a bug. Now it can see black/white players in a csa file.
576         * [shogi-server]
577           - Add a space in the output of %%RATING.
578
579 2006-08-14  Daigo Moriwaki <daigo at debian dot org>
580
581         * [mk_rate] Record numbers of win/loss games.
582         * Add mk_html, which generates html from players.yaml
583         * Fix test/test_board.rb. Now it works. 
584         * Add test/TC_ALL.rb to run all test cases.
585         * [shogi-server] Fix a bug. Now it can show %%RATING even if it has no
586           rated player.
587
588 2006-08-11  Daigo Moriwaki <daigo at debian dot org>
589         
590         * Add mk_rate, which calculate rating scores.
591
592 2006-08-10  Daigo Moriwaki <daigo at debian dot org>
593
594         * Change the style of a comment line on the rated game.
595
596 2006-08-07  Daigo Moriwaki <daigo at debian dot org>
597
598         * Change the player id, which is now <name>+<hash_of_the_trip>.
599         * Fix the max length of the login name with a trip.
600         * Add a comment line about the rated game status in the CSA file.
601         * Remove the rating system, which will be calculated by another
602           program.
603
604 2006-08-01  Daigo Moriwaki <daigo at debian dot org>
605
606         * Add a command, %%RATING, to show a ranking sorted by rates.
607
608 2006-07-31  Daigo Moriwaki <daigo at debian dot org>
609
610         * Add a simple rating system.
611
612 2006-07-30  Daigo Moriwaki <daigo at debian dot org>
613
614         * Add a @move_counter in Board class, which is used by Shogi Viewer
615           CGI.
616
617 2006-04-28  Daigo Moriwaki <daigo at debian dot org>
618
619         * Jishogi kachi declaration did not work. This bug has been fixed.
620           Add debug lines to show a jishogi state.
621
622 2006-04-08  Daigo Moriwaki <daigo at debian dot org>
623
624         * Support CSA Protocol Version 1.1.
625         * Change the declaration of Jishogi 1.1.
626
627 2006-03-10  Daigo Moriwaki <daigo at debian dot org>
628
629         * Kifu logs are always written in separate files.
630         * Add a test case, test/TC_functional.rb
631         * Some refactorings.
632