jgfouca / scrabble

Scrabble / Words-with-friends program + artificial intelligence (AI)
2 stars 2 forks source link

how to play this game..?? #2

Closed cloudjanak closed 5 years ago

jgfouca commented 9 years ago

scrabble --mode=normal --add-player=yourname,HUMAN --add-player=ai_player,AI The interface is clunky, this was mostly a test to see if I could write a decent AI.

jgfouca commented 9 years ago

Also, the scrabble exe has a decent --help dump if you want to see all the options.

cloudjanak commented 9 years ago

i want to develope this application in objective-c so is there any way so i can pass all board to method and it will return all playable moves with starting location and direction? http://www.lexicalwordfinder.com/ Some thing like above web-site with takes all board as query string parameter and return all playable moves with location and direction.

jgfouca commented 9 years ago

Their are routines in my program that do something very similar to that but they are only used internally. AI_Player::make_play is the main algorithm.