word_search_safety 0.1.2-dev.2 word_search_safety: ^0.1.2-dev.2 copied to clipboard
A word search puzzle generator built with dart.This library allows you to create a puzzle from a list of input words that can be arranged in many orientations.
word_search #
Example Usage #
import 'package:word_search/word_search.dart';
/**
* The main file to test out the word search library
*/
void main() {
print('Word Search Library!');
// Create a list of words to be jumbled into a puzzle
final List<String> wl = ['hello', 'world', 'foo', 'bar', 'baz', 'dart'];
// Create the puzzle sessting object
final WSSettings ws = WSSettings(
width: 10,
height: 10,
orientations: List.from([
WSOrientation.horizontal,
WSOrientation.vertical,
WSOrientation.diagonal,
]),
);
// Create new instance of the WordSearch class
final WordSearchSafety wordSearch = WordSearchSafety();
// Create a new puzzle
final WSNewPuzzle newPuzzle = wordSearch.newPuzzle(wl, ws);
/// Check if there are errors generated while creating the puzzle
if (newPuzzle.errors.isEmpty) {
// The puzzle output
print('Puzzle 2D List');
print(newPuzzle.toString());
// Solve puzzle for given word list
final WSSolved solved =
wordSearch.solvePuzzle(newPuzzle.puzzle, ['dart', 'word']);
// All found words by solving the puzzle
print('Found Words!');
solved.found.forEach((element) {
print('word: ${element.word}, orientation: ${element.orientation}');
print('x:${element.x}, y:${element.y}');
});
// All words that could not be found
print('Not found Words!');
solved.notFound.forEach((element) {
print('word: ${element}');
});
} else {
// Notify the user of the errors
newPuzzle.errors.forEach((error) {
print(error);
});
}
}