OpenRCT2/test/testpaint/Printer.hpp

30 lines
1021 B
C++
Raw Normal View History

2016-10-16 21:15:40 +02:00
/*****************************************************************************
* Copyright (c) 2014-2018 OpenRCT2 developers
2016-10-16 21:15:40 +02:00
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
2016-10-16 21:15:40 +02:00
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
2016-10-16 21:15:40 +02:00
*****************************************************************************/
#pragma once
#include "FunctionCall.hpp"
2016-10-17 00:13:46 +02:00
#include "SegmentSupportHeightCall.hpp"
2018-06-22 22:29:03 +02:00
#include "SideTunnelCall.hpp"
#include <string>
#include <vector>
2016-10-16 21:15:40 +02:00
2018-06-22 22:29:03 +02:00
namespace Printer
{
std::string PrintFunctionCall(function_call call, uint16_t baseHeight);
2018-06-22 22:29:03 +02:00
std::string PrintFunctionCalls(std::vector<function_call> calls, uint16_t baseHeight);
2016-10-17 00:13:46 +02:00
std::string PrintSegmentSupportHeightCalls(std::vector<SegmentSupportCall> calls);
2016-10-17 11:57:41 +02:00
std::string PrintSideTunnelCalls(TunnelCall tunnelCalls[4][4]);
2016-10-17 12:22:15 +02:00
std::string PrintHeightOffset(uint16_t height, uint16_t baseHeight);
2018-06-22 22:29:03 +02:00
} // namespace Printer