• R/O
  • HTTP
  • SSH
  • HTTPS

Zusammenfassung des Repository

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

shogi-server source


Neueste Commits RSS

Rev. Zeit Autor Nachricht
67a1cf4 2019-02-19 23:43:15 hikaen2 fix-toryo-format fix toryo format
c6ab4e6 2018-08-26 12:14:53 Daigo Moriwaki master Merge remote-tracking branch 'origin/master'
a801bce 2018-08-26 11:58:04 Daigo Moriwaki wdoor-stable Merge remote-tracking branch 'origin/master' into wdoor-s...
44b5f4c 2018-08-26 11:57:37 Daigo Moriwaki Terminate threads of players so that the server shuts dow...
fe5c0f1 2018-08-26 09:19:02 Daigo Moriwaki Merge remote-tracking branch 'origin/master' into wdoor-s...
f578431 2018-08-26 09:14:48 Daigo Moriwaki [shogi-server] Create a directory for a PID file. (Closes...
8ad8742 2018-08-25 18:53:25 Daigo Moriwaki Bump up the version
f2e2a96 2018-08-25 18:52:47 Daigo Moriwaki Fix typo and delete tailing spaces
a29f0d5 2018-08-25 18:41:38 Daigo Moriwaki * [shogi-server] Support a graceful shutdown. (Closes #38...
96304e6 2018-04-07 19:24:19 Daigo Moriwaki Run shogi-server as a service, specifying a log output di...

Kürzlich bearbeitete Tags

Name Rev. Zeit Autor
20180407 7bf33b2 2018-04-07 15:17:46 Daigo Moriwaki
20170902 2d5cda5 2017-09-03 16:05:20 Daigo Moriwaki
20160409 1899be1 2016-04-09 13:03:38 Daigo Moriwaki
20151213 a0947c4 2015-12-13 21:28:20 Daigo Moriwaki
20150201 eb50791 2015-02-01 11:33:09 Daigo Moriwaki
20141227 ad33950 2014-12-27 22:10:00 Daigo Moriwaki
20141130 dd0c79d 2014-11-24 23:04:14 Daigo Moriwaki
20140726 852b091 2014-07-26 16:33:18 Daigo Moriwaki
20140107 cc5500d 2014-01-07 09:37:32 Daigo Moriwaki
20131221 051a0e7 2013-12-21 17:52:52 Daigo Moriwaki
20131215 75c514e 2013-12-15 11:38:14 Daigo Moriwaki
20131104 a3ef1ae 2013-11-04 18:49:32 Daigo Moriwaki
20121229 457848c 2012-12-30 17:24:33 Daigo Moriwaki
20101030 b0ba169 2010-10-30 20:11:39 daigo

Zweige

Name Rev. Zeit Autor Nachricht
fix-toryo-format 67a1cf4 2019-02-19 23:43:15 hikaen2 fix toryo format
master c6ab4e6 2018-08-26 12:14:53 Daigo Moriwaki Merge remote-tracking branc...
wdoor-stable a801bce 2018-08-26 11:58:04 Daigo Moriwaki Merge remote-tracking branc...
201604-Fischer a6cb7fd 2015-12-13 21:30:38 Daigo Moriwaki Merge branch 'wdoor-stable'
201512-timeclock 3d228b2 2015-11-27 23:40:28 Daigo Moriwaki Fix #35795: A time consumed...
201312-usiToCsa f565a12 2013-12-17 22:46:22 Daigo Moriwaki Fixed issues on usiToCsa.rb...
copy d168a77 2013-02-24 17:42:43 Daigo Moriwaki Implemented a new command: ...

README

= Shogi-server project

The Shogi-server project develops Shogi-server, a rating tool and so on.

== Shogi-server

Shogi-server is a server that implements the Server Protocol Ver 1.2.1 defined
by Computer Shogi Association (CSA[http://www.computer-shogi.org/index_e.html]) 
in order for computer shogi players to play games.   

=== Pre-requires

Ruby 2.1 or later

For Debian,

  $ sudo aptitude install ruby

=== Install

  $ git clone git://git.sourceforge.jp/gitroot/shogi-server/shogi-server.git

The following files are required to run Shogi-server:

  - shogi-server
  - shogi_server.rb
  - shogi_server/**/*.rb

=== Run

Examples:

Run the server with CSA Protocol V1.2 or later

  $ ./shogi-server hoge 4000

With CSA Protocol V1.1.2 or before

  $ ./shogi-server --max-moves 0 --least-time-per-move 1 hoge 4000

See others written in the 'shogi-server' file.

== Other tools

See documents at the head of each source file.

* mk_rate
* mk_html
* showgame


== Tests

Run the server

  $ ./shogi-server hoge 4000

Run test cases

  $ cd test
  $ ruby TC_ALL.rb

Tested:

- ruby 2.0.0p481 (2014-05-08 revision 45883) [universal.x86_64-darwin13]
  Finished in 55.025733 seconds.
  383 tests, 1370 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications
  100% passed
  6.96 tests/s, 24.90 assertions/s
  ruby TC_ALL.rb  1.97s user 0.34s system 4% cpu 55.424 total
  
---
2015-01-17  Daigo Moriwaki <daigo at debian dot org>