A large scale Lego chess game

Status
Not open for further replies.

Tweak155

Lifer
Sep 23, 2003
11,449
264
126
Pretty cool...but this is one of the few times that I just HAVE to say this...get a life dude!

Being a computer programmer with little AI experience, I wonder how Chess is programmed.

I can easily think of logic for removing the pieces from the board, but programming in the rules would be a monstrous task, especially if the computer plays.

EDIT:

I half wonder if the game knows the rules that we are shown here.
 

Dumac

Diamond Member
Dec 31, 2005
9,391
1
0
Being a computer programmer with little AI experience, I wonder how Chess is programmed.

I can easily think of logic for removing the pieces from the board, but programming in the rules would be a monstrous task, especially if the computer plays.

EDIT:

I half wonder if the game knows the rules that we are shown here.

There are tons of chess programs, so it isn't impossible.

That said, I imagine it is a major pain in the ass.
 

TheVrolok

Lifer
Dec 11, 2000
24,254
4,092
136
I love Lego Mindstorms. I have found memories of when it first came out in '98. Good times.
 

LordMorpheus

Diamond Member
Aug 14, 2002
6,871
1
0
There aren't that many rules in chess. Movement rules for each type of piece then just a few gameplay rules.

Yes, it's pretty easy to make a program really good at chess just by looking ahead a number of moves, because there is a fairly small set of moves possible at any given time.

You can also store tons of games between masters, and just look up what a master did in a given situation to win the game.

It's easy to just throw a ton of processor cycles or memory (or both) at the problem and solve it.

It's one of the reasons that Go is becoming popular in this country, there are way way more moves possible in a single turn in Go than in Chess, which makes it much harder to write a good computer program for, which is something that attracts players.
 
Last edited:
Status
Not open for further replies.