All files / roguelike-engine/src/entities factory.ts

100% Statements 8/8
100% Branches 2/2
100% Functions 1/1
100% Lines 8/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 248x   8x   8x           4x   3x 3x     1x       4x      
import { Entity, type EntityFactoryInterface } from "@jga/games";
 
import { Fungus } from "./fungus";
 
export class EntityFactory implements EntityFactoryInterface {
    // eslint-disable-next-line class-methods-use-this
    public create(id: string, name: string): Entity {
        let newEntity: Entity;
 
        // eslint-disable-next-line sonarjs/no-small-switch
        switch (name) {
            case "Fungus": {
                newEntity = new Fungus(id);
                break;
            }
            default: {
                newEntity = new Entity(id);
            }
        }
 
        return newEntity;
    }
}