From b0f36ba4cf3f16e3ce462836b4ef5b6dd7a4269b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bend=C3=ADk?= Date: Sat, 25 Aug 2012 15:06:11 +0200 Subject: [PATCH] Implemented drawscale. --- TileGenerator.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/TileGenerator.cpp b/TileGenerator.cpp index e3964a3..ba53f2b 100644 --- a/TileGenerator.cpp +++ b/TileGenerator.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -507,6 +508,31 @@ inline void TileGenerator::renderShading(int zPos) void TileGenerator::renderScale() { + int color = rgb2int(m_scaleColor.r, m_scaleColor.g, m_scaleColor.b); + gdImageString(m_image, gdFontGetMediumBold(), 24, 0, reinterpret_cast(const_cast("X")), color); + gdImageString(m_image, gdFontGetMediumBold(), 2, 24, reinterpret_cast(const_cast("Z")), color); + + string scaleText; + + for (int i = (m_xMin / 4) * 4; i <= m_xMax; i += 4) { + stringstream buf; + buf << i * 16; + scaleText = buf.str(); + + int xPos = m_xMin * -16 + i * 16 + m_border; + gdImageString(m_image, gdFontGetMediumBold(), xPos + 2, 0, reinterpret_cast(const_cast(scaleText.c_str())), color); + gdImageLine(m_image, xPos, 0, xPos, m_border - 1, color); + } + + for (int i = (m_zMax / 4) * 4; i >= m_zMin; i -= 4) { + stringstream buf; + buf << i * 16; + scaleText = buf.str(); + + int yPos = m_mapHeight - 1 - (i * 16 - m_zMin * 16) + m_border; + gdImageString(m_image, gdFontGetMediumBold(), 2, yPos, reinterpret_cast(const_cast(scaleText.c_str())), color); + gdImageLine(m_image, 0, yPos, m_border - 1, yPos, color); + } } inline std::list TileGenerator::getZValueList() const