Files
@ r28459:d9958d470fd0
Branch filter:
Location: cpp/openttd-patchpack/source/src/screenshot.h - annotation
r28459:d9958d470fd0
1.7 KiB
text/x-c
Fix: Viewport virt coords not updated when sprite font toggled (#11784)
r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r9111:983de9c5a848 r6420:01087f989fd1 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r6247:96e840dbefcc r5475:3f5cd13d1b63 r17721:d580fdad4b98 r5475:3f5cd13d1b63 r13621:89482295b0bb r6248:b940b09d7ab8 r18836:7086ab2fae75 r19849:42900960d059 r18836:7086ab2fae75 r18836:7086ab2fae75 r18836:7086ab2fae75 r18836:7086ab2fae75 r24013:7aef36e1d964 r6248:b940b09d7ab8 r5475:3f5cd13d1b63 r27737:728d55b97775 r17719:2ad091e01480 r24282:dbf80d461c25 r27737:728d55b97775 r24013:7aef36e1d964 r5475:3f5cd13d1b63 r25468:f59ee36e2847 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r27499:c532a2c27509 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 | /*
* This file is part of OpenTTD.
* 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.
* 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.
* 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/>.
*/
/** @file screenshot.h Functions to make screenshots. */
#ifndef SCREENSHOT_H
#define SCREENSHOT_H
void InitializeScreenshotFormats();
const char *GetCurrentScreenshotExtension();
/** Type of requested screenshot */
enum ScreenshotType {
SC_VIEWPORT, ///< Screenshot of viewport.
SC_CRASHLOG, ///< Raw screenshot from blitter buffer.
SC_ZOOMEDIN, ///< Fully zoomed in screenshot of the visible area.
SC_DEFAULTZOOM, ///< Zoomed to default zoom level screenshot of the visible area.
SC_WORLD, ///< World screenshot.
SC_HEIGHTMAP, ///< Heightmap of the world.
SC_MINIMAP, ///< Minimap screenshot.
};
void SetupScreenshotViewport(ScreenshotType t, struct Viewport *vp, uint32_t width = 0, uint32_t height = 0);
bool MakeHeightmapScreenshot(const char *filename);
void MakeScreenshotWithConfirm(ScreenshotType t);
bool MakeScreenshot(ScreenshotType t, std::string name, uint32_t width = 0, uint32_t height = 0);
bool MakeMinimapWorldScreenshot();
extern std::string _screenshot_format_name;
extern uint _num_screenshot_formats;
extern uint _cur_screenshot_format;
extern std::string _full_screenshot_path;
#endif /* SCREENSHOT_H */
|