Skip to content

Dependency Injection for game settings - #3

Open
simon123h wants to merge 2 commits into
mainfrom
refactor-inject-settings
Open

Dependency Injection for game settings#3
simon123h wants to merge 2 commits into
mainfrom
refactor-inject-settings

Conversation

@simon123h

Copy link
Copy Markdown
Member

The settings are currently implemented as a global data structure. In consequence, many methods rely on the global structure being present, i.e., they are poorly modularized.

This PR uses dependency injection (DI) to inject a Settings object into every method that wants to use any property from the settings. This increases testability of the methods by implementing a loose coupling between the settings data structure and the consuming methods.

This PR will also ultimately solve the issue where a powerup can change settings permanently if the game is cancelled before the timeout of the powerup can reset the game setting. Steps to reproduce: Let a tank pickup the MultiplierBonus powerup which increases the rate of powerups occurring. Hit the "Next Map" button. The rate of powerups occurring is permanently increased.
This issue will be solved when every instance of Game has their own settings object, copied at Game creation time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant