OSDN Git Service

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