--- deliantra/Deliantra-Client/DC/MapWidget.pm 2006/05/23 21:14:41 1.34 +++ deliantra/Deliantra-Client/DC/MapWidget.pm 2006/09/29 00:56:06 1.82 @@ -1,13 +1,19 @@ -package CFClient::MapWidget; +package CFPlus::MapWidget; use strict; use utf8; use List::Util qw(min max); -use CFClient::OpenGL; - -our @ISA = CFClient::UI::Base::; +use CFPlus; +use CFPlus::OpenGL; +use CFPlus::UI; + +our @ISA = CFPlus::UI::Base::; + +my $magicmap_tex = + new_from_file CFPlus::Texture CFPlus::find_rcfile "magicmap.png", + mipmap => 1, wrap => 0, internalformat => GL_ALPHA; sub new { my $class = shift; @@ -16,26 +22,65 @@ z => -1, can_focus => 1, list => glGenList, + + smooth_matrix => [ + 0.05, 0.13, 0.05, + 0.13, 0.30, 0.13, + 0.05, 0.13, 0.05, + ], + @_ ); + $self->{completer} = new CFPlus::MapWidget::Command:: + command => $self->{command}, + tooltip => "#completer_help", + ; + $self } -sub DESTROY { - my $self = shift; +sub add_command { + my ($self, $command, $tooltip, $widget, $cb) = @_; - glDeleteList $self->{list}; + (my $data = $command) =~ s/\\//g; - $self->SUPER::DESTROY; + $tooltip =~ s/^\s+//; + $tooltip = "$data\n\n$tooltip"; + $tooltip =~ s/\s+$//; + + $self->{completer}{command}{$command} = [$data, $tooltip, $widget, $cb, ++$self->{command_id}]; } -sub button_down { - my ($self, $ev, $x, $y) = @_; +sub clr_commands { + my ($self) = @_; - $self->focus_in; + %{$self->{completer}{command}} = (); - if ($ev->{button} == 2) { + $self->{completer}->hide + if $self->{completer}; +} + +sub invoke_button_down { + my ($self, $ev, $x, $y) = @_; + + if ($ev->{button} == 1) { + $self->grab_focus; + return unless $::CONN; + + my $x = 1 + CFPlus::floor +($ev->{x} - $self->{sx0}) / $self->{tilesize} - $self->{sx}; + my $y = 1 + CFPlus::floor +($ev->{y} - $self->{sy0}) / $self->{tilesize} - $self->{sy}; + + $x -= int 0.5 * $self->{sw}; + $y -= int 0.5 * $self->{sh}; + + $::CONN->lookat ($x, $y) + if $::CONN; + + } elsif ($ev->{button} == 2) { + $self->grab_focus; + return unless $::CONN; + my ($ox, $oy) = ($ev->{x}, $ev->{y}); my ($bw, $bh) = ($::CFG->{map_shift_x}, $::CFG->{map_shift_y}); @@ -49,25 +94,62 @@ $self->update; }; + } elsif ($ev->{button} == 3) { + (new CFPlus::UI::Menu + items => [ + ["Help Browser…\tF1", sub { $::HELP_WINDOW->toggle_visibility }], + ["Statistics\tF2", sub { ::toggle_player_page ($::STATS_PAGE) }], + ["Skills\tF3", sub { ::toggle_player_page ($::SKILL_PAGE) }], + ["Spells…\tF4", sub { ::toggle_player_page ($::SPELL_PAGE) }], + ["Inventory…\tF5", sub { ::toggle_player_page ($::INVENTORY_PAGE) }], + ["Setup… \tF9", sub { $::SETUP_DIALOG->toggle_visibility }], + ["Server Messages…", sub { $::MESSAGE_WINDOW->toggle_visibility }], + [ + $::PICKUP_ENABLE->{state} + ? "Disable automatic pickup" + : "Enable automatic pickup", + sub { $::PICKUP_ENABLE->toggle } + ], + ["Quit", + sub { + if ($::CONN) { + &::open_quit_dialog; + } else { + exit; + } + } + ], + ], + )->popup ($ev); } + + 1 } -sub button_up { +sub invoke_button_up { my ($self, $ev, $x, $y) = @_; delete $self->{motion}; + + 1 } -sub mouse_motion { +sub invoke_mouse_motion { my ($self, $ev, $x, $y) = @_; - $self->{motion}->($ev, $x, $y) if $self->{motion}; + if ($self->{motion}) { + $self->{motion}->($ev, $x, $y); + } else { + return 0; + } + + 1 } sub size_request { ( - 1 + 32 * int $::WIDTH / 32, - 1 + 32 * int $::HEIGHT / 32, + 32 * CFPlus::ceil $::WIDTH / 32, + 32 * CFPlus::ceil $::HEIGHT / 32, ) } @@ -78,237 +160,278 @@ $self->SUPER::update; } -sub draw { - my ($self) = @_; - - return - unless $CFClient::UI::FOCUS == $self || !$::FAST; - - if (delete $self->{need_update}) { - glNewList $self->{list}; - - if ($::MAP) { - my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99; - my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99; - - my $sx = $::CFG->{map_shift_x} / $::CFG->{map_scale}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32; - my $sy = $::CFG->{map_shift_y} / $::CFG->{map_scale}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32; - - glPushMatrix; - glScale $::CFG->{map_scale}, $::CFG->{map_scale}; - - glTranslate $sx0 - 32, $sy0 - 32, 0; - - my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1); - - if ($::CFG->{fow_enable}) { - if ($::CFG->{fow_smooth} && $CFClient::GL_VERSION >= 1.2) { # smooth fog of war - glConvolutionParameter (GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER); - glConvolutionFilter2D ( - GL_CONVOLUTION_2D, - GL_ALPHA, - 3, 3, - GL_ALPHA, GL_FLOAT, - pack "f*", - 0.05, 0.13, 0.05, - 0.13, 0.30, 0.13, - 0.05, 0.13, 0.05, - ); - glEnable GL_CONVOLUTION_2D; - } - - # try to re-use the texture name: TODO improve texture class instead - my $prev_name = ((delete $self->{fow_texture}) || {})->{name}; - - $self->{fow_texture} = new CFClient::Texture - w => $w, - h => $h, - data => $data, - name => $prev_name, # a bit hackish - internalformat => GL_ALPHA, - format => GL_ALPHA; - - glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth}; - - glEnable GL_TEXTURE_2D; - glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; - - glColor +($::CFG->{fow_intensity}) x 3, 0.8; - $self->{fow_texture}->draw_quad_alpha (0, 0, $w * 32, $h * 32); - - glDisable GL_TEXTURE_2D; - } - - glPopMatrix; - } - - glEndList; - } - - glPushMatrix; - glCallList $self->{list}; - glPopMatrix; - - # TNT2 emulates logops in software (or worse :) - if ($CFClient::UI::FOCUS == $self) { - (delete $self->{out_of_focus})->destroy - if $self->{out_of_focus}; - } else { - glColor 0.4, 0.2, 0.2, 0.6; - glEnable GL_BLEND; - glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; - glBegin GL_QUADS; - glVertex 0, 0; - glVertex 0, $::HEIGHT; - glVertex $::WIDTH, $::HEIGHT; - glVertex $::WIDTH, 0; - glEnd; - glDisable GL_BLEND; - - $self->{out_of_focus} ||= do { - my $label = new CFClient::UI::Label - x => 0, - y => 0, - z => 1, - ellipsise => 0, - text => "map out of focus (click map to play)"; - - $label->show; - $label->update; - - $CFClient::UI::ROOT->on_post_alloc ("$self$label" => sub { - $label->move ( - ($::WIDTH - $label->{w}) * 0.5, - ($::HEIGHT - $label->{h}) * 0.5, - ); - }); - - $label - }; - } -} - my %DIR = ( - CFClient::SDLK_KP8, [1, "north"], - CFClient::SDLK_KP9, [2, "northeast"], - CFClient::SDLK_KP6, [3, "east"], - CFClient::SDLK_KP3, [4, "southeast"], - CFClient::SDLK_KP2, [5, "south"], - CFClient::SDLK_KP1, [6, "southwest"], - CFClient::SDLK_KP4, [7, "west"], - CFClient::SDLK_KP7, [8, "northwest"], - - CFClient::SDLK_UP, [1, "north"], - CFClient::SDLK_RIGHT, [3, "east"], - CFClient::SDLK_DOWN, [5, "south"], - CFClient::SDLK_LEFT, [7, "west"], + CFPlus::SDLK_KP8, [1, "north"], + CFPlus::SDLK_KP9, [2, "northeast"], + CFPlus::SDLK_KP6, [3, "east"], + CFPlus::SDLK_KP3, [4, "southeast"], + CFPlus::SDLK_KP2, [5, "south"], + CFPlus::SDLK_KP1, [6, "southwest"], + CFPlus::SDLK_KP4, [7, "west"], + CFPlus::SDLK_KP7, [8, "northwest"], + + CFPlus::SDLK_UP, [1, "north"], + CFPlus::SDLK_RIGHT, [3, "east"], + CFPlus::SDLK_DOWN, [5, "south"], + CFPlus::SDLK_LEFT, [7, "west"], ); -sub key_down { +sub invoke_key_down { my ($self, $ev) = @_; - return unless $::CONN; - my $mod = $ev->{mod}; my $sym = $ev->{sym}; my $uni = $ev->{unicode}; - if ($sym == CFClient::SDLK_KP5) { + $mod &= CFPlus::KMOD_CTRL | CFPlus::KMOD_ALT | CFPlus::KMOD_SHIFT; + + if ($uni == ord "\t") { + $::PL_WINDOW->toggle_visibility; + } elsif ($sym == CFPlus::SDLK_F1 && !$mod) { + $::HELP_WINDOW->toggle_visibility; + } elsif ($sym == CFPlus::SDLK_F2 && !$mod) { + ::toggle_player_page ($::STATS_PAGE); + } elsif ($sym == CFPlus::SDLK_F3 && !$mod) { + ::toggle_player_page ($::SKILL_PAGE); + } elsif ($sym == CFPlus::SDLK_F4 && !$mod) { + ::toggle_player_page ($::SPELL_PAGE); + } elsif ($sym == CFPlus::SDLK_F5 && !$mod) { + ::toggle_player_page ($::INVENTORY_PAGE); + } elsif ($sym == CFPlus::SDLK_F9 && !$mod) { + $::SETUP_DIALOG->toggle_visibility; + } elsif ($sym == CFPlus::SDLK_INSERT && $mod & CFPlus::KMOD_CTRL) { + $::BIND_EDITOR->set_binding (undef, undef, [], + sub { + my ($mod, $sym, $cmds) = @_; + $::BIND_EDITOR->cfg_bind ($mod, $sym, $cmds); + }); + $::BIND_EDITOR->start; + $::BIND_EDITOR->show; +#TODO: elmex, what was this supposed to do? it currently crashes the client. +# } elsif ($sym == CFPlus::SDLK_INSERT && not ($mod & CFPlus::KMOD_CTRL)) { +# $::BIND_EDITOR->stop; +# $::BIND_EDITOR->ask_for_bind_and_commit; +# $::BIND_EDITOR->hide; + } elsif (!$::CONN) { + return 0; # bindings further down need a valid connection + + } elsif ($sym == CFPlus::SDLK_KP5 && !$mod) { $::CONN->user_send ("stay fire"); } elsif ($uni == ord ",") { $::CONN->user_send ("take"); - } elsif ($uni == ord "\t" or $uni == ord " ") { + } elsif ($uni == ord " ") { $::CONN->user_send ("apply"); - } elsif ($sym == CFClient::SDLK_KP_PLUS || $uni == ord "+") { + } elsif ($uni == 13) { + $::CONN->user_send ("examine"); + } elsif ($uni == ord ".") { + $::CONN->user_send ($self->{completer}{last_command}) + if exists $self->{completer}{last_command}; + } elsif (my $bind_cmd = $::CFG->{profile}{default}{bindings}{$mod}{$sym}) { + $::CONN->user_send ($_) for @$bind_cmd; + } elsif (($sym == CFPlus::SDLK_KP_PLUS && !$mod) || $uni == ord "+") { $::CONN->user_send ("rotateshoottype +"); - } elsif ($sym == CFClient::SDLK_KP_MINUS || $uni == ord "-") { + } elsif (($sym == CFPlus::SDLK_KP_MINUS && !$mod) || $uni == ord "-") { $::CONN->user_send ("rotateshoottype -"); + } elsif ($uni == ord '"') { + $self->{completer}->set_prefix ("$::CFG->{say_command} "); + $self->{completer}->show; } elsif ($uni == ord "'") { - $self->emit ('activate_console'); - } elsif ($uni == ord "/") { - $self->emit (activate_console => '/'); + $self->{completer}->set_prefix (""); + $self->{completer}->show; } elsif (exists $DIR{$sym}) { - if ($mod & CFClient::KMOD_SHIFT) { + if ($mod & CFPlus::KMOD_SHIFT) { $self->{shft}++; - $::CONN->user_send ("fire $DIR{$sym}[0]"); - } elsif ($mod & CFClient::KMOD_CTRL) { + if ($DIR{$sym}[0] != $self->{fire_dir}) { + $::CONN->user_send ("fire $DIR{$sym}[0]"); + } + $self->{fire_dir} = $DIR{$sym}[0]; + } elsif ($mod & CFPlus::KMOD_CTRL) { $self->{ctrl}++; $::CONN->user_send ("run $DIR{$sym}[0]"); } else { $::CONN->user_send ("$DIR{$sym}[1]"); } - } elsif ($ev->{unicode}) { - $self->{command_widget} ||= - new CFClient::MapWidget::Command:: - command => $self->{command}, - can_focus => 1, - connect_execute => sub { - # todo: support callback instead of user_send - $::CONN->user_send ($_[1]); - }, - connect_close => sub { - (delete $self->{command_widget})->hide; - $self->focus_in; - }, - ; - $self->{command_widget}->key_down ($ev) - unless $ev->{unicode} == 20; - return unless $self->{command_widget}; - $self->{command_widget}->show; - $self->{command_widget}->focus_in; + } elsif ((ord 'a') <= $uni && $uni <= (ord 'z')) { + $self->{completer}->inject_key_down ($ev); + $self->{completer}->show; + } else { + return 0; } + + 1 } -sub key_up { +sub invoke_key_up { my ($self, $ev) = @_; + my $res = 0; my $mod = $ev->{mod}; my $sym = $ev->{sym}; - if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) { - $::CONN->user_send ("fire_stop"); + if ($::CFG->{shift_fire_stop}) { + if (!($mod & CFPlus::KMOD_SHIFT) && delete $self->{shft}) { + $::CONN->user_send ("fire_stop"); + delete $self->{fire_dir}; + $res = 1; + } + } else { + if (exists $DIR{$sym} && delete $self->{shft}) { + $::CONN->user_send ("fire_stop"); + delete $self->{fire_dir}; + $res = 1; + } elsif (($sym == CFPlus::SDLK_LSHIFT || $sym == CFPlus::SDLK_RSHIFT) && delete $self->{shft}) { # XXX: is RSHIFT ok? + $::CONN->user_send ("fire_stop"); + delete $self->{fire_dir}; + $res = 1; + } } - if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) { + + if (!($mod & CFPlus::KMOD_CTRL ) && delete $self->{ctrl}) { $::CONN->user_send ("run_stop"); + $res = 1; } + + $res } -sub add_command { - my ($self, $command, $tooltip, $widget, $cb) = @_; +sub set_magicmap { + my ($self, $w, $h, $x, $y, $data) = @_; - (my $data = $command) =~ s/\\//g; + $x -= $::MAP->ox + int 0.5 * $::MAP->w; + $y -= $::MAP->oy + int 0.5 * $::MAP->h; - $tooltip =~ s/^\s+//; + $self->{magicmap} = [$x, $y, $w, $h, $data]; - $tooltip = "$data\n\n$tooltip"; + $self->update; +} - $tooltip =~ s/\s+$//; +sub draw { + my ($self) = @_; + + return unless $::MAP; + + my $focused = $CFPlus::UI::FOCUS == $self + || $CFPlus::UI::FOCUS == $self->{completer}{entry}; + + return + unless $focused || !$::FAST; + + if (delete $self->{need_update}) { + my $tilesize = $self->{tilesize} = int 32 * $::CFG->{map_scale}; + + my $sx = $self->{sx} = CFPlus::ceil $::CFG->{map_shift_x} / $tilesize; + my $sy = $self->{sy} = CFPlus::ceil $::CFG->{map_shift_y} / $tilesize; + + my $sx0 = $self->{sx0} = $::CFG->{map_shift_x} - $sx * $tilesize; + my $sy0 = $self->{sy0} = $::CFG->{map_shift_y} - $sy * $tilesize; + + my $sw = $self->{sw} = 1 + CFPlus::ceil $self->{w} / $tilesize; + my $sh = $self->{sh} = 1 + CFPlus::ceil $self->{h} / $tilesize; + + if ($::CFG->{fow_enable}) { + my ($w, $h, $data) = $::MAP->fow_texture ($sx, $sy, 0, 0, $sw, $sh); + + if ($::CFG->{fow_smooth} && $CFPlus::OpenGL::GL_VERSION >= 1.2) { # smooth fog of war + glConvolutionParameter (GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER); + glConvolutionFilter2D ( + GL_CONVOLUTION_2D, + GL_ALPHA, + 3, 3, + GL_ALPHA, GL_FLOAT, + (pack "f*", @{ $self->{smooth_matrix} }), + ); + glEnable GL_CONVOLUTION_2D; + } + + $self->{fow_texture} = new CFPlus::Texture + w => $w, + h => $h, + data => $data, + internalformat => GL_ALPHA, + format => GL_ALPHA; + + glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth}; + } else { + delete $self->{fow_texture}; + } + + glNewList $self->{list}; + + glPushMatrix; + glTranslate $sx0, $sy0; + glScale $::CFG->{map_scale}, $::CFG->{map_scale}; + + $::MAP->draw ($sx, $sy, 0, 0, $sw, $sh); + + glScale 32, 32; - $self->{command}{$command} = [$data, $tooltip, $widget, $cb, ++$self->{command_id}]; + if (my $tex = $self->{fow_texture}) { + glEnable GL_TEXTURE_2D; + glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; + + glColor +($::CFG->{fow_intensity}) x 3, 0.9; + $self->{fow_texture}->draw_quad_alpha (0, 0); + + glDisable GL_TEXTURE_2D; + } + + if ($self->{magicmap}) { + my ($x, $y, $w, $h, $data) = @{ $self->{magicmap} }; + + $x += $::MAP->ox - $sx + int 0.5 * ($::MAP->w - $sw + 1); + $y += $::MAP->oy - $sy + int 0.5 * ($::MAP->h - $sh + 1); + + glTranslate - $x - 1, - $y - 1; + glBindTexture GL_TEXTURE_2D, $magicmap_tex->{name}; + $::MAP->draw_magicmap ($x, $y, $w, $h, $data); + } + + glPopMatrix; + glEndList; + } + + glCallList $self->{list}; + + # TNT2 emulates logops in software (or worse :) + unless ($focused) { + glColor 0.4, 0.2, 0.2, 0.6; + glEnable GL_BLEND; + glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; + glBegin GL_QUADS; + glVertex 0, 0; + glVertex 0, $::HEIGHT; + glVertex $::WIDTH, $::HEIGHT; + glVertex $::WIDTH, 0; + glEnd; + glDisable GL_BLEND; + } } -sub clr_commands { - my ($self) = @_; +sub DESTROY { + my $self = shift; + + glDeleteList $self->{list}; - %{$self->{command}} = (); + $self->SUPER::DESTROY; } -package CFClient::MapWidget::MapMap; +package CFPlus::MapWidget::MapMap; -our @ISA = CFClient::UI::Base::; +our @ISA = CFPlus::UI::Base::; use Time::HiRes qw(time); -use CFClient::OpenGL; +use CFPlus::OpenGL; sub size_request { ($::HEIGHT * 0.25, $::HEIGHT * 0.25) } -sub size_allocate { +sub invoke_size_allocate { my ($self, $w, $h) = @_; - $self->SUPER::size_allocate ($w, $h); $self->update; + + 1 } sub update { @@ -343,11 +466,11 @@ $self->{texture_atime} = time + 1/3; $self->{texture} = - new CFClient::Texture + new CFPlus::Texture w => $w, h => $h, data => $::MAP->mapmap (-$ox, -$oy, $w, $h), - type => $CFClient::GL_VERSION >= 1.2 ? GL_UNSIGNED_INT_8_8_8_8_REV : GL_UNSIGNED_BYTE; + type => $CFPlus::GL_VERSION >= 1.2 ? GL_UNSIGNED_INT_8_8_8_8_REV : GL_UNSIGNED_BYTE; } $self->{texture}->draw_quad (0, 0); @@ -372,13 +495,13 @@ glDisable GL_BLEND; } -package CFClient::MapWidget::Command; +package CFPlus::MapWidget::Command; use strict; -use CFClient::OpenGL; +use CFPlus::OpenGL; -our @ISA = CFClient::UI::Frame::; +our @ISA = CFPlus::UI::Frame::; sub new { my $class = shift; @@ -388,11 +511,11 @@ @_, ); - $self->add ($self->{vbox} = new CFClient::UI::VBox); + $self->add ($self->{vbox} = new CFPlus::UI::VBox); $self->{label} = [ map - CFClient::UI::Label->new ( + CFPlus::UI::Label->new ( can_hover => 1, can_events => 1, tooltip_width => 0.33, @@ -400,10 +523,76 @@ ), (0.8) x 16 ]; - $self->{entry} = new CFClient::UI::Entry - connect_changed => sub { + $self->{entry} = new CFPlus::UI::Entry + on_changed => sub { $self->update_labels; - }; + 0 + }, + on_button_down => sub { + my ($entry, $ev, $x, $y) = @_; + + if ($ev->{button} == 3) { + (new CFPlus::UI::Menu + items => [ + ["bind " . (CFPlus::asxml $self->{select}) . " to a key" + => sub { $::BIND_EDITOR->do_quick_binding ([$self->{select}], sub { $entry->grab_focus }) }] + ], + )->popup ($ev); + return 1; + } + 0 + }, + on_key_down => sub { + my ($entry, $ev) = @_; + + my $self = $entry->{parent}{parent}; + + if ($ev->{sym} == 13) { + if (exists $self->{select}) { + $self->{last_command} = $self->{select}; + $::CONN->user_send ($self->{select}); + + unshift @{$self->{history}}, $self->{entry}->get_text; + $self->{hist_ptr} = 0; + + $self->hide; + } + } elsif ($ev->{sym} == 27) { + $self->{hist_ptr} = 0; + $self->hide; + } elsif ($ev->{sym} == CFPlus::SDLK_DOWN) { + if ($self->{hist_ptr} > 1) { + $self->{hist_ptr}--; + $self->{entry}->set_text ($self->{history}->[$self->{hist_ptr} - 1]); + } elsif ($self->{hist_ptr} > 0) { + $self->{hist_ptr}--; + $self->{entry}->set_text ($self->{hist_saveback}); + } else { + ++$self->{select_offset} + if $self->{select_offset} < $#{ $self->{last_match} || [] }; + } + $self->update_labels; + } elsif ($ev->{sym} == CFPlus::SDLK_UP) { + if ($self->{select_offset}) { + --$self->{select_offset} + } else { + unless ($self->{hist_ptr}) { + $self->{hist_saveback} = $self->{entry}->get_text; + } + if ($self->{hist_ptr} <= $#{$self->{history}}) { + $self->{hist_ptr}++; + } + $self->{entry}->set_text ($self->{history}->[$self->{hist_ptr} - 1]) + if exists $self->{history}->[$self->{hist_ptr} - 1]; + } + $self->update_labels; + } else { + return 0; + } + + 1 + } + ; $self->{vbox}->add ( $self->{entry}, @@ -413,37 +602,42 @@ $self } -sub size_allocate { +sub set_prefix { + my ($self, $prefix) = @_; + + $self->{entry}->set_text ($prefix); + $self->show; +} + +sub invoke_size_allocate { my ($self, $w, $h) = @_; - $self->SUPER::size_allocate ($w, $h); - $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10); + $self->move_abs (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10); + + $self->SUPER::invoke_size_allocate ($w, $h) +} + +sub show { + my ($self) = @_; + + $self->SUPER::show; + $self->{entry}->grab_focus; +} + +sub hide { + my ($self) = @_; + + $self->{hist_ptr} = 0; + + $self->SUPER::hide; + $self->{entry}->set_text (""); } -sub key_down { +sub inject_key_down { my ($self, $ev) = @_; - if ($ev->{sym} == 13) { - if (exists $self->{select}) { - $self->emit (execute => $self->{select}); - $self->emit ("close"); - } - } elsif ($ev->{sym} == 27) { - $self->{entry}->set_text (""); - $self->emit ("close"); - return; - } elsif ($ev->{sym} == CFClient::SDLK_DOWN) { - ++$self->{select_offset} - if $self->{select_offset} < $#{ $self->{last_match} || [] }; - $self->update_labels; - } elsif ($ev->{sym} == CFClient::SDLK_UP) { - --$self->{select_offset} - if $self->{select_offset}; - $self->update_labels; - } else { - #$self->{entry}{force_alloc} = 1; - $self->{entry}->key_down ($ev); - } + $self->{entry}->grab_focus; + $self->{entry}->emit (key_down => $ev); } sub update_labels { @@ -452,40 +646,45 @@ my $text = $self->{entry}->get_text; length $text - or return $self->emit ("close"); + or return $self->hide; my ($cmd, $arg) = $text =~ /^\s*([^[:space:]]*)(.*)$/; - if ($cmd ne $self->{last_search}) { - my $regexp = do { - my ($beg, @chr) = split //, lc $cmd; - - # the following regex is used to match our "completion entry" - # to an actual command - the parentheses match kind of "overhead" - # - the more characters the parentheses match, the less attractive - # is the match. - my $regexp = "^\Q$beg\E" - . join "", map "(?:.*?[ \\\\]\Q$_\E|(.*?)\Q$_\E)", @chr; - qr<$regexp> - }; - + if ($text ne $self->{last_search}) { my @match; - my @penalty; - for (keys %{$self->{command}}) { - if (@penalty = $_ =~ $regexp) { - push @match, [$_, length join "", map "::$_", grep defined, @penalty]; + if ($text =~ /^(.*?)\s+$/) { + @match = [$cmd, "(appended whitespace suppresses completion)"]; + } else { + my $regexp = do { + my ($beg, @chr) = split //, lc $cmd; + + # the following regex is used to match our "completion entry" + # to an actual command - the parentheses match kind of "overhead" + # - the more characters the parentheses match, the less attractive + # is the match. + my $regexp = "^\Q$beg\E" + . join "", map "(?:.*?[ \\\\]\Q$_\E|(.*?)\Q$_\E)", @chr; + qr<$regexp> + }; + + my @penalty; + + for (keys %{$self->{command}}) { + if (@penalty = $_ =~ $regexp) { + push @match, [$_, length join "", map "::$_", grep defined, @penalty]; + } } - } - @match = map $self->{command}{$_->[0]}, - sort { - $a->[1] <=> $b->[1] - or $self->{command}{$a->[0]}[4] <=> $self->{command}{$b->[0]}[4] - or (length $a->[0]) <=> (length $b->[0]) - } @match; + @match = map $self->{command}{$_->[0]}, + sort { + $a->[1] <=> $b->[1] + or $self->{command}{$a->[0]}[4] <=> $self->{command}{$b->[0]}[4] + or (length $b->[0]) <=> (length $a->[0]) + } @match; + } - $self->{last_search} = $cmd; + $self->{last_search} = $text; $self->{last_match} = \@match; $self->{select_offset} = 0; @@ -535,14 +734,13 @@ } $self->update; - ### } sub _draw { my ($self) = @_; # hack - local $CFClient::UI::FOCUS = $self->{entry}; + local $CFPlus::UI::FOCUS = $self->{entry}; $self->SUPER::_draw; }