Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 6115e71147c86e39d4eeb36fa9e6c98787c2db57 (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
/*
   core/entity.cc
   This file is part of the Osirion project and is distributed under
   the terms of the GNU General Public License version 2.
*/

#include "sys/sys.h"
#include "core/entity.h"

#include <iomanip>

namespace core
{

// --- Entity -----------------------------------------------------

Entity::Entity(unsigned int entity_flags)
{
	flags = entity_flags;
	
	core_shape = entity::Diamond;
	core_color = math::Color(1.0f, 1.0f, 1.0f);
	core_radius = 1.0f;

	core::entity::add(this);
	type = 0;
	
	direction = 0;
}

Entity::~Entity()
{}

// --- EntityDynamic ------------------------------------------

EntityDynamic::EntityDynamic(unsigned int entity_flags) :
	Entity(entity_flags)
{
	speed = 0.0f;
}

EntityDynamic::~EntityDynamic()
{
}

// --- EntityControlable ------------------------------------------

EntityControlable::EntityControlable(unsigned int entity_flags) :
	EntityDynamic(entity_flags)
{
	owner = 0;
	target_direction = 0.0f;
	target_thrust = 0.0f;
}

EntityControlable::~EntityControlable()
{
}

// --- namespace entity -------------------------------------------

namespace entity
{

std::vector<Entity*> registry;

void add(Entity *ent)
{
	std::vector<Entity *>::iterator it;
	unsigned int entity_id = 1;
	for (it=registry.begin(); it != registry.end() && entity_id == (*it)->id; it++) {
		entity_id++;
	}
	ent->id = entity_id;
	registry.push_back(ent);
}

void remove(unsigned int entity_id)
{
	std::vector<Entity *>::iterator it;
	for (it=registry.begin(); it != registry.end(); it++) {
		if (entity_id == (*it)->id) {
			delete((*it));
			registry.erase(it);
			return;
		}
	}
}

void clear()
{
	std::vector<Entity *>::iterator it;
	for (it=registry.begin(); it != registry.end(); it++) {
		delete(*it);
		(*it) = 0;
	}
	registry.clear();
}

void list()
{
	std::vector<Entity *>::iterator it;
	for (it=registry.begin(); it != registry.end(); it++) {
		con_print << "  id " << std::setw(4) << (*it)->id 
			<< " type " << std::setw(4) << (*it)->core_type()
			<< ":" << std::setw(4) << (*it)->type
			<< " " << (*it)->label << std::endl;
	}
	con_print << registry.size() << " registered entities" << std::endl;
}

void frame(float seconds)
{
	std::vector<Entity *>::iterator it;
	for (it=registry.begin(); it != registry.end(); it++) {
		if ((*it)->core_type() == entity::Controlable) {
			static_cast<EntityControlable *>(*it)->frame(seconds);
		}
	}
}

}

}