DeflatedPickle/FAOSDance

View on GitHub

Showing 178 of 178 total issues

Identical blocks of code found in 2 locations. Consider refactoring.
Open

            gridBagLayout.setConstraints(this, GridBagConstraints().apply {
                gridwidth = GridBagConstraints.REMAINDER
                fill = GridBagConstraints.HORIZONTAL
                weightx = 1.0
            })
src/main/kotlin/com/deflatedpickle/faosdance/gui/settings/general/SpriteCategory.kt on lines 149..153

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 86.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 3 locations. Consider refactoring.
Open

            highSpinner.value = when (T::class) {
                Int::class -> slider.highValue
                Double::class -> slider.highValue.toDouble() / 100
                else -> 0
            }
src/main/kotlin/com/deflatedpickle/faosdance/util/GlobalValues.kt on lines 373..377
src/main/kotlin/com/deflatedpickle/faosdance/util/GlobalValues.kt on lines 468..472

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 86.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Method settings has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

  def settings(panel)
    shake_amount_widgets = FAOSDanceSettings.createOptionInteger(panel, "Shake Amount:", @amount, 42, 1)

    grid_settings = GridBagConstraints.new GridBagConstraints::RELATIVE, GridBagConstraints::RELATIVE,
                                           2, 1,
Severity: Minor
Found in src/main/resources/scripts/shake_extension.rb - About 55 mins to fix

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 settings has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

  def settings(panel)
    opacity_multiplier_widgets = FAOSDanceSettings.createOptionDouble(panel, "Opacity Multiplier:", @opacity_multiplier, 1, 0.1)
    opacity_multiplier_widgets.third.addChangeListener {|it|
      @opacity_multiplier = it.source.to_java(javax::swing::JSpinner).model.value.to_java(java::lang::Float).floatValue
      if @enabled
Severity: Minor
Found in src/main/resources/scripts/blend_extension.rb - About 55 mins to fix

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

Similar blocks of code found in 2 locations. Consider refactoring.
Open

        parent.add(highSpinner, GridBagConstraints().apply {
            fill = GridBagConstraints.HORIZONTAL
            weightx = 0.3
            anchor = GridBagConstraints.EAST
        })
src/main/kotlin/com/deflatedpickle/faosdance/util/GlobalValues.kt on lines 512..516

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 84.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

        parent.add(lowSpinner, GridBagConstraints().apply {
            fill = GridBagConstraints.HORIZONTAL
            weightx = 0.3
            anchor = GridBagConstraints.EAST
        })
src/main/kotlin/com/deflatedpickle/faosdance/util/GlobalValues.kt on lines 521..525

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 84.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 8 locations. Consider refactoring.
Open

            for (i in RubyThread.extensions) {
                if (GlobalValues.isEnabled(i)) {
                    RubyThread.rubyContainer.callMethod(i, "post_draw_sprite", g2D)
                }
            }
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 78..82
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 119..123
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 130..134
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 163..167
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 175..179
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 195..199
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 202..206

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 83.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 8 locations. Consider refactoring.
Open

            for (i in RubyThread.extensions) {
                if (GlobalValues.isEnabled(i)) {
                    RubyThread.rubyContainer.callMethod(i, "pre_draw_sprite", spriteGraphics)
                }
            }
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 78..82
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 130..134
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 139..143
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 163..167
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 175..179
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 195..199
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 202..206

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 83.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 8 locations. Consider refactoring.
Open

        for (i in RubyThread.extensions) {
            if (GlobalValues.isEnabled(i)) {
                RubyThread.rubyContainer.callMethod(i, "pre_draw", g2D)
            }
        }
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 119..123
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 130..134
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 139..143
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 163..167
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 175..179
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 195..199
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 202..206

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 83.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 8 locations. Consider refactoring.
Open

            for (i in RubyThread.extensions) {
                if (GlobalValues.isEnabled(i)) {
                    RubyThread.rubyContainer.callMethod(i, "during_draw_reflection", reflectionGraphics)
                }
            }
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 78..82
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 119..123
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 130..134
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 139..143
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 163..167
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 195..199
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 202..206

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 83.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 8 locations. Consider refactoring.
Open

            for (i in RubyThread.extensions) {
                if (GlobalValues.isEnabled(i)) {
                    RubyThread.rubyContainer.callMethod(i, "during_draw_sprite", spriteGraphics)
                }
            }
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 78..82
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 119..123
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 139..143
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 163..167
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 175..179
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 195..199
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 202..206

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 83.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 8 locations. Consider refactoring.
Open

            for (i in RubyThread.extensions) {
                if (GlobalValues.isEnabled(i)) {
                    RubyThread.rubyContainer.callMethod(i, "post_draw_reflection", g2D)
                }
            }
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 78..82
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 119..123
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 130..134
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 139..143
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 163..167
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 175..179
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 202..206

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 83.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 8 locations. Consider refactoring.
Open

            for (i in RubyThread.extensions) {
                if (GlobalValues.isEnabled(i)) {
                    RubyThread.rubyContainer.callMethod(i, "pre_draw_reflection", reflectionGraphics)
                }
            }
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 78..82
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 119..123
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 130..134
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 139..143
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 175..179
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 195..199
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 202..206

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 83.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 8 locations. Consider refactoring.
Open

        for (i in RubyThread.extensions) {
            if (GlobalValues.isEnabled(i)) {
                RubyThread.rubyContainer.callMethod(i, "post_draw", g2D)
            }
        }
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 78..82
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 119..123
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 130..134
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 139..143
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 163..167
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 175..179
src/main/kotlin/com/deflatedpickle/faosdance/gui/SpritePanel.kt on lines 195..199

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 83.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Method addLabelRangeSliderSpinnerDouble has 7 arguments (exceeds 4 allowed). Consider refactoring.
Open

        parent: Container,
        gridBagLayout: GridBagLayout,
        name: String,
        highValue: Number,
        lowValue: Number,
Severity: Major
Found in src/main/kotlin/com/deflatedpickle/faosdance/util/GlobalValues.kt - About 50 mins to fix

    Method addComponentRangeSliderSpinner has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

            parent: Container,
            gridBagLayout: GridBagLayout,
            component: JComponent,
            highValue: Number,
            lowValue: Number,
    Severity: Major
    Found in src/main/kotlin/com/deflatedpickle/faosdance/util/GlobalValues.kt - About 50 mins to fix

      Method addLabelRangeSliderSpinnerInteger has 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

              parent: Container,
              gridBagLayout: GridBagLayout,
              name: String,
              highValue: Number,
              lowValue: Number,
      Severity: Major
      Found in src/main/kotlin/com/deflatedpickle/faosdance/util/GlobalValues.kt - About 50 mins to fix

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

          def settings(panel)
            increase_widgets = FAOSDanceSettings.createOptionDouble panel, "Increase:", @increase, 1.0, 0.1
            increase_widgets.third.addChangeListener {|it|
              @increase = it.source.to_java(javax::swing::JSpinner).model.value.to_java(java::lang::Float).doubleValue
              if @enabled
        Severity: Minor
        Found in src/main/resources/scripts/spin_extension.rb and 1 other location - About 50 mins to fix
        src/main/resources/scripts/rotate_extension.rb on lines 20..29

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 43.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

          def settings(panel)
            increase_widgets = FAOSDanceSettings.createOptionInteger panel, "Increase:", @increase, 180, 1
            increase_widgets.third.addChangeListener {|it|
              @increase = it.source.to_java(javax::swing::JSpinner).model.value.to_java(java::lang::Float).doubleValue
              if @enabled
        Severity: Minor
        Found in src/main/resources/scripts/rotate_extension.rb and 1 other location - About 50 mins to fix
        src/main/resources/scripts/spin_extension.rb on lines 19..28

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 43.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                optionsMap.getMap("window")!!.getMap("location")!!["x"] = effectiveSize!!.width / 2
        src/main/kotlin/com/deflatedpickle/faosdance/util/GlobalValues.kt on lines 194..194

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 80.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Severity
        Category
        Status
        Source
        Language