aboutsummaryrefslogblamecommitdiffstats
path: root/src/menu/drawable_control.cpp
blob: e67b4002b25b0c736714a51b0f11fea9cdd72844 (plain) (tree)
1
2

                                  



















                                                                        

   

                  
                               
                        
                              


              


                                                                             
                                                           
                                                              

                                                             
         




                                                                                                       
                                                              

                                                             

                                   

         
                                           
         
                                




                                          

         










                                                                        







                                                                 

                                           





                                                                               




                                                                                 
                                                                                        





                                               

         




























                                                                      



























                                                                   







                                                 








                                                                                  
                 
         














                                                                     
  
/*
 * UltraStar Deluxe - Karaoke Game
 *
 * UltraStar Deluxe is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING. If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */

#include <GL/gl.h>

#include "drawable_control.hpp"
#include "container.hpp"
#include "clipping_helper.hpp"

namespace usdx
{
	log4cpp::Category& DrawableControl::log =
		log4cpp::Category::getInstance("usdx.menu.drawable_control");

	DrawableControl::DrawableControl(Container* parent)
		: Control(parent), position(0, 0), size(0, 0),
		  clipping_required(false), background(NULL),
		  parent(parent)
	{
		ContainerHelper(this).add(parent);
	}

	DrawableControl::DrawableControl(Container* parent,
									 const ContainerHelper& helper)
		: Control(parent), position(0, 0), size(0, 0),
		  clipping_required(false), background(NULL),
		  parent(parent)
	{
		helper.add(parent);
	}

	DrawableControl::~DrawableControl()
	{
		remove_parent();

		if (background) {
			delete background;
			background = NULL;
		}
	}

	bool DrawableControl::get_clipping_required(void) const
	{
		return clipping_required;
	}

	void DrawableControl::set_clipping_required(const bool value)
	{
		boost::mutex::scoped_lock lock(clipping_required_mutex);
		clipping_required = value;
	}

	void DrawableControl::draw(void)
	{
		boost::mutex::scoped_lock lock(background_mutex);
		if (background) {
			background->repaint();
		}
	}

	void DrawableControl::repaint(void)
	{
		{
			// position
			boost::mutex::scoped_lock lock(position_mutex);
			glTranslatef(position.get_x(), position.get_y(), 0.0f);
		}

		boost::mutex::scoped_lock clipping_lock(clipping_required_mutex);
		if (clipping_required) {
			clipping_lock.unlock();

			boost::mutex::scoped_lock lock(size_mutex);
			ClippingHelper clipping(parent, Rectangle<int>(position, size));
			Drawable::repaint();
		}
		else {
			clipping_lock.unlock();
			Drawable::repaint();
		}
	}

	void DrawableControl::set_position(const Point<int>& position)
	{
		boost::mutex::scoped_lock lock(position_mutex);
		this->position = position;
	}

	void DrawableControl::set_position(int left, int top)
	{
		boost::mutex::scoped_lock lock(position_mutex);
		this->position = Point<int>(left, top);
	}


	const Point<int>& DrawableControl::get_position(void) const
	{
		return position;
	}

	int DrawableControl::get_left(void) const
	{
		return position.get_x();
	}

	int DrawableControl::get_top(void) const
	{
		return position.get_y();
	}


	void DrawableControl::set_size(const Dimension<int> &size)
	{
		boost::mutex::scoped_lock lock(size_mutex);
		this->size = size;
	}

	void DrawableControl::set_size(int width, int height)
	{
		boost::mutex::scoped_lock lock(size_mutex);
		this->size = Dimension<int>(width, height);
	}


	const Dimension<int>& DrawableControl::get_size(void) const
	{
		return size;
	}

	int DrawableControl::get_width(void) const
	{
		return size.get_width();
	}

	int DrawableControl::get_height(void) const
	{
		return size.get_height();
	}

	void DrawableControl::remove_parent(void)
	{
		if (parent) {
			parent->remove(this);
			parent = NULL;
		}
	}

	DrawableControl::ContainerHelper::ContainerHelper(DrawableControl* self) :
		self(self)
	{
	}

	void DrawableControl::ContainerHelper::add(Container* c) const
	{
		if (c) {
			c->add(self);
		}
	}

	void DrawableControl::set_background(Background* background)
	{
		boost::mutex::scoped_lock lock(background_mutex);
		if (this->background) {
			delete this->background;
		}

		this->background = background;
	}

	const Background* DrawableControl::get_background(void) const
	{
		return background;
	}
};