mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-25 15:54:31 +01:00
* Replace 2020 with 2022 Replace all 2020 headers with 2022 * replace other years with 2022 add missing years
66 lines
2.3 KiB
C++
66 lines
2.3 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2022 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.
|
|
*****************************************************************************/
|
|
|
|
#include "../interface/Viewport.h"
|
|
#include "../ride/TrackPaint.h"
|
|
#include "Paint.h"
|
|
|
|
paint_struct* PaintAddImageAsParentRotated(
|
|
paint_session& session, const uint8_t direction, const ImageId& imageId, const CoordsXYZ& offset,
|
|
const CoordsXYZ& boundBoxSize, const CoordsXYZ& boundBoxOffset)
|
|
{
|
|
if (direction & 1)
|
|
{
|
|
return PaintAddImageAsParent(
|
|
session, imageId, { offset.y, offset.x, offset.z }, { boundBoxSize.y, boundBoxSize.x, boundBoxSize.z },
|
|
{ boundBoxOffset.y, boundBoxOffset.x, boundBoxOffset.z });
|
|
}
|
|
|
|
return PaintAddImageAsParent(session, imageId, offset, boundBoxSize, boundBoxOffset);
|
|
}
|
|
|
|
paint_struct* PaintAddImageAsParentRotated(
|
|
paint_session& session, const uint8_t direction, const ImageId& image_id, const CoordsXYZ& offset,
|
|
const CoordsXYZ& boundBoxSize)
|
|
{
|
|
if (direction & 1)
|
|
{
|
|
return PaintAddImageAsParent(
|
|
session, image_id, { offset.y, offset.x, offset.z }, { boundBoxSize.y, boundBoxSize.x, boundBoxSize.z });
|
|
}
|
|
|
|
return PaintAddImageAsParent(session, image_id, offset, boundBoxSize);
|
|
}
|
|
|
|
paint_struct* PaintAddImageAsChildRotated(
|
|
paint_session& session, const uint8_t direction, const ImageId& image_id, const CoordsXYZ& offset,
|
|
const CoordsXYZ& boundBoxSize, const CoordsXYZ& boundBoxOffset)
|
|
{
|
|
if (direction & 1)
|
|
{
|
|
return PaintAddImageAsChild(
|
|
session, image_id, { offset.y, offset.x, offset.z }, { boundBoxSize.y, boundBoxSize.x, boundBoxSize.z },
|
|
{ boundBoxOffset.y, boundBoxOffset.x, boundBoxOffset.z });
|
|
}
|
|
|
|
return PaintAddImageAsChild(session, image_id, offset, boundBoxSize, boundBoxOffset);
|
|
}
|
|
|
|
void paint_util_push_tunnel_rotated(paint_session& session, uint8_t direction, uint16_t height, uint8_t type)
|
|
{
|
|
if (direction & 1)
|
|
{
|
|
paint_util_push_tunnel_right(session, height, type);
|
|
}
|
|
else
|
|
{
|
|
paint_util_push_tunnel_left(session, height, type);
|
|
}
|
|
}
|