2016-10-16 15:15:40 -04:00
|
|
|
/*****************************************************************************
|
2018-06-15 08:07:34 -04:00
|
|
|
* Copyright (c) 2014-2018 OpenRCT2 developers
|
2016-10-16 15:15:40 -04:00
|
|
|
*
|
2018-06-15 08:07:34 -04: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 15:15:40 -04:00
|
|
|
*
|
2018-06-15 08:07:34 -04:00
|
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
2016-10-16 15:15:40 -04:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-10-17 06:42:59 -04:00
|
|
|
#include "FunctionCall.hpp"
|
2016-10-16 18:13:46 -04:00
|
|
|
#include "SegmentSupportHeightCall.hpp"
|
2018-06-22 16:29:03 -04:00
|
|
|
#include "SideTunnelCall.hpp"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2016-10-16 15:15:40 -04:00
|
|
|
|
2018-06-22 16:29:03 -04:00
|
|
|
namespace Printer
|
|
|
|
{
|
2018-06-20 11:28:51 -04:00
|
|
|
std::string PrintFunctionCall(function_call call, uint16_t baseHeight);
|
2018-06-22 16:29:03 -04:00
|
|
|
std::string PrintFunctionCalls(std::vector<function_call> calls, uint16_t baseHeight);
|
2016-10-16 18:13:46 -04:00
|
|
|
|
|
|
|
std::string PrintSegmentSupportHeightCalls(std::vector<SegmentSupportCall> calls);
|
2016-10-17 05:57:41 -04:00
|
|
|
|
|
|
|
std::string PrintSideTunnelCalls(TunnelCall tunnelCalls[4][4]);
|
2016-10-17 06:22:15 -04:00
|
|
|
|
2018-06-20 11:28:51 -04:00
|
|
|
std::string PrintHeightOffset(uint16_t height, uint16_t baseHeight);
|
2018-06-22 16:29:03 -04:00
|
|
|
} // namespace Printer
|