2009年1月15日星期四

xboard/winboard

这是一个 chess 的 frontend,后者是前者的 Win32 port,不过有一些功能比如和 cmail 协同工作是没有实现的。这个 frontend 现在可以用来做三件事情,一个是使用它调用 chess engine 用来人机对战或者机机对战;一个是连接到 Internet Chess Server (以下简称 ICS)参加网上的游戏;还可以用来查看棋局。

由于我对 chess 不算特别了解,所以现在写的比较偏技术化,而不是偏棋局功能。既然 xboard 是个 frontend,那么势必有一个所谓的 backend 亦即 chess engine 作为后台计算程序,常见的 backend 有 gnu chess 或者 crafty 等,他们使用类似的协议与 frontend 通信,这也就使得我们可以用不同的 backend 互较高下,作为比试谁的 engine 牛,同时也使得算法、界面分离开来。类似的 frontend 还有 eboard 等。

xboard 含有如下的内容,
/usr/games/xboard
/usr/games/zic2xpm
/usr/games/cmail
/usr/games/pxboard
/usr/share/man/man6/pxboard.6.gz
/usr/share/man/man6/xboard.6.gz
/usr/share/man/man6/zic2xpm.6.gz
/usr/share/info/xboard.info.gz
/usr/share/doc/xboard/changelog.gz
/usr/share/doc/xboard/zippy.README.gz
/usr/share/doc/xboard/READ_ME
/usr/share/doc/xboard/FAQ.gz
/usr/share/doc/xboard/NEWS.gz
/usr/share/doc/xboard/FAQ.html
/usr/share/doc/xboard/ToDo.gz
/usr/share/doc/xboard/copyright
/usr/share/doc/xboard/changelog.Debian.gz
/usr/share/doc/xboard/ChangeLog.2.gz
/usr/share/menu/xboard
/usr/share/games/xboard/bitmaps.xchess
/usr/share/games/xboard/bitmaps.xchess/b108o.bm
...
/usr/share/lintian/overrides/xboard
/usr/share/man/man6/cmail.6.gz
主要程序包含 xboard、zic2xpm、cmail 和 pxboard,分别是主程序、将 zic 格式转换成为 xboard 可以读取的格式、从 email 里面读取和玩 chess、将一个局通过管道送给 xboard 在上面玩。

如果我们想进行人机对战,可以用 -fcp/-scp 指定两个 engine,-st/-depth 指定搜索时间或者搜索深度;如果是联网,则可以 -ics,并用 -icshost/-icsport 指定服务器,这是还需要一个 helper 程序 -icshelper,用于登录发出命令和服务器交互(如 freechess.org 用 timeseal、而 chessclub.com 用 timestamp);-lgf 可以从文件里面读取牌局。

连接到 ICS 上可以用下面的命令,如 help 获得帮助,who 列出用户,games 列出现在的局,比较有用的是邀战 match id time inc,其中 id 是对方的注册号,time 是每方使用的时间(分 lightening,blitz 和 standard),inc 是每下一步增加的时间(常用方法是 time = 10,inc = 0 这样限制每盘时间,或者 time = 2,inc = 12,这样相当于最长思考时间不能超过 2min,每一步平均大约是 12s)。提出这个请求后,可以 accept 或者 decline。finger id 可以获得某人的比分情况。vars 列出自己的 configuration,可以用 set 设置。可以用 observe id/game id 观战。examine 可以获得最近进行那盘棋的信息。比较常用的命令是 getgame,这个会匹配自己的时间什么的自动获得一盘棋局。这里有一个入门介绍,以及详细的命令指南

我们下面看看 gnuchess 这个 engine,
/usr/games/gnuchess
/usr/games/gnuchessx
/usr/share/doc/gnuchess/README
/usr/share/doc/gnuchess/TODO
/usr/share/doc/gnuchess/README.Debian
/usr/share/doc/gnuchess/copyright
/usr/share/doc/gnuchess/NEWS.gz
/usr/share/doc/gnuchess/changelog.Debian.gz
/usr/share/doc/gnuchess/changelog.gz
/usr/share/menu/gnuchess
/usr/share/man/man6/gnuchess.6.gz
/usr/share/man/man6/gnuchessx.6.gz
其实 gnuchess 就是一个文本下面的 chess,但是用户必须对表达方式比较熟悉,如使用坐标之类的。类似的,crafty 也是这样的东西,
/usr/games/crafty.bin
/usr/games/crafty
/usr/share/crafty/crafty.hlp
/usr/share/doc/crafty/read.me.gz
/usr/share/doc/crafty/changelog.Debian.gz
/usr/share/doc/crafty/README.Debian
/usr/share/doc/crafty/copyright
/usr/share/doc/crafty/changelog.gz
/usr/share/doc/crafty/crafty.doc.gz
/usr/share/doc/crafty/crafty.faq.gz
/usr/share/man/man6/crafty.6.gz
/usr/share/man/man5
/usr/share/man/man5/crafty.rc.5.gz
/usr/share/lintian/overrides/crafty
/usr/share/doc-base/crafty
/usr/share/menu/crafty
/var/lib/crafty/book.lrn
/var/lib/crafty/position.lrn
/var/lib/crafty/TB
/etc/crafty.rc
/usr/share/man/man6/crafty.bin.6.gz
这里可以看见比 gnuchess 复杂了不少,还有专门的 rc 控制其行为。

和 xboard 类似,还有 eboard,
/usr/games/eboard
/usr/bin/eboard-config
/usr/bin/eboard-addtheme
/usr/share/applications/eboard.desktop
/usr/share/pixmaps/eboard.xpm
/usr/share/man/man1/eboard-config.1.gz
/usr/share/man/man1/eboard-addtheme.1.gz
/usr/share/man/man6/eboard.6.gz
/usr/share/games/eboard/classic.png
/usr/share/games/eboard/ghouls.png
/usr/share/games/eboard/plastic.png
/usr/share/games/eboard/eboard_themes.conf
/usr/share/games/eboard/NAG.en.txt
/usr/share/games/eboard/eboard.cs.dict
/usr/share/games/eboard/eboard.de.dict
/usr/share/games/eboard/eboard.es.dict
/usr/share/games/eboard/eboard.fr.dict
/usr/share/games/eboard/eboard.hu.dict
/usr/share/games/eboard/eboard.it.dict
/usr/share/games/eboard/eboard.ja.dict
/usr/share/games/eboard/eboard.pl.dict
/usr/share/games/eboard/eboard.pt_BR.dict
/usr/share/lintian/overrides/eboard
/usr/share/doc/eboard/Crafty.txt
/usr/share/doc/eboard/DGTboard.txt
/usr/share/doc/eboard/FICS-Timeseal.txt
/usr/share/doc/eboard/GNUChess4.txt
/usr/share/doc/eboard/GNUChess5.txt
/usr/share/doc/eboard/Makefile
/usr/share/doc/eboard/Scripts.txt
/usr/share/doc/eboard/Sjeng.txt
/usr/share/doc/eboard/Themes.txt
/usr/share/doc/eboard/copyright
/usr/share/doc/eboard/changelog.gz
/usr/share/doc/eboard/README.gz
/usr/share/doc/eboard/changelog.Debian.gz
/usr/share/menu
/usr/share/menu/eboard
功能上似乎允许直接用 LAN 联机。

17 条评论:

匿名 说...

I do agree with all of the concepts you've presented in your post. They're very
convincing and will certainly work. Nonetheless, the posts
are too quick for starters. Could you please extend them a bit from subsequent time?
Thanks for the post.

Feel free to surf to my weblog; food games
My webpage - food games

匿名 说...

Hello, Neat post. There's an issue together with your web site in web explorer, could test this? IE nonetheless is the market chief and a huge portion of other people will pass over your great writing due to this problem.

my blog :: absolut

匿名 说...

I do not leave a great deal of responses, but after reading a few of the responses
on "xboard/winboard". I do have a couple of questions for you
if it's allright. Is it only me or do a few of the remarks appear like they are coming from brain dead visitors? :-P And, if you are posting at additional places, I would like to follow anything new you have to post. Would you post a list of every one of all your social networking pages like your Facebook page, twitter feed, or linkedin profile?

Also visit my weblog: buy instagram followers

匿名 说...

Generally I don't read post on blogs, but I would like to say that this write-up very pressured me to try and do it! Your writing taste has been surprised me. Thank you, quite great post.

Also visit my homepage - how to get a lot of followers on instagram

匿名 说...

Absolutely еvеryone seemed to bе pleaѕeԁ ωіth the solutiοn, with the speedinеss оf the shipping, anԁ when thеy
did have іnquiгіeѕ oг issues,
custοmеr servіce was quіcκ to help.


mу web page :: V2 Cigs Coupon

匿名 说...

The flex waistband desires a load of consumers.

My blog ... Vivinow.com

匿名 说...

These contemporary fitness devices are worn around the waist,
positioned proper about the abs and then employing what is recognized
as electronic muscle stimulation.

My web page: Flex belt discount

匿名 说...

The state of the art flex belt, attempt it you will not regret it.


my web blog www.Prnewswire.com

匿名 说...

So if you really want a very good ab belt, right here are some alternatives which you
can contemplate.

My web blog the flex belt review

匿名 说...

So if you genuinely will need a excellent ab belt, right
here are some selections which you can think about.


My website :: http://news.goldmineland.com/article.php?id=6712

匿名 说...

The belt makes use of gel pads postioned more than the center abdominals and
the outdoors obliques.

Feel free to visit my web blog ... goracingtv.com

匿名 说...

There is completely no hassle; there are no other
things to do aside from placing it about your waist.

Also visit my web site :: http://irepdleague.ning.com/profiles/blogs/flex-belt-information

匿名 说...

What's up to every one, it's іn fаct a niсe for me to
visit this site, it consists of рrісeless Infоrmаtion.


my homepage: V2 Cigs review

匿名 说...

Superb website you have here but I was curious if you knew of any forums
that cover the same topics talked about in this article?
I'd really love to be a part of online community where I can get comments from other experienced individuals that share the same interest. If you have any recommendations, please let me know. Kudos!

Feel free to visit my page; Batman Games Online

匿名 说...

May І јust ѕay what a геlief to unсover ѕomeone whο гeally knows what they are talκіng
about on thе іntеrnet. Yоu definitely underѕtand how tο bring аn
іѕsue tο light anԁ
make it imρortаnt. A lοt moгe peoplе
ought to сhеcκ thiѕ out and unԁeгstand this
sidе оf the ѕtorу. Ӏ can't believe you aren't mοrе popular given that уοu suгеly
hаѵe the gіft.

My web blog: stop snoring

匿名 说...

If you are trying to get your foot in the door, or if you're a seasoned DJ, in search of some new techniques to include to your arsenal, look at this product. This is a gentle urge for us to register the program. The very first online dj record pools sprung about in the earlier part of the year 2000.

Also visit my web site - virtual dj pro

Unknown 说...

信息已经过时了,尤其是有关软件内容的部分。请进行更新。