2016-10-16 21:15:40 +02:00
|
|
|
/*****************************************************************************
|
2018-06-15 14:07:34 +02:00
|
|
|
* Copyright (c) 2014-2018 OpenRCT2 developers
|
2016-10-16 21:15:40 +02:00
|
|
|
*
|
2018-06-15 14:07:34 +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
|
|
|
*
|
2018-06-15 14:07:34 +02:00
|
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
2016-10-16 21:15:40 +02:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2016-10-17 12:42:59 +02:00
|
|
|
#include "FunctionCall.hpp"
|
2016-10-17 11:57:41 +02:00
|
|
|
#include "SideTunnelCall.hpp"
|
2016-10-17 00:13:46 +02:00
|
|
|
#include "SegmentSupportHeightCall.hpp"
|
2016-10-16 21:15:40 +02:00
|
|
|
|
|
|
|
namespace Printer {
|
|
|
|
std::string PrintFunctionCall(function_call call, uint16 baseHeight);
|
|
|
|
std::string PrintFunctionCalls(std::vector <function_call> calls, uint16 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 height, uint16 baseHeight);
|
2016-10-16 21:15:40 +02:00
|
|
|
}
|