sources/coloredline.cpp

Sat, 23 Jul 2016 12:15:52 +0300

author
Teemu Piippo <teemu@compsta2.com>
date
Sat, 23 Jul 2016 12:15:52 +0300
changeset 162
c9c0f1b62e42
parent 145
d0aedc9be448
child 150
37db42ad451a
child 181
e254398fcc7c
permissions
-rw-r--r--

Added Doxygen configuration

/*
	Copyright 2014 - 2016 Teemu Piippo
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions
	are met:

	1. Redistributions of source code must retain the above copyright
	   notice, this list of conditions and the following disclaimer.
	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.
	3. Neither the name of the copyright holder nor the names of its
	   contributors may be used to endorse or promote products derived from
	   this software without specific prior written permission.

	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
	"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
	TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
	PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
	OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
	EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
	PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
	PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
	LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
	NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
	SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "coloredline.h"
BEGIN_ZFC_NAMESPACE

struct ColorCodeInfo
{
	const char* name;
	Color color;
	bool bold;
};

ColoredLine::ColoredLine() :
	m_length(0),
	m_final(false),
	m_activeColor(DEFAULT),
	m_boldActive(false),
	m_colorCodeStage(0) {}

// -------------------------------------------------------------------------------------------------
//
void ColoredLine::finalize()
{
	if (m_activeColor != DEFAULT)
		setColor(m_activeColor, false);

	if (m_boldActive)
		m_data << RLINE_OFF_BOLD;

	m_final = true;
}

// -------------------------------------------------------------------------------------------------
//
void ColoredLine::addChar(char ch)
{
	static const ColorCodeInfo colorCodes[] =
	{
		{ "Brick",        RED,     true  }, // a
		{ "Tan",          YELLOW,  true  }, // b
		{ "Gray",         WHITE,   false }, // c
		{ "Green",        GREEN,   true  }, // d
		{ "Brown",        YELLOW,  false }, // e
		{ "Gold",         YELLOW,  true  }, // f
		{ "Red",          RED,     true  }, // g
		{ "Blue",         BLUE,    false }, // h
		{ "Orange",       YELLOW,  false }, // i
		{ "White",        WHITE,   true  }, // j
		{ "Yellow",       YELLOW,  true  }, // k
		{ "Untranslated", DEFAULT, false }, // l
		{ "Black",        BLACK,   false }, // m
		{ "Blue",         BLUE,    true  }, // n
		{ "Cream",        YELLOW,  true  }, // o
		{ "Olive",        GREEN,   true  }, // p
		{ "Dark Green",   GREEN,   false }, // q
		{ "Dark Red",     RED,     false }, // r
		{ "Dark Brown",   YELLOW,  false }, // s
		{ "Purple",       MAGENTA, false }, // t
		{ "Dark Gray",    BLACK,   true  }, // u
		{ "Cyan",         CYAN,    true  }, // v
	};

	if (m_final)
		return; // Don't touch finalized lines.

	if (ch == '\x1C' and m_colorCodeStage == 0)
	{
		m_colorCodeStage = 1;
		return;
	}

	if (m_colorCodeStage == 1)
	{
		if (m_activeColor != DEFAULT)
			setColor(m_activeColor, false);

		if (m_boldActive)
			m_data << RLINE_OFF_BOLD;

		m_boldActive = false;

		// Chars may be in uppercase
		if (ch >= 'A' and ch <= 'V')
			ch += 'a' - 'A';

		if (ch >= 'a' and ch <= 'v' and ch != 'l')
		{
			const ColorCodeInfo& colorInfo = colorCodes[ch - 'a'];
			activateColor(colorInfo.color, colorInfo.bold);
		}

		if (ch == '[')
			m_colorCodeStage = 2;
		else
			m_colorCodeStage = 0;
		return;
	}
	else if (m_colorCodeStage == 2)
	{
		if (ch == ']')
		{
			String color = m_incomingColorName.toLowerCase();

			for (const ColorCodeInfo &colorInfo : colorCodes)
			{
				if (String(colorInfo.name).toLowerCase() == color)
				{
					activateColor(colorInfo.color, colorInfo.bold);
					m_colorCodeStage = 0;
					break;
				}
			}

			m_incomingColorName = "";
			m_colorCodeStage = 0;
		}
		else if (isprint(ch))
			m_incomingColorName += ch;

		return;
	}

	if (isprint(ch))
	{
		m_string += ch;
		m_data << int(ch);
		++m_length;
	}
}

// -------------------------------------------------------------------------------------------------
//
void ColoredLine::activateColor(Color color, bool bold)
{
	if (m_boldActive)
		m_data << RLINE_OFF_BOLD;

	m_activeColor = color;
	m_boldActive = bold;
	assert(m_activeColor < 8);
	setColor(m_activeColor, true);

	if (m_boldActive)
		m_data << RLINE_ON_BOLD;
}

// -------------------------------------------------------------------------------------------------
//
void ColoredLine::addString(const String& text)
{
	for (char a : text)
		addChar(a);
}

// -------------------------------------------------------------------------------------------------
//
void ColoredLine::setColor(Color a, bool on)
{
	assert(a < 8);
	m_data << (a +(on ? RLINE_ON_COLOR : RLINE_OFF_COLOR));
}

// -------------------------------------------------------------------------------------------------
// How many rows does this line take up?
//
int ColoredLine::rows(int cols) const
{
	int rows = length() / cols;

	if (length() % cols != 0)
		rows++;

	return max(rows, 1);
}

END_ZFC_NAMESPACE

mercurial