dartemis_builder 0.3.1 copy "dartemis_builder: ^0.3.1" to clipboard
dartemis_builder: ^0.3.1 copied to clipboard

A builder for use with dartemis to generate code that initializes EntitySystems and Managers.

dartemis_builder #

Build Status Coverage Status Pub

A builder for dartemis to create the code necessary to initialize Managers, Mappers and EntitySystems.

Usage #

Add dartemis_builder as a dev_dependency:

dart pub add --dev dartemis_builder

Add the part statement to your library and the @Generate annotation on a Manager or EntitySystem and run build_runner.

part 'filename.g.dart';

@Generate(
  EntityProcessingSystem,
  allOf: [
    Position,
    Velocity,
  ],
)
class SimpleMovementSystem extends _$SimpleMovementSystem {
  @override
  void processEntity(int entity, Position position, Velocity velocity) {    
    position
      ..x += velocity.x * world.delta
      ..y += velocity.y * world.delta;
  }
}

A live template for systems and managers in WebStorm can be useful, for example:

@Generate($BASE_SYSTEM$)
class $CLASS_NAME$System extends _$$$CLASS_NAME$System {
}

And for the part-part:

part '$filename$.g.dart';

Features and bugs #

Please file feature requests and bugs at the issue tracker.

1
likes
120
pub points
6%
popularity

Publisher

unverified uploader

A builder for use with dartemis to generate code that initializes EntitySystems and Managers.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

analyzer, build, build_config, dartemis, source_gen

More

Packages that depend on dartemis_builder