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.28 by root, Wed May 17 20:50:19 2006 UTC vs.
Revision 1.60 by root, Thu Jun 15 08:29:18 2006 UTC

14 14
15 my $self = $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
20 smooth_matrix => [
21 0.05, 0.13, 0.05,
22 0.13, 0.30, 0.13,
23 0.05, 0.13, 0.05,
24 ],
25
19 @_ 26 @_
20 ); 27 );
21 28
29 $self->{completer} = new CFClient::MapWidget::Command::
30 command => $self->{command},
31 can_focus => 1,
32 tooltip => "<b>The Command Completer</b>\n\n"
33 . "This is your central interface to send text commands to the server. "
34 . "To enter a verbatim command to send to the server, just type the command, "
35 . "followed by a space, and press return. "
36 . "Typing the initial letters of words (or just any letters) displays guesses "
37 . "for commands you might want to use.\n"
38 . "You can use the cursor-up and cursor-down keys to select between those guesses.\n"
39 . "<b>Right-Click</b> opens a menu where you cna select further options, sich as redefining keybindings.",
40 ;
41
22 $self 42 $self
23} 43}
24 44
25sub DESTROY { 45sub add_command {
46 my ($self, $command, $tooltip, $widget, $cb) = @_;
47
48 (my $data = $command) =~ s/\\//g;
49
50 $tooltip =~ s/^\s+//;
51 $tooltip = "<big>$data</big>\n\n$tooltip";
52 $tooltip =~ s/\s+$//;
53
54 $self->{completer}{command}{$command} = [$data, $tooltip, $widget, $cb, ++$self->{command_id}];
55}
56
57sub clr_commands {
26 my $self = shift; 58 my ($self) = @_;
27 59
28 glDeleteList $self->{list}; 60 %{$self->{completer}{command}} = ();
29
30 $self->SUPER::DESTROY;
31} 61}
32 62
33sub button_down { 63sub button_down {
34 my ($self, $ev, $x, $y) = @_; 64 my ($self, $ev, $x, $y) = @_;
35 65
66 return unless $::CONN;
67
36 $self->focus_in; 68 $self->focus_in;
37 69
38 if ($ev->{button} == 2) { 70 if ($ev->{button} == 1) {
71 my $x = CFClient::floor +($ev->{x} - $self->{sx0}) / $self->{tilesize} - $self->{sx};
72 my $y = CFClient::floor +($ev->{y} - $self->{sy0}) / $self->{tilesize} - $self->{sy};
73
74 $x -= int 0.5 * $self->{sw};
75 $y -= int 0.5 * $self->{sh};
76
77 $::CONN->lookat ($x, $y)
78 if $::CONN;
79
80 } elsif ($ev->{button} == 2) {
39 my ($ox, $oy) = ($ev->{x}, $ev->{y}); 81 my ($ox, $oy) = ($ev->{x}, $ev->{y});
40 my ($bw, $bh) = ($::CFG->{map_shift_x}, $::CFG->{map_shift_y}); 82 my ($bw, $bh) = ($::CFG->{map_shift_x}, $::CFG->{map_shift_y});
41 83
42 $self->{motion} = sub { 84 $self->{motion} = sub {
43 my ($ev, $x, $y) = @_; 85 my ($ev, $x, $y) = @_;
48 $::CFG->{map_shift_y} = $bh + $y - $oy; 90 $::CFG->{map_shift_y} = $bh + $y - $oy;
49 91
50 $self->update; 92 $self->update;
51 }; 93 };
52 } 94 }
95
96 1
53} 97}
54 98
55sub button_up { 99sub button_up {
56 my ($self, $ev, $x, $y) = @_; 100 my ($self, $ev, $x, $y) = @_;
57 101
58 delete $self->{motion}; 102 delete $self->{motion};
103
104 1
59} 105}
60 106
61sub mouse_motion { 107sub mouse_motion {
62 my ($self, $ev, $x, $y) = @_; 108 my ($self, $ev, $x, $y) = @_;
63 109
110 if ($self->{motion}) {
64 $self->{motion}->($ev, $x, $y) if $self->{motion}; 111 $self->{motion}->($ev, $x, $y);
112 } else {
113 return 0;
114 }
115
116 1
65} 117}
66 118
67sub size_request { 119sub size_request {
68 ( 120 (
69 1 + 32 * int $::WIDTH / 32, 121 1 + 32 * int $::WIDTH / 32,
74sub update { 126sub update {
75 my ($self) = @_; 127 my ($self) = @_;
76 128
77 $self->{need_update} = 1; 129 $self->{need_update} = 1;
78 $self->SUPER::update; 130 $self->SUPER::update;
79}
80
81sub draw {
82 my ($self) = @_;
83
84 return
85 unless $CFClient::UI::FOCUS == $self || !$::FAST;
86
87 if (delete $self->{need_update}) {
88 glNewList $self->{list};
89
90 if ($::MAP) {
91 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
92 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
93
94 my $sx = $::CFG->{map_shift_x} / $::CFG->{map_scale}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32;
95 my $sy = $::CFG->{map_shift_y} / $::CFG->{map_scale}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32;
96
97 glPushMatrix;
98 glScale $::CFG->{map_scale}, $::CFG->{map_scale};
99
100 glTranslate $sx0 - 32, $sy0 - 32, 0;
101
102 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1);
103
104 if ($::CFG->{fow_enable}) {
105 if ($::CFG->{fow_smooth} && $CFClient::GL_VERSION >= 1.2) { # smooth fog of war
106 glConvolutionParameter (GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER);
107 glConvolutionFilter2D (
108 GL_CONVOLUTION_2D,
109 GL_ALPHA,
110 3, 3,
111 GL_ALPHA, GL_FLOAT,
112 pack "f*",
113 0.05, 0.13, 0.05,
114 0.13, 0.30, 0.13,
115 0.05, 0.13, 0.05,
116 );
117 glEnable GL_CONVOLUTION_2D;
118 }
119
120 $self->{fow_texture} = new CFClient::Texture
121 w => $w,
122 h => $h,
123 data => $data,
124 internalformat => GL_ALPHA,
125 format => GL_ALPHA;
126
127 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
128
129 glEnable GL_BLEND;
130 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
131 glEnable GL_TEXTURE_2D;
132 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
133
134 glColor +($::CFG->{fow_intensity}) x 3, 0.8;
135 $self->{fow_texture}->draw_quad (0, 0, $w * 32, $h * 32);
136
137 glDisable GL_TEXTURE_2D;
138 glDisable GL_BLEND;
139 }
140
141 glPopMatrix;
142 }
143
144 glEndList;
145 }
146
147 glPushMatrix;
148 glCallList $self->{list};
149 glPopMatrix;
150
151 if ($CFClient::UI::FOCUS != $self) {
152 glColor 64/255, 64/255, 64/255;
153 glLogicOp GL_AND;
154 glEnable GL_COLOR_LOGIC_OP;
155 glBegin GL_QUADS;
156 glVertex 0, 0;
157 glVertex 0, $::HEIGHT;
158 glVertex $::WIDTH, $::HEIGHT;
159 glVertex $::WIDTH, 0;
160 glEnd;
161 glDisable GL_COLOR_LOGIC_OP;
162 }
163} 131}
164 132
165my %DIR = ( 133my %DIR = (
166 CFClient::SDLK_KP8, [1, "north"], 134 CFClient::SDLK_KP8, [1, "north"],
167 CFClient::SDLK_KP9, [2, "northeast"], 135 CFClient::SDLK_KP9, [2, "northeast"],
179); 147);
180 148
181sub key_down { 149sub key_down {
182 my ($self, $ev) = @_; 150 my ($self, $ev) = @_;
183 151
184 return unless $::CONN; 152 return 0 unless $::CONN;
185 153
186 my $mod = $ev->{mod}; 154 my $mod = $ev->{mod};
187 my $sym = $ev->{sym}; 155 my $sym = $ev->{sym};
188 my $uni = $ev->{unicode}; 156 my $uni = $ev->{unicode};
189 157
190 if ($sym == CFClient::SDLK_KP5) { 158 if ($sym == CFClient::SDLK_KP5) {
191 $::CONN->user_send ("stay fire"); 159 $::CONN->user_send ("stay fire");
192 } elsif ($uni == ord ",") { 160 } elsif ($uni == ord ",") {
193 $::CONN->user_send ("take"); 161 $::CONN->user_send ("take");
194 } elsif ($uni == ord "\t" or $uni == ord " ") { 162 } elsif ($uni == ord " ") {
195 $::CONN->user_send ("apply"); 163 $::CONN->user_send ("apply");
164 } elsif ($uni == ord ".") {
165 $::CONN->user_send ($self->{completer}{last_command})
166 if exists $self->{completer}{last_command};
167 } elsif ($uni == ord "\t") {
168 $::INV_WINDOW->toggle_visibility;
196 } elsif ($sym == CFClient::SDLK_KP_PLUS || $uni == ord "+") { 169 } elsif ($sym == CFClient::SDLK_KP_PLUS || $uni == ord "+") {
197 $::CONN->user_send ("rotateshoottype +"); 170 $::CONN->user_send ("rotateshoottype +");
198 } elsif ($sym == CFClient::SDLK_KP_MINUS || $uni == ord "-") { 171 } elsif ($sym == CFClient::SDLK_KP_MINUS || $uni == ord "-") {
199 $::CONN->user_send ("rotateshoottype -"); 172 $::CONN->user_send ("rotateshoottype -");
173 } elsif ($uni == ord '"') {
174 $self->{completer}->set_prefix ("$::CFG->{say_command} ");
175 $self->{completer}->show;
200 } elsif ($uni == ord "'") { 176 } elsif ($uni == ord "'") {
201 $self->emit ('activate_console'); 177 $self->{completer}->set_prefix ("");
202 } elsif ($uni == ord "/") { 178 $self->{completer}->show;
203 $self->emit (activate_console => '/');
204 } elsif (exists $DIR{$sym}) { 179 } elsif (exists $DIR{$sym}) {
205 if ($mod & CFClient::KMOD_SHIFT) { 180 if ($mod & CFClient::KMOD_SHIFT) {
206 $self->{shft}++; 181 $self->{shft}++;
182 if ($DIR{$sym}[0] != $self->{fire_dir}) {
207 $::CONN->user_send ("fire $DIR{$sym}[0]"); 183 $::CONN->user_send ("fire $DIR{$sym}[0]");
184 }
185 $self->{fire_dir} = $DIR{$sym}[0];
208 } elsif ($mod & CFClient::KMOD_CTRL) { 186 } elsif ($mod & CFClient::KMOD_CTRL) {
209 $self->{ctrl}++; 187 $self->{ctrl}++;
210 $::CONN->user_send ("run $DIR{$sym}[0]"); 188 $::CONN->user_send ("run $DIR{$sym}[0]");
211 } else { 189 } else {
212 $::CONN->user_send ("$DIR{$sym}[1]"); 190 $::CONN->user_send ("$DIR{$sym}[1]");
213 } 191 }
214 } elsif ($ev->{unicode}) { 192 } elsif ($sym == CFClient::SDLK_INSERT && $mod & CFClient::KMOD_CTRL) {
215 $self->{command_widget} ||= 193 $::BIND_EDITOR->set_binding (undef, undef, [],
216 new CFClient::MapWidget::Command:: 194 sub {
217 command => $self->{command}, 195 my ($mod, $sym, $cmds) = @_;
218 can_focus => 1, 196 $::CFG->{bindings}->{$mod}->{$sym} = $cmds;
219 connect_execute => sub {
220 # todo: support callback instead of user_send
221 $::CONN->user_send ($_[1]);
222 }, 197 });
223 connect_close => sub { 198 $::BIND_EDITOR->start;
224 (delete $self->{command_widget})->hide; 199 $::BIND_EDITOR->show;
225 $self->focus_in; 200 } elsif ($sym == CFClient::SDLK_INSERT && not ($mod & CFClient::KMOD_CTRL)) {
226 }, 201 $::BIND_EDITOR->stop;
227 ; 202 $::BIND_EDITOR->ask_for_bind_and_commit;
203 $::BIND_EDITOR->hide;
204 } elsif (my $bind_cmd = $::CFG->{bindings}->{$mod}->{$sym}) {
205 $::CONN->user_send ($_) for @$bind_cmd;
206 } elsif ((ord 'a') <= $uni && $uni <= (ord 'z')) {
228 $self->{command_widget}->key_down ($ev) 207 $self->{completer}->key_down ($ev);
229 unless $ev->{unicode} == 20;
230 return unless $self->{command_widget};
231 $self->{command_widget}->show; 208 $self->{completer}->show;
232 $self->{command_widget}->focus_in; 209 } else {
210 return 0;
211 }
212
233 } 213 1
234} 214}
235 215
236sub key_up { 216sub key_up {
237 my ($self, $ev) = @_; 217 my ($self, $ev) = @_;
238 218
219 my $res = 0;
239 my $mod = $ev->{mod}; 220 my $mod = $ev->{mod};
240 my $sym = $ev->{sym}; 221 my $sym = $ev->{sym};
241 222
223 if ($::CFG->{shift_fire_stop}) {
242 if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) { 224 if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) {
243 $::CONN->user_send ("fire_stop"); 225 $::CONN->user_send ("fire_stop");
226 delete $self->{fire_dir};
227 $res = 1;
228 }
229 } else {
230 if (exists $DIR{$sym} && delete $self->{shft}) {
231 $::CONN->user_send ("fire_stop");
232 delete $self->{fire_dir};
233 $res = 1;
234 } elsif (($sym == CFClient::SDLK_LSHIFT || $sym == CFClient::SDLK_RSHIFT) && delete $self->{shft}) { # XXX: is RSHIFT ok?
235 $::CONN->user_send ("fire_stop");
236 delete $self->{fire_dir};
237 $res = 1;
238 }
244 } 239 }
240
245 if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) { 241 if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) {
246 $::CONN->user_send ("run_stop"); 242 $::CONN->user_send ("run_stop");
243 $res = 1;
247 } 244 }
248}
249 245
250sub add_command { 246 $res
251 my ($self, $command, $tooltip, $widget, $cb) = @_;
252
253 (my $data = $command) =~ s/\\//g;
254
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} 247}
263 248
264sub clr_commands { 249sub draw {
250 my ($self) = @_;
251
252 return unless $::MAP;
253
254 my $focused = $CFClient::UI::FOCUS == $self
255 || $CFClient::UI::FOCUS == $self->{completer}{entry};
256
257 return
258 unless $focused || !$::FAST;
259
260 if (delete $self->{need_update}) {
261 my $tilesize = $self->{tilesize} = int 32 * $::CFG->{map_scale};
262
263 my $sx = $self->{sx} = CFClient::ceil $::CFG->{map_shift_x} / $tilesize;
264 my $sy = $self->{sy} = CFClient::ceil $::CFG->{map_shift_y} / $tilesize;
265
266 my $sx0 = $self->{sx0} = $::CFG->{map_shift_x} - $sx * $tilesize;
267 my $sy0 = $self->{sy0} = $::CFG->{map_shift_y} - $sy * $tilesize;
268
269 my $sw = $self->{sw} = 1 + CFClient::ceil $::WIDTH / $tilesize;
270 my $sh = $self->{sh} = 1 + CFClient::ceil $::HEIGHT / $tilesize;
271
272 if ($::CFG->{fow_enable}) {
273 my ($w, $h, $data) = $::MAP->fow_texture ($sx, $sy, 0, 0, $sw, $sh);
274
275 if ($::CFG->{fow_smooth} && $CFClient::OpenGL::GL_VERSION >= 1.2) { # smooth fog of war
276 glConvolutionParameter (GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER);
277 glConvolutionFilter2D (
278 GL_CONVOLUTION_2D,
279 GL_ALPHA,
280 3, 3,
281 GL_ALPHA, GL_FLOAT,
282 (pack "f*", @{ $self->{smooth_matrix} }),
283 );
284 glEnable GL_CONVOLUTION_2D;
285 }
286
287 $self->{fow_texture} = new CFClient::Texture
288 w => $w,
289 h => $h,
290 data => $data,
291 internalformat => GL_ALPHA,
292 format => GL_ALPHA;
293
294 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
295 } else {
296 delete $self->{fow_texture};
297 }
298
299 glNewList $self->{list};
300
301 glPushMatrix;
302 glTranslate $sx0, $sy0;
303 glScale $::CFG->{map_scale}, $::CFG->{map_scale};
304
305 $::MAP->draw ($sx, $sy, 0, 0, $sw, $sh);
306
307 if (my $tex = $self->{fow_texture}) {
308 glEnable GL_TEXTURE_2D;
309 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
310
311 glScale 32, 32;
312 glColor +($::CFG->{fow_intensity}) x 3, 0.9;
313 $self->{fow_texture}->draw_quad_alpha (0, 0);
314
315 glDisable GL_TEXTURE_2D;
316 }
317
318 glPopMatrix;
319
320 glEndList;
321 }
322
323 glPushMatrix;
324 glCallList $self->{list};
325 glPopMatrix;
326
327 # TNT2 emulates logops in software (or worse :)
328 unless ($focused) {
329 glColor 0.4, 0.2, 0.2, 0.6;
330 glEnable GL_BLEND;
331 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
332 glBegin GL_QUADS;
333 glVertex 0, 0;
334 glVertex 0, $::HEIGHT;
335 glVertex $::WIDTH, $::HEIGHT;
336 glVertex $::WIDTH, 0;
337 glEnd;
338 glDisable GL_BLEND;
339 }
340}
341
342sub DESTROY {
265 my ($self) = @_; 343 my $self = shift;
266 344
267 %{$self->{command}} = (); 345 glDeleteList $self->{list};
346
347 $self->SUPER::DESTROY;
268} 348}
269 349
270package CFClient::MapWidget::MapMap; 350package CFClient::MapWidget::MapMap;
271 351
272our @ISA = CFClient::UI::Base::; 352our @ISA = CFClient::UI::Base::;
373 fontsize => $_, 453 fontsize => $_,
374 ), (0.8) x 16 454 ), (0.8) x 16
375 ]; 455 ];
376 456
377 $self->{entry} = new CFClient::UI::Entry 457 $self->{entry} = new CFClient::UI::Entry
378 connect_changed => sub { 458 on_changed => sub {
379 $self->update_labels; 459 $self->update_labels;
460 },
461 on_button_down => sub {
462 my ($entry, $ev, $x, $y) = @_;
463
464 if ($ev->{button} == 3) {
465 (new CFClient::UI::Menu
466 items => [
467 ["bind to a key" => sub { $::BIND_EDITOR->do_quick_binding ([$self->{select}], sub { $entry->focus_in }) }]
468 ],
469 )->popup ($ev);
470 return 1;
471 }
472 0
473 },
474 on_key_down => sub {
475 my ($entry, $ev) = @_;
476
477 my $self = $entry->{parent}{parent};
478
479 if ($ev->{sym} == 13) {
480 if (exists $self->{select}) {
481 $self->{last_command} = $self->{select};
482 $::CONN->user_send ($self->{select});
483
484 unshift @{$self->{history}}, $self->{select};
485 $self->{hist_ptr} = 0;
486
487 $self->hide;
488 }
489 } elsif ($ev->{sym} == 27) {
490 $self->{hist_ptr} = 0;
491 $self->hide;
492 return;
493 } elsif ($ev->{sym} == CFClient::SDLK_DOWN) {
494 if ($self->{hist_ptr} > 1) {
495 $self->{hist_ptr}--;
496 $self->{entry}->set_text ($self->{history}->[$self->{hist_ptr} - 1]);
497 } elsif ($self->{hist_ptr} > 0) {
498 $self->{hist_ptr}--;
499 $self->{entry}->set_text ($self->{hist_saveback});
500 } else {
501 ++$self->{select_offset}
502 if $self->{select_offset} < $#{ $self->{last_match} || [] };
503 }
504 $self->update_labels;
505 } elsif ($ev->{sym} == CFClient::SDLK_UP) {
506 if ($self->{select_offset}) {
507 --$self->{select_offset}
508 } else {
509 unless ($self->{hist_ptr}) {
510 $self->{hist_saveback} = $self->{entry}->get_text;
511 }
512 if ($self->{hist_ptr} <= $#{$self->{history}}) {
513 $self->{hist_ptr}++;
514 }
515 $self->{entry}->set_text ($self->{history}->[$self->{hist_ptr} - 1])
516 if exists $self->{history}->[$self->{hist_ptr} - 1];
517 }
518 $self->update_labels;
519 } else {
520 return 0;
521 }
522
523 1
380 }; 524 }
525 ;
381 526
382 $self->{vbox}->add ( 527 $self->{vbox}->add (
383 $self->{entry}, 528 $self->{entry},
384 @{$self->{label}}, 529 @{$self->{label}},
385 ); 530 );
386 531
387 $self 532 $self
388} 533}
389 534
535sub set_prefix {
536 my ($self, $prefix) = @_;
537
538 $self->{entry}->set_text ($prefix);
539 $self->show;
540}
541
390sub size_allocate { 542sub size_allocate {
391 my ($self, $w, $h) = @_; 543 my ($self, $w, $h) = @_;
392 544
393 $self->SUPER::size_allocate ($w, $h); 545 $self->SUPER::size_allocate ($w, $h);
394 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10); 546 $self->move_abs (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
547}
548
549sub show {
550 my ($self) = @_;
551
552 $self->SUPER::show;
553 $self->{entry}->focus_in;
554}
555
556sub hide {
557 my ($self) = @_;
558
559 $self->SUPER::hide;
560 $self->{entry}->set_text ("");
395} 561}
396 562
397sub key_down { 563sub key_down {
398 my ($self, $ev) = @_; 564 my ($self, $ev) = @_;
399 565
400 if ($ev->{sym} == 13) {
401 if (exists $self->{select}) {
402 $self->emit (execute => $self->{select});
403 $self->emit ("close");
404 }
405 } elsif ($ev->{sym} == 27) {
406 $self->{entry}->set_text ("");
407 $self->emit ("close");
408 return;
409 } elsif ($ev->{sym} == CFClient::SDLK_DOWN) {
410 ++$self->{select_offset}
411 if $self->{select_offset} < $#{ $self->{last_match} || [] };
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); 566 $self->{entry}->key_down ($ev)
420 }
421} 567}
422 568
423sub update_labels { 569sub update_labels {
424 my ($self) = @_; 570 my ($self) = @_;
425 571
426 my $text = $self->{entry}->get_text; 572 my $text = $self->{entry}->get_text;
427 573
428 length $text 574 length $text
429 or return $self->emit ("close"); 575 or return $self->hide;
430 576
431 my ($cmd, $arg) = $text =~ /^\s*([^[:space:]]*)(.*)$/; 577 my ($cmd, $arg) = $text =~ /^\s*([^[:space:]]*)(.*)$/;
432 578
433 if ($cmd ne $self->{last_search}) { 579 if ($text 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; 580 my @match;
581
582 if ($text =~ /^(.*?)\s+$/) {
583 @match = [$cmd, "(appended whitespace suppresses completion)"];
584 } else {
585 my $regexp = do {
586 my ($beg, @chr) = split //, lc $cmd;
587
588 # the following regex is used to match our "completion entry"
589 # to an actual command - the parentheses match kind of "overhead"
590 # - the more characters the parentheses match, the less attractive
591 # is the match.
592 my $regexp = "^\Q$beg\E"
593 . join "", map "(?:.*?[ \\\\]\Q$_\E|(.*?)\Q$_\E)", @chr;
594 qr<$regexp>
595 };
596
447 my @penalty; 597 my @penalty;
448 598
449 for (keys %{$self->{command}}) { 599 for (keys %{$self->{command}}) {
450 if (@penalty = $_ =~ $regexp) { 600 if (@penalty = $_ =~ $regexp) {
451 push @match, [$_, length join "", map "::$_", grep defined, @penalty]; 601 push @match, [$_, length join "", map "::$_", grep defined, @penalty];
602 }
452 } 603 }
453 }
454 604
455 @match = map $self->{command}{$_->[0]}, 605 @match = map $self->{command}{$_->[0]},
456 sort { 606 sort {
457 $a->[1] <=> $b->[1] 607 $a->[1] <=> $b->[1]
458 or $self->{command}{$a->[0]}[4] <=> $self->{command}{$b->[0]}[4] 608 or $self->{command}{$a->[0]}[4] <=> $self->{command}{$b->[0]}[4]
609 or (length $b->[0]) <=> (length $a->[0])
459 } @match; 610 } @match;
611 }
460 612
461 $self->{last_search} = $cmd; 613 $self->{last_search} = $text;
462 $self->{last_match} = \@match; 614 $self->{last_match} = \@match;
463 615
464 $self->{select_offset} = 0; 616 $self->{select_offset} = 0;
465 } 617 }
466 618

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines