Free, open-source, game engine and a 3D sandbox.

Related tags

Game sge_source
Overview

Work-in-Progress The official "early alpha" release should be available around April 2021

SGEEngine

SGEEngine is an open source (MIT License), C++ centric game engine and 3D sandbox. Aimed as simple projects, SGEEngine is suitable for small games, game jams, learning, personal projects and can be used as a basis for your own game engine.

alt text

alt textalt text alt textalt text

The main features of the engine are:

  • Cross platform working on Windows and GNU/Lunix.

  • Scene editor for 3D and pseudo 2D scenes. Having all common.features like transform, tools, property editor, undo/redo, curve editing and more.

  • C++ hot reloading.

  • Direct3D 11 and OpenGL 3.3 (with WebGL in mind) rendering backends possible.

  • Physics.

  • Path finding.

  • Importing external assets like FBX, DAE and OBJ (with Autodesk FBX SDK)

  • Rich math library.

  • Timeline animations.

anim_aanim_hello.mp4

2210545169dc35f6df4587bfc08a7d56cc5110d1

Roadmap:

  • Flexible rendering pipeline.
  • Web builds with Emscripten.
  • OSX builds.
  • Audio.
  • Better Particle Systems.
  • Better Inverse Kinematics.

Philosophy

SGEEngine strives to be simple to use, debug and modify. It is aimed at simpler games and application, however this does not stop you to extend it and build more complex ones.

Unlike other games engines, SGEEngine does not use the popular entity-component-system (or its derivatives). Instead it takes the classic game object approach - base game actor type that can expose its functionally with interfaces (called Traits). Traits are similar to components in Unity, however they are known in compile time. This means that for each different game object type you will construct a small Actor type that will have the desired traits.

The engine comes with commonly used actors pre-built, like: static/dynamic obstacles, lights, level blocking actors, cameras, lights, navmeshes and others.

Building

SGEEngine uses CMake as main, build system. Getting the engine running should be straightforward.

Minimum supported version of CMake is 3.14. Importing 3D models requires the usage of Autodesk FBX SDK 2020.0.1 or later. Compiling SGEEngine without it is possible however you would not be able to import FBX, DAE and OBJ files. Autodesk FBX SDK is not needed for your final game it is used only as tool.

Here is a screenshot describing how to configure SGEEngine: alt text

You might also like...
Rogy-Engine- - My 3D game engine source code.
Rogy-Engine- - My 3D game engine source code.

Rogy-Engine Development My 3D game engine. (NOT THE FINAL VERSION- Windows only) Features: PBR shading and reflection probes with parallax correction.

Open-source, cross-platform, C++ game engine for creating 2D/3D games.

GamePlay v3.0.0 GamePlay is an open-source, cross-platform, C++ game framework/engine for creating 2D/3D mobile and desktop games. Website Wiki API De

KlayGE is a cross-platform open source game engine with plugin-based architecture.

KlayGE KlayGE is a cross-platform open source game engine with plugin-based architecture. It's started since 2003. The explicit goal of KlayGE is: to

MIT Licensed Open Source version of Torque 2D game engine from GarageGames
MIT Licensed Open Source version of Torque 2D game engine from GarageGames

We've moved! All torque engines have moved to a new organization, Torque Game Engines. Torque2D can be found at https://github.com/TorqueGameEngines/T

Ducktape is an Open source Light weight 2d Game Engine that gives utmost priority to user convenience.
Ducktape is an Open source Light weight 2d Game Engine that gives utmost priority to user convenience.

Ducktape is an Open source Light weight 2d Game Engine that gives utmost priority to user convenience. It is written in c++ and uses SFML and Box2d for graphics and physics respectively.

SnaX Game Engine - Open Source
SnaX Game Engine - Open Source

SnaX Game Engine License SnaX Game Engine - https://github.com/snaxgameengine/snax Licensed under the MIT License http://opensource.org/licenses/MIT.

Free Heroes of Might and Magic II (fheroes2) is a recreation of HoMM2 game engine.
Free Heroes of Might and Magic II (fheroes2) is a recreation of HoMM2 game engine.

Free Heroes of Might and Magic II (fheroes2) is a recreation of HoMM2 game engine.

Free, cross-platform 2D game engine powered by Haxe and OpenFL
Free, cross-platform 2D game engine powered by Haxe and OpenFL

flixel | addons | ui | demos | tools | templates | docs | haxeflixel.com Links Here are the most important links to get you started with HaxeFlixel: G

SameBoy DX is a Qt-based interface of SameBoy, a free, highly accurate Game Boy and Game Boy Color emulator.

SameBoy DX SameBoy DX is a Qt-based interface of SameBoy, a free, highly accurate Game Boy and Game Boy Color emulator. Build requirements: CMake Pyth

Comments
  • Add a way do duplicate a material in game

    Add a way do duplicate a material in game

    Add a way do duplicate a material in game.

    This is useful as some game objects want to change their material properties, maybe the actor was hit and we want to make it blink in red.

    opened by ongamex 0
  • AudioAsset should not contain any internal state about the playback.

    AudioAsset should not contain any internal state about the playback.

    AudioAsset should not contain any internal state about the playback.

    Currently, the AudioAsset class contains a Vorbis decoder, that decodes and keeps track of the progress of the track while playing. This makes it impossible to have the same asset played multiple times at once with the current API.

    Instead, we should have another object that handles the AudioAsset (more specifically the class AudioTrack) and its progress.

    enhancement 
    opened by ongamex 0
  • The comment in CMake

    The comment in CMake "#Do not link with our SDL2, Emscripten has it's own." is incomplete and doesn't provide good explanation.

    The comment in CMake "#Do not link with our SDL2, Emscripten has it's own." is incomplete and doesn't provide good explanation.

    The reasoning why we do not explicitly link with SDL2 (and without source controlled version of SDL2) is because we tell the emscripten compiler via a compiler flag "-s USE_SDL=2" to add its own version SDL2 and force link with it.

    We want to use the SDL2 version from emscripten as it appears to be the popular way of doing this.

    opened by ongamex 0
  • Translation and Rotation gizmo should be able to operate with local and/or world oriented transforms.

    Translation and Rotation gizmo should be able to operate with local and/or world oriented transforms.

    Translation and Rotation gizmo should be able to operate with local and/or world oriented transforms.

    Transform gizmo currently operates only in world space, making some local space manipulations tedious. Rotation gizmo currently operates only in local space, making it tedious to orient lights.

    enhancement 
    opened by ongamex 0
Owner
ongamex
ongamex
MAZE (My AmaZing Engine) - 🎮 Personal open-source cross-platform game engine

MAZE (My AmaZing Engine) is the self-written open-source cross-platform game engine in the active development stage. At the moment it is my main pet project, developed for the purpose of learning and preserving different game dev technologies.

Dmitriy Nosov 13 Dec 14, 2022
Improved version of the X-Ray Engine, the game engine used in the world-famous S.T.A.L.K.E.R. game series by GSC Game World.

OpenXRay OpenXRay is an improved version of the X-Ray Engine, the game engine used in the world-famous S.T.A.L.K.E.R. game series by GSC Game World. S

null 2.2k Jan 1, 2023
OpenMW is an open-source open-world RPG game engine that supports playing Morrowind.

OpenMW is an open-source open-world RPG game engine that supports playing Morrowind.

null 4.5k Jan 2, 2023
Amazon Lumberyard is a free AAA game engine deeply integrated with AWS and Twitch – with full source.

Amazon Lumberyard Amazon Lumberyard is a free, AAA game engine that gives you the tools you need to create high quality games. Deeply integrated with

Amazon Web Services 1.9k Dec 26, 2022
Cytopia is a free, open source retro pixel-art city building game with a big focus on mods.

Cytopia is a free, open source retro pixel-art city building game with a big focus on mods. It utilizes a custom isometric rendering engine based on SDL2.

CytopiaTeam 1.6k Dec 30, 2022
GlslViewer is a flexible console-base OpenGL Sandbox to display 2D/3D GLSL shaders without the need of an UI

GlslViewer is a flexible console-base OpenGL Sandbox to display 2D/3D GLSL shaders without the need of an UI

Patricio Gonzalez Vivo 3.8k Dec 26, 2022
Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU

Panda3D Panda3D is a game engine, a framework for 3D rendering and game development for Python and C++ programs. Panda3D is open-source and free for a

Panda3D 3.6k Dec 31, 2022
CLUSEK-RT is a complex game engine written in C++ and the successor of the CLUSEK game engine

CLUSEK-RT is a complex game engine written in C++ and the successor of the CLUSEK game engine. This engine has been designed with a cross-platform design in mind. Thanks to Vulkan API it delivers a next-gen experience with ray tracing to both Linux and Windows platforms

Jakub Biliński 48 Dec 29, 2022
Ground Engine is an easy to use Game Engine for 3D Game Development written in C++

Ground Engine is an easy to use Game Engine Framework for 3D Game Development written in C++. It's currently under development and its creation will b

 PardCode 61 Dec 14, 2022
This is a list of different open-source video games and commercial video games open-source remakes.

This is a list of different open-source video games and commercial video games open-source remakes.

Ivan Bobev 173 Jan 2, 2023