Methods Summary |
---|
public void | newCharacter(CharacterEvent ce)
// Previous character not typed correctly - 1 point penalty
if (ce.source == generator.get()) {
scoreAchar.setCharacterUpdateScore(ce.character);
setScore();
}
// If character is extraneous - 1 point penalty
// If character does not match - 1 point penalty
else if (ce.source == typist.get()) {
scoreAchar.processCharacter(ce.character);
setScore();
}
|
public void | resetGenerator(CharacterSource newGenerator)
CharacterSource oldGenerator;
if (newGenerator != null)
newGenerator.addCharacterListener(this);
oldGenerator = generator.getAndSet(newGenerator);
if (oldGenerator != null)
oldGenerator.removeCharacterListener(this);
|
public void | resetScore()
scoreAchar.set(0, -1);
setScore();
|
public void | resetTypist(CharacterSource newTypist)
CharacterSource oldTypist;
if (newTypist != null)
newTypist.addCharacterListener(this);
oldTypist = typist.getAndSet(newTypist);
if (oldTypist != null)
oldTypist.removeCharacterListener(this);
|
private void | setScore()
// This method will be explained later in chapter 7
SwingUtilities.invokeLater(new Runnable() {
public void run() {
setText(Integer.toString(scoreAchar.getScore()));
}
});
|