Skip to content

gavin-lb/Boggle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Boggle

Script that plays the Android app "Boggle With Friends"; a word game about making words on a 4x4 scrabble-like gameboard, with scrabble-like scoring.

Requires Android Studio to be installed as it uses ADB (Android Debug Bridge) to interface with the device, which can either be an emulated Android device or a physical device connected via USB.

The script pulls a screenshot from the device, uses a custom OCR algorithm (implimented with PIL) to read the tiles and multipliers from the gameboard, constructs a graph representing the gameboard then uses a DFS to find all valid words (an important optimization here being that branches which are not prefixes of any allowed word are pruned; a Directed acyclic word graph (DAWG) is used to efficiently check for prefixes), scores all found words, sorts them according to most-points-per-input, then finally uses the Android Studio tool Monkeyrunner to input the words into the device.

Here is an example of it working in action:

Boggle

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages