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.20 by root, Tue Apr 25 14:04:37 2006 UTC vs.
Revision 1.31 by root, Fri May 19 23:18:42 2006 UTC

17 can_focus => 1, 17 can_focus => 1,
18 list => glGenList, 18 list => glGenList,
19 @_ 19 @_
20 ); 20 );
21 21
22 $self->add_command ("killpets", "kills all your summoned and charmed creates");
23
24 $self 22 $self
25} 23}
26 24
27sub DESTROY { 25sub DESTROY {
28 my $self = shift; 26 my $self = shift;
80 $self->SUPER::update; 78 $self->SUPER::update;
81} 79}
82 80
83sub draw { 81sub draw {
84 my ($self) = @_; 82 my ($self) = @_;
83
84 return
85 unless $CFClient::UI::FOCUS == $self || !$::FAST;
85 86
86 if (delete $self->{need_update}) { 87 if (delete $self->{need_update}) {
87 glNewList $self->{list}; 88 glNewList $self->{list};
88 89
89 if ($::MAP) { 90 if ($::MAP) {
114 0.05, 0.13, 0.05, 115 0.05, 0.13, 0.05,
115 ); 116 );
116 glEnable GL_CONVOLUTION_2D; 117 glEnable GL_CONVOLUTION_2D;
117 } 118 }
118 119
120 # try to re-use the texture name: TODO improve texture class instead
121 my $prev_name = ((delete $self->{fow_texture}) || {})->{name};
122
119 $self->{fow_texture} = new CFClient::Texture 123 $self->{fow_texture} = new CFClient::Texture
120 w => $w, 124 w => $w,
121 h => $h, 125 h => $h,
122 data => $data, 126 data => $data,
127 name => $prev_name, # a bit hackish
123 internalformat => GL_ALPHA, 128 internalformat => GL_ALPHA,
124 format => GL_ALPHA; 129 format => GL_ALPHA;
125 130
126 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth}; 131 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
127 132
128 glEnable GL_BLEND;
129 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
130 glEnable GL_TEXTURE_2D; 133 glEnable GL_TEXTURE_2D;
131 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 134 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
132 135
133 glColor +($::CFG->{fow_intensity}) x 3, 0.8; 136 glColor +($::CFG->{fow_intensity}) x 3, 0.8;
134 $self->{fow_texture}->draw_quad (0, 0, $w * 32, $h * 32); 137 $self->{fow_texture}->draw_quad_alpha (0, 0, $w * 32, $h * 32);
135 138
136 glDisable GL_TEXTURE_2D; 139 glDisable GL_TEXTURE_2D;
137 glDisable GL_BLEND;
138 } 140 }
139 141
140 glPopMatrix; 142 glPopMatrix;
141 } 143 }
142 144
145 147
146 glPushMatrix; 148 glPushMatrix;
147 glCallList $self->{list}; 149 glCallList $self->{list};
148 glPopMatrix; 150 glPopMatrix;
149 151
152 # TNT2 emulates logops in software (or worse :)
150 if ($CFClient::UI::FOCUS != $self) { 153 if ($CFClient::UI::FOCUS != $self) {
151 glColor 64/255, 64/255, 64/255; 154 glColor 0.4, 0.2, 0.2, 0.9;
152 glLogicOp GL_AND; 155 glEnable GL_BLEND;
153 glEnable GL_COLOR_LOGIC_OP; 156 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
154 glBegin GL_QUADS; 157 glBegin GL_QUADS;
155 glVertex 0, 0; 158 glVertex 0, 0;
156 glVertex 0, $::HEIGHT; 159 glVertex 0, $::HEIGHT;
157 glVertex $::WIDTH, $::HEIGHT; 160 glVertex $::WIDTH, $::HEIGHT;
158 glVertex $::WIDTH, 0; 161 glVertex $::WIDTH, 0;
159 glEnd; 162 glEnd;
160 glDisable GL_COLOR_LOGIC_OP; 163 glDisable GL_BLEND;
161 } 164 }
162} 165}
163 166
164my %DIR = ( 167my %DIR = (
165 CFClient::SDLK_KP8, [1, "north"], 168 CFClient::SDLK_KP8, [1, "north"],
178); 181);
179 182
180sub key_down { 183sub key_down {
181 my ($self, $ev) = @_; 184 my ($self, $ev) = @_;
182 185
186 return unless $::CONN;
187
183 my $mod = $ev->{mod}; 188 my $mod = $ev->{mod};
184 my $sym = $ev->{sym}; 189 my $sym = $ev->{sym};
190 my $uni = $ev->{unicode};
185 191
186 if ($sym == CFClient::SDLK_KP5) { 192 if ($sym == CFClient::SDLK_KP5) {
187 $::CONN->user_send ("stay fire"); 193 $::CONN->user_send ("stay fire");
188 } elsif ($sym == ord ",") { 194 } elsif ($uni == ord ",") {
189 $::CONN->user_send ("take"); 195 $::CONN->user_send ("take");
190 } elsif ($sym == ord "a") { 196 } elsif ($uni == ord "\t" or $uni == ord " ") {
191 $::CONN->user_send ("apply"); 197 $::CONN->user_send ("apply");
198 } elsif ($sym == CFClient::SDLK_KP_PLUS || $uni == ord "+") {
199 $::CONN->user_send ("rotateshoottype +");
200 } elsif ($sym == CFClient::SDLK_KP_MINUS || $uni == ord "-") {
201 $::CONN->user_send ("rotateshoottype -");
192 } elsif ($sym == ord "'") { 202 } elsif ($uni == ord "'") {
193 $self->emit ('activate_console'); 203 $self->emit ('activate_console');
194 } elsif ($sym == ord "/") { 204 } elsif ($uni == ord "/") {
195 $self->emit (activate_console => '/'); 205 $self->emit (activate_console => '/');
196 } elsif (exists $DIR{$sym}) { 206 } elsif (exists $DIR{$sym}) {
197 if ($mod & CFClient::KMOD_SHIFT) { 207 if ($mod & CFClient::KMOD_SHIFT) {
198 $self->{shft}++; 208 $self->{shft}++;
199 $::CONN->user_send ("fire $DIR{$sym}[0]"); 209 $::CONN->user_send ("fire $DIR{$sym}[0]");
208 new CFClient::MapWidget::Command:: 218 new CFClient::MapWidget::Command::
209 command => $self->{command}, 219 command => $self->{command},
210 can_focus => 1, 220 can_focus => 1,
211 connect_execute => sub { 221 connect_execute => sub {
212 # todo: support callback instead of user_send 222 # todo: support callback instead of user_send
213 $::CONN->user_send ($_[1][1]); 223 $::CONN->user_send ($_[1]);
214 }, 224 },
215 connect_close => sub { 225 connect_close => sub {
216 (delete $self->{command_widget})->hide; 226 (delete $self->{command_widget})->hide;
217 $self->focus_in; 227 $self->focus_in;
218 }, 228 },
219 ; 229 ;
220 $self->{command_widget}->key_down ($ev); 230 $self->{command_widget}->key_down ($ev)
231 unless $ev->{unicode} == 20;
221 return unless $self->{command_widget}; 232 return unless $self->{command_widget};
222 $self->{command_widget}->show; 233 $self->{command_widget}->show;
223 $self->{command_widget}->focus_in; 234 $self->{command_widget}->focus_in;
224 } 235 }
225} 236}
239} 250}
240 251
241sub add_command { 252sub add_command {
242 my ($self, $command, $tooltip, $widget, $cb) = @_; 253 my ($self, $command, $tooltip, $widget, $cb) = @_;
243 254
244 (my $abbrev = $command) =~ s/(\S)[^[:space:]_]*[[:space:]_]+/$1/g; 255 (my $data = $command) =~ s/\\//g;
245 256
257 $tooltip =~ s/^\s+//;
258
259 $tooltip = "<big>$data</big>\n\n$tooltip";
260
261 $tooltip =~ s/\s+$//;
262
263 $self->{command}{$command} = [$data, $tooltip, $widget, $cb, ++$self->{command_id}];
264}
265
266sub clr_commands {
267 my ($self) = @_;
268
246 $self->{command} = [ 269 %{$self->{command}} = ();
247 [$abbrev, $command, $tooltip, $widget, $cb],
248 grep $_->[1] ne $command, @{ $self->{command} },
249 ];
250} 270}
251 271
252package CFClient::MapWidget::MapMap; 272package CFClient::MapWidget::MapMap;
253 273
254our @ISA = CFClient::UI::Base::; 274our @ISA = CFClient::UI::Base::;
332 352
333use strict; 353use strict;
334 354
335use CFClient::OpenGL; 355use CFClient::OpenGL;
336 356
337our @ISA = CFClient::UI::VBox::; 357our @ISA = CFClient::UI::Frame::;
338 358
339sub new { 359sub new {
340 my $class = shift; 360 my $class = shift;
341 361
342 my $self = $class->SUPER::new ( 362 my $self = $class->SUPER::new (
363 bg => [0, 0, 0, 0.8],
343 @_, 364 @_,
344 children => [map 365 );
366
367 $self->add ($self->{vbox} = new CFClient::UI::VBox);
368
369 $self->{label} = [
370 map
345 CFClient::UI::Label->new ( 371 CFClient::UI::Label->new (
346 can_hover => 1, 372 can_hover => 1,
347 can_events => 1, 373 can_events => 1,
374 tooltip_width => 0.33,
348 fontsize => $_, 375 fontsize => $_,
349 ), 1, 1, 0.8, 0.8, 0.8, 0.8, 0.8 376 ), (0.8) x 16
377 ];
378
379 $self->{entry} = new CFClient::UI::Entry
380 connect_changed => sub {
381 $self->update_labels;
350 ], 382 };
383
384 $self->{vbox}->add (
385 $self->{entry},
386 @{$self->{label}},
351 ); 387 );
352 388
353 $self 389 $self
354} 390}
355 391
358 394
359 $self->SUPER::size_allocate ($w, $h); 395 $self->SUPER::size_allocate ($w, $h);
360 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10); 396 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
361} 397}
362 398
363sub update_labels {
364 my ($self) = @_;
365
366 my $command = $self->{command};
367 my $search_abbrev = qr/^\Q$self->{search}/;
368 my $search_full = qr/\Q$self->{search}/;
369
370 my @found;
371
372 for (@$command) {
373 if ($_->[0] =~ $search_abbrev) {
374 push @found, [$_->[0], $_];
375 } elsif (2 < length $self->{search} and $_->[1] =~ $search_full) {
376 push @found, [$_->[1], $_];
377 }
378 }
379
380 @found = sort { $a->[0] cmp $b->[0] } @found;
381
382 $self->{children}[0]->set_text ("$self->{search}_");
383
384 for (0..5) {
385 $self->{children}[$_ + 1]->set_text ($found[$_] ? "$found[$_][0] ($found[$_][1][1])" : "");
386 $self->{children}[$_ + 1]{tooltip} = ($found[$_] ? $found[$_][1][2] : "");
387 }
388
389 $self->{select} = $found[0][1]
390 if @found;
391
392 if (@found > 6) {
393 $self->{children}[6]->set_text ("...");
394 }
395
396 $self->check_size;
397}
398
399sub key_down { 399sub key_down {
400 my ($self, $ev) = @_; 400 my ($self, $ev) = @_;
401 401
402 if ($ev->{sym} == 8) { 402 if ($ev->{sym} == 13) {
403 substr $self->{search}, -1, 1, "";
404 $self->update_labels;
405 } elsif ($ev->{sym} == 13) {
406 if (exists $self->{select}) { 403 if (exists $self->{select}) {
407 $self->emit (execute => $self->{select}); 404 $self->emit (execute => $self->{select});
408 $self->emit ("close"); 405 $self->emit ("close");
409 } 406 }
410 } elsif ($ev->{sym} == 27) { 407 } elsif ($ev->{sym} == 27) {
408 $self->{entry}->set_text ("");
411 $self->emit ("close"); 409 $self->emit ("close");
412 return; 410 return;
413 } elsif ((chr $ev->{unicode}) =~ /^[[:alpha:]]$/) { 411 } elsif ($ev->{sym} == CFClient::SDLK_DOWN) {
414 $self->{search} .= chr $ev->{unicode}; 412 ++$self->{select_offset}
413 if $self->{select_offset} < $#{ $self->{last_match} || [] };
415 $self->update_labels; 414 $self->update_labels;
415 } elsif ($ev->{sym} == CFClient::SDLK_UP) {
416 --$self->{select_offset}
417 if $self->{select_offset};
418 $self->update_labels;
419 } else {
420 #$self->{entry}{force_alloc} = 1;
421 $self->{entry}->key_down ($ev);
416 } 422 }
423}
417 424
418 length $self->{search} 425sub update_labels {
426 my ($self) = @_;
427
428 my $text = $self->{entry}->get_text;
429
430 length $text
419 or $self->emit ("close"); 431 or return $self->emit ("close");
432
433 my ($cmd, $arg) = $text =~ /^\s*([^[:space:]]*)(.*)$/;
434
435 if ($cmd ne $self->{last_search}) {
436 my $regexp = do {
437 my ($beg, @chr) = split //, lc $cmd;
438
439 # the following regex is used to match our "completion entry"
440 # to an actual command - the parentheses match kind of "overhead"
441 # - the more characters the parentheses match, the less attractive
442 # is the match.
443 my $regexp = "^\Q$beg\E"
444 . join "", map "(?:.*?[ \\\\]\Q$_\E|(.*?)\Q$_\E)", @chr;
445 qr<$regexp>
446 };
447
448 my @match;
449 my @penalty;
450
451 for (keys %{$self->{command}}) {
452 if (@penalty = $_ =~ $regexp) {
453 push @match, [$_, length join "", map "::$_", grep defined, @penalty];
454 }
455 }
456
457 @match = map $self->{command}{$_->[0]},
458 sort {
459 $a->[1] <=> $b->[1]
460 or $self->{command}{$a->[0]}[4] <=> $self->{command}{$b->[0]}[4]
461 } @match;
462
463 $self->{last_search} = $cmd;
464 $self->{last_match} = \@match;
465
466 $self->{select_offset} = 0;
467 }
468
469 my @labels = @{ $self->{label} };
470 my @matches = @{ $self->{last_match} || [] };
471
472 if ($self->{select_offset}) {
473 splice @matches, 0, $self->{select_offset}, ();
474
475 my $label = shift @labels;
476 $label->set_text ("...");
477 $label->set_tooltip ("Use Cursor-Up to view previous matches");
478 }
479
480 for my $label (@labels) {
481 $label->{fg} = [1, 1, 1, 1];
482 $label->{bg} = [0, 0, 0, 0];
483 }
484
485 if (@matches) {
486 $self->{select} = "$matches[0][0]$arg";
487
488 $labels[0]->{fg} = [0, 0, 0, 1];
489 $labels[0]->{bg} = [1, 1, 1, 0.8];
490 } else {
491 $self->{select} = "$cmd$arg";
492 }
493
494 for my $match (@matches) {
495 my $label = shift @labels;
496
497 if (@labels) {
498 $label->set_text ("$match->[0]$arg");
499 $label->set_tooltip ($match->[1]);
500 } else {
501 $label->set_text ("...");
502 $label->set_tooltip ("Use Cursor-Down to view more matches");
503 last;
504 }
505 }
506
507 for my $label (@labels) {
508 $label->set_text ("");
509 $label->set_tooltip ("");
510 }
511
512 $self->update;
513 ###
514}
515
516sub _draw {
517 my ($self) = @_;
518
519 # hack
520 local $CFClient::UI::FOCUS = $self->{entry};
521
522 $self->SUPER::_draw;
420} 523}
421 524
4221 5251

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines