3Dzavr is yet another 3D engine for C++ that uses SDL as multimedia framework.
Initially this project was created as a Proof Of Concept in implementing custom CPU render from scratch.
Gradually, 3dzavr became more like a very simple version of big engines like Godot, Unity or Unreal.
Our goal is to create light and easy to use/study/contribute Open Source and free engine, which anyone can access and use in whatever purposes.
But the main goal is to have fun! You are welcome to use and contribute!
Main functionality:
- Operations with vectors, matrices, triangles etc
- Projections from 3D on 2D plane, movement and rotation of camera and meshes
- The custom light component system
- The system of attachments and hierarchy tree
- Advanced smooth animations by using Bézier curves for meshes and camera
- Collision detection (GJK) and resolution (EPA)
- Resource manager and other useful utils
- Update apt packet manager:
sudo apt update
- Install gcc and c++ compilers:
sudo apt install gcc
andsudo apt install g++
- Install SDL2:
sudo apt-get install libsdl2-dev
- Install SDL 2 TTF (for working with fonts and text):
sudo apt install libfreetype6-dev libsdl2-ttf-dev libsdl2-ttf-2.0-0 -y;
- Install libpng library:
sudo apt-get install libpng-dev
- Install pkg-config:
sudo apt-get install -y pkg-config
- Clone this repository into the folder you want to work with:
git clone https://github.com/vectozavr/3dzavr
- Install CLion:
sudo snap install clion --classic
- Build and run the project.
- Install make:
brew install make
- Go into the engine folder:
cd 3dzavr
- Run make utility:
cmake .
- Compile the project:
make
- Run the compiled project:
./3dzavr
-
Install brew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-
Install developer tools:
xcode-select --install
-
Install SDL 2:
brew install sdl2
-
Install SDL 2 TTF (for working with fonts and text):
brew install sdl2_ttf
-
Install libpng library:
brew install libpng
-
Clone this repository into the folder you want to work with:
git clone https://github.com/vectozavr/3dzavr
- Download and Install CLion:
brew install clion
- Build and run the project.
- Install make:
brew install make
- Go into the engine folder:
cd 3dzavr
- Run make utility:
cmake .
- Compile the project:
make
- Run the compiled project:
./3dzavr
TODO: Needs to be written