OpenRCT2/src/openrct2/object/FootpathObject.h

56 lines
1.6 KiB
C
Raw Normal View History

2016-06-25 18:09:56 +02:00
/*****************************************************************************
2020-07-21 15:04:34 +02:00
* Copyright (c) 2014-2020 OpenRCT2 developers
2016-06-25 18:09:56 +02:00
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
2016-06-25 18:09:56 +02:00
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
2016-06-25 18:09:56 +02:00
*****************************************************************************/
#pragma once
2018-01-11 10:59:26 +01:00
#include "../world/Footpath.h"
2018-06-22 23:03:20 +02:00
#include "Object.h"
2016-06-25 18:09:56 +02:00
class FootpathObject final : public Object
2016-06-25 18:09:56 +02:00
{
private:
rct_footpath_entry _legacyType = {};
PathSurfaceDescriptor _pathSurfaceDescriptor = {};
PathSurfaceDescriptor _queueSurfaceDescriptor = {};
PathRailingsDescriptor _pathRailingsDescriptor = {};
2016-06-25 18:09:56 +02:00
public:
2018-06-22 23:03:20 +02:00
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;
2016-06-25 18:09:56 +02:00
void Load() override;
void Unload() override;
2018-06-22 23:03:20 +02:00
void DrawPreview(rct_drawpixelinfo* dpi, int32_t width, int32_t height) const override;
2016-06-25 18:09:56 +02:00
};