liberty-engine 0.0.14-beta.3

Simple, fast and modern 2D/3D engine.


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

LibertyEngine

Description:

A powerful 2D/3D engine written in the D programming language!

D compiler versions supported:
  • DMD 2.080.1
Operating systems supported:
  • Windows 10 x86 (32-bits)
  • Windows 10 x64 (64-bits)
Graphics APIs supported:
  • OpenGL 4.5 (Windows)
Cool features:
  • Tree-based scene (every node is created and registered to the engine with "spawn" or "spawnOnce" templates, "new" is never used in this case).
  • Every native script is optimized at compile time. So if you don't define "start", "update", "process" functions, the code for its every frame call is never inserted in the final object file.
  • All "start" methods are invoked after all scene objects are instantiated. If you want to do something at construction time, you should use @Constructor attribute.

Instructions:

  • To build an example go to LibertyEngine\examples\Simple3DScene and run the bat files.
  • To run it, go to the bin/platform/executable.
  • You need Visual C++ SDK for Windows 10 to build the x64 version.

Example:

module example;

import liberty.engine;

mixin(NativeServices);

void initScene() {
    auto mainScene = new Scene("MainScene");
    mainScene.tree.spawn!Player("Player", false);
    mainScene.register();
}

final class Player : Actor {
    
    mixin(NodeServices);
    
    override void start() {
        spawn!Camera("Camera").position(0.0f, 0.0f, 3.0f);
        scene.activeCamera = child!Camera("Camera");
    }
    
    override void update(in float deltaTime) {
        Logger.get.info("Updating...");
    }
}

Future plans:

  • LibertyStudio with project templates
  • Dynamic scripts loader
  • VR/AR capabilities
  • Multithreading systems
  • Other platforms support
  • Vulkan API Wrapper
  • HTML5 with WebAssembly Support
  • Real-Time Ray Tracing

Do not use this framework in production until version 0.1 (scheduled for Q2 2019) is released!

Authors:
  • Gabriel Gheorghe
Dependencies:
derelict-util, derelict-gl3, derelict-fi, derelict-assimp3, derelict-sdl2
Versions:
0.0.15 2018-Oct-28
0.0.15-rc.1 2018-Oct-28
0.0.15-beta.2 2018-Oct-27
0.0.15-beta.1 2018-Oct-24
0.0.14 2018-Jul-08
Show all 9 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 1 downloads this month

  • 110 downloads total

Score:
0.0
Short URL:
liberty-engine.dub.pm