{"id":37768661,"url":"https://github.com/satsinush/word-games","last_synced_at":"2026-01-16T14:50:13.230Z","repository":{"id":311832795,"uuid":"865756101","full_name":"satsinush/word-games","owner":"satsinush","description":"Advanced C++ application to solve popular word games (Wordle, Spelling Bee, Mastermind, etc.) with both GUI and command-line interfaces, featuring entropy-based optimal suggestions.","archived":false,"fork":false,"pushed_at":"2026-01-13T03:20:46.000Z","size":52806,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-13T06:46:03.323Z","etag":null,"topics":["cpp","dungleon","entropy","letter-boxed","mastermind","probability","qt","spelling-bee","word-frequency","wordle"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/satsinush.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-01T04:39:42.000Z","updated_at":"2026-01-13T03:19:31.000Z","dependencies_parsed_at":"2025-08-27T06:44:36.026Z","dependency_job_id":"45b785be-ad54-48b3-9d9c-2cd44bf235db","html_url":"https://github.com/satsinush/word-games","commit_stats":null,"previous_names":["satsinush/word-games"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/satsinush/word-games","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/satsinush%2Fword-games","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/satsinush%2Fword-games/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/satsinush%2Fword-games/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/satsinush%2Fword-games/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/satsinush","download_url":"https://codeload.github.com/satsinush/word-games/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/satsinush%2Fword-games/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","dungleon","entropy","letter-boxed","mastermind","probability","qt","spelling-bee","word-frequency","wordle"],"created_at":"2026-01-16T14:50:08.206Z","updated_at":"2026-01-16T14:50:13.213Z","avatar_url":"https://github.com/satsinush.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Puzzle++ 🧩\n\n**Advanced word game and puzzle solver created in C++**\n\nA comprehensive C++ application that solves multiple popular word puzzles and games with both GUI and command-line interfaces. Supports interactive solving, automated batch processing, and entropy-based game assistance.\n\n-----\n\n## Features\n\n* **Multiple Game Solvers**: Letter Boxed, Spelling Bee, Wordle, Mastermind, Hangman, and Dungleon\n* **Dual Interface**: Qt-based GUI and full-featured command-line interface\n* **Interactive \u0026 Automated Modes**: User-guided solving or scriptable batch processing\n* **Entropy-Based Suggestions**: Advanced algorithms for optimal move recommendations\n* **Configurable Solvers**: Multiple presets and custom options for performance tuning\n* **Output Management**: Save results to files, read previous solutions, benchmarking tools\n\n-----\n\n## Installation \u0026 Building\n\n### 1. Windows GUI (Recommended)\n\nFor the best Windows experience, use the Installer from the latest GitHub Release:\n\n[Download the latest installer](https://github.com/satsinush/word-games/releases/latest)\n\nThis installer bundles the GUI and required runtimes so no separate Qt or compiler setup is needed.\n\n* **No Setup Required:** No need to install Qt or compilers.\n* **Easy Access:** The installer creates an application shortcut in your Start Menu which can be used to launch the main application with the GUI.\n* **Uninstall:** Easily removable via Windows \"Add or Remove programs\".\n\n### 2. Building from Source\n\nIf you are on Linux/macOS, or prefer to build from source on Windows, follow the instructions below.\n\n**Requirements:**\n\n* **C++ Compiler**: Supports C++20 (GCC 10+, Clang 10+, MSVC 2019+)\n* **CMake**: Version 3.16 or later\n* **Qt Framework**: Version 6.0+ (Only required if building the GUI)\n\n#### Preparation\n```bash\ngit clone \u003crepository-url\u003e\ncd word-games\n```\n\n#### Option A: Core Build Only (CLI)\n\nFor a lightweight build with **no GUI dependency** (command-line interface only), you can build using the core preset. This requires only a C++ compiler and CMake.\n\n```bash\n# Build using the core preset (No Qt required)\ncmake --preset mingw-core\ncmake --build --preset mingw-core\n\n# Run the application (Interactive Mode)\ncd build/mingw-core\n./p++\n```\n\n*Note: Since there is no GUI, running the executable directly enters interactive CLI mode.*\n\n#### Option B: Full Build (GUI + CLI)\n\nTo build the full application with the GUI, you must have Qt 6 installed.\n\n*Note: You may need to adjust the CMake presets (`CMakePresets.json`) to point to your specific Qt installation paths.*\n\n```bash\n# Build using the release preset (Requires Qt)\ncmake --preset mingw-release\ncmake --build --preset mingw-release\n\n# Run the application\ncd build/mingw-release\n./p++\n```\n\n-----\n\n## Quick Start\n\n### Interactive Mode\n\nIf you installed via the Windows Installer, simply launch **Puzzle++** from your Start Menu.\n\nIf using the CLI, run the executable directly:\n\n```bash\n./p++ -i\n```\n\n### Direct Command Examples\n\n```bash\n# Solve Letter Boxed puzzle\n./p++ letterboxed --letters abcdefghijkl --preset 2\n\n# Solve Spelling Bee with custom letters\n./p++ spellingbee --letters nyhacked --reuse-letters true\n\n# Get Wordle suggestions\n./p++ wordle --guesses \"CRANE 01120\" --max-depth 1\n\n# Mastermind solver assistance\n./p++ mastermind --guesses \"RGBC 1 2\" --pegs 4 --colors \"RGBCMY\"\n\n# Hangman letter suggestions\n./p++ hangman --input \"?A??? ???;etz\"\n```\n\n## Complete Documentation\n\nFor comprehensive usage instructions, all command-line options, game modes, and detailed examples, see:\n\n**📖 [Complete Usage Guide](./docs/usage.md)**\n\nThe usage guide covers:\n\n  * All supported game modes and solvers\n  * Complete command-line reference\n  * Advanced configuration options\n  * Benchmarking and performance tools\n  * Boolean value formats and examples\n\n-----\n\n## Licensing\n\nThe source code for this project is licensed under the **MIT License**. See the `LICENSE` file for details.\n\n### Third-Party Dependencies\n\nThis project uses several third-party libraries with their respective licenses:\n\n  * **Qt Framework**: **LGPLv3 License** - See `LICENSE-QT` for full license text. Qt source code is available at the [official Qt website](https://www.qt.io/download-open-source). To enable relinking against a modified Qt library, the full source code for this application and its build scripts (CMake files) are provided here.\n  * **Tracy Profiler**: **3-Clause BSD License** - Used for optional performance profiling support (development dependency).\n  * **Google Test**: **3-Clause BSD License** - Used for unit testing framework (development dependency).\n  * **Google Benchmark**: **Apache License 2.0** - Used for performance benchmarking (development dependency).\n\nAll third-party dependencies are automatically fetched during the CMake build process and do not need to be installed separately.\n\n### Game Assets\n\n  * **Dungleon Images**: The character and item images in `resources/dungleon/` are sourced from the official [Dungleon website](https://www.dungleon.com/) and are used in this puzzle solver implementation.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsatsinush%2Fword-games","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsatsinush%2Fword-games","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsatsinush%2Fword-games/lists"}