Untold Engine Capabilities

  • The Untold Engine is a 3D game engine written in C++ and Metal Graphics (API).
  • The game engine is capable of rendering 3D models with textures/normal maps, Shadows, 3D model animations, Skyboxes.
  • It contains a Digital Asset Importer used to import 3D models from Blender.
  • Is capable of detecting collision between any convex models.
  • It emulates physical forces such as gravity, drag, torque.
  • It makes use of quaternions and dual quaternions for all rotations and translations.
  • It supports fonts, sprites, particle systems and various camera types.

You can download the game engine from Untold Engine.

Click below to became a Github sponsor and support the development of the game engine.

untoldenginehomepage.png

Release Notes


Beta Version v0.0.16 In this version, I implemented an Editor using the ImGui library. I also, implemented a scripting system using the Gravity Scripting Language and improved the workflow of the engine.

Beta Version v0.0.15 I improved the Rendering System. Actually, rewrote most of it to accomodate future implementation for a Render Graph. I also implemented Triple Buffering, a G-Buffer render pass, Shader Hot-Reloading, among other things.

Beta Version v0.0.14 The engine now supports a Scene Manager and Layer entities. I also implemented a Shader Entity, which allows developers to write their own HUD shaders. Group AI Steering Behaviors were also added to the engine, such as Separation, Cohesion, Alignment, and Flocking behaviors. I also fixed an issue with the Normal Maps.

Beta Version v0.0.13

In this version, several issues were fixed. The loading of 3D models was improved. The engine now imports 3D model attributes by reading binary files instead of XML files. The Convex Hull computation was removed. This is now computed offline in the Digital Asset Converter utility. Data to GPU transmission was also improved. Mouse and Keyboard support was also added. And the computed navigation path was improved.

Beta Version v0.0.12

In this version, an Artificial Intelligence System was implemented in the Untold Engine. It contains several Steering Behaviors such as Seek, Arrive, Pursuit, Collision Avoidance, and Wonder. A Navigation System using the A* Pathfinder algorithm was also implemented.

3D characters are also capable of going up and down slopes.

Beta Version v0.0.11

The engine now implements a Camera System which allows the camera to behave as a First Person Camera, Third Person Camera and as a Basic Follow Camera. The Camera Culling was also improved. It now allows the developer set the desired Culling interval. Finally, the Particle System was improved to produce 3D particles. Read More

Beta Version v0.0.10

In this version of the engine, I added support for a wireless game controller. Since, the engine uses the Metal API, the engine is thus capable of running a game on several devices such as iOS and Mac. The video shows a small demo running on my Mac. Read More

In version v0.0.10, I added official support for iOS and Mac platform. I also added support for the "Nimbus" game controller.

Beta Version v0.0.9

The engine implements the GJK algorithm to detect collision. The Collision Detection system worked fine between objects of similar size. However, for disproportionate size objects, i.e., terrain and a cube, the collision algorithm would fail 50% of the time. It took me over two months to improve the collision detection between disproportionate objects. It is not perfect, but it works within constraints. Read More

Beta Version v0.0.8

Substantial memory leaks were happening all over the engine. The leakage was something I could no longer ignore, so this month I focused on fixing this issue. I used Xcode's Instrument app to help me locate the memory leakage throughout the engine. I'm now happy to say that the engine is leakage free. Read More

In version v0.0.8 of the game engine I fixed some memory leakage issues and improved the rendering-ordering algorithm.

Beta Version v0.0.7

This month I decided to scrap the original Particle System I had written back in v0.0.4 and focused on implementing a real Particle System. As the video shows, the engine is capable of creating smoke, explosions, snow and many other particles using its new Particle System. Read More

Added particle system to the engine. The engine can generate smoke, explosions and other particle types.

Beta Version v0.0.6

These past two weeks I've been working on implementing a Frustum Culling algorithm for the engine.

The logic behind a Frustum Culling algorithm is essentially this:

"If the camera does not see the 3D model, then the engine should not render it".

Implementing this logic, allows you to have 100 models in a game, but only 10 or so many models being rendered at any time. Thus, improving the game experience. Read More

Improved the rendering efficiency of the game engine by implemented Frustum Culling + BVH tree algorithm.

Beta Version v0.0.5

In version v0.0.5, I ported the game engine from OpenGL to Apple's Metal API.

Initially, I planned to keep working on the 3D soccer game using v0.0.4 of the engine. However, I decided to port the engine once I saw an Augmented Reality demo. I realized that Augmented Reality (AR) is the future of gaming and it may be a good idea to have this feature available in the engine. However, the AR framework only works with the Metal API; it does not support OpenGL. Read More

This video shows the game engine using the Metal API for its rendering operations. The game engine no longer uses OpenGL.

Beta Version v0.0.4

In this beta version v0.0.4, I implemented a primitive particle system, thus allowing explosion effects to occur once a missile hits the asteroid. I also enabled multi-touch, this allows the spaceship to turn as it speeds up. I also set up collision filters among object types. For example, object A and object B can collide; object A and object C can collide, but any collision among object B and Object C is ignored. Read More

In this beta version v0.0.4, I implemented a primitive particle system, thus allowing explosion effects to occur once a missile hits the asteroid. I also enabled multi-touch, this allows the spaceship to turn as it speeds up. I also set up collision filters among object types. For example, object A and object B can collide; object A and object C can collide, but any collision among object B and Object C is ignored.

Beta Version v0.0.3

In this beta version v0.0.3 of the engine, animations and collision detection can work simultaneously. The BHV algorithm was improved helping the engine make better decisions when pairing up 3D models for collision detection. The MVC (Model-View-Controller) flow of information was also improved. Read More

In this beta version v0.0.3 of the engine, animations and collision detection can work simultaneously. The BHV algorithm was improved helping the engine make better decisions when pairing up 3D models for collision detection. The MVC (Model-View-Controller) flow of information was also improved.

Beta Version v0.0.2

In Beta version v0.0.2, the game engine is capable of detecting collision between any convex models. Emulates physical forces such as gravity, drag, etc. Renders shadows.

Beta Version v0.0.1

In Beta version v0.0.1, the game engine is capable of rendering 3D models with textures/normal maps, animation, skyboxes, fonts, sprites and contains a digital asset importer.


Want to know how everything started?