Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 35fb6d100e2e032de82123e7aa26785992d24c4c (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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195

/*
   client/map.cc
   This file is part of the Osirion project and is distributed under 
   the terms of the GNU General Public License version 2 
*/

#include "core/application.h"
#include "client/map.h"
#include "client/targets.h"
#include "client/input.h"
#include "ui/paint.h"
#include "render/gl.h"
#include "render/textures.h"

namespace client {

Map::Map(ui::Widget *parent) : ui::Window(parent)
{
	set_label("map");
	set_border(true);
	set_background(true);
	hide();
}

Map::~Map()
{
}

void Map::hide()
{
	ui::Window::hide();
	map_hover = 0;

}

void Map::toggle()
{
	if (visible())
		hide();
	else
		show();
}
void Map::draw()
{
	const float margin = font()->width() * 2.0f;
	const float w = width() - margin * 2.0f;
	const float h = height()  - margin * 2.0f;
	const float s = math::min(w, h);
	const float blue = 0.8f;
	const float gridsize=16;

	math::Vector2f v(global_location());
	v.x += margin;
	v.y += margin;
	map_hover = 0;

	if (h > s ) {
		v.y += (h-s) * 0.5f;
	} else {
		v.x += (w-s) * 0.5f;
	}

	gl::color(0,0,blue);

	gl::begin(gl::Lines);
	for (int i=0; i <= gridsize; i++) {
	
		gl::vertex(v.x, 	v.y + s / gridsize * i);
		gl::vertex(v.x + s, 	v.y + s / gridsize * i);

		gl::vertex(v.x + s / gridsize * i, v.y);
		gl::vertex(v.x + s / gridsize * i, v.y+s);
	}
	gl::end();

	const size_t texture_entity = render::Textures::load("bitmaps/icons/entity_default");
	const size_t texture_globe = render::Textures::load("bitmaps/icons/entity_globe");
	const size_t texture_bright = render::Textures::load("bitmaps/icons/entity_bright");
	
	size_t texture_current = render::Textures::bind(texture_entity);

	v.x += s * 0.5f;
	v.y += s * 0.5f;

	core::Zone *zone = core::localplayer()->zone();

	const math::Vector2f cursor(input::mouse_position_x(), input::mouse_position_y());

	const float r = 12.0f;
	float scale = 2048.0f;
	scale *= 2;

	gl::enable(GL_TEXTURE_2D);
	gl::begin(gl::Quads);

	for (core::Zone::Content::iterator it = zone->content().begin(); it != zone->content().end(); it++) {
		core::Entity *entity = (*it);

		bool has_icon = false;
		bool draw_icon = true;

		if ((entity->model()) || (entity->type() == core::Entity::Globe)) {
			has_icon = true;

			if ((entity->type() == core::Entity::Dynamic) || (entity->type() == core::Entity::Controlable)) {
				core::EntityDynamic *ed = dynamic_cast<core::EntityDynamic *>(entity);
				if (ed->eventstate() ==core::Entity::Docked) {
					draw_icon = false;
				}
			}

			if (entity == core::localcontrol()) {
				if (core::application()->time() - floorf(core::application()->time()) < 0.5f) {
					draw_icon = false;
				}
			}

			if (entity == targets::current()) {
				if (core::application()->time() - floorf(core::application()->time()) < 0.5f) {
					draw_icon = false;
				}
			}
		}

		if (has_icon) {
			math::Vector2f l(v);
			l.x -= s / scale * entity->location().y;
			l.y -= s / scale * entity->location().x;

			if (math::distancesquared(cursor, l) < (r*r)) {
				map_hover = entity->id();
			}

			if (draw_icon) {
				if (entity->type() == core::Entity::Globe) {
					if ((entity->flags() & core::Entity::Bright) == core::Entity::Bright) {
						if (texture_current  != texture_bright) {
							gl::end();
							texture_current = render::Textures::bind(texture_bright);
							gl::begin(gl::Quads);
						}
					} else {
						if (texture_current  != texture_globe) {
							gl::end();
							texture_current = render::Textures::bind(texture_globe);
							gl::begin(gl::Quads);
						}
					}
				} else {
					if (texture_current  != texture_entity) {
						gl::end();
						texture_current = render::Textures::bind(texture_entity);
						gl::begin(gl::Quads);
					}
				}
		
	
				math::Color color(entity->color());
				color.a = 1.0f;
				gl::color(color);
				glTexCoord2f(0.0f, 0.0f);
				gl::vertex(l.x-r, l.y-r);
				
				glTexCoord2f(1.0f, 0.0f);
				gl::vertex(l.x+r, l.y-r);
				
				glTexCoord2f(1.0f, 1.0f);
				gl::vertex(l.x+r, l.y+r);
				
				glTexCoord2f(0.0f, 1.0f);
				gl::vertex(l.x-r, l.y+r);
			}
		}
 	}
	gl::end();
	gl::disable(GL_TEXTURE_2D);
}

bool Map::on_keypress(const int key, const unsigned int modifier)
{	
	if ((hover()) && (key == 512 + SDL_BUTTON_LEFT)) {
		targets::select_target(hover());
		return true;
	} else if (key == SDLK_ESCAPE) {
		if (visible()) {
			hide();
			return true;
		}
	}

	return false;
}

}