# Released under the MIT License. See LICENSE for details.#"""Score related functionality."""from__future__importannotationsfromenumimportEnum,uniquefromdataclassesimportdataclassfromtypingimportTYPE_CHECKINGifTYPE_CHECKING:importbascenev1
[docs]@uniqueclassScoreType(Enum):"""Type of scores."""SECONDS='s'MILLISECONDS='ms'POINTS='p'
[docs]@dataclassclassScoreConfig:"""Settings for how a game handles scores."""label:str='Score'"""A label show to the user for scores; 'Score', 'Time Survived', etc."""scoretype:bascenev1.ScoreType=ScoreType.POINTS"""How the score value should be displayed."""lower_is_better:bool=False"""Whether lower scores are preferable. Higher scores are by default."""none_is_winner:bool=False"""Whether a value of None is considered better than other scores. By default it is not."""version:str=''"""To change high-score lists used by a game without renaming the game, change this. Defaults to an empty string."""
# Docs-generation hack; import some stuff that we likely only forward-declared# in our actual source code so that docs tools can find it.fromtypingimport(Coroutine,Any,Literal,Callable,Generator,Awaitable,Sequence,Self)importasynciofromconcurrent.futuresimportFuture