Skip to content

Rendering and simulation of the 3D solar system using C++17, modern OpenGL and GLSL shaders

Notifications You must be signed in to change notification settings

salepape/solar-system-simulation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Solar System Simulation

Introduction

Here is a simulation of the Solar System in 3D! This project mainly originates from a strong interest in the Universe that surrounds us, and Graphics programming. I familiarised myself with the OpenGL specification and some classic Rendering techniques. The development of this project is still ongoing...

Technologies

The project is using Visual Studio 17 and Windows 10 environment. It has been implemented in C++17/GLSL, uses OpenGL 4.6 (Core profile) specification, as well as a set of libraries:

  • Glad to get Core OpenGL function pointers,
  • GLFW3 to initialise a window and handle user input,
  • GLM for mathematical utility functions,
  • SOIL2 to load textures in different formats,
  • Assimp to load 3D models,
  • FreeType to render 2D text characters.

Content

The simulation contains the following celestial bodies:

  • the Sun,
  • the 8 planets of the Solar System,
  • 10 dwarf planets (some of them not unanimously considered as such by the scientific community),
  • 3 ring systems (the ones in the visible spectrum),
  • 30 spherical moons,
  • 3 belts (Asteroid and Kuiper ones, plus the Scattered Disc),
  • Milky Way in background.

P.S. For most distant celestial bodies, information can be hard to find, so texture maps are fictionnal, and chosen according to the photometry analysis presented in astrophysical research papers.

Features

The codebase is structure similarly to an object-oriented 3D game engine, which is decoupled from the proper Solar System simulation. Below are the main features implemented:

  • Celestial bodies in motion according to real data, with adjustable speed, along approximated circular orbits,
  • Fly-Camera/Controller/Input system with zoom using GLFW3 for an intuitive exploration,
  • Geometric meshes computations, including a cubemap for the Skybox, and a model loader for asteroids and planet rings using Assimp,
  • Mesh blending according to their distance to the camera,
  • 3D Mesh Renderer, including instanced rendering to draw the belts efficiently,
  • 2D Text renderer for celestial body names using FreeType,
  • Phong Illumination model done on the GPU via shaders, for all objects of the scene, using a point light acting as the Sun.

Comments within the codebase describe more specifically how it works (algorithmics, decisions taken etc...)

Setup

Project is available on Windows only, on OS architecture x32 and x64.

You can either clone the repository to your computer, or unzip the corresponding .zip folder after downloading it (it will be called solar-system-simulation-master). Then:

  • If you just want to run the program, pick the executable OpenGLProject.exe you need according to your OS architecture (stored in OpenGLProject/Output/Release/Win32 or x64/), and drag it to the project main folder (called OpenGLProject/OpenGLProject) before double-clicking on it (otherwise it won't work, the program stating that it didn't find ASSIMP library),
  • If you want to run the code, you need to have Visual Studio 17 installed, then go to the project main folder, open OpenGLProject.sln solution, choose the architecture/configuration you want, and click on the green arrow button to launch the simulation.

The execution of the program should require around 5 seconds in Release mode, and 10 seconds in Debug mode before starting. Enjoy!

P.S. If Avast antivirus gives you a warning that there is a threat while the simulation is starting, just ignore it: my program is safe to use :)

Controls

To be able to explore the Solar System, the user should use the following controls:

  • Z, Q, S, D (for an AZERTY keyboard), left mouse button and right mouse button to move forward, to the left, backward, to the right, up and down respectively,

  • X to increase speed when moving,

  • mouse scroll wheel to zoom in/out,

  • R to spawn the user to the initial location,

  • L to make celestial body names appear above them,

  • F to turn on/off user's flashlight to see regions with poor lighting,

  • Up arrow and down arrow to speed up/slow down the simulation,

  • Space to pause/unpause the simulation,

  • Tab to switch the application to cursor mode (to resize the window easily for instance),

  • Esc to quit the simulation.

P.S. Press Win to background the simulation while it runs.

Resources

About

Rendering and simulation of the 3D solar system using C++17, modern OpenGL and GLSL shaders

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages