ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/MapWidget.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC/MapWidget.pm (file contents):
Revision 1.6 by root, Thu Apr 20 08:11:57 2006 UTC vs.
Revision 1.23 by root, Wed May 17 00:26:55 2006 UTC

1package CFClient::MapWidget; 1package CFClient::MapWidget;
2 2
3use strict; 3use strict;
4use utf8;
4 5
5use List::Util qw(min max); 6use List::Util qw(min max);
6 7
7use CFClient::OpenGL; 8use CFClient::OpenGL;
8 9
9our @ISA = CFClient::UI::Base::; 10our @ISA = CFClient::UI::Base::;
10 11
11sub new { 12sub new {
12 my $class = shift; 13 my $class = shift;
13 14
14 $class->SUPER::new ( 15 my $self = $class->SUPER::new (
15 z => -1, 16 z => -1,
16 can_focus => 1, 17 can_focus => 1,
17 list => glGenList, 18 list => glGenList,
18 @_ 19 @_
19 ) 20 );
21
22 $self
20} 23}
21 24
22sub DESTROY { 25sub DESTROY {
23 my $self = shift; 26 my $self = shift;
24 27
25 glDeleteList $self->{list}; 28 glDeleteList $self->{list};
26 29
27 $self->SUPER::DESTROY; 30 $self->SUPER::DESTROY;
28}
29
30sub key_down {
31 print "MAPKEYDOWN\n";
32}
33
34sub key_up {
35} 31}
36 32
37sub button_down { 33sub button_down {
38 my ($self, $ev, $x, $y) = @_; 34 my ($self, $ev, $x, $y) = @_;
39 35
87 83
88 if (delete $self->{need_update}) { 84 if (delete $self->{need_update}) {
89 glNewList $self->{list}; 85 glNewList $self->{list};
90 86
91 if ($::MAP) { 87 if ($::MAP) {
92 my $sw = int $::WIDTH / 32; 88 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
93 my $sh = int $::HEIGHT / 32; 89 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
94 90
95 my $sx = $::CFG->{map_shift_x}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32; 91 my $sx = $::CFG->{map_shift_x} / $::CFG->{map_scale}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32;
96 my $sy = $::CFG->{map_shift_y}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32; 92 my $sy = $::CFG->{map_shift_y} / $::CFG->{map_scale}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32;
93
94 glPushMatrix;
95 glScale $::CFG->{map_scale}, $::CFG->{map_scale};
97 96
98 glTranslate $sx0 - 32, $sy0 - 32, 0; 97 glTranslate $sx0 - 32, $sy0 - 32, 0;
99 98
100 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1); 99 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1);
101 100
106 GL_CONVOLUTION_2D, 105 GL_CONVOLUTION_2D,
107 GL_ALPHA, 106 GL_ALPHA,
108 3, 3, 107 3, 3,
109 GL_ALPHA, GL_FLOAT, 108 GL_ALPHA, GL_FLOAT,
110 pack "f*", 109 pack "f*",
111 0.1, 0.1, 0.1, 110 0.05, 0.13, 0.05,
112 0.1, 0.2, 0.1, 111 0.13, 0.30, 0.13,
113 0.1, 0.1, 0.1, 112 0.05, 0.13, 0.05,
114 ); 113 );
115 glEnable GL_CONVOLUTION_2D; 114 glEnable GL_CONVOLUTION_2D;
116 } 115 }
117 116
118 $self->{fow_texture} = new CFClient::Texture 117 $self->{fow_texture} = new CFClient::Texture
127 glEnable GL_BLEND; 126 glEnable GL_BLEND;
128 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 127 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
129 glEnable GL_TEXTURE_2D; 128 glEnable GL_TEXTURE_2D;
130 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 129 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
131 130
132 glColor +($::CFG->{fow_intensity}) x 3, 1; 131 glColor +($::CFG->{fow_intensity}) x 3, 0.8;
133 $self->{fow_texture}->draw_quad (0, 0, $w * 32, $h * 32); 132 $self->{fow_texture}->draw_quad (0, 0, $w * 32, $h * 32);
134 133
135 glDisable GL_TEXTURE_2D; 134 glDisable GL_TEXTURE_2D;
136 glDisable GL_BLEND; 135 glDisable GL_BLEND;
137 } 136 }
138 137
139 # HACK BEGIN 138 glPopMatrix;
140 {
141 glTranslate -($sx0 - 32), -($sy0 - 32), 0;#remove
142
143 glTranslate 0, 30;
144 my ($w, $h) = (250, 250);
145
146 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
147
148 glEnable GL_BLEND;
149 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
150 glEnable GL_TEXTURE_2D;
151 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
152
153 $self->{mapmap_texture} =
154 new CFClient::Texture
155 w => $w,
156 h => $h,
157 data => $::MAP->mapmap (- $w * 0.5, - $h * 0.5, $w, $h),
158 type => $CFClient::GL_VERSION >= 1.2 ? GL_UNSIGNED_INT_8_8_8_8_REV : GL_UNSIGNED_BYTE;
159
160 $self->{mapmap_texture}->draw_quad (0, 0);
161
162 glDisable GL_TEXTURE_2D;
163
164 glTranslate 0.375, 0.375;
165
166 glColor 1, 1, 0, 1;
167 glBegin GL_LINE_LOOP;
168 glVertex $w * 0.5 - $sx , $h * 0.5 - $sy ;
169 glVertex $w * 0.5 - $sx , $h * 0.5 - $sy + $sh;
170 glVertex $w * 0.5 - $sx + $sw, $h * 0.5 - $sy + $sh;
171 glVertex $w * 0.5 - $sx + $sw, $h * 0.5 - $sy ;
172 glEnd;
173
174 glDisable GL_BLEND;
175 }
176 # HACK END
177 } 139 }
178 140
179 glEndList; 141 glEndList;
180 } 142 }
181 143
214); 176);
215 177
216sub key_down { 178sub key_down {
217 my ($self, $ev) = @_; 179 my ($self, $ev) = @_;
218 180
181 return unless $::CONN;
182
219 my $mod = $ev->{mod}; 183 my $mod = $ev->{mod};
220 my $sym = $ev->{sym}; 184 my $sym = $ev->{sym};
185 my $uni = $ev->{unicode};
221 186
222 if ($sym == CFClient::SDLK_KP5) { 187 if ($sym == CFClient::SDLK_KP5) {
223 $::CONN->user_send ("stay fire"); 188 $::CONN->user_send ("stay fire");
224 } elsif ($sym == ord "a") { 189 } elsif ($uni == ord ",") {
190 $::CONN->user_send ("take");
191 } elsif ($uni == ord "\t") {
225 $::CONN->user_send ("apply"); 192 $::CONN->user_send ("apply");
226 } elsif ($sym == ord "'") { 193 } elsif ($uni == ord "'") {
227 $self->emit ('activate_console'); 194 $self->emit ('activate_console');
228 } elsif ($sym == ord "/") { 195 } elsif ($uni == ord "/") {
229 $self->emit ('activate_console' => '/'); 196 $self->emit (activate_console => '/');
230 } elsif (exists $DIR{$sym}) { 197 } elsif (exists $DIR{$sym}) {
231 if ($mod & CFClient::KMOD_SHIFT) { 198 if ($mod & CFClient::KMOD_SHIFT) {
232 $self->{shft}++; 199 $self->{shft}++;
233 $::CONN->user_send ("fire $DIR{$sym}[0]"); 200 $::CONN->user_send ("fire $DIR{$sym}[0]");
234 } elsif ($mod & CFClient::KMOD_CTRL) { 201 } elsif ($mod & CFClient::KMOD_CTRL) {
235 $self->{ctrl}++; 202 $self->{ctrl}++;
236 $::CONN->user_send ("run $DIR{$sym}[0]"); 203 $::CONN->user_send ("run $DIR{$sym}[0]");
237 } else { 204 } else {
238 $::CONN->user_send ("$DIR{$sym}[1]"); 205 $::CONN->user_send ("$DIR{$sym}[1]");
239 } 206 }
207 } elsif ($ev->{unicode}) {
208 $self->{command_widget} ||=
209 new CFClient::MapWidget::Command::
210 command => $self->{command},
211 can_focus => 1,
212 connect_execute => sub {
213 # todo: support callback instead of user_send
214 $::CONN->user_send ($_[1]);
215 },
216 connect_close => sub {
217 (delete $self->{command_widget})->hide;
218 $self->focus_in;
219 },
220 ;
221 $self->{command_widget}->key_down ($ev)
222 unless $ev->{unicode} == 20;
223 return unless $self->{command_widget};
224 $self->{command_widget}->show;
225 $self->{command_widget}->focus_in;
240 } 226 }
241} 227}
242 228
243sub key_up { 229sub key_up {
244 my ($self, $ev) = @_; 230 my ($self, $ev) = @_;
253 $::CONN->user_send ("run_stop"); 239 $::CONN->user_send ("run_stop");
254 } 240 }
255} 241}
256 242
257sub add_command { 243sub add_command {
258 my ($self, $command, $widget, $cb) = @_; 244 my ($self, $command, $tooltip, $widget, $cb) = @_;
259 245
260 (my $abbrev = $command) =~ s/(\S)[^[:space:]_]*[[:space:]_]+/$1/g; 246 (my $data = $command) =~ s/\\//g;
261 warn "$command|$abbrev|$widget\n";#d# 247
248 $tooltip =~ s/^\s+//;
249
250 $tooltip = "<big>" . (CFClient::UI::Label::escape $data) . "</big>\n\n"
251 . CFClient::UI::Label::escape $tooltip;
252
253 $tooltip =~ s/\s+$//;
254
255 $self->{command}{$command} = [$data, $tooltip, $widget, $cb];
256}
257
258sub clr_commands {
259 my ($self) = @_;
260
261 %{$self->{command}} = ();
262}
263
264package CFClient::MapWidget::MapMap;
265
266our @ISA = CFClient::UI::Base::;
267
268use Time::HiRes qw(time);
269use CFClient::OpenGL;
270
271sub size_request {
272 ($::HEIGHT * 0.25, $::HEIGHT * 0.25)
273}
274
275sub size_allocate {
276 my ($self, $w, $h) = @_;
277
278 $self->SUPER::size_allocate ($w, $h);
279 $self->update;
280}
281
282sub update {
283 my ($self) = @_;
284
285 delete $self->{texture_atime};
286 $self->SUPER::update;
287}
288
289sub _draw {
290 my ($self) = @_;
291
292 $::MAP or return;
293
294 my ($w, $h) = @$self{qw(w h)};
295
296 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
297 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
298
299 my $sx = int $::CFG->{map_shift_x} / 32;
300 my $sy = int $::CFG->{map_shift_y} / 32;
301
302 my $ox = 0.5 * ($w - $sw);
303 my $oy = 0.5 * ($h - $sh);
304
305 glEnable GL_BLEND;
306 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
307 glEnable GL_TEXTURE_2D;
308 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
309
310 if ($self->{texture_atime} < time) {
311 $self->{texture_atime} = time + 1/3;
312
313 $self->{texture} =
314 new CFClient::Texture
315 w => $w,
316 h => $h,
317 data => $::MAP->mapmap (-$ox, -$oy, $w, $h),
318 type => $CFClient::GL_VERSION >= 1.2 ? GL_UNSIGNED_INT_8_8_8_8_REV : GL_UNSIGNED_BYTE;
319 }
320
321 $self->{texture}->draw_quad (0, 0);
322
323 glDisable GL_TEXTURE_2D;
324
325 glTranslate 0.375, 0.375;
326
327 #TODO: map scale is completely borked
328
329 my $x0 = int $ox - $sx + 0.5;
330 my $y0 = int $oy - $sy + 0.5;
331
332 glColor 1, 1, 0, 1;
333 glBegin GL_LINE_LOOP;
334 glVertex $x0 , $y0 ;
335 glVertex $x0 , $y0 + $sh;
336 glVertex $x0 + $sw, $y0 + $sh;
337 glVertex $x0 + $sw, $y0 ;
338 glEnd;
339
340 glDisable GL_BLEND;
341}
342
343package CFClient::MapWidget::Command;
344
345use strict;
346
347use CFClient::OpenGL;
348
349our @ISA = CFClient::UI::Frame::;
350
351sub new {
352 my $class = shift;
353
354 my $self = $class->SUPER::new (
355 bg => [0, 0, 0, 0.8],
356 @_,
357 );
358
359 $self->add ($self->{vbox} = new CFClient::UI::VBox);
360
361 $self->{label} = [
362 map
363 CFClient::UI::Label->new (
364 can_hover => 1,
365 can_events => 1,
366 fontsize => $_,
367 ), (0.8) x 6
368 ];
369
370 $self->{entry} = new CFClient::UI::Entry
371 connect_changed => sub {
372 $self->update_labels;
373 };
374
375 $self->{vbox}->add (
376 $self->{entry},
377 @{$self->{label}},
378 );
379
380 $self
381}
382
383sub size_allocate {
384 my ($self, $w, $h) = @_;
385
386 $self->SUPER::size_allocate ($w, $h);
387 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
388}
389
390sub key_down {
391 my ($self, $ev) = @_;
392
393 if ($ev->{sym} == 13) {
394 if (exists $self->{select}) {
395 $self->emit (execute => $self->{select});
396 $self->emit ("close");
397 }
398 } elsif ($ev->{sym} == 27) {
399 $self->{entry}->set_text ("");
400 $self->emit ("close");
401 return;
402 } elsif ($ev->{sym} == CFClient::SDLK_DOWN) {
403 ++$self->{select_offset}
404 if $self->{select_offset} < $#{ $self->{last_match} || [] };
405 $self->update_labels;
406 } elsif ($ev->{sym} == CFClient::SDLK_UP) {
407 --$self->{select_offset}
408 if $self->{select_offset};
409 $self->update_labels;
410 } else {
411 #$self->{entry}{force_alloc} = 1;
412 $self->{entry}->key_down ($ev);
413 }
414}
415
416sub update_labels {
417 my ($self) = @_;
418
419 my $text = $self->{entry}->get_text;
420
421 length $text
422 or return $self->emit ("close");
423
424 my ($cmd, $arg) = $text =~ /^\s*([^[:space:]]*)(.*)$/;
425
426 if ($cmd ne $self->{last_search}) {
427 my $regexp = do {
428 my ($beg, @chr) = split //, lc $cmd;
429
430 # the following regex is used to match our "completion entry"
431 # to an actual command - the parentheses match kind of "overhead"
432 # - the more characters the parentheses match, the less attractive
433 # is the match.
434 my $regexp = "^\Q$beg\E"
435 . join "", map "(?:.*?[ \\\\]\Q$_\E|(.*?)\Q$_\E)", @chr;
436 qr<$regexp>
437 };
438
439 my @match;
440 my @penalty;
441
442 for (keys %{$self->{command}}) {
443 if (@penalty = $_ =~ $regexp) {
444 push @match, [$_, length join "", map "::$_", grep defined, @penalty];
445 }
446 }
447
448 @match = map $self->{command}{$_->[0]},
449 sort {
450 $a->[1] <=> $b->[1]
451 or (length $a->[0]) <=> (length $b->[0])
452 } @match;
453
454 $self->{last_search} = $cmd;
455 $self->{last_match} = \@match;
456
457 $self->{select_offset} = 0;
458 }
459
460 my @labels = @{ $self->{label} };
461 my @matches = @{ $self->{last_match} || [] };
462
463 if ($self->{select_offset}) {
464 splice @matches, 0, $self->{select_offset}, ();
465
466 my $label = shift @labels;
467 $label->set_text ("...");
468 $label->set_tooltip ("Use Cursor-Up to view previous matches");
469 }
470
471 for my $label (@labels) {
472 $label->{fg} = [1, 1, 1, 1];
473 $label->{bg} = [0, 0, 0, 0];
474 }
475
476 if (@matches) {
477 $self->{select} = "$matches[0][0]$arg";
478
479 $labels[0]->{fg} = [0, 0, 0, 1];
480 $labels[0]->{bg} = [1, 1, 1, 0.8];
481 } else {
482 delete $self->{select};
483 }
484
485 for my $match (@matches) {
486 my $label = shift @labels;
487
488 if (@labels) {
489 $label->set_text ("$match->[0]$arg");
490 $label->set_tooltip ($match->[1]);
491 } else {
492 $label->set_text ("...");
493 $label->set_tooltip ("Use Cursor-Down to view more matches");
494 last;
495 }
496 }
497
498 for my $label (@labels) {
499 $label->set_text ("");
500 $label->set_tooltip ("");
501 }
502
503 $self->update;
504 ###
505}
506
507sub _draw {
508 my ($self) = @_;
509
510 # hack
511 local $CFClient::UI::FOCUS = $self->{entry};
512
513 $self->SUPER::_draw;
262} 514}
263 515
2641 5161

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines