sources/range.h

Mon, 04 May 2015 15:51:03 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Mon, 04 May 2015 15:51:03 +0300
changeset 69
eb4c25284a19
parent 5
146825d63b9a
child 73
07dda51a7a8e
permissions
-rw-r--r--

Removed a lot of boilerplate code

/*
	Copyright 2014 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.
*/

#pragma once
#include <algorithm>
#include <memory>

//
// -------------------------------------------------------------------------------------------------
//

template<typename T>
class Range
{
	T m_a;
	T m_b;
	T m_step;

public:
	struct Iterator
	{
		T value;
		T step;

		Iterator (T value, T step) :
			value (value),
			step (step) {}

		T& operator*()
		{
			return value;
		}

		bool operator== (const Iterator& other) const
		{
			return value == other.value;
		}

		bool operator!= (const Iterator& other) const
		{
			return value != other.value;
		}

		Iterator& operator++()
		{
			value += step; return *this;
		}
	};

	Range (T a, T b, T step = 1) :
		m_a (a),
		m_b (b),
		m_step (step)
	{
		check_bounds();
	}

	Range() :
		m_a (T()),
		m_b (T()) {}

	Iterator begin() const
	{
		Iterator it;
		it.value = min();
		it.step = m_step;
		return it;
	}

	Iterator end() const
	{
		Iterator it;
		it.value = max() + 1;
		it.step = m_step;
		return it;
	}

	T min() const
	{
		return m_a;
	}

	T max() const
	{
		return m_b;
	}

	void check_bounds()
	{
		if (m_b < m_a)
			std::swap (m_a, m_b);
	}

	bool contains (T c) const
	{
		return c >= m_a
		   and c <= m_b;
	}

	bool contains_exclusively (T c) const
	{
		return c > m_a
		   and c < m_b;
	}

	bool overlaps (Range<T> const& other) const
	{
		return contains (other.m_a)
			or contains (other.m_b);
	}

	bool operator== (Range<T> const& other) const
	{
		return m_a == other.m_a
		   and m_b == other.m_b;
	}

	bool operator!= (Range<T> const& other) const
	{
		return not operator== (other);
	}
};

mercurial