Skip to content

Simple trivia application written in C++

License

Notifications You must be signed in to change notification settings

Spookyless/trivia-night

Repository files navigation

Trivia Night

Answering a question

Simple trivia application written in C++, using Open Trivia Database Free API to query questions.

Table of Contents

Features

  • Cross-platform support (Windows and Linux)
  • Adjustable game settings
  • Interactive, colorful CLI interface
  • End-of-game statistics
  • Over 5000 different questions

[ back to top ]

Running the application

It's really simple - all you have to do is to download a prebuilt binary (or build your own if you're brave enough), then execute the program.

Use the arrow keys to move around, and Enter to Confirm.

[ back to top ]

Screenshots

Main menu Settings Starting a game Answering a question End-of-game statistics

[ back to top ]

Libraries Used

[ back to top ]

Building from scratch

  1. Clone the repository
$ git clone https://github.com/Spookyless/trivia-night.git
  1. Install the dependencies and properly link them by modifying CMakeLists.txt

  2. Navigate to the project root and build the app

$ cd trivia-night
$ cmake .
$ make

[ back to top ]

License

This project is licensed using MIT license.

[ back to top ]

Acknowledgements

  • Open Trivia Database for providing a Free API with many customization options and large database of questions!

[ back to top ]