Skip to content

vrglab/LowpEngine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

License Releases Issues

LowpEngine

C++/C# based Game Engine, fully free and open source.

list of Projects

  1. Core (C++): This is the core engine.
  2. PhysicsEngine (C++): The Physics engine, uses both ODE and Box2D to handle diffrent Physics contexts
  3. RenderingEngine (C++): Our own cross-platform Rendering Engine
  4. SoundEngine (C++): The Engine in charge of handling audio systems (Multibackend: OpenAL, Fmod ...)
  5. ScriptingEngine (C++): The main engine handeling C# scripting
  6. EngineCommons (C++): All of the code shared between diffrent (C++) projects.
  7. Launcher(C++): The main launcher. (the executable to launch the game basically)
  8. AassetsEngine(C++): The main engine in charge of asset controll
  9. EventEngine(C++): Our own multi-purpose event system
  10. SceneEngine(C++): The engine in charge of loading pre-defined scenes (states) (This engine contain things such as: Object and component instancing, prefabs ...)
  11. LowpEngine(C#): This is our C# Api all games made with the engine will have to drive from this api to comunicate/use engine based features

Building/IDE Envoirment Generation

Clone the project using git clone [email protected]:vrglab/LowpEngine.git and Run the Generate this should generate the default IDE envoirment

Windows

On windows running the Generate.bat file should by default create Visual Studio Comunity 2022 project files and using Visual Studio you should be able to just build the project.

Linux

On linux running the Generate.sh file in the console using sh,should by default create Gmake2 files and by running the make command in the bash with a config= of your chosing (you can see the configs by opening the generated Makefile), you should be able to build the project

Currently Supported features

This are all of the feature that are already fully or partially implemented into the Project

  1. Cross-Platform Rendering (OpenGl, Vulkan, DirectX12, Metal.)
  2. Asset Controll.
  3. Game object/Component system.
  4. Scene Management
  5. Engine Customization.
  6. Built in Audio system (OpenAL, Fmod, Wwise).

Planned to Support

this are all feature i plan on supporting (that i can remember right now)

  1. Bash based executables.
  2. Customizable Asset importer.
  3. 2D/3D.
  4. 3D model loading.
  5. Physics 2D/3D.
  6. Particles.
  7. Indexed Rendering.
  8. Mesh batching.
  9. Builtin base components.
  10. Multiplatform building (Consoles, Phones, Computers).