...

/

Tracking the Progress of the Wordz Game

Tracking the Progress of the Wordz Game

Explore the principles of game progress tracking and refactoring using TDD techniques.

Designing game progress tracker

The next design decisions concern the expected outcome of starting a new game for a player. There are two things that need to be recorded:

  • The selected word that the player attempts to guess.

  • That we expect their first guess next.

The selected word and current attempt number will need to persist somewhere. We’ll use the repository pattern to abstract that. Our repository will need to manage some domain objects. Those objects will have the single responsibility of tracking our progress in a game.

Selecting class names and responsibilities

We already see a benefit of TDD in terms of rapid design feedback. We haven’t written too much code yet, but already, it seems like the new class needed to track game progress would best be called class Game. However, we already have a Game class, which is responsible for starting a new game. TDD is providing feedback on our design—that our names and responsibilities are mismatched.

We must choose one of the following options to proceed:

  • Keep our existing class Game as it is. Call this new class something else, such as Progress or Attempt.

  • Change ...