110 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
| #include "..\..\e2dshape.h"
 | |
| 
 | |
| e2d::Shape::Shape()
 | |
| 	: _style(Style::Solid)
 | |
| 	, _fillColor(0x6090A0U)
 | |
| 	, _lineColor(0x78B7D0U)
 | |
| 	, _strokeWidth(2)
 | |
| 	, _strokeStyle(nullptr)
 | |
| {
 | |
| }
 | |
| 
 | |
| e2d::Shape::~Shape()
 | |
| {
 | |
| }
 | |
| 
 | |
| void e2d::Shape::onRender() const
 | |
| {
 | |
| 	auto pBrush = Renderer::getInstance()->getSolidColorBrush();
 | |
| 	pBrush->SetOpacity(_displayOpacity);
 | |
| 
 | |
| 	switch (_style)
 | |
| 	{
 | |
| 	case Style::Fill:
 | |
| 	{
 | |
| 		pBrush->SetColor(_fillColor.toD2DColorF());
 | |
| 		this->_renderFill();
 | |
| 
 | |
| 		pBrush->SetColor(_lineColor.toD2DColorF());
 | |
| 		this->_renderLine();
 | |
| 		break;
 | |
| 	}
 | |
| 
 | |
| 	case Style::Round:
 | |
| 	{
 | |
| 		pBrush->SetColor(_lineColor.toD2DColorF());
 | |
| 		this->_renderLine();
 | |
| 		break;
 | |
| 	}
 | |
| 
 | |
| 	case Style::Solid:
 | |
| 	{
 | |
| 		pBrush->SetColor(_fillColor.toD2DColorF());
 | |
| 		this->_renderFill();
 | |
| 		break;
 | |
| 	}
 | |
| 
 | |
| 	default:
 | |
| 		break;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| e2d::Color e2d::Shape::getFillColor() const
 | |
| {
 | |
| 	return _fillColor;
 | |
| }
 | |
| 
 | |
| e2d::Color e2d::Shape::getLineColor() const
 | |
| {
 | |
| 	return _lineColor;
 | |
| }
 | |
| 
 | |
| float e2d::Shape::getStrokeWidth() const
 | |
| {
 | |
| 	return _strokeWidth;
 | |
| }
 | |
| 
 | |
| e2d::Shape::Style e2d::Shape::getStyle() const
 | |
| {
 | |
| 	return _style;
 | |
| }
 | |
| 
 | |
| void e2d::Shape::setFillColor(Color fillColor)
 | |
| {
 | |
| 	_fillColor = fillColor;
 | |
| }
 | |
| 
 | |
| void e2d::Shape::setLineColor(Color lineColor)
 | |
| {
 | |
| 	_lineColor = lineColor;
 | |
| }
 | |
| 
 | |
| void e2d::Shape::setStrokeWidth(float strokeWidth)
 | |
| {
 | |
| 	_strokeWidth = strokeWidth * 2;
 | |
| }
 | |
| 
 | |
| void e2d::Shape::setStyle(Style style)
 | |
| {
 | |
| 	_style = style;
 | |
| }
 | |
| 
 | |
| void e2d::Shape::setLineJoin(LineJoin lineJoin)
 | |
| {
 | |
| 	switch (lineJoin)
 | |
| 	{
 | |
| 	case LineJoin::Miter:
 | |
| 		_strokeStyle = Renderer::getMiterStrokeStyle();
 | |
| 		break;
 | |
| 	case LineJoin::Bevel:
 | |
| 		_strokeStyle = Renderer::getBevelStrokeStyle();
 | |
| 		break;
 | |
| 	case LineJoin::Round:
 | |
| 		_strokeStyle = Renderer::getRoundStrokeStyle();
 | |
| 		break;
 | |
| 	default:
 | |
| 		_strokeStyle = nullptr;
 | |
| 		break;
 | |
| 	}
 | |
| }
 |