Thanks to visit codestin.com
Credit goes to github.com

Skip to content

MonsieurBleu/Vulpine-Engine

Repository files navigation

Light, modular and smart as a fox!

Vulpine Engine


Vulpine is a free and open-source game engine built in C++. It aims to provide powerful yet lightweight tools for creating games and interactive environments, featuring a unique take on hierarchical ECS and modding-oriented asset streaming.

Follow us on   Blue Sky     Youtube

General Features

  • 3D scene management
  • Skeletal animation
  • Clustered lighting
  • Terrain rendering
  • Input management and player controllers
  • Built-in debug and benchmarking tools
  • Custom geometry file format optimized for fast loading, compression, and decompression
  • Custom JSON-like language designed to be easy to edit and highly efficient to parse
  • Several image loading formats supported, including JPG, PNG, TIFF, GIF, KTX, EXR, and HDR
  • 3D sound system powered by the OpenAL Soft project
  • Asset conversion tools powered by the ASSIMP project
  • Full Lua scripting support, including user-made bindings and multithreaded support, powered by the SOL2 project

Unique features

Modular Entity Groupping

Game logic in Vulpine is handled through a unique Modular Entity Grouping module, designed to combine the modularity of ECS-based game logic with fully customizable object graph relationships and manipulation. This system can be used to create content-aware level manipulation, logic and optimization.

Asset Management

A wise fox never loses what it values.

Vulpine uses a custom Asset Manager that references all assets by their name, ensuring that no paths are required for anything from shader includes to textures. If it's in there, Vulpine will find it! This system also keeps track of all loaded assets and avoids loading the same asset multiple times. Modding support is also fully implemented, giving the ability to create or add anything easily and manage the importance order of every mod. Everything that Vulpine loads can be modded at will.

Planned Features

  • Pathfinding
  • Cascaded shadow maps
  • Procedural texture generation tools
  • Improved controller support
  • Game implementation example using the tools and ECS created for the Sanctia project

Project Built With Vulpine

Portability & Dependencies

The Vulpine Engine is supported for Windows and Linux environment with OpenGL 4.6 compatiblity.

This application uses different libraries :

Instalation & usage

Important modules :

Project structure recommended with Vulpine :

my-project/
├── Game/
│   ├── data/
│   ├── saves/
│   ├── shader/  <===== VESL submodule
│   └── Game.exe
├── Engine/      <===== Vulpine Engine submodule
├── include/
│   └── Game.hpp
├── obj/
│   └── Game.o
├── src/
│   └── Game.cpp
├── Makefile
└── main.cpp

About

Lightweight Code-Based 3D Game Engine

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 5

Languages