Game game = Game.getGame();
int turn = game.getTurn();
Nation activeNation = game.getActiveNation();
Nation currNation = (gameData == null ? null : gameData.getNation());
Text text = new Text(g, 5, 15);
text.write("Turn: " + turn + INFORMATION_SEPARATOR);
if (activeNation == null) {
text.write("No nation active.");
} else {
text.write("Nation ");
Color activeNationColor = session.getNationColor(activeNation.getID());
text.write(activeNation.getName(), activeNationColor);
text.write(" is active.");
}
}