summaryrefslogtreecommitdiff
path: root/src/render.cpp
blob: 1baf0e015b3c51306ebb161d43fbcdb6d9075d4a (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
#include "common.hpp"
#include <list>

static sf::RectangleShape wot_rect;

static void draw_tile(sf::RenderWindow *window, float x, float y,
                      world::tile_t *tile)
{
	sf::Color color;

	wot_rect.setSize(sf::Vector2f(1.0f, 1.0f));
	wot_rect.setPosition(sf::Vector2f(x, y));

	switch (tile->type) {
	case -1:
		color = sf::Color(30, 30, 150);
		break;
	case 0:
		color = sf::Color(50, 70, 200);
		break;
	case 1:
		color = sf::Color(255, 255, 90);
		break;
	case 2:
		color = sf::Color(30, 210, 40);
		break;
	case 3:
		color = sf::Color(29, 190, 45);
		break;
	default:
		;
	}

	wot_rect.setFillColor(color);
	wot_rect.setOutlineColor(sf::Color::Transparent);
	window->draw(wot_rect);
}

static void draw_sector(sf::RenderWindow *window, world::sector_t *sector)
{
	for (ssize_t y = 0; y < SECTOR_SIZE; y++)
	for (ssize_t x = 0; x < SECTOR_SIZE; x++)
		draw_tile(window,
		          sector->bounds.left + x, sector->bounds.top + y,
		          sector->tiles + y * SECTOR_SIZE + x);

	if ((sector->index.x & 2) ^ (sector->index.y & 2)) {
		wot_rect.setSize(sf::Vector2f(SECTOR_SIZE, SECTOR_SIZE));
		wot_rect.setPosition(sf::Vector2f(sector->bounds.left, sector->bounds.top));
		wot_rect.setFillColor(sf::Color(0, 0, 0, 50));
		window->draw(wot_rect);
	}
}

void game::state_t::render(sf::RenderWindow *window)
{
	sf::Vector2u size = window->getSize();
	sf::Vector2f A, B, C, D;
	sf::Rect<float> bbox;

	A = window->mapPixelToCoords(sf::Vector2i(0, 0));
	B = window->mapPixelToCoords(sf::Vector2i(size.x, 0));
	C = window->mapPixelToCoords(sf::Vector2i(0, size.y));
	D = window->mapPixelToCoords(sf::Vector2i(size.x, size.y));

	bbox.left = std::min({A.x, B.x, C.x, D.x});
	bbox.top = std::min({A.y, B.y, C.y, D.y});
	bbox.width = std::max({A.x, B.x, C.x, D.x}) - bbox.left;
	bbox.height = std::max({A.y, B.y, C.y, D.y}) - bbox.top;

	for (world::sector_t *sector : world.get_sectors(bbox))
		draw_sector(window, sector);

	for (world::entity_t *ent : world.get_entities(bbox))
		ent->render(window);
}

void game::human_t::render(sf::RenderWindow *window)
{
	wot_rect.setPosition(bounds.left, bounds.top);
	wot_rect.setSize(sf::Vector2f(bounds.width, bounds.height));
	wot_rect.setFillColor(sf::Color::Red);
	wot_rect.setOutlineColor(sf::Color::Transparent);
	window->draw(wot_rect);
}

void interface::state_t::render()
{
}