Skip to content

3D engine made during the CreativeJam 2018

License

Notifications You must be signed in to change notification settings

Ashijo/ice-engine-3d

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Imgur

Ice Engine 3D

A C++ 3D engine with OpenGL

Description

This is a 3D game engine made from scratch for the CreativeJam 2018. We had 46h to create a full game, and here is barely the engine :p . There is a little demo though! Run the given executable (Linux only) and test it. You don't have much other goals than moving around.. (Best gamplay ever!) But wait, everting was made from scratch! (Or almost, we use OpenGL, glfw, and, fortunately, we were not required to create the computer by our own) You may enjoy the beautiful handmade lighting (Phong Illumination algorithm). The physic engine runs at 45fps, however, rendering loop appends as fast as possible. This is good news if your living room is cold, since the engine will use 100% of one cpu to heat your computer (And then the room). After a while, you may be able to cook some bacon on your computer, but we didn't try in practice.

Features

  • Engine
    • Subsystems
      • TimeManager
      • MeshManager
      • TextureManager
      • InputManager
      • WindowGLFW
    • Camera
    • Game
    • Texture
    • Mesh
  • Gameplay
    • GameObject
      • Update
      • FixedUpdate
    • GamePhysic
  • Shaders
    • Phong Illumination (With PointLight)
  • Demo (Move with AWDS)

Engine built-in demo

  • Move the light with A W D S
  • Walls push you away
  • Nothing more to do (It's only a demo)

Dependencies

  • OpenGL 3.3
  • glfw3
  • glm (Already in code)
  • glad (Already in code)

Build / Run with CMake (Linux only)

Requires C++11. Requires "pragma once" support

mkdir build
cd build
cmake ..
make -j4
make run

Screenshots

Imgur Imgur Imgur Imgur

Authors

About

3D engine made during the CreativeJam 2018

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 77.7%
  • C 20.2%
  • Objective-C 1.7%
  • Other 0.4%