ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/MapWidget.pm
Revision: 1.13
Committed: Mon Apr 24 11:45:17 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.12: +1 -0 lines
Log Message:
fixed many minor bugs reported by pippijn

File Contents

# Content
1 package CFClient::MapWidget;
2
3 use strict;
4
5 use List::Util qw(min max);
6
7 use CFClient::OpenGL;
8
9 our @ISA = CFClient::UI::Base::;
10
11 sub new {
12 my $class = shift;
13
14 $class->SUPER::new (
15 z => -1,
16 can_focus => 1,
17 list => glGenList,
18 @_
19 )
20 }
21
22 sub DESTROY {
23 my $self = shift;
24
25 glDeleteList $self->{list};
26
27 $self->SUPER::DESTROY;
28 }
29
30 sub button_down {
31 my ($self, $ev, $x, $y) = @_;
32
33 $self->focus_in;
34
35 if ($ev->{button} == 2) {
36 my ($ox, $oy) = ($ev->{x}, $ev->{y});
37 my ($bw, $bh) = ($::CFG->{map_shift_x}, $::CFG->{map_shift_y});
38
39 $self->{motion} = sub {
40 my ($ev, $x, $y) = @_;
41
42 ($x, $y) = ($ev->{x}, $ev->{y});
43
44 $::CFG->{map_shift_x} = $bw + $x - $ox;
45 $::CFG->{map_shift_y} = $bh + $y - $oy;
46
47 $self->update;
48 };
49 }
50 }
51
52 sub button_up {
53 my ($self, $ev, $x, $y) = @_;
54
55 delete $self->{motion};
56 }
57
58 sub mouse_motion {
59 my ($self, $ev, $x, $y) = @_;
60
61 $self->{motion}->($ev, $x, $y) if $self->{motion};
62 }
63
64 sub size_request {
65 (
66 1 + 32 * int $::WIDTH / 32,
67 1 + 32 * int $::HEIGHT / 32,
68 )
69 }
70
71 sub update {
72 my ($self) = @_;
73
74 $self->{need_update} = 1;
75 $self->SUPER::update;
76 }
77
78 sub draw {
79 my ($self) = @_;
80
81 if (delete $self->{need_update}) {
82 glNewList $self->{list};
83
84 if ($::MAP) {
85 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale});
86 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale});
87
88 glScale $::CFG->{map_scale}, $::CFG->{map_scale};
89
90 my $sx = $::CFG->{map_shift_x} / $::CFG->{map_scale}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32;
91 my $sy = $::CFG->{map_shift_y} / $::CFG->{map_scale}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32;
92
93 glTranslate $sx0 - 32, $sy0 - 32, 0;
94
95 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1);
96
97 if ($::CFG->{fow_enable}) {
98 if ($::CFG->{fow_smooth} && $CFClient::GL_VERSION >= 1.2) { # smooth fog of war
99 glConvolutionParameter (GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER);
100 glConvolutionFilter2D (
101 GL_CONVOLUTION_2D,
102 GL_ALPHA,
103 3, 3,
104 GL_ALPHA, GL_FLOAT,
105 pack "f*",
106 0.05, 0.13, 0.05,
107 0.13, 0.30, 0.13,
108 0.05, 0.13, 0.05,
109 );
110 glEnable GL_CONVOLUTION_2D;
111 }
112
113 $self->{fow_texture} = new CFClient::Texture
114 w => $w,
115 h => $h,
116 data => $data,
117 internalformat => GL_ALPHA,
118 format => GL_ALPHA;
119
120 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
121
122 glEnable GL_BLEND;
123 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
124 glEnable GL_TEXTURE_2D;
125 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
126
127 glColor +($::CFG->{fow_intensity}) x 3, 0.8;
128 $self->{fow_texture}->draw_quad (0, 0, $w * 32, $h * 32);
129
130 glDisable GL_TEXTURE_2D;
131 glDisable GL_BLEND;
132 }
133
134 # HACK BEGIN
135 {
136 glTranslate -($sx0 - 32), -($sy0 - 32), 0;#remove
137
138 glTranslate 0, 30;
139 my ($w, $h) = (250, 250);
140
141 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
142
143 glEnable GL_BLEND;
144 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
145 glEnable GL_TEXTURE_2D;
146 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
147
148 $self->{mapmap_texture} =
149 new CFClient::Texture
150 w => $w,
151 h => $h,
152 data => $::MAP->mapmap (- $w * 0.5, - $h * 0.5, $w, $h),
153 type => $CFClient::GL_VERSION >= 1.2 ? GL_UNSIGNED_INT_8_8_8_8_REV : GL_UNSIGNED_BYTE;
154
155 $self->{mapmap_texture}->draw_quad (0, 0);
156
157 glDisable GL_TEXTURE_2D;
158
159 glTranslate 0.375, 0.375;
160
161 glColor 1, 1, 0, 1;
162 glBegin GL_LINE_LOOP;
163 glVertex $w * 0.5 - $sx , $h * 0.5 - $sy ;
164 glVertex $w * 0.5 - $sx , $h * 0.5 - $sy + $sh;
165 glVertex $w * 0.5 - $sx + $sw, $h * 0.5 - $sy + $sh;
166 glVertex $w * 0.5 - $sx + $sw, $h * 0.5 - $sy ;
167 glEnd;
168
169 glDisable GL_BLEND;
170 }
171 # HACK END
172 }
173
174 glEndList;
175 }
176
177 glPushMatrix;
178 glCallList $self->{list};
179 glPopMatrix;
180
181 if ($CFClient::UI::FOCUS != $self) {
182 glColor 64/255, 64/255, 64/255;
183 glLogicOp GL_AND;
184 glEnable GL_COLOR_LOGIC_OP;
185 glBegin GL_QUADS;
186 glVertex 0, 0;
187 glVertex 0, $::HEIGHT;
188 glVertex $::WIDTH, $::HEIGHT;
189 glVertex $::WIDTH, 0;
190 glEnd;
191 glDisable GL_COLOR_LOGIC_OP;
192 }
193 }
194
195 my %DIR = (
196 CFClient::SDLK_KP8, [1, "north"],
197 CFClient::SDLK_KP9, [2, "northeast"],
198 CFClient::SDLK_KP6, [3, "east"],
199 CFClient::SDLK_KP3, [4, "southeast"],
200 CFClient::SDLK_KP2, [5, "south"],
201 CFClient::SDLK_KP1, [6, "southwest"],
202 CFClient::SDLK_KP4, [7, "west"],
203 CFClient::SDLK_KP7, [8, "northwest"],
204
205 CFClient::SDLK_UP, [1, "north"],
206 CFClient::SDLK_RIGHT, [3, "east"],
207 CFClient::SDLK_DOWN, [5, "south"],
208 CFClient::SDLK_LEFT, [7, "west"],
209 );
210
211 sub key_down {
212 my ($self, $ev) = @_;
213
214 my $mod = $ev->{mod};
215 my $sym = $ev->{sym};
216
217 if ($sym == CFClient::SDLK_KP5) {
218 $::CONN->user_send ("stay fire");
219 } elsif ($sym == ord "a") {
220 $::CONN->user_send ("apply");
221 } elsif ($sym == ord "'") {
222 $self->emit ('activate_console');
223 } elsif ($sym == ord "/") {
224 $self->emit (activate_console => '/');
225 } elsif (exists $DIR{$sym}) {
226 if ($mod & CFClient::KMOD_SHIFT) {
227 $self->{shft}++;
228 $::CONN->user_send ("fire $DIR{$sym}[0]");
229 } elsif ($mod & CFClient::KMOD_CTRL) {
230 $self->{ctrl}++;
231 $::CONN->user_send ("run $DIR{$sym}[0]");
232 } else {
233 $::CONN->user_send ("$DIR{$sym}[1]");
234 }
235 } elsif ($ev->{unicode}) {
236 $self->{command_widget} ||=
237 new CFClient::MapWidget::Command::
238 command => $self->{command},
239 can_focus => 1,
240 connect_execute => sub {
241 # todo: support callback instead of user_send
242 $::CONN->user_send ($_[1][1]);
243 },
244 connect_close => sub {
245 (delete $self->{command_widget})->hide;
246 $self->focus_in;
247 },
248 ;
249 $self->{command_widget}->key_down ($ev);
250 return unless $self->{command_widget};
251 $self->{command_widget}->show;
252 $self->{command_widget}->focus_in;
253 }
254 }
255
256 sub key_up {
257 my ($self, $ev) = @_;
258
259 my $mod = $ev->{mod};
260 my $sym = $ev->{sym};
261
262 if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) {
263 $::CONN->user_send ("fire_stop");
264 }
265 if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) {
266 $::CONN->user_send ("run_stop");
267 }
268 }
269
270 sub add_command {
271 my ($self, $command, $tooltip, $widget, $cb) = @_;
272
273 (my $abbrev = $command) =~ s/(\S)[^[:space:]_]*[[:space:]_]+/$1/g;
274
275 push @{$self->{command}}, [$abbrev, $command, $tooltip, $widget, $cb];
276 }
277
278 package CFClient::MapWidget::Command;
279
280 use strict;
281
282 use CFClient::OpenGL;
283
284 our @ISA = CFClient::UI::VBox::;
285
286 sub new {
287 my $class = shift;
288
289 my $self = $class->SUPER::new (
290 @_,
291 children => [map
292 CFClient::UI::Label->new (
293 can_hover => 1,
294 can_events => 1,
295 fontsize => $_,
296 ), 1, 1, 0.8, 0.8, 0.8, 0.8, 0.8
297 ],
298 );
299
300 $self
301 }
302
303 sub size_allocate {
304 my ($self, $w, $h) = @_;
305
306 $self->SUPER::size_allocate ($w, $h);
307 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
308 }
309
310 sub update_labels {
311 my ($self) = @_;
312
313 my $command = $self->{command};
314 my $search_abbrev = qr/^\Q$self->{search}/;
315 my $search_full = qr/\Q$self->{search}/;
316
317 my @found;
318
319 for (@$command) {
320 if ($_->[0] =~ $search_abbrev) {
321 push @found, [$_->[0], $_];
322 } elsif ($_[1] =~ $search_full) {
323 push @found, [$_->[1], $_];
324 }
325 }
326
327 @found = sort { $a->[0] cmp $b->[0] } @found;
328
329 $self->{children}[0]->set_text ("$self->{search}_");
330
331 for (0..5) {
332 $self->{children}[$_ + 1]->set_text ($found[$_] ? "$found[$_][0] ($found[$_][1][1])" : "");
333 $self->{children}[$_ + 1]{tooltip} = ($found[$_] ? $found[$_][1][2] : "");
334 }
335
336 $self->{select} = $found[0][1]
337 if @found;
338
339 if (@found > 6) {
340 $self->{children}[6]->set_text ("...");
341 }
342
343 $self->check_size;
344 }
345
346 sub key_down {
347 my ($self, $ev) = @_;
348
349 if ($ev->{sym} == 8) {
350 substr $self->{search}, -1, 1, "";
351 $self->update_labels;
352 } elsif ($ev->{sym} == 13) {
353 if (exists $self->{select}) {
354 $self->emit (execute => $self->{select});
355 $self->emit ("close");
356 }
357 } elsif ($ev->{sym} == 27) {
358 $self->emit ("close");
359 return;
360 } elsif ((chr $ev->{unicode}) =~ /^[[:alpha:]]$/) {
361 $self->{search} .= chr $ev->{unicode};
362 $self->update_labels;
363 }
364
365 length $self->{search}
366 or $self->emit ("close");
367 }
368
369 1