summaryrefslogtreecommitdiff
path: root/src/game/game.cpp
blob: f5f57bf4af98f81c9dee7b0e9ca69a90f79a8666 (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
130
131
132
133
134
135
136
137
#include "game.hpp"

namespace game {

size_t selection_cookie = 1;

void state_t::start(void)
{
	human_t *human;
	alien_t *alien;

	world.generator = worldgen;

	human = new human_t(this);
	human->place(&world, v2f_t(0.5, 0.5));
	units.insert(human);
	human = new human_t(this);
	human->place(&world, v2f_t(1.5, 0.5));
	units.insert(human);
	human = new human_t(this);
	human->place(&world, v2f_t(2.5, 0.5));
	units.insert(human);

	alien = new alien_t(this);
	alien->place(&world, v2f_t(15.5, -2.5));
	alien = new alien_t(this);
	alien->place(&world, v2f_t(14.5, -2.5));
	alien = new alien_t(this);
	alien->place(&world, v2f_t(13.5, -2.5));
}

void state_t::stop(void)
{
	// FIXME
	/*
	for (unit_t *unit : units)
		delete unit;
	*/
}

void state_t::select(rectf_t x)
{
	selection_cookie++;
	selected_units.clear();

	for (world::entity_t *ent : world.get_render_entities(x)) {
		unit_t *unit;

		if (ent->type != ET_UNIT)
			continue;

		unit = (unit_t*)ent;

		if (unit->type != unit_t::UNIT_HUMAN)
			continue;

		unit->selected = selection_cookie;
		selected_units.insert(unit);
	}
}

void state_t::command(v2f_t x)
{
	v2f_t snap;

	snap[0] = std::round(x[0] - 0.5f) + 0.5f;
	snap[1] = std::round(x[1] - 0.5f) + 0.5f;

	for (unit_t *unit : selected_units) {
		if (unit->dead)
			continue;

		if (!unit->start_moving(snap))
			unit->say(text::get(text::SAY_NO_PATH));
	}
}

void state_t::tick(double now_, double dt_)
{
	now = now_;
	dt = dt_;

	for (unit_t *unit : units) {
		rectf_t wake_range;

		if (unit->dead)
			continue;

		wake_range[0] = unit->x - v2f_t(10, 10);
		wake_range[1] = unit->x + v2f_t(10, 10);

		for (world::entity_t *ent : world.get_entities(wake_range, -1)) {
			unit_t *enemy;

			if (ent->type != ET_UNIT)
				continue;

			enemy = (unit_t*)ent;

			if (enemy->dead)
				continue;

			enemy->wake_time = now;

			if (enemy->awake)
				continue;

			if (enemy->type == unit_t::UNIT_HUMAN)
				continue;

			enemy->awake = true;
			awake_units.insert(enemy);
			enemy->wake(unit);
		}

		unit->think();
	}

	for (auto i = std::begin(awake_units); i != std::end(awake_units);) {
		if (now - (*i)->wake_time >= 5.0) {
			(*i)->awake = false;
			(*i)->sleep();
			i = awake_units.erase(i);
		} else {
			(*i)->think();
			i++;
		}
	}
}

bool load_assets(void)
{
	assets::load();
	return true;
}

} //namespace game