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.12 by root, Mon Apr 24 06:05:35 2006 UTC vs.
Revision 1.26 by root, Wed May 17 16:17:01 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 );
21
22 $self
20} 23}
21 24
22sub DESTROY { 25sub DESTROY {
23 my $self = shift; 26 my $self = shift;
24 27
76} 79}
77 80
78sub draw { 81sub draw {
79 my ($self) = @_; 82 my ($self) = @_;
80 83
84 return
85 unless $CFClient::UI::FOCUS == $self || !$::FAST;
86
81 if (delete $self->{need_update}) { 87 if (delete $self->{need_update}) {
82 glNewList $self->{list}; 88 glNewList $self->{list};
83 89
84 if ($::MAP) { 90 if ($::MAP) {
85 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}); 91 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
86 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}); 92 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
87
88 glScale $::CFG->{map_scale}, $::CFG->{map_scale};
89 93
90 my $sx = $::CFG->{map_shift_x} / $::CFG->{map_scale}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32; 94 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; 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};
92 99
93 glTranslate $sx0 - 32, $sy0 - 32, 0; 100 glTranslate $sx0 - 32, $sy0 - 32, 0;
94 101
95 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1); 102 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1);
96 103
129 136
130 glDisable GL_TEXTURE_2D; 137 glDisable GL_TEXTURE_2D;
131 glDisable GL_BLEND; 138 glDisable GL_BLEND;
132 } 139 }
133 140
134 # HACK BEGIN 141 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 } 142 }
173 143
174 glEndList; 144 glEndList;
175 } 145 }
176 146
209); 179);
210 180
211sub key_down { 181sub key_down {
212 my ($self, $ev) = @_; 182 my ($self, $ev) = @_;
213 183
184 return unless $::CONN;
185
214 my $mod = $ev->{mod}; 186 my $mod = $ev->{mod};
215 my $sym = $ev->{sym}; 187 my $sym = $ev->{sym};
188 my $uni = $ev->{unicode};
216 189
217 if ($sym == CFClient::SDLK_KP5) { 190 if ($sym == CFClient::SDLK_KP5) {
218 $::CONN->user_send ("stay fire"); 191 $::CONN->user_send ("stay fire");
219 } elsif ($sym == ord "a") { 192 } elsif ($uni == ord ",") {
193 $::CONN->user_send ("take");
194 } elsif ($uni == ord "\t") {
220 $::CONN->user_send ("apply"); 195 $::CONN->user_send ("apply");
221 } elsif ($sym == ord "'") { 196 } elsif ($uni == ord "'") {
222 $self->emit ('activate_console'); 197 $self->emit ('activate_console');
223 } elsif ($sym == ord "/") { 198 } elsif ($uni == ord "/") {
224 $self->emit (activate_console => '/'); 199 $self->emit (activate_console => '/');
225 } elsif (exists $DIR{$sym}) { 200 } elsif (exists $DIR{$sym}) {
226 if ($mod & CFClient::KMOD_SHIFT) { 201 if ($mod & CFClient::KMOD_SHIFT) {
227 $self->{shft}++; 202 $self->{shft}++;
228 $::CONN->user_send ("fire $DIR{$sym}[0]"); 203 $::CONN->user_send ("fire $DIR{$sym}[0]");
237 new CFClient::MapWidget::Command:: 212 new CFClient::MapWidget::Command::
238 command => $self->{command}, 213 command => $self->{command},
239 can_focus => 1, 214 can_focus => 1,
240 connect_execute => sub { 215 connect_execute => sub {
241 # todo: support callback instead of user_send 216 # todo: support callback instead of user_send
242 $::CONN->user_send ($_[1][1]); 217 $::CONN->user_send ($_[1]);
243 }, 218 },
244 connect_close => sub { 219 connect_close => sub {
245 (delete $self->{command_widget})->hide; 220 (delete $self->{command_widget})->hide;
246 $self->focus_in; 221 $self->focus_in;
247 }, 222 },
248 ; 223 ;
249 $self->{command_widget}->key_down ($ev); 224 $self->{command_widget}->key_down ($ev)
225 unless $ev->{unicode} == 20;
250 return unless $self->{command_widget}; 226 return unless $self->{command_widget};
251 $self->{command_widget}->show; 227 $self->{command_widget}->show;
252 $self->{command_widget}->focus_in; 228 $self->{command_widget}->focus_in;
253 } 229 }
254} 230}
268} 244}
269 245
270sub add_command { 246sub add_command {
271 my ($self, $command, $tooltip, $widget, $cb) = @_; 247 my ($self, $command, $tooltip, $widget, $cb) = @_;
272 248
273 (my $abbrev = $command) =~ s/(\S)[^[:space:]_]*[[:space:]_]+/$1/g; 249 (my $data = $command) =~ s/\\//g;
274 250
251 $tooltip =~ s/^\s+//;
252
253 $tooltip = "<big>$data</big>\n\n$tooltip";
254
255 $tooltip =~ s/\s+$//;
256
275 push @{$self->{command}}, [$abbrev, $command, $tooltip, $widget, $cb]; 257 $self->{command}{$command} = [$data, $tooltip, $widget, $cb];
258}
259
260sub clr_commands {
261 my ($self) = @_;
262
263 %{$self->{command}} = ();
264}
265
266package CFClient::MapWidget::MapMap;
267
268our @ISA = CFClient::UI::Base::;
269
270use Time::HiRes qw(time);
271use CFClient::OpenGL;
272
273sub size_request {
274 ($::HEIGHT * 0.25, $::HEIGHT * 0.25)
275}
276
277sub size_allocate {
278 my ($self, $w, $h) = @_;
279
280 $self->SUPER::size_allocate ($w, $h);
281 $self->update;
282}
283
284sub update {
285 my ($self) = @_;
286
287 delete $self->{texture_atime};
288 $self->SUPER::update;
289}
290
291sub _draw {
292 my ($self) = @_;
293
294 $::MAP or return;
295
296 my ($w, $h) = @$self{qw(w h)};
297
298 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
299 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
300
301 my $sx = int $::CFG->{map_shift_x} / 32;
302 my $sy = int $::CFG->{map_shift_y} / 32;
303
304 my $ox = 0.5 * ($w - $sw);
305 my $oy = 0.5 * ($h - $sh);
306
307 glEnable GL_BLEND;
308 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
309 glEnable GL_TEXTURE_2D;
310 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
311
312 if ($self->{texture_atime} < time) {
313 $self->{texture_atime} = time + 1/3;
314
315 $self->{texture} =
316 new CFClient::Texture
317 w => $w,
318 h => $h,
319 data => $::MAP->mapmap (-$ox, -$oy, $w, $h),
320 type => $CFClient::GL_VERSION >= 1.2 ? GL_UNSIGNED_INT_8_8_8_8_REV : GL_UNSIGNED_BYTE;
321 }
322
323 $self->{texture}->draw_quad (0, 0);
324
325 glDisable GL_TEXTURE_2D;
326
327 glTranslate 0.375, 0.375;
328
329 #TODO: map scale is completely borked
330
331 my $x0 = int $ox - $sx + 0.5;
332 my $y0 = int $oy - $sy + 0.5;
333
334 glColor 1, 1, 0, 1;
335 glBegin GL_LINE_LOOP;
336 glVertex $x0 , $y0 ;
337 glVertex $x0 , $y0 + $sh;
338 glVertex $x0 + $sw, $y0 + $sh;
339 glVertex $x0 + $sw, $y0 ;
340 glEnd;
341
342 glDisable GL_BLEND;
276} 343}
277 344
278package CFClient::MapWidget::Command; 345package CFClient::MapWidget::Command;
279 346
280use strict; 347use strict;
281 348
282use CFClient::OpenGL; 349use CFClient::OpenGL;
283 350
284our @ISA = CFClient::UI::VBox::; 351our @ISA = CFClient::UI::Frame::;
285 352
286sub new { 353sub new {
287 my $class = shift; 354 my $class = shift;
288 355
289 my $self = $class->SUPER::new ( 356 my $self = $class->SUPER::new (
357 bg => [0, 0, 0, 0.8],
290 @_, 358 @_,
291 children => [map 359 );
360
361 $self->add ($self->{vbox} = new CFClient::UI::VBox);
362
363 $self->{label} = [
364 map
292 CFClient::UI::Label->new ( 365 CFClient::UI::Label->new (
293 can_hover => 1, 366 can_hover => 1,
294 can_events => 1, 367 can_events => 1,
368 tooltip_width => 0.33,
295 fontsize => $_, 369 fontsize => $_,
296 ), 1, 1, 0.8, 0.8, 0.8, 0.8, 0.8 370 ), (0.8) x 6
371 ];
372
373 $self->{entry} = new CFClient::UI::Entry
374 connect_changed => sub {
375 $self->update_labels;
297 ], 376 };
377
378 $self->{vbox}->add (
379 $self->{entry},
380 @{$self->{label}},
298 ); 381 );
299 382
300 $self 383 $self
301} 384}
302 385
305 388
306 $self->SUPER::size_allocate ($w, $h); 389 $self->SUPER::size_allocate ($w, $h);
307 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10); 390 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
308} 391}
309 392
310sub update_labels {
311 my ($self) = @_;
312
313 my $command = $self->{command};
314 my $search_abbrev = qr/^\Q$self->{search}/;
315 my $search_full = qr/\Q$self->{search}/;
316
317 my @found;
318
319 for (@$command) {
320 if ($_->[0] =~ $search_abbrev) {
321 push @found, [$_->[0], $_];
322 } elsif ($_[1] =~ $search_full) {
323 push @found, [$_->[1], $_];
324 }
325 }
326
327 @found = sort { $a->[0] cmp $b->[0] } @found;
328
329 $self->{children}[0]->set_text ("$self->{search}_");
330
331 for (0..5) {
332 $self->{children}[$_ + 1]->set_text ($found[$_] ? "$found[$_][0] ($found[$_][1][1])" : "");
333 $self->{children}[$_ + 1]{tooltip} = ($found[$_] ? $found[$_][1][2] : "");
334 }
335
336 $self->{select} = $found[0][1]
337 if @found;
338
339 if (@found > 6) {
340 $self->{children}[6]->set_text ("...");
341 }
342
343 $self->check_size;
344}
345
346sub key_down { 393sub key_down {
347 my ($self, $ev) = @_; 394 my ($self, $ev) = @_;
348 395
349 if ($ev->{sym} == 8) { 396 if ($ev->{sym} == 13) {
350 substr $self->{search}, -1, 1, "";
351 $self->update_labels;
352 } elsif ($ev->{sym} == 13) {
353 if (exists $self->{select}) { 397 if (exists $self->{select}) {
354 $self->emit (execute => $self->{select}); 398 $self->emit (execute => $self->{select});
355 $self->emit ("close"); 399 $self->emit ("close");
356 } 400 }
357 } elsif ($ev->{sym} == 27) { 401 } elsif ($ev->{sym} == 27) {
402 $self->{entry}->set_text ("");
358 $self->emit ("close"); 403 $self->emit ("close");
359 } elsif ((chr $ev->{unicode}) =~ /^[[:alpha:]]$/) { 404 return;
360 $self->{search} .= chr $ev->{unicode}; 405 } elsif ($ev->{sym} == CFClient::SDLK_DOWN) {
406 ++$self->{select_offset}
407 if $self->{select_offset} < $#{ $self->{last_match} || [] };
361 $self->update_labels; 408 $self->update_labels;
409 } elsif ($ev->{sym} == CFClient::SDLK_UP) {
410 --$self->{select_offset}
411 if $self->{select_offset};
412 $self->update_labels;
413 } else {
414 #$self->{entry}{force_alloc} = 1;
415 $self->{entry}->key_down ($ev);
362 } 416 }
417}
363 418
364 length $self->{search} 419sub update_labels {
420 my ($self) = @_;
421
422 my $text = $self->{entry}->get_text;
423
424 length $text
365 or $self->emit ("close"); 425 or return $self->emit ("close");
426
427 my ($cmd, $arg) = $text =~ /^\s*([^[:space:]]*)(.*)$/;
428
429 if ($cmd ne $self->{last_search}) {
430 my $regexp = do {
431 my ($beg, @chr) = split //, lc $cmd;
432
433 # the following regex is used to match our "completion entry"
434 # to an actual command - the parentheses match kind of "overhead"
435 # - the more characters the parentheses match, the less attractive
436 # is the match.
437 my $regexp = "^\Q$beg\E"
438 . join "", map "(?:.*?[ \\\\]\Q$_\E|(.*?)\Q$_\E)", @chr;
439 qr<$regexp>
440 };
441
442 my @match;
443 my @penalty;
444
445 for (keys %{$self->{command}}) {
446 if (@penalty = $_ =~ $regexp) {
447 push @match, [$_, length join "", map "::$_", grep defined, @penalty];
448 }
449 }
450
451 @match = map $self->{command}{$_->[0]},
452 sort {
453 $a->[1] <=> $b->[1]
454 or (length $a->[0]) <=> (length $b->[0])
455 } @match;
456
457 $self->{last_search} = $cmd;
458 $self->{last_match} = \@match;
459
460 $self->{select_offset} = 0;
461 }
462
463 my @labels = @{ $self->{label} };
464 my @matches = @{ $self->{last_match} || [] };
465
466 if ($self->{select_offset}) {
467 splice @matches, 0, $self->{select_offset}, ();
468
469 my $label = shift @labels;
470 $label->set_text ("...");
471 $label->set_tooltip ("Use Cursor-Up to view previous matches");
472 }
473
474 for my $label (@labels) {
475 $label->{fg} = [1, 1, 1, 1];
476 $label->{bg} = [0, 0, 0, 0];
477 }
478
479 if (@matches) {
480 $self->{select} = "$matches[0][0]$arg";
481
482 $labels[0]->{fg} = [0, 0, 0, 1];
483 $labels[0]->{bg} = [1, 1, 1, 0.8];
484 } else {
485 $self->{select} = "$cmd$arg";
486 }
487
488 for my $match (@matches) {
489 my $label = shift @labels;
490
491 if (@labels) {
492 $label->set_text ("$match->[0]$arg");
493 $label->set_tooltip ($match->[1]);
494 } else {
495 $label->set_text ("...");
496 $label->set_tooltip ("Use Cursor-Down to view more matches");
497 last;
498 }
499 }
500
501 for my $label (@labels) {
502 $label->set_text ("");
503 $label->set_tooltip ("");
504 }
505
506 $self->update;
507 ###
508}
509
510sub _draw {
511 my ($self) = @_;
512
513 # hack
514 local $CFClient::UI::FOCUS = $self->{entry};
515
516 $self->SUPER::_draw;
366} 517}
367 518
3681 5191

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines