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.14 by root, Mon Apr 24 11:54:26 2006 UTC vs.
Revision 1.38 by root, Thu May 25 02:23:14 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 21
23sub DESTROY { 22 $self->{completer} = new CFClient::MapWidget::Command::
23 command => $self->{command},
24 can_focus => 1,
25 tooltip => "<b>The Command Completer</b>\n\n"
26 . "This is your central interface to send text commands to the server. "
27 . "To enter a verbatim command to send to the server, just type the command, "
28 . "followed by a space, and press return. "
29 . "Typing the initial letters of words (or just any letters) displays guesses "
30 . "for commands you might want to use.\n"
31 . "You can use the cursor-up and cursor-down keys to select between those guesses.\n"
32 . "<b>Right-Click</b> opens a menu where you cna select further options, sich as redefining keybindings.",
33 ;
34
35 $self
36}
37
38sub add_command {
39 my ($self, $command, $tooltip, $widget, $cb) = @_;
40
41 (my $data = $command) =~ s/\\//g;
42
43 $tooltip =~ s/^\s+//;
44
45 $tooltip = "<big>$data</big>\n\n$tooltip";
46
47 $tooltip =~ s/\s+$//;
48
49 $self->{completer}{command}{$command} = [$data, $tooltip, $widget, $cb, ++$self->{command_id}];
50}
51
52sub clr_commands {
24 my $self = shift; 53 my ($self) = @_;
25 54
26 glDeleteList $self->{list}; 55 %{$self->{completer}{command}} = ();
27
28 $self->SUPER::DESTROY;
29} 56}
30 57
31sub button_down { 58sub button_down {
32 my ($self, $ev, $x, $y) = @_; 59 my ($self, $ev, $x, $y) = @_;
33 60
74 101
75 $self->{need_update} = 1; 102 $self->{need_update} = 1;
76 $self->SUPER::update; 103 $self->SUPER::update;
77} 104}
78 105
106my %DIR = (
107 CFClient::SDLK_KP8, [1, "north"],
108 CFClient::SDLK_KP9, [2, "northeast"],
109 CFClient::SDLK_KP6, [3, "east"],
110 CFClient::SDLK_KP3, [4, "southeast"],
111 CFClient::SDLK_KP2, [5, "south"],
112 CFClient::SDLK_KP1, [6, "southwest"],
113 CFClient::SDLK_KP4, [7, "west"],
114 CFClient::SDLK_KP7, [8, "northwest"],
115
116 CFClient::SDLK_UP, [1, "north"],
117 CFClient::SDLK_RIGHT, [3, "east"],
118 CFClient::SDLK_DOWN, [5, "south"],
119 CFClient::SDLK_LEFT, [7, "west"],
120);
121
122sub key_down {
123 my ($self, $ev) = @_;
124
125 return unless $::CONN;
126
127 my $mod = $ev->{mod};
128 my $sym = $ev->{sym};
129 my $uni = $ev->{unicode};
130
131 if ($sym == CFClient::SDLK_KP5) {
132 $::CONN->user_send ("stay fire");
133 } elsif ($uni == ord ",") {
134 $::CONN->user_send ("take");
135 } elsif ($uni == ord " ") {
136 $::CONN->user_send ("apply");
137 } elsif ($uni == ord ".") {
138 $::CONN->user_send ($self->{completer}{last_command})
139 if exists $self->{completer}{last_command};
140 } elsif ($uni == ord "\t") {
141 # TODO: toggle inventory
142 } elsif ($sym == CFClient::SDLK_KP_PLUS || $uni == ord "+") {
143 $::CONN->user_send ("rotateshoottype +");
144 } elsif ($sym == CFClient::SDLK_KP_MINUS || $uni == ord "-") {
145 $::CONN->user_send ("rotateshoottype -");
146 } elsif ($uni == ord '"') {
147 $self->{completer}->set_prefix ("$::CFG->{say_command} ");
148 $self->{completer}->show;
149 } elsif ($uni == ord "'") {
150 $self->{completer}->set_prefix ("");
151 $self->{completer}->show;
152 } elsif (exists $DIR{$sym}) {
153 if ($mod & CFClient::KMOD_SHIFT) {
154 $self->{shft}++;
155 $::CONN->user_send ("fire $DIR{$sym}[0]");
156 } elsif ($mod & CFClient::KMOD_CTRL) {
157 $self->{ctrl}++;
158 $::CONN->user_send ("run $DIR{$sym}[0]");
159 } else {
160 $::CONN->user_send ("$DIR{$sym}[1]");
161 }
162 } elsif ($ev->{unicode}) {
163 $self->{completer}->key_down ($ev);
164 $self->{completer}->show;
165 }
166}
167
168sub key_up {
169 my ($self, $ev) = @_;
170
171 my $mod = $ev->{mod};
172 my $sym = $ev->{sym};
173
174 if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) {
175 $::CONN->user_send ("fire_stop");
176 }
177 if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) {
178 $::CONN->user_send ("run_stop");
179 }
180}
181
79sub draw { 182sub draw {
80 my ($self) = @_; 183 my ($self) = @_;
184
185 my $focused = $CFClient::UI::FOCUS == $self
186 || $CFClient::UI::FOCUS == $self->{completer}{entry};
187
188 return
189 unless $focused || !$::FAST;
81 190
82 if (delete $self->{need_update}) { 191 if (delete $self->{need_update}) {
83 glNewList $self->{list}; 192 glNewList $self->{list};
84 193
85 if ($::MAP) { 194 if ($::MAP) {
86 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}); 195 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
87 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}); 196 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
88
89 glScale $::CFG->{map_scale}, $::CFG->{map_scale};
90 197
91 my $sx = $::CFG->{map_shift_x} / $::CFG->{map_scale}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32; 198 my $sx = $::CFG->{map_shift_x} / $::CFG->{map_scale}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32;
92 my $sy = $::CFG->{map_shift_y} / $::CFG->{map_scale}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32; 199 my $sy = $::CFG->{map_shift_y} / $::CFG->{map_scale}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32;
200
201 glPushMatrix;
202 glScale $::CFG->{map_scale}, $::CFG->{map_scale};
93 203
94 glTranslate $sx0 - 32, $sy0 - 32, 0; 204 glTranslate $sx0 - 32, $sy0 - 32, 0;
95 205
96 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1); 206 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1);
97 207
109 0.05, 0.13, 0.05, 219 0.05, 0.13, 0.05,
110 ); 220 );
111 glEnable GL_CONVOLUTION_2D; 221 glEnable GL_CONVOLUTION_2D;
112 } 222 }
113 223
224 $self->{fow_texture_name} ||= glGenTexture;
225 # try to re-use the texture name: TODO improve texture class instead
226
114 $self->{fow_texture} = new CFClient::Texture 227 $self->{fow_texture} = new CFClient::Texture
115 w => $w, 228 w => $w,
116 h => $h, 229 h => $h,
117 data => $data, 230 data => $data,
231 name => $self->{fow_texture_name},
118 internalformat => GL_ALPHA, 232 internalformat => GL_ALPHA,
119 format => GL_ALPHA; 233 format => GL_ALPHA;
120 234
121 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth}; 235 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
122 236
123 glEnable GL_BLEND;
124 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
125 glEnable GL_TEXTURE_2D; 237 glEnable GL_TEXTURE_2D;
126 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 238 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
127 239
128 glColor +($::CFG->{fow_intensity}) x 3, 0.8; 240 glColor +($::CFG->{fow_intensity}) x 3, 0.8;
129 $self->{fow_texture}->draw_quad (0, 0, $w * 32, $h * 32); 241 $self->{fow_texture}->draw_quad_alpha (0, 0, $w * 32, $h * 32);
130 242
131 glDisable GL_TEXTURE_2D; 243 glDisable GL_TEXTURE_2D;
132 glDisable GL_BLEND;
133 } 244 }
134 245
135 # HACK BEGIN 246 glPopMatrix;
136 {
137 glTranslate -($sx0 - 32), -($sy0 - 32), 0;#remove
138
139 glTranslate 0, 30;
140 my ($w, $h) = (250, 250);
141
142 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
143
144 glEnable GL_BLEND;
145 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
146 glEnable GL_TEXTURE_2D;
147 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
148
149 $self->{mapmap_texture} =
150 new CFClient::Texture
151 w => $w,
152 h => $h,
153 data => $::MAP->mapmap (- $w * 0.5, - $h * 0.5, $w, $h),
154 type => $CFClient::GL_VERSION >= 1.2 ? GL_UNSIGNED_INT_8_8_8_8_REV : GL_UNSIGNED_BYTE;
155
156 $self->{mapmap_texture}->draw_quad (0, 0);
157
158 glDisable GL_TEXTURE_2D;
159
160 glTranslate 0.375, 0.375;
161
162 glColor 1, 1, 0, 1;
163 glBegin GL_LINE_LOOP;
164 glVertex $w * 0.5 - $sx , $h * 0.5 - $sy ;
165 glVertex $w * 0.5 - $sx , $h * 0.5 - $sy + $sh;
166 glVertex $w * 0.5 - $sx + $sw, $h * 0.5 - $sy + $sh;
167 glVertex $w * 0.5 - $sx + $sw, $h * 0.5 - $sy ;
168 glEnd;
169
170 glDisable GL_BLEND;
171 }
172 # HACK END
173 } 247 }
174 248
175 glEndList; 249 glEndList;
176 } 250 }
177 251
178 glPushMatrix; 252 glPushMatrix;
179 glCallList $self->{list}; 253 glCallList $self->{list};
180 glPopMatrix; 254 glPopMatrix;
181 255
182 if ($CFClient::UI::FOCUS != $self) { 256 # TNT2 emulates logops in software (or worse :)
183 glColor 64/255, 64/255, 64/255; 257 if ($focused) {
184 glLogicOp GL_AND; 258 (delete $self->{out_of_focus})->destroy
185 glEnable GL_COLOR_LOGIC_OP; 259 if $self->{out_of_focus};
260 } else {
261 glColor 0.4, 0.2, 0.2, 0.6;
262 glEnable GL_BLEND;
263 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
186 glBegin GL_QUADS; 264 glBegin GL_QUADS;
187 glVertex 0, 0; 265 glVertex 0, 0;
188 glVertex 0, $::HEIGHT; 266 glVertex 0, $::HEIGHT;
189 glVertex $::WIDTH, $::HEIGHT; 267 glVertex $::WIDTH, $::HEIGHT;
190 glVertex $::WIDTH, 0; 268 glVertex $::WIDTH, 0;
191 glEnd; 269 glEnd;
192 glDisable GL_COLOR_LOGIC_OP; 270 glDisable GL_BLEND;
271
272# $self->{out_of_focus} ||= do {
273# my $label = new CFClient::UI::Label
274# x => 0,
275# y => 0,
276# z => 1,
277# ellipsise => 0,
278# text => "map out of focus (click map to play)";
279#
280# $label->show;
281# $label->update;
282#
283# $CFClient::UI::ROOT->on_post_alloc ("$self$label" => sub {
284# $label->move (
285# ($::WIDTH - $label->{w}) * 0.5,
286# ($::HEIGHT - $label->{h}) * 0.5,
287# );
288# });
289#
290# $label
291# };
292 }
293}
294
295sub DESTROY {
296 my $self = shift;
297
298 glDeleteList $self->{list};
299
300 $self->SUPER::DESTROY;
301}
302
303package CFClient::MapWidget::MapMap;
304
305our @ISA = CFClient::UI::Base::;
306
307use Time::HiRes qw(time);
308use CFClient::OpenGL;
309
310sub size_request {
311 ($::HEIGHT * 0.25, $::HEIGHT * 0.25)
312}
313
314sub size_allocate {
315 my ($self, $w, $h) = @_;
316
317 $self->SUPER::size_allocate ($w, $h);
318 $self->update;
319}
320
321sub update {
322 my ($self) = @_;
323
324 delete $self->{texture_atime};
325 $self->SUPER::update;
326}
327
328sub _draw {
329 my ($self) = @_;
330
331 $::MAP or return;
332
333 my ($w, $h) = @$self{qw(w h)};
334
335 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
336 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
337
338 my $sx = int $::CFG->{map_shift_x} / 32;
339 my $sy = int $::CFG->{map_shift_y} / 32;
340
341 my $ox = 0.5 * ($w - $sw);
342 my $oy = 0.5 * ($h - $sh);
343
344 glEnable GL_BLEND;
345 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
346 glEnable GL_TEXTURE_2D;
347 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
348
349 if ($self->{texture_atime} < time) {
350 $self->{texture_atime} = time + 1/3;
351
352 $self->{texture} =
353 new CFClient::Texture
354 w => $w,
355 h => $h,
356 data => $::MAP->mapmap (-$ox, -$oy, $w, $h),
357 type => $CFClient::GL_VERSION >= 1.2 ? GL_UNSIGNED_INT_8_8_8_8_REV : GL_UNSIGNED_BYTE;
358 }
359
360 $self->{texture}->draw_quad (0, 0);
361
362 glDisable GL_TEXTURE_2D;
363
364 glTranslate 0.375, 0.375;
365
366 #TODO: map scale is completely borked
367
368 my $x0 = int $ox - $sx + 0.5;
369 my $y0 = int $oy - $sy + 0.5;
370
371 glColor 1, 1, 0, 1;
372 glBegin GL_LINE_LOOP;
373 glVertex $x0 , $y0 ;
374 glVertex $x0 , $y0 + $sh;
375 glVertex $x0 + $sw, $y0 + $sh;
376 glVertex $x0 + $sw, $y0 ;
377 glEnd;
193 } 378
379 glDisable GL_BLEND;
194} 380}
195 381
196my %DIR = ( 382package CFClient::MapWidget::Command;
197 CFClient::SDLK_KP8, [1, "north"],
198 CFClient::SDLK_KP9, [2, "northeast"],
199 CFClient::SDLK_KP6, [3, "east"],
200 CFClient::SDLK_KP3, [4, "southeast"],
201 CFClient::SDLK_KP2, [5, "south"],
202 CFClient::SDLK_KP1, [6, "southwest"],
203 CFClient::SDLK_KP4, [7, "west"],
204 CFClient::SDLK_KP7, [8, "northwest"],
205 383
206 CFClient::SDLK_UP, [1, "north"], 384use strict;
207 CFClient::SDLK_RIGHT, [3, "east"], 385
208 CFClient::SDLK_DOWN, [5, "south"], 386use CFClient::OpenGL;
209 CFClient::SDLK_LEFT, [7, "west"], 387
210); 388our @ISA = CFClient::UI::Frame::;
389
390sub new {
391 my $class = shift;
392
393 my $self = $class->SUPER::new (
394 bg => [0, 0, 0, 0.8],
395 @_,
396 );
397
398 $self->add ($self->{vbox} = new CFClient::UI::VBox);
399
400 $self->{label} = [
401 map
402 CFClient::UI::Label->new (
403 can_hover => 1,
404 can_events => 1,
405 tooltip_width => 0.33,
406 fontsize => $_,
407 ), (0.8) x 16
408 ];
409
410 $self->{entry} = new CFClient::UI::Entry
411 connect_changed => sub {
412 $self->update_labels;
413 },
414 connect_key_down => sub {
415 my ($entry, $ev) = @_;
416
417 my $self = $entry->{parent}{parent};
418
419 if ($ev->{sym} == 13) {
420 if (exists $self->{select}) {
421 $self->{last_command} = $self->{select};
422 $::CONN->user_send ($self->{select});
423 $self->hide;
424 }
425 } elsif ($ev->{sym} == 27) {
426 $self->hide;
427 return;
428 } elsif ($ev->{sym} == CFClient::SDLK_DOWN) {
429 ++$self->{select_offset}
430 if $self->{select_offset} < $#{ $self->{last_match} || [] };
431 $self->update_labels;
432 } elsif ($ev->{sym} == CFClient::SDLK_UP) {
433 --$self->{select_offset}
434 if $self->{select_offset};
435 $self->update_labels;
436 } else {
437 return 0;
438 }
439
440 1
441 }
442 ;
443
444 $self->{vbox}->add (
445 $self->{entry},
446 @{$self->{label}},
447 );
448
449 $self
450}
451
452sub set_prefix {
453 my ($self, $prefix) = @_;
454
455 $self->{entry}->set_text ($prefix);
456 $self->show;
457}
458
459sub size_allocate {
460 my ($self, $w, $h) = @_;
461
462 $self->SUPER::size_allocate ($w, $h);
463 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
464}
465
466sub show {
467 my ($self) = @_;
468
469 $self->SUPER::show;
470 $self->{entry}->focus_in;
471}
472
473sub hide {
474 my ($self) = @_;
475
476 $self->SUPER::hide;
477 $self->{entry}->set_text ("");
478}
211 479
212sub key_down { 480sub key_down {
213 my ($self, $ev) = @_; 481 my ($self, $ev) = @_;
214 482
215 my $mod = $ev->{mod}; 483 $self->{entry}->key_down ($ev);
216 my $sym = $ev->{sym}; 484}
217 485
218 if ($sym == CFClient::SDLK_KP5) { 486sub update_labels {
219 $::CONN->user_send ("stay fire"); 487 my ($self) = @_;
220 } elsif ($sym == ord ",") { 488
221 $::CONN->user_send ("take"); 489 my $text = $self->{entry}->get_text;
222 } elsif ($sym == ord "a") { 490
223 $::CONN->user_send ("apply"); 491 length $text
224 } elsif ($sym == ord "'") { 492 or return $self->hide;
225 $self->emit ('activate_console'); 493
226 } elsif ($sym == ord "/") { 494 my ($cmd, $arg) = $text =~ /^\s*([^[:space:]]*)(.*)$/;
227 $self->emit (activate_console => '/'); 495
228 } elsif (exists $DIR{$sym}) { 496 if ($text ne $self->{last_search}) {
229 if ($mod & CFClient::KMOD_SHIFT) { 497 my @match;
230 $self->{shft}++; 498
231 $::CONN->user_send ("fire $DIR{$sym}[0]"); 499 if ($text =~ /^(.*?)\s+$/) {
232 } elsif ($mod & CFClient::KMOD_CTRL) { 500 @match = [$cmd, "(appended whitespace suppresses completion)"];
233 $self->{ctrl}++;
234 $::CONN->user_send ("run $DIR{$sym}[0]");
235 } else { 501 } else {
236 $::CONN->user_send ("$DIR{$sym}[1]"); 502 my $regexp = do {
503 my ($beg, @chr) = split //, lc $cmd;
504
505 # the following regex is used to match our "completion entry"
506 # to an actual command - the parentheses match kind of "overhead"
507 # - the more characters the parentheses match, the less attractive
508 # is the match.
509 my $regexp = "^\Q$beg\E"
510 . join "", map "(?:.*?[ \\\\]\Q$_\E|(.*?)\Q$_\E)", @chr;
511 qr<$regexp>
512 };
513
514 my @penalty;
515
516 for (keys %{$self->{command}}) {
517 if (@penalty = $_ =~ $regexp) {
518 push @match, [$_, length join "", map "::$_", grep defined, @penalty];
519 }
520 }
521
522 @match = map $self->{command}{$_->[0]},
523 sort {
524 $a->[1] <=> $b->[1]
525 or $self->{command}{$a->[0]}[4] <=> $self->{command}{$b->[0]}[4]
526 or (length $a->[0]) <=> (length $b->[0])
527 } @match;
237 } 528 }
238 } elsif ($ev->{unicode}) {
239 $self->{command_widget} ||=
240 new CFClient::MapWidget::Command::
241 command => $self->{command},
242 can_focus => 1,
243 connect_execute => sub {
244 # todo: support callback instead of user_send
245 $::CONN->user_send ($_[1][1]);
246 },
247 connect_close => sub {
248 (delete $self->{command_widget})->hide;
249 $self->focus_in;
250 },
251 ;
252 $self->{command_widget}->key_down ($ev);
253 return unless $self->{command_widget};
254 $self->{command_widget}->show;
255 $self->{command_widget}->focus_in;
256 }
257}
258 529
259sub key_up { 530 $self->{last_search} = $cmd;
260 my ($self, $ev) = @_; 531 $self->{last_match} = \@match;
261 532
262 my $mod = $ev->{mod}; 533 $self->{select_offset} = 0;
263 my $sym = $ev->{sym};
264
265 if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) {
266 $::CONN->user_send ("fire_stop");
267 } 534 }
268 if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) {
269 $::CONN->user_send ("run_stop");
270 }
271}
272 535
273sub add_command { 536 my @labels = @{ $self->{label} };
274 my ($self, $command, $tooltip, $widget, $cb) = @_; 537 my @matches = @{ $self->{last_match} || [] };
275 538
276 (my $abbrev = $command) =~ s/(\S)[^[:space:]_]*[[:space:]_]+/$1/g; 539 if ($self->{select_offset}) {
540 splice @matches, 0, $self->{select_offset}, ();
277 541
278 push @{$self->{command}}, [$abbrev, $command, $tooltip, $widget, $cb]; 542 my $label = shift @labels;
279} 543 $label->set_text ("...");
544 $label->set_tooltip ("Use Cursor-Up to view previous matches");
545 }
280 546
281package CFClient::MapWidget::Command; 547 for my $label (@labels) {
548 $label->{fg} = [1, 1, 1, 1];
549 $label->{bg} = [0, 0, 0, 0];
550 }
282 551
283use strict; 552 if (@matches) {
553 $self->{select} = "$matches[0][0]$arg";
284 554
285use CFClient::OpenGL; 555 $labels[0]->{fg} = [0, 0, 0, 1];
556 $labels[0]->{bg} = [1, 1, 1, 0.8];
557 } else {
558 $self->{select} = "$cmd$arg";
559 }
286 560
287our @ISA = CFClient::UI::VBox::; 561 for my $match (@matches) {
562 my $label = shift @labels;
288 563
289sub new { 564 if (@labels) {
290 my $class = shift; 565 $label->set_text ("$match->[0]$arg");
291 566 $label->set_tooltip ($match->[1]);
292 my $self = $class->SUPER::new ( 567 } else {
293 @_, 568 $label->set_text ("...");
294 children => [map 569 $label->set_tooltip ("Use Cursor-Down to view more matches");
295 CFClient::UI::Label->new ( 570 last;
296 can_hover => 1,
297 can_events => 1,
298 fontsize => $_,
299 ), 1, 1, 0.8, 0.8, 0.8, 0.8, 0.8
300 ],
301 );
302
303 $self
304}
305
306sub size_allocate {
307 my ($self, $w, $h) = @_;
308
309 $self->SUPER::size_allocate ($w, $h);
310 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
311}
312
313sub update_labels {
314 my ($self) = @_;
315
316 my $command = $self->{command};
317 my $search_abbrev = qr/^\Q$self->{search}/;
318 my $search_full = qr/\Q$self->{search}/;
319
320 my @found;
321
322 for (@$command) {
323 if ($_->[0] =~ $search_abbrev) {
324 push @found, [$_->[0], $_];
325 } elsif ($_[1] =~ $search_full) {
326 push @found, [$_->[1], $_];
327 } 571 }
328 } 572 }
329 573
330 @found = sort { $a->[0] cmp $b->[0] } @found; 574 for my $label (@labels) {
331 575 $label->set_text ("");
332 $self->{children}[0]->set_text ("$self->{search}_"); 576 $label->set_tooltip ("");
333
334 for (0..5) {
335 $self->{children}[$_ + 1]->set_text ($found[$_] ? "$found[$_][0] ($found[$_][1][1])" : "");
336 $self->{children}[$_ + 1]{tooltip} = ($found[$_] ? $found[$_][1][2] : "");
337 } 577 }
338 578
339 $self->{select} = $found[0][1] 579 $self->update;
340 if @found; 580 ###
341
342 if (@found > 6) {
343 $self->{children}[6]->set_text ("...");
344 }
345
346 $self->check_size;
347} 581}
348 582
349sub key_down { 583sub _draw {
350 my ($self, $ev) = @_; 584 my ($self) = @_;
351 585
352 if ($ev->{sym} == 8) { 586 # hack
353 substr $self->{search}, -1, 1, ""; 587 local $CFClient::UI::FOCUS = $self->{entry};
354 $self->update_labels;
355 } elsif ($ev->{sym} == 13) {
356 if (exists $self->{select}) {
357 $self->emit (execute => $self->{select});
358 $self->emit ("close");
359 }
360 } elsif ($ev->{sym} == 27) {
361 $self->emit ("close");
362 return;
363 } elsif ((chr $ev->{unicode}) =~ /^[[:alpha:]]$/) {
364 $self->{search} .= chr $ev->{unicode};
365 $self->update_labels;
366 }
367 588
368 length $self->{search} 589 $self->SUPER::_draw;
369 or $self->emit ("close");
370} 590}
371 591
3721 5921

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines