
What is Nidhogg Engine?

Nidhogg Engine is a university project of the 3rd year of the career of GDD(video Game Design and Development) from the CITM made by two students in Terrassa(Spain), were we made a 3D Game Engine in C++. We've made this Engine for the UPC assignment Game Engines. Our main goal was to create a basic but functional tool to create 3d games with openGL and SDL. The engine consists in an editor were you can add and eddit gameobjects with meshes and textures, a resource manager which is really useful to manage all the assets used in the project and a system to serialize and save all the information stored in a scene and load it afterwards. We also added the first of many subsystems an engine can have, which is a physics engine, more information about it is detailed below.
Showcase
Who are we?
We are two students from CITM Terrassa who had created the Nidhogg Engine. Here you can click on our names to go to our github accounts.
Pol de la Torre Solé:
- Game Controls and time management (Play/Pause/Stop...), Editor Camera, ViewPort, Module Editor, Vehicle controller, collider types, graphic designer, user experience.

Albert Garcia Belerda:
- 3D models import, Materials and texture systems, Resource management system, Constraints and basic collision system, GameObjects structure and components, Scene Scerialitzation, hot reload, culling and mouse picking.

Main core subsystems
This Engine has 5 main core subsystems: - GameObjects & Components core: in charge of the management of all the objects in the engine. This core controls the addition and deletion of all the gameOjbects on the world. Every GameObject parameter can be controlled through the GameObjects inspector and hierarchy. Every GameObjects has his owns components, there are three types: Mesh, Transforms, Collider and Material. - UI core: in charge of the management of all HUD of the Engine. This core, like the GameObjects core, can control the addition, deletion and edition of it's elements. You can monitorize the performance of the engine, edit the theme, edit the window mode, etc. - Serialitzation core: With the serialitzation module we can save our scene information, so this way we can save our progress so later we can load it again on the engine. Same goes for the play and stop system, which uses this module to save the scene when pressign play so it can go back to it's previous state when pressing stop. - Resource Manager core: We have a main module to deal with the resources were we check the assets from the assets folder, create custom files in the library folder and avoid loading the same asset two times because of its reference counting system. - Importer core: With the imoprter module we can import and change some options of the images and models we import into the engine.Physics core:
For the physics we have integrated the Bullet library into the Editor, now all GameObjects can create a collider component which will use the physics from Bullet, there are 3 different types of colliders to choose (capsuel, sphere, box), you can also delete any collider component from a GameObject and create another. When creating a collider you can decide it's mass or make it a collider sensor, which detects collisions but is unaffected by any force. There's also the option to create it as a static body, which affects the other bodys but is unaffected by external forces.
