OSDN Git Service

* [shogi-server]
[shogi-server/shogi-server.git] / shogi_server.rb
1 ## $Id$
2
3 ## Copyright (C) 2004 NABEYA Kenichi (aka nanami@2ch)
4 ## Copyright (C) 2007-2008 Daigo Moriwaki (daigo at debian dot org)
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2 of the License, or
9 ## (at your option) any later version.
10 ##
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 require 'kconv'
21 require 'getoptlong'
22 require 'thread'
23 require 'timeout'
24 require 'socket'
25 require 'yaml'
26 require 'yaml/store'
27 require 'digest/md5'
28 require 'webrick'
29 require 'fileutils'
30 require 'logger'
31
32 require 'shogi_server/board'
33 require 'shogi_server/game'
34 require 'shogi_server/league'
35 require 'shogi_server/login'
36 require 'shogi_server/piece'
37 require 'shogi_server/player'
38 require 'shogi_server/timeout_queue'
39 require 'shogi_server/usi'
40 require 'shogi_server/util'
41
42 module ShogiServer # for a namespace
43
44 Max_Identifier_Length = 32
45 Default_Timeout = 60            # for single socket operation
46 Default_Game_Name = "default-1500-0"
47 One_Time = 10
48 Least_Time_Per_Move = 1
49 Login_Time = 300                # time for LOGIN
50 Release  = "$Id$"
51 Revision = (r = /Revision: (\d+)/.match("$Revision$") ? r[1] : 0)
52
53 RELOAD_FILES = ["shogi_server/league/floodgate.rb",
54                 "shogi_server/league/persistent.rb",
55                 "shogi_server/pairing.rb"]
56 BASE_DIR = File.expand_path(File.dirname(__FILE__))
57
58 def reload
59   RELOAD_FILES.each do |f|
60     load File.join(BASE_DIR, f)
61   end
62 end
63 module_function :reload
64
65 class Formatter < ::Logger::Formatter
66   def initialize
67     super
68     @datetime_format = "%Y-%m-%dT%H:%M:%S"
69   end
70
71   def call(severity, time, progname, msg)
72     %!%s [%s] %s\n! % [format_datetime(time), severity, msg2str(msg)]
73   end
74 end
75
76 end # module ShogiServer