OSDN Git Service

800656f4ad5dda2efc741709f12875c9ca260140
[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 require 'rubygems'
43
44 module ShogiServer # for a namespace
45
46 Max_Identifier_Length = 32
47 Default_Timeout = 60            # for single socket operation
48 Default_Game_Name = "default-1500-0"
49 One_Time = 10
50 Least_Time_Per_Move = 1
51 Login_Time = 300                # time for LOGIN
52 Release  = "$Id$"
53 Revision = (r = /Revision: (\d+)/.match("$Revision$") ? r[1] : 0)
54
55 RELOAD_FILES = ["shogi_server/league/floodgate.rb",
56                 "shogi_server/league/persistent.rb",
57                 "shogi_server/pairing.rb"]
58
59 def reload
60   here = TOP_DIR || File.dirname(__FILE__)
61   RELOAD_FILES.each do |f|
62     load File.join(here, f)
63   end
64 end
65 module_function :reload
66
67 class Formatter < ::Logger::Formatter
68   def initialize
69     super
70     @datetime_format = "%Y-%m-%dT%H:%M:%S"
71   end
72
73   def call(severity, time, progname, msg)
74     %!%s [%s] %s\n! % [format_datetime(time), severity, msg2str(msg)]
75   end
76 end
77
78 end # module ShogiServer