An open API service indexing awesome lists of open source software.

https://github.com/cobyj33/boogle

A C++ game of Boogle, Word Hunt, Scrabble, etc... of any size in terminal
https://github.com/cobyj33/boogle

Last synced: 10 months ago
JSON representation

A C++ game of Boogle, Word Hunt, Scrabble, etc... of any size in terminal

Awesome Lists containing this project

README

          

# Boogle

[![Run on Repl.it](https://replit.com/badge/github/cobyj33/Boogle)](https://replit.com/@cobyj33/Boogle)

A game of Boogle, where a board of n x n size is filled with characters, and the player must try to guess words by connecting adjacent characters in the board
An adjacent character is considered to be any character on top, on bottom, to the side, or directly diagonal to another character

For Example, in this generated 5 x 5 size board by Boogle:
```
E X K U J
A W R L B
T D S P I
N O F Y H
G Q C V Z
```
Some possible words are SONG, SWEAT, DOG, SWAT, COD, and EAT

| | | | | | |
| SONG | SWEAT | DOG | SWAT | COD | EAT |
| ----------- | ----------- | ----------- | ----------- | ----------- | ----------- |
| E X K U J | **E** X K U J | E X K U J | E X K U J | E X K U J | **E** X K U J |
| A W R L B | **A** **W** R L B | A W R L B | **A** **W** R L B | A W R L B | **A** W R L B |
| T D **S** P I | **T** D **S** P I | T **D** S P I | **T** D **S** P I | T **D** S P I | **T** D S P I |
| **N** **O** F Y H | N O F Y H | N **O** F Y H | N O F Y H | N **O** F Y H | N O F Y H |
| **G** Q C V Z | G Q C V Z | **G** Q C V Z | G Q C V Z | G Q **C** V Z | G Q C V Z |

This project includes a solver for a board, a full dictionary of words, and is fully playable in the terminal

To compile the project, simply use the terminal command ```g++ main.cpp -I ./ -o main``` from the root directory of the downloaded project with g++ installed

Alteratively, the project can be run in the browser on [replit](https://replit.com/@cobyj33/Boogle)

This was the first real C++ project I ever made as a project for my Computer Science class, so I let it live here to look back upon :)