This project is a classic Snake game implemented in the C++ programming language using the OpenGL graphics library. The goal of the project is to demonstrate the basic principles of working with OpenGL and creating an interactive 2D game.
Project objectives:
- Practical application of OpenGL and C++ knowledge.
- Creating a functional and fun game.
- Demonstration of the basics of developing 2D games in C++ using OpenGL.
Keyboard | Action |
---|---|
ESC | Game pause |
W | Move Up |
S | Move Down |
A | Move Left |
D | Move Right |
- CMake: Download and install CMake from the official website: https://cmake.org/download. Add CMake to the PATH environment variable.
- Visual Studio (optional, but recommended for Windows): If you are going to compile a project on Windows, you will need Visual Studio with the C++ compiler installed. You can use the free version of the Community Edition.
- vcpkg: Download and install vcpkg following the instructions on the official website: https://github.com/microsoft/vcpkg. Add vcpkg to the PATH environment variable.
- Clone the repo
git clone https://github.com/dryerem19/SnakeGL
- Navigate to the root directory of the project and run the following command
vcpkg integrate install vcpkg install --recurse
- Open project folder in Visual Studio 2022
- Run build project
- GLAD: OpenGL function loader. Provides platform-independent access to OpenGL functions.
- GLFW 3: Cross-platform windowing library. Handles window creation, input, and OpenGL context management.
- GLM: Math library for graphics software based on the OpenGL.
- Dear ImGui: Immediate Mode GUI library. A simple and efficient way to create in-application user interfaces.
Distributed under the MIT License. See LICENSE.txt
for more information.