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.9 by root, Mon Apr 24 02:41:48 2006 UTC vs.
Revision 1.43 by elmex, Mon May 29 19:30:28 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines