EmergentOrganization/cell-rpg

View on GitHub
core/src/io/github/emergentorganization/cellrpg/core/entityfactory/builder/EntityBuilder.java

Summary

Maintainability
A
1 hr
Test Coverage

Method checkForMissingBuilders has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

    private void checkForMissingBuilders(ArrayList<IComponentBuilder> builders, Entity entity, boolean verbose) {
        Bag<Component> components = entity.getComponents(new Bag<Component>());
        for (Component component : components) {
            String cName = component.getClass().getName();
            if (!verbose && ignoredComponentBuilders.contains(component.getClass())) {

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method build has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    public Entity build() {
        // called at the end of the builder chain, this actually builds and returns the entity
        // using the properties specified using the setter methods.
        Collections.sort(builders, new BuilderComparator());
        Entity entity = world.createEntity(archetype);

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

There are no issues that match your filters.

Category
Status