OpenTTD Source 20241224-master-gf74b0cf984
|
Functions/types related to NewGRF debugging. More...
Go to the source code of this file.
Data Structures | |
struct | NewGrfDebugSpritePicker |
Spritepicker of SpriteAligner. More... | |
Enumerations | |
enum | NewGrfDebugSpritePickerMode { SPM_NONE , SPM_WAIT_CLICK , SPM_REDRAW } |
Current state of spritepicker. More... | |
Functions | |
bool | IsNewGRFInspectable (GrfSpecFeature feature, uint index) |
Can we inspect the data given a certain feature and index. | |
void | ShowNewGRFInspectWindow (GrfSpecFeature feature, uint index, const uint32_t grfid=0) |
Show the inspect window for a given feature and index. | |
void | InvalidateNewGRFInspectWindow (GrfSpecFeature feature, uint index) |
Invalidate the inspect window for a given feature and index. | |
void | DeleteNewGRFInspectWindow (GrfSpecFeature feature, uint index) |
Delete inspect window for a given feature and index. | |
GrfSpecFeature | GetGrfSpecFeature (TileIndex tile) |
Get the GrfSpecFeature associated with the tile. | |
GrfSpecFeature | GetGrfSpecFeature (VehicleType type) |
Get the GrfSpecFeature associated with the vehicle. | |
void | ShowSpriteAlignerWindow () |
Show the window for aligning sprites. | |
Variables | |
NewGrfDebugSpritePicker | _newgrf_debug_sprite_picker |
The sprite picker. | |
Functions/types related to NewGRF debugging.
Definition in file newgrf_debug.h.
Current state of spritepicker.
Definition at line 18 of file newgrf_debug.h.
void DeleteNewGRFInspectWindow | ( | GrfSpecFeature | feature, |
uint | index | ||
) |
Delete inspect window for a given feature and index.
The index is normally an in-game location/identifier, such as a TileIndex or an IndustryID depending on the feature we want to inspect.
feature | The feature we want to delete the window for. |
index | The index/identifier of the feature to delete. |
Definition at line 729 of file newgrf_debug_gui.cpp.
References CloseWindowById(), GetInspectWindowNumber(), GSF_INVALID, InvalidateWindowData(), WC_LAND_INFO, and WC_NEWGRF_INSPECT.
Referenced by CmdMoveRailVehicle(), CmdRemoveSingleRail(), DoClearTownHouseHelper(), ReallyClearObjectTile(), RemoveAirport(), RemoveFromRailBaseStation(), RemoveRoadStop(), RemoveRoadWaypointStop(), Town::~Town(), and Vehicle::~Vehicle().
GrfSpecFeature GetGrfSpecFeature | ( | TileIndex | tile | ) |
Get the GrfSpecFeature associated with the tile.
tile | The tile to get the feature from. |
Definition at line 763 of file newgrf_debug_gui.cpp.
References GetStationType(), GetTileType(), GSF_INVALID, IsLevelCrossing(), MP_HOUSE, MP_INDUSTRY, MP_OBJECT, MP_RAILWAY, MP_ROAD, and MP_STATION.
Referenced by NIHVehicle::GetParent(), LandInfoWindow::IsNewGRFInspectable(), VehicleViewWindow::IsNewGRFInspectable(), LandInfoWindow::ShowNewGRFInspectWindow(), VehicleViewWindow::ShowNewGRFInspectWindow(), and Vehicle::~Vehicle().
GrfSpecFeature GetGrfSpecFeature | ( | VehicleType | type | ) |
Get the GrfSpecFeature associated with the vehicle.
type | The vehicle type to get the feature from. |
Definition at line 789 of file newgrf_debug_gui.cpp.
References GSF_INVALID, VEH_AIRCRAFT, VEH_ROAD, VEH_SHIP, and VEH_TRAIN.
void InvalidateNewGRFInspectWindow | ( | GrfSpecFeature | feature, |
uint | index | ||
) |
Invalidate the inspect window for a given feature and index.
The index is normally an in-game location/identifier, such as a TileIndex or an IndustryID depending on the feature we want to inspect.
feature | The feature we want to invalidate the window for. |
index | The index/identifier of the feature to invalidate. |
Definition at line 713 of file newgrf_debug_gui.cpp.
References GetInspectWindowNumber(), GSF_INVALID, InvalidateWindowData(), and WC_NEWGRF_INSPECT.
Referenced by Train::ConsistChanged().
bool IsNewGRFInspectable | ( | GrfSpecFeature | feature, |
uint | index | ||
) |
Can we inspect the data given a certain feature and index.
The index is normally an in-game location/identifier, such as a TileIndex or an IndustryID depending on the feature we want to inspect.
feature | The feature we want to inspect. |
index | The index/identifier of the feature to inspect. |
Definition at line 751 of file newgrf_debug_gui.cpp.
References GetFeature(), GetInspectWindowNumber(), NIFeature::helper, and NIHelper::IsInspectable().
Referenced by ShowNewGRFInspectWindow().
void ShowNewGRFInspectWindow | ( | GrfSpecFeature | feature, |
uint | index, | ||
const uint32_t | grfid | ||
) |
Show the inspect window for a given feature and index.
The index is normally an in-game location/identifier, such as a TileIndex or an IndustryID depending on the feature we want to inspect.
feature | The feature we want to inspect. |
index | The index/identifier of the feature to inspect. |
grfid | GRFID of the item opening this window, or 0 if not opened by other window. |
Definition at line 695 of file newgrf_debug_gui.cpp.
References GetInspectWindowNumber(), IsNewGRFInspectable(), and NewGRFInspectWindow::SetCallerGRFID().
void ShowSpriteAlignerWindow | ( | ) |
Show the window for aligning sprites.
Definition at line 1213 of file newgrf_debug_gui.cpp.
Referenced by MenuClickHelp().
|
extern |
The sprite picker.
Definition at line 51 of file newgrf_debug_gui.cpp.
Referenced by SpriteAlignerWindow::DrawWidget(), GfxBlitter(), HandleMouseEvents(), SpriteAlignerWindow::OnClick(), and SpriteAlignerWindow::OnInvalidateData().