/***************************************************************************** * Copyright (c) 2014-2025 OpenRCT2 developers * * For a complete list of all authors, please refer to contributors.md * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2 * * OpenRCT2 is licensed under the GNU General Public License version 3. *****************************************************************************/ #pragma once #include "Location.hpp" #include #include struct TileElement; struct MapAnimation { uint8_t type{}; CoordsXYZ location{}; }; enum { MAP_ANIMATION_TYPE_RIDE_ENTRANCE, MAP_ANIMATION_TYPE_QUEUE_BANNER, MAP_ANIMATION_TYPE_SMALL_SCENERY, MAP_ANIMATION_TYPE_PARK_ENTRANCE, MAP_ANIMATION_TYPE_TRACK_WATERFALL, MAP_ANIMATION_TYPE_TRACK_RAPIDS, MAP_ANIMATION_TYPE_TRACK_ONRIDEPHOTO, MAP_ANIMATION_TYPE_TRACK_WHIRLPOOL, MAP_ANIMATION_TYPE_TRACK_SPINNINGTUNNEL, MAP_ANIMATION_TYPE_REMOVE, MAP_ANIMATION_TYPE_BANNER, MAP_ANIMATION_TYPE_LARGE_SCENERY, MAP_ANIMATION_TYPE_WALL_DOOR, MAP_ANIMATION_TYPE_WALL, MAP_ANIMATION_TYPE_COUNT }; void MapAnimationCreate(int32_t type, const CoordsXYZ& loc); void MapAnimationInvalidateAll(); const std::vector& GetMapAnimations(); void ClearMapAnimations(); void MapAnimationAutoCreate(); void MapAnimationAutoCreateAtTileElement(TileCoordsXY coords, TileElement* el); void ShiftAllMapAnimations(CoordsXY amount);