Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 50056c003b465dd835e2aadfa061fdb86ca1a376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
   entitywidget.cc
   This file is part of the Project::OSiRiON world editor 
   and is distributed under the terms and conditions of 
   the GNU General Public License version 2
*/

#include <entitywidget.h>

#include <QPainter>
#include <QMouseEvent>
#include <QDebug>

namespace editor
{

EntityWidget::EntityWidget(QWidget *parent) : QWidget(parent)
{
	is_selected = false;
	is_dragging = false;
	
	entity_radius = 0;
}

void EntityWidget::set_selected(const bool selected)
{
	is_selected = selected;
	update();
}

void EntityWidget::set_label(const QString &label)
{
	entity_label = label;
}

void EntityWidget::set_name(const QString &name)
{
	entity_name = name;
}

void EntityWidget::set_radius(const float radius)
{
	entity_radius = radius;
	
}

void EntityWidget::set_location(const float x, const float y, const float z)
{
	entity_location[0] = x;
	entity_location[1] = y;
	entity_location[2] = z;
}

void EntityWidget::set_properties(const QString &properties)
{
	entity_properties = properties;
}

void EntityWidget::add_property(const QString &key, const QString &value)
{
	entity_properties += key;
	entity_properties += '=';
	entity_properties += value;
	entity_properties += '\n';
}

void EntityWidget::add_subsection(const QString &name)
{
	if (entity_subsections.size()) {
		entity_subsections += '\n';
	}
		
	entity_subsections += '[';
	entity_subsections += name;
	entity_subsections += ']';
	entity_subsections += '\n';
		
}

void EntityWidget::add_subsection_property(const QString &key, const QString &value)
{
	entity_subsections += key;
	entity_subsections += '=';
	entity_subsections += value;
	entity_subsections += '\n';
}

void EntityWidget::paintEvent(QPaintEvent *event)
{	
	QPen pen(Qt::black, 1, Qt::SolidLine);
	QPainter painter(this);
	
	if (is_selected) {
		pen.setColor(Qt::red);
		painter.setPen(pen);
	}
	
	painter.setPen(pen);
	painter.drawEllipse(0, 0, width() - 1 , height() - 1);
}

void EntityWidget::mousePressEvent(QMouseEvent *event)
{
	if (event->button() == Qt::LeftButton) {
		//qDebug() << "clicked entity " << name();
		event->accept();
		is_dragging = true;
		emit clicked(this);
	} else {
		event->ignore();
		is_dragging = false;
	}
}

void EntityWidget::mouseReleaseEvent(QMouseEvent *event)
{
	if (event->button() == Qt::LeftButton) {
		is_dragging = false;
	}
}

void EntityWidget::mouseMoveEvent(QMouseEvent *event)
{
	if (is_dragging) {
		emit dragged(this, event->pos().x(), event->pos().y());
	}
}

}