17 #include <core/stringify.h> 18 #include <core/tournament.h> 19 #include <core/simple_tournament.h> 20 #include <core/swiss_tournament.h> 33 inline auto customStringify(core::TypeTag<TournamentType>) {
35 { TournamentType::Simple,
"simple" },
36 { TournamentType::Swiss,
"swiss" },
49 switch (variant.
tag()) {
50 case TournamentType::Simple:
52 case TournamentType::Swiss:
55 FATAL(
"Unexpected tournament type");
Tournament configurations.
Definition: tournament_implementations.h:42
SwissTournamentConfig swiss_tournament
Variant case for TournamentType::Swiss.
Definition: tournament_implementations.h:44
SimpleTournament configuration.
Definition: simple_tournament.h:24
SwissTournament configuration.
Definition: swiss_tournament.h:24
TAG tag() const
The tag value indicating the active PropertySet case.
Definition: properties.h:202
TournamentType
Tournament type.
Definition: tournament_implementations.h:28
SimpleTournamentConfig simple_tournament
Variant case for TournamentType::Simple.
Definition: tournament_implementations.h:43
unique_ptr< Tournament > create(const TournamentVariant &variant)
Concrete tournament factory.
Definition: tournament_implementations.h:48
A variant type (tagged-union) with PropertySet fields.
Definition: properties.h:194
Handles types with a fixed, known set of values (enumerations for example)
Definition: stringify.h:85
A basic tournament implementation.
const Stringify< T > * stringify()
Returns the stringifier for type T.
Definition: stringify.h:166
Reusable tournament implementations.
Definition: simple_tournament.cpp:20