Add: allow making heightmap screenshot via console
[openttd-github.git] / src / newgrf_debug.h
blob34530dc759be9b800f11011bdb224c7f665cae86
1 /*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
8 /** @file newgrf_debug.h Functions/types related to NewGRF debugging. */
10 #ifndef NEWGRF_DEBUG_H
11 #define NEWGRF_DEBUG_H
13 #include "newgrf.h"
14 #include "core/smallvec_type.hpp"
15 #include "tile_type.h"
16 #include "vehicle_type.h"
18 /** Current state of spritepicker */
19 enum NewGrfDebugSpritePickerMode {
20 SPM_NONE,
21 SPM_WAIT_CLICK,
22 SPM_REDRAW,
25 /** Spritepicker of SpriteAligner */
26 struct NewGrfDebugSpritePicker {
27 NewGrfDebugSpritePickerMode mode; ///< Current state
28 void *clicked_pixel; ///< Clicked pixel (pointer to blitter buffer)
29 std::vector<SpriteID> sprites; ///< Sprites found
32 extern NewGrfDebugSpritePicker _newgrf_debug_sprite_picker;
34 bool IsNewGRFInspectable(GrfSpecFeature feature, uint index);
35 void ShowNewGRFInspectWindow(GrfSpecFeature feature, uint index, const uint32 grfid = 0);
36 void InvalidateNewGRFInspectWindow(GrfSpecFeature feature, uint index);
37 void DeleteNewGRFInspectWindow(GrfSpecFeature feature, uint index);
39 GrfSpecFeature GetGrfSpecFeature(TileIndex tile);
40 GrfSpecFeature GetGrfSpecFeature(VehicleType type);
42 void ShowSpriteAlignerWindow();
44 #endif /* NEWGRF_DEBUG_H */