[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Chess engine in ruby?

Stefan Lang

3/16/2006 4:40:00 AM

I'm a beginning chess player and a beginning Ruby developer :-) I was
wondering if there's a Ruby chess engine somewhere.

I thought it might be interested to read the code and see if I get
better at Ruby, or chess, or both.

I'm also interested to see if the Ruby code is more understandable - in
the past I tried to understand C and Java engines without much luck.

If you've heard of some kind of chess engine written in Ruby, could you
let me know?

Thanks!
Jeff


--
Posted with http://De.... Sign up and save your time!


5 Answers

Hal E. Fulton

3/16/2006 6:13:00 AM

0

Jeff Cohen wrote:
> I'm a beginning chess player and a beginning Ruby developer :-) I was
> wondering if there's a Ruby chess engine somewhere.
>
> I thought it might be interested to read the code and see if I get
> better at Ruby, or chess, or both.
>
> I'm also interested to see if the Ruby code is more understandable - in
> the past I tried to understand C and Java engines without much luck.
>
> If you've heard of some kind of chess engine written in Ruby, could you
> let me know?

I don't know of one, but the idea is interesting.

It might not be practical because of speed. Most chess algorithms
are very search-intensive.

Now, one thing I've thought about but will never have the time to
implement -- make it a distributed application (with drb) so that
the work can be split among different machines.

Now *that* would be interesting. And if you throw enough boxes
at it, you eliminate the speed issue. You could in theory produce
a distributed chess app in Ruby that was "as fast" as a non-
distributed one in C.

Just a thought.


Cheers,
Hal



Michael Fellinger

3/16/2006 6:16:00 AM

0

Hey Jeff,There have been two rubyquizzes (is that really the plural?) on that:http://rubyquiz.com/quiz35.htmlhttp://rubyquiz.com/quiz... should also check RAA and rubyforge for that.http://raa.ruby-lang.org/search.rhtml?search=chesshttp://rubyforge.org/search/?type_of_search=soft&words=chess&Search=... that helps you a bit :)~~~~manveruOn 3/16/06, Hal Fulton <hal9000@hypermetrics.com> wrote:> Jeff Cohen wrote:> > I'm a beginning chess player and a beginning Ruby developer :-) I was> > wondering if there's a Ruby chess engine somewhere.> >> > I thought it might be interested to read the code and see if I get> > better at Ruby, or chess, or both.> >> > I'm also interested to see if the Ruby code is more understandable - in> > the past I tried to understand C and Java engines without much luck.> >> > If you've heard of some kind of chess engine written in Ruby, could you> > let me know?>> I don't know of one, but the idea is interesting.>> It might not be practical because of speed. Most chess algorithms> are very search-intensive.>> Now, one thing I've thought about but will never have the time to> implement -- make it a distributed application (with drb) so that> the work can be split among different machines.>> Now *that* would be interesting. And if you throw enough boxes> at it, you eliminate the speed issue. You could in theory produce> a distributed chess app in Ruby that was "as fast" as a non-> distributed one in C.>> Just a thought.>>> Cheers,> Hal>>>

greg.rb

3/16/2006 2:41:00 PM

0

calculations per second(speed) is a major factor in creating a powerful
chess program.

however, scripting languages are not excluded from creating something
that works.

if python can do it, why can't ruby?

python:
http://www.kolumbus.fi/jyrki.alakuijala/py...

Jeff

3/16/2006 4:52:00 PM

0

Michael Fellinger wrote:
> Hey Jeff,
>
> There have been two rubyquizzes (is that really the plural?) on that:
> http://rubyquiz.com/q...
> http://rubyquiz.com/q...
>
> You should also check RAA and rubyforge for that.
> http://raa.ruby-lang.org/search.rhtml?se...
> http://rubyforge.org/search/?type_of_search=soft&words=chess&Sea...
>
> Hope that helps you a bit :)
>
> ~~~~manveru

Hi Michael,

Thanks for the links. Unfortunately the ruby quizzes were for
two-player chess, but I'm hoping to find some code that would let me
play against the computer. Being new to chess I'm not looking for Deep
Blue quality, just something that works reasonably well (maybe up to a
900 chess rating, not 2500).

Uh oh... I'm getting the feeling as I write this that I might have
ventured into the waters of "he who suggested it should do it." :-)

It would also be a good way to compare the speed of 1.8.2 vs. 2.0
(whenever 2.0 comes out).

Jeff
www.softiesonrails.com

--
Posted via http://www.ruby-....


James Gray

3/16/2006 5:22:00 PM

0

On Mar 16, 2006, at 10:52 AM, Jeff Cohen wrote:

> Uh oh... I'm getting the feeling as I write this that I might have
> ventured into the waters of "he who suggested it should do it." :-)

I for one would be very interested to see what you could come up with.

James Edward Gray II