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.18 by root, Tue Apr 25 12:56:34 2006 UTC vs.
Revision 1.28 by root, Wed May 17 20:50:19 2006 UTC

10our @ISA = CFClient::UI::Base::; 10our @ISA = CFClient::UI::Base::;
11 11
12sub new { 12sub new {
13 my $class = shift; 13 my $class = shift;
14 14
15 $class->SUPER::new ( 15 my $self = $class->SUPER::new (
16 z => -1, 16 z => -1,
17 can_focus => 1, 17 can_focus => 1,
18 list => glGenList, 18 list => glGenList,
19 @_ 19 @_
20 ) 20 );
21
22 $self
21} 23}
22 24
23sub DESTROY { 25sub DESTROY {
24 my $self = shift; 26 my $self = shift;
25 27
76 $self->SUPER::update; 78 $self->SUPER::update;
77} 79}
78 80
79sub draw { 81sub draw {
80 my ($self) = @_; 82 my ($self) = @_;
83
84 return
85 unless $CFClient::UI::FOCUS == $self || !$::FAST;
81 86
82 if (delete $self->{need_update}) { 87 if (delete $self->{need_update}) {
83 glNewList $self->{list}; 88 glNewList $self->{list};
84 89
85 if ($::MAP) { 90 if ($::MAP) {
174); 179);
175 180
176sub key_down { 181sub key_down {
177 my ($self, $ev) = @_; 182 my ($self, $ev) = @_;
178 183
184 return unless $::CONN;
185
179 my $mod = $ev->{mod}; 186 my $mod = $ev->{mod};
180 my $sym = $ev->{sym}; 187 my $sym = $ev->{sym};
188 my $uni = $ev->{unicode};
181 189
182 if ($sym == CFClient::SDLK_KP5) { 190 if ($sym == CFClient::SDLK_KP5) {
183 $::CONN->user_send ("stay fire"); 191 $::CONN->user_send ("stay fire");
184 } elsif ($sym == ord ",") { 192 } elsif ($uni == ord ",") {
185 $::CONN->user_send ("take"); 193 $::CONN->user_send ("take");
186 } elsif ($sym == ord "a") { 194 } elsif ($uni == ord "\t" or $uni == ord " ") {
187 $::CONN->user_send ("apply"); 195 $::CONN->user_send ("apply");
196 } elsif ($sym == CFClient::SDLK_KP_PLUS || $uni == ord "+") {
197 $::CONN->user_send ("rotateshoottype +");
198 } elsif ($sym == CFClient::SDLK_KP_MINUS || $uni == ord "-") {
199 $::CONN->user_send ("rotateshoottype -");
188 } elsif ($sym == ord "'") { 200 } elsif ($uni == ord "'") {
189 $self->emit ('activate_console'); 201 $self->emit ('activate_console');
190 } elsif ($sym == ord "/") { 202 } elsif ($uni == ord "/") {
191 $self->emit (activate_console => '/'); 203 $self->emit (activate_console => '/');
192 } elsif (exists $DIR{$sym}) { 204 } elsif (exists $DIR{$sym}) {
193 if ($mod & CFClient::KMOD_SHIFT) { 205 if ($mod & CFClient::KMOD_SHIFT) {
194 $self->{shft}++; 206 $self->{shft}++;
195 $::CONN->user_send ("fire $DIR{$sym}[0]"); 207 $::CONN->user_send ("fire $DIR{$sym}[0]");
204 new CFClient::MapWidget::Command:: 216 new CFClient::MapWidget::Command::
205 command => $self->{command}, 217 command => $self->{command},
206 can_focus => 1, 218 can_focus => 1,
207 connect_execute => sub { 219 connect_execute => sub {
208 # todo: support callback instead of user_send 220 # todo: support callback instead of user_send
209 $::CONN->user_send ($_[1][1]); 221 $::CONN->user_send ($_[1]);
210 }, 222 },
211 connect_close => sub { 223 connect_close => sub {
212 (delete $self->{command_widget})->hide; 224 (delete $self->{command_widget})->hide;
213 $self->focus_in; 225 $self->focus_in;
214 }, 226 },
215 ; 227 ;
216 $self->{command_widget}->key_down ($ev); 228 $self->{command_widget}->key_down ($ev)
229 unless $ev->{unicode} == 20;
217 return unless $self->{command_widget}; 230 return unless $self->{command_widget};
218 $self->{command_widget}->show; 231 $self->{command_widget}->show;
219 $self->{command_widget}->focus_in; 232 $self->{command_widget}->focus_in;
220 } 233 }
221} 234}
235} 248}
236 249
237sub add_command { 250sub add_command {
238 my ($self, $command, $tooltip, $widget, $cb) = @_; 251 my ($self, $command, $tooltip, $widget, $cb) = @_;
239 252
240 (my $abbrev = $command) =~ s/(\S)[^[:space:]_]*[[:space:]_]+/$1/g; 253 (my $data = $command) =~ s/\\//g;
241 254
242 push @{$self->{command}}, [$abbrev, $command, $tooltip, $widget, $cb]; 255 $tooltip =~ s/^\s+//;
256
257 $tooltip = "<big>$data</big>\n\n$tooltip";
258
259 $tooltip =~ s/\s+$//;
260
261 $self->{command}{$command} = [$data, $tooltip, $widget, $cb, ++$self->{command_id}];
262}
263
264sub clr_commands {
265 my ($self) = @_;
266
267 %{$self->{command}} = ();
243} 268}
244 269
245package CFClient::MapWidget::MapMap; 270package CFClient::MapWidget::MapMap;
246 271
247use base CFClient::UI::Base::; 272our @ISA = CFClient::UI::Base::;
248 273
249use Time::HiRes qw(time); 274use Time::HiRes qw(time);
250use CFClient::OpenGL; 275use CFClient::OpenGL;
251 276
252sub size_request { 277sub size_request {
325 350
326use strict; 351use strict;
327 352
328use CFClient::OpenGL; 353use CFClient::OpenGL;
329 354
330our @ISA = CFClient::UI::VBox::; 355our @ISA = CFClient::UI::Frame::;
331 356
332sub new { 357sub new {
333 my $class = shift; 358 my $class = shift;
334 359
335 my $self = $class->SUPER::new ( 360 my $self = $class->SUPER::new (
361 bg => [0, 0, 0, 0.8],
336 @_, 362 @_,
337 children => [map 363 );
364
365 $self->add ($self->{vbox} = new CFClient::UI::VBox);
366
367 $self->{label} = [
368 map
338 CFClient::UI::Label->new ( 369 CFClient::UI::Label->new (
339 can_hover => 1, 370 can_hover => 1,
340 can_events => 1, 371 can_events => 1,
372 tooltip_width => 0.33,
341 fontsize => $_, 373 fontsize => $_,
342 ), 1, 1, 0.8, 0.8, 0.8, 0.8, 0.8 374 ), (0.8) x 16
375 ];
376
377 $self->{entry} = new CFClient::UI::Entry
378 connect_changed => sub {
379 $self->update_labels;
343 ], 380 };
381
382 $self->{vbox}->add (
383 $self->{entry},
384 @{$self->{label}},
344 ); 385 );
345 386
346 $self 387 $self
347} 388}
348 389
351 392
352 $self->SUPER::size_allocate ($w, $h); 393 $self->SUPER::size_allocate ($w, $h);
353 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10); 394 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
354} 395}
355 396
356sub update_labels {
357 my ($self) = @_;
358
359 my $command = $self->{command};
360 my $search_abbrev = qr/^\Q$self->{search}/;
361 my $search_full = qr/\Q$self->{search}/;
362
363 my @found;
364
365 for (@$command) {
366 if ($_->[0] =~ $search_abbrev) {
367 push @found, [$_->[0], $_];
368 } elsif ($_->[1] =~ $search_full) {
369 push @found, [$_->[1], $_];
370 }
371 }
372
373 @found = sort { $a->[0] cmp $b->[0] } @found;
374
375 $self->{children}[0]->set_text ("$self->{search}_");
376
377 for (0..5) {
378 $self->{children}[$_ + 1]->set_text ($found[$_] ? "$found[$_][0] ($found[$_][1][1])" : "");
379 $self->{children}[$_ + 1]{tooltip} = ($found[$_] ? $found[$_][1][2] : "");
380 }
381
382 $self->{select} = $found[0][1]
383 if @found;
384
385 if (@found > 6) {
386 $self->{children}[6]->set_text ("...");
387 }
388
389 $self->check_size;
390}
391
392sub key_down { 397sub key_down {
393 my ($self, $ev) = @_; 398 my ($self, $ev) = @_;
394 399
395 if ($ev->{sym} == 8) { 400 if ($ev->{sym} == 13) {
396 substr $self->{search}, -1, 1, "";
397 $self->update_labels;
398 } elsif ($ev->{sym} == 13) {
399 if (exists $self->{select}) { 401 if (exists $self->{select}) {
400 $self->emit (execute => $self->{select}); 402 $self->emit (execute => $self->{select});
401 $self->emit ("close"); 403 $self->emit ("close");
402 } 404 }
403 } elsif ($ev->{sym} == 27) { 405 } elsif ($ev->{sym} == 27) {
406 $self->{entry}->set_text ("");
404 $self->emit ("close"); 407 $self->emit ("close");
405 return; 408 return;
406 } elsif ((chr $ev->{unicode}) =~ /^[[:alpha:]]$/) { 409 } elsif ($ev->{sym} == CFClient::SDLK_DOWN) {
407 $self->{search} .= chr $ev->{unicode}; 410 ++$self->{select_offset}
411 if $self->{select_offset} < $#{ $self->{last_match} || [] };
408 $self->update_labels; 412 $self->update_labels;
413 } elsif ($ev->{sym} == CFClient::SDLK_UP) {
414 --$self->{select_offset}
415 if $self->{select_offset};
416 $self->update_labels;
417 } else {
418 #$self->{entry}{force_alloc} = 1;
419 $self->{entry}->key_down ($ev);
409 } 420 }
421}
410 422
411 length $self->{search} 423sub update_labels {
424 my ($self) = @_;
425
426 my $text = $self->{entry}->get_text;
427
428 length $text
412 or $self->emit ("close"); 429 or return $self->emit ("close");
430
431 my ($cmd, $arg) = $text =~ /^\s*([^[:space:]]*)(.*)$/;
432
433 if ($cmd ne $self->{last_search}) {
434 my $regexp = do {
435 my ($beg, @chr) = split //, lc $cmd;
436
437 # the following regex is used to match our "completion entry"
438 # to an actual command - the parentheses match kind of "overhead"
439 # - the more characters the parentheses match, the less attractive
440 # is the match.
441 my $regexp = "^\Q$beg\E"
442 . join "", map "(?:.*?[ \\\\]\Q$_\E|(.*?)\Q$_\E)", @chr;
443 qr<$regexp>
444 };
445
446 my @match;
447 my @penalty;
448
449 for (keys %{$self->{command}}) {
450 if (@penalty = $_ =~ $regexp) {
451 push @match, [$_, length join "", map "::$_", grep defined, @penalty];
452 }
453 }
454
455 @match = map $self->{command}{$_->[0]},
456 sort {
457 $a->[1] <=> $b->[1]
458 or $self->{command}{$a->[0]}[4] <=> $self->{command}{$b->[0]}[4]
459 } @match;
460
461 $self->{last_search} = $cmd;
462 $self->{last_match} = \@match;
463
464 $self->{select_offset} = 0;
465 }
466
467 my @labels = @{ $self->{label} };
468 my @matches = @{ $self->{last_match} || [] };
469
470 if ($self->{select_offset}) {
471 splice @matches, 0, $self->{select_offset}, ();
472
473 my $label = shift @labels;
474 $label->set_text ("...");
475 $label->set_tooltip ("Use Cursor-Up to view previous matches");
476 }
477
478 for my $label (@labels) {
479 $label->{fg} = [1, 1, 1, 1];
480 $label->{bg} = [0, 0, 0, 0];
481 }
482
483 if (@matches) {
484 $self->{select} = "$matches[0][0]$arg";
485
486 $labels[0]->{fg} = [0, 0, 0, 1];
487 $labels[0]->{bg} = [1, 1, 1, 0.8];
488 } else {
489 $self->{select} = "$cmd$arg";
490 }
491
492 for my $match (@matches) {
493 my $label = shift @labels;
494
495 if (@labels) {
496 $label->set_text ("$match->[0]$arg");
497 $label->set_tooltip ($match->[1]);
498 } else {
499 $label->set_text ("...");
500 $label->set_tooltip ("Use Cursor-Down to view more matches");
501 last;
502 }
503 }
504
505 for my $label (@labels) {
506 $label->set_text ("");
507 $label->set_tooltip ("");
508 }
509
510 $self->update;
511 ###
512}
513
514sub _draw {
515 my ($self) = @_;
516
517 # hack
518 local $CFClient::UI::FOCUS = $self->{entry};
519
520 $self->SUPER::_draw;
413} 521}
414 522
4151 5231

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines