1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00
Files
OpenRCT2/src/openrct2/object/FootpathObject.h
Matt 6335c31336 Rename DrawPixelInfo to RenderTarget (#24339)
* Begin backend separation, rename type DrawingPixelInfo to RenderTarget

* Rename dpi variables to rt
2025-05-04 22:06:46 +00:00

59 lines
1.6 KiB
C++

/*****************************************************************************
* 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 "../world/Footpath.h"
#include "FootpathEntry.h"
#include "Object.h"
class FootpathObject final : public Object
{
private:
FootpathEntry _legacyType = {};
PathSurfaceDescriptor _pathSurfaceDescriptor = {};
PathSurfaceDescriptor _queueSurfaceDescriptor = {};
PathRailingsDescriptor _pathRailingsDescriptor = {};
public:
static constexpr ObjectType kObjectType = ObjectType::paths;
void* GetLegacyData() override
{
return &_legacyType;
}
const void* GetLegacyData() const
{
return &_legacyType;
}
const PathSurfaceDescriptor& GetPathSurfaceDescriptor() const
{
return _pathSurfaceDescriptor;
}
const PathSurfaceDescriptor& GetQueueSurfaceDescriptor() const
{
return _queueSurfaceDescriptor;
}
const PathRailingsDescriptor& GetPathRailingsDescriptor() const
{
return _pathRailingsDescriptor;
}
void ReadLegacy(IReadObjectContext* context, OpenRCT2::IStream* stream) override;
void ReadJson(IReadObjectContext* context, json_t& root) override;
void Load() override;
void Unload() override;
void DrawPreview(RenderTarget& rt, int32_t width, int32_t height) const override;
};