Introducing Taro: Our Lightweight 3D Game Engine for the Web

Written by cloud9c | Published 2021/03/09
Tech Story Tags: javascript | open-source | software-development | web-development | lightweight-3d-game-engine | 3d-game-engine | taro | programming

TLDRvia the TL;DR App

Feel free to contribute onĀ GitHub!

Taro is an Entity Component System (ECS) engine for web applications, built with three.js and cannon-es. Programming with an ECS can result in code that is more efficient and easier to extend over time.

Features

  • āš›ļø Physics — Full integration with a 3D rigid-body physics engine.
  • šŸ”Œ Entity Component System — Write efficent and extendable code.
  • šŸ”Š Sound — 3D positional sounds built on the Web Audio API.
  • šŸ“œ Scripts — Design game behaviors in JavaScript.
  • ⚔ Performance — Taro is a thin framework on top of three.js.

Getting started

Some common terms within Taro are:
  • entities: an object with a unique ID that can have multiple components attached to it.
  • components: different facets of an entity. ex: geometry, rigidbody, hit points.
  • scenes: a collection of entities and their components.
  • apps: the root container for scenes and other core classes.

Before we start

Before you can use taro.js, you need somewhere to display it:
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My first taro.js app</title>
    <style>
      body { margin: 0; }
    </style>
  </head>
  <body>
    <script src="js/taro.js"></script>
    <script>
      // Our Javascript will go here.
    </script>
  </body>
</html>

Creating an app

Let’s start creating our first app and add the element to our HTML document:
var app = new TARO.App();
document.body.appendChild( app.domElement );

Creating components

Components are objectsĀ that hold data and functions. We can use any way to define them, for example using ES6 class syntax (recommended):
class CubeController {
  init() {
    // fires when the component is attached to an entity
    this.rotation = this.entity.rotation;
  }
  update() {
    // fires once per frame
    this.rotation.x += 0.01;
    this.rotation.y += 0.01;
  }
}
Then we need to register components to use them.
TARO.registerComponent('cubeController', CubeController);

Creating entities

Having our world and some components already defined, let’s create entities and attach these components to them:
var cube = new TARO.Entity('cube');
cube.addComponent('material', { color: 0x00ff00 });
cube.addComponent('geometry', { type: 'box' });
cube.addComponent('cubeController');
var camera = new TARO.Entity('camera');
camera.position.z = 5;
camera.addComponent('camera');
With that, we have just created 2 entities: one with theĀ Material, Geometry andĀ CubeControllerĀ components, and another with just theĀ Camera component. Notice that theĀ GeometryĀ andĀ MaterialĀ components are added with parameter objects. If we didn't use the parameters then the components would use the default values declared in their schemas.

Start!

Now you just need to invokeĀ app.start(), and the app will begin automatically updating every frame:
app.start();

Putting everything together

Congratulations! You have now completed your first taro.js application. It’s simple, you have to start somewhere.
The full code is available below and as an editableĀ live example. Play around with it to get a better understanding of how it works.

Written by cloud9c | https://github.com/Cloud9c/taro
Published by HackerNoon on 2021/03/09