sources/coloredline.cpp

Mon, 11 Jan 2016 16:27:53 +0200

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Mon, 11 Jan 2016 16:27:53 +0200
changeset 124
c5ff5a4704dd
parent 113
b3a33bc2e482
child 132
8a4690db252e
child 131
4996c8684b93
permissions
-rw-r--r--

Use tags as a compare basis for updating the revision if available, so that when a revision gets tagged, hginfo.h gets updated.

/*
	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)
		set_color (m_activeColor, false);

	if (m_boldActive)
		m_data << RLINE_OFF_BOLD;

	m_final = true;
}

// -------------------------------------------------------------------------------------------------
//
void ColoredLine::add_char (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)
			set_color (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'];
			activate_color(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.to_lowercase();

			for (size_t i = 0; i < countof(colorCodes); ++i)
			{
				const ColorCodeInfo& colorInfo = colorCodes[i];

				if (String(colorInfo.name).to_lowercase() == color)
				{
					activate_color(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::activate_color (Color color, bool bold)
{
	if (m_boldActive)
		m_data << RLINE_OFF_BOLD;

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

	if (m_boldActive)
		m_data << RLINE_ON_BOLD;
}

// -------------------------------------------------------------------------------------------------
//
void ColoredLine::set_color (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