nuclibs / Nuc

Lightweight Cross-platform 2D game framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nuc is a lightweight cross-platform, 2d game framework.
Build on top of Kha framework using Haxe language.

Installation

  • Install Kha

  • Init Kha Project

  • Clone Nuc to your project folder:

     git clone https://github.com/nuclibs/Nuc.git
  • Open khafile.js from your project folder and add this lines:

     let p = new Project("New Project");
    
     await p.addProject("Nuc");
    
     p.addSources("Sources");
     p.addShaders("Shaders");
     p.addAssets(
     	"Assets/**",
     	{
     		nameBaseDir: "Assets", 
     		destination: "Assets/{dir}/{name}", 
     		name: "{dir}/{name}", 
     		noprocessing: true, 
     		notinlist: true
     	}
     );
    
     resolve(p);

Minimal example

import nuc.Resources;
import nuc.Window;
import nuc.events.AppEvent;
import nuc.events.RenderEvent;
import nuc.graphics.SpriteBatch;
import nuc.graphics.Camera;
import nuc.graphics.Texture;

class Game {

	var camera:Camera;
	var sb:SpriteBatch;
	var parrotImage:Texture;

	public function new() {
		Resources.loadAll(
			[
				'parrot.png'
			], 
			ready
		);
	}

	function ready() {
		App.on(AppEvent.UPDATE, update);
		App.on(RenderEvent.RENDER, render);

		camera = new Camera(Window.width, Window.height);
		camera.clearColor = new Color(0.2, 0.2, 0.2, 1.0);

		sb = new SpriteBatch();

		parrotImage = Resources.getTexture('parrot.png');
	}

	function update(elapsed:Float) {

	}
		
	function render(e:RenderEvent) {
		camera.begin();

		sb.drawImage(parrotImage);

		camera.end();
	}
	
}

This framework is in development and is not ready for production.
I'm using it for my own projects and if you like this project and you want to contribute, feel free to do so.

About

Lightweight Cross-platform 2D game framework

License:zlib License


Languages

Language:Haxe 93.8%Language:C 5.7%Language:GLSL 0.2%Language:Shell 0.2%Language:JavaScript 0.2%