|
OpenTTD Source 20251117-master-g7398d2e290
|
Functionality for NewGRF badges. More...
#include "stdafx.h"#include "newgrf.h"#include "newgrf_badge.h"#include "newgrf_badge_type.h"#include "newgrf_spritegroup.h"#include "stringfilter_type.h"#include "strings_func.h"#include "timer/timer_game_calendar.h"#include "table/strings.h"#include "safeguards.h"Go to the source code of this file.
Data Structures | |
| class | Badges |
| Global state for badge definitions. More... | |
| struct | BadgeScopeResolver |
| Resolver for a badge scope. More... | |
| struct | BadgeResolverObject |
| Resolver of badges. More... | |
Functions | |
| std::span< const Badge > | GetBadges () |
| Get a read-only view of badges. | |
| std::span< const BadgeID > | GetClassBadges () |
| Get a read-only view of class badge index. | |
| static BadgeClassID | GetOrCreateBadgeClass (BadgeID index) |
| Assign a BadgeClassID to the given badge. | |
| void | ResetBadges () |
| Reset badges to the default state. | |
| Badge & | GetOrCreateBadge (std::string_view label) |
| Register a badge label and return its global index. | |
| Badge * | GetBadge (BadgeID index) |
| Get a badge if it exists. | |
| Badge * | GetBadgeByLabel (std::string_view label) |
| Get a badge by label if it exists. | |
| Badge * | GetClassBadge (BadgeClassID class_index) |
| Get the badge for a badge class index. | |
| uint32_t | GetBadgeVariableResult (const GRFFile &grffile, std::span< const BadgeID > badges, uint32_t parameter) |
| Test for a matching badge in a list of badges, returning the number of matching bits. | |
| void | MarkBadgeSeen (BadgeID index, GrfSpecFeature feature) |
| Mark a badge a seen (used) by a feature. | |
| void | AppendCopyableBadgeList (std::vector< BadgeID > &dst, std::span< const BadgeID > src, GrfSpecFeature feature) |
| Append copyable badges from a list onto another. | |
| void | ApplyBadgeFeaturesToClassBadges () |
| Apply features from all badges to their badge classes. | |
| PalSpriteID | GetBadgeSprite (const Badge &badge, GrfSpecFeature feature, std::optional< TimerGameCalendar::Date > introduction_date, PaletteID remap) |
| Get sprite for the given badge. | |
Variables | |
| static constexpr char | BADGE_CLASS_SEPARATOR = '/' |
| Separator to identify badge classes from a label. | |
| static Badges | _badges = {} |
| Static instance of badge state. | |
Functionality for NewGRF badges.
Definition in file newgrf_badge.cpp.
| void AppendCopyableBadgeList | ( | std::vector< BadgeID > & | dst, |
| std::span< const BadgeID > | src, | ||
| GrfSpecFeature | feature | ||
| ) |
Append copyable badges from a list onto another.
Badges must exist and be marked with the Copy flag.
| dst | Destination badge list. |
| src | Source badge list. |
| feature | Feature of list. |
Definition at line 250 of file newgrf_badge.cpp.
References Copy, Badge::features, Badge::flags, GetBadge(), BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::Set(), and BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::Test().
Referenced by FinaliseEngineArray().
| void ApplyBadgeFeaturesToClassBadges | ( | ) |
Apply features from all badges to their badge classes.
Definition at line 267 of file newgrf_badge.cpp.
References Badge::features, Badge::flags, GetBadges(), GetClassBadge(), HasText, and BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::Set().
Referenced by FinaliseBadges().
Get a badge if it exists.
| index | Index of badge. |
Definition at line 113 of file newgrf_badge.cpp.
References _badges, and Badges::specs.
Referenced by AddBadgeClassesToConfiguration(), AppendCopyableBadgeList(), DrawBadgeColumn(), DrawBadgeNameList(), NewGRFInspectWindow::DrawMainPanelWidget(), GetClassBadge(), MarkBadgeSeen(), ResetBadgeClassConfiguration(), SetBadgeFilter(), and UsedBadgeClasses::UsedBadgeClasses().
| Badge * GetBadgeByLabel | ( | std::string_view | label | ) |
Get a badge by label if it exists.
| label | Label of badge. |
Definition at line 124 of file newgrf_badge.cpp.
References _badges, Badge::label, and Badges::specs.
Referenced by FinaliseBadges().
| std::span< const Badge > GetBadges | ( | ) |
Get a read-only view of badges.
Definition at line 40 of file newgrf_badge.cpp.
References _badges, and Badges::specs.
Referenced by ApplyBadgeFeaturesToClassBadges(), BadgeTextFilter::BadgeTextFilter(), and NWidgetBadgeFilter::GetDropDownList().
| PalSpriteID GetBadgeSprite | ( | const Badge & | badge, |
| GrfSpecFeature | feature, | ||
| std::optional< TimerGameCalendar::Date > | introduction_date, | ||
| PaletteID | remap | ||
| ) |
Get sprite for the given badge.
| badge | Badge being queried. |
| feature | GRF feature being used. |
| introduction_date | Introduction date of the item, if it has one. |
| remap | Palette remap to use if the flag is company-coloured. |
0 if not available. Definition at line 285 of file newgrf_badge.cpp.
References Badge::flags, BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::Test(), and UseCompanyColour.
Referenced by DrawBadgeColumn(), and NWidgetBadgeFilter::GetDropDownList().
| uint32_t GetBadgeVariableResult | ( | const GRFFile & | grffile, |
| std::span< const BadgeID > | badges, | ||
| uint32_t | parameter | ||
| ) |
Test for a matching badge in a list of badges, returning the number of matching bits.
| grffile | GRF file of the current varaction. |
| badges | List of badges to test. |
| parameter | GRF-local badge index. |
Definition at line 225 of file newgrf_badge.cpp.
References GRFFile::badge_list.
Referenced by AirportScopeResolver::GetVariable(), AirportTileScopeResolver::GetVariable(), VehicleScopeResolver::GetVariable(), HouseScopeResolver::GetVariable(), IndustriesScopeResolver::GetVariable(), IndustryTileScopeResolver::GetVariable(), ObjectScopeResolver::GetVariable(), RoadStopScopeResolver::GetVariable(), and StationScopeResolver::GetVariable().
| Badge * GetClassBadge | ( | BadgeClassID | class_index | ) |
Get the badge for a badge class index.
| class_index | Index of the badge class. |
Definition at line 137 of file newgrf_badge.cpp.
References _badges, Badges::classes, and GetBadge().
Referenced by AddBadgeDropdownFilters(), ApplyBadgeFeaturesToClassBadges(), DrawBadgeNameList(), NWidgetBadgeFilter::GetDropDownList(), GUIBadgeClasses::GUIBadgeClasses(), HandleBadgeConfigurationDropDownClick(), and UsedBadgeClasses::UsedBadgeClasses().
| std::span< const BadgeID > GetClassBadges | ( | ) |
Get a read-only view of class badge index.
Definition at line 49 of file newgrf_badge.cpp.
References _badges, and Badges::classes.
Referenced by AddBadgeClassesToConfiguration(), and ResetBadgeClassConfiguration().
| Badge & GetOrCreateBadge | ( | std::string_view | label | ) |
Register a badge label and return its global index.
| label | Badge label to register. |
Definition at line 82 of file newgrf_badge.cpp.
References _badges, BADGE_CLASS_SEPARATOR, Badge::class_index, GetOrCreateBadge(), GetOrCreateBadgeClass(), Badge::label, and Badges::specs.
Referenced by GetOrCreateBadge().
|
static |
Assign a BadgeClassID to the given badge.
| index | Badge ID of badge that should be assigned. |
Definition at line 59 of file newgrf_badge.cpp.
References _badges, and Badges::classes.
Referenced by GetOrCreateBadge().
| void MarkBadgeSeen | ( | BadgeID | index, |
| GrfSpecFeature | feature | ||
| ) |
Mark a badge a seen (used) by a feature.
Definition at line 236 of file newgrf_badge.cpp.
References Badge::features, GetBadge(), and BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::Set().
Referenced by ReadBadgeList().
| void ResetBadges | ( | ) |
Reset badges to the default state.
Definition at line 72 of file newgrf_badge.cpp.
References _badges.
Referenced by ResetNewGRFData().
|
static |
Static instance of badge state.
Definition at line 34 of file newgrf_badge.cpp.
Referenced by GetBadge(), GetBadgeByLabel(), GetBadges(), GetClassBadge(), GetClassBadges(), GetOrCreateBadge(), GetOrCreateBadgeClass(), ResetBadges(), and UsedBadgeClasses::UsedBadgeClasses().
|
staticconstexpr |
Separator to identify badge classes from a label.
Definition at line 24 of file newgrf_badge.cpp.
Referenced by GetOrCreateBadge().