@jsrogue/entity-component

0.1.0 • Public • Published

#Entity Component

This is a ECMAScript 2015 (JavaScript/ES6) Entity-styled Component System for roguelikes and other games inspired by Brian Bucklew's IRDC US 2015 Talk.

A Component based approach to games allows you to add functionality without reorganizing your object code to handle new features, and is a popular approach to modern game development.

Install

npm i --save @jsrogue/entity-component

Example

'use strict';

let EC = require('@jsrogue/entity-component');
let Entity = EC.Entity;

class Health extends Component {
    constructor(stats) {
        super(stats);
        this.stats.hp = stats.hp || 10;
        this.addHandler('takeHit', this.onHit, 100);
    }

    setEntity(entity) {
        super.setEntity(entity);
        entity.addStat('hp', this);
    }

    removeEntity(entity) {
        super.removeEntity(entity);
        entity.removeStat('hp');
    }

    onHit(event) {
        this.stats.hp -= event.dmg;
        return event;
    }
}

class Armor extends Component {
    constructor(stats) {
        super(stats);
        this.addHandler('takeHit', this.onHit, 50);
    }

    onHit(event) {
        event.dmg *= .5;
        return event;
    }
}

let person = new Entity();
let health = new Health({hp: 100});
let armor = new Armor();
person.addComponent(health);
person.addComponent(armor);
person.emit('takeHit', {dmg: 2});
for (let stat in person.stats) {
    console.log("%s: %s", stat, person.stats[stat]);
}

Usage

License and Copyright

The MIT License (MIT)

Copyright © 2015 Nathanael C. Fritz

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependents (0)

Package Sidebar

Install

npm i @jsrogue/entity-component

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • fritzy
  • jsrogue