ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/MapWidget.pm
Revision: 1.29
Committed: Thu May 18 16:42:26 2006 UTC (18 years ago) by root
Branch: MAIN
Changes since 1.28: +5 -4 lines
Log Message:
replace logop for out-of-focus effect by blending

File Contents

# User Rev Content
1 root 1.1 package CFClient::MapWidget;
2    
3     use strict;
4 root 1.14 use utf8;
5 root 1.1
6     use List::Util qw(min max);
7    
8 root 1.4 use CFClient::OpenGL;
9 root 1.1
10     our @ISA = CFClient::UI::Base::;
11    
12     sub new {
13     my $class = shift;
14    
15 root 1.20 my $self = $class->SUPER::new (
16 root 1.1 z => -1,
17     can_focus => 1,
18 root 1.4 list => glGenList,
19 root 1.1 @_
20 root 1.20 );
21    
22     $self
23 root 1.1 }
24    
25 root 1.4 sub DESTROY {
26     my $self = shift;
27    
28     glDeleteList $self->{list};
29    
30     $self->SUPER::DESTROY;
31     }
32    
33 root 1.1 sub button_down {
34     my ($self, $ev, $x, $y) = @_;
35    
36     $self->focus_in;
37    
38 root 1.5 if ($ev->{button} == 2) {
39     my ($ox, $oy) = ($ev->{x}, $ev->{y});
40 root 1.1 my ($bw, $bh) = ($::CFG->{map_shift_x}, $::CFG->{map_shift_y});
41    
42     $self->{motion} = sub {
43     my ($ev, $x, $y) = @_;
44    
45 root 1.5 ($x, $y) = ($ev->{x}, $ev->{y});
46 root 1.1
47     $::CFG->{map_shift_x} = $bw + $x - $ox;
48     $::CFG->{map_shift_y} = $bh + $y - $oy;
49    
50     $self->update;
51     };
52     }
53     }
54    
55     sub button_up {
56     my ($self, $ev, $x, $y) = @_;
57    
58     delete $self->{motion};
59     }
60    
61     sub mouse_motion {
62     my ($self, $ev, $x, $y) = @_;
63    
64     $self->{motion}->($ev, $x, $y) if $self->{motion};
65     }
66    
67     sub size_request {
68     (
69     1 + 32 * int $::WIDTH / 32,
70     1 + 32 * int $::HEIGHT / 32,
71     )
72     }
73    
74     sub update {
75     my ($self) = @_;
76    
77     $self->{need_update} = 1;
78     $self->SUPER::update;
79     }
80    
81     sub draw {
82     my ($self) = @_;
83    
84 root 1.26 return
85     unless $CFClient::UI::FOCUS == $self || !$::FAST;
86    
87 root 1.1 if (delete $self->{need_update}) {
88 root 1.4 glNewList $self->{list};
89 root 1.1
90     if ($::MAP) {
91 root 1.17 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
92     my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
93 root 1.1
94 root 1.18 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 root 1.16 glPushMatrix;
98 root 1.9 glScale $::CFG->{map_scale}, $::CFG->{map_scale};
99    
100 root 1.1 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 root 1.7 0.05, 0.13, 0.05,
114     0.13, 0.30, 0.13,
115     0.05, 0.13, 0.05,
116 root 1.1 );
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 root 1.7 glColor +($::CFG->{fow_intensity}) x 3, 0.8;
135 root 1.1 $self->{fow_texture}->draw_quad (0, 0, $w * 32, $h * 32);
136    
137     glDisable GL_TEXTURE_2D;
138     glDisable GL_BLEND;
139     }
140    
141 root 1.18 glPopMatrix;
142 root 1.1 }
143    
144     glEndList;
145     }
146    
147     glPushMatrix;
148     glCallList $self->{list};
149     glPopMatrix;
150    
151 root 1.29 # TNT2 emulates logops in software (or worse :)
152 root 1.1 if ($CFClient::UI::FOCUS != $self) {
153 root 1.29 glColor 0.4, 0.2, 0.2, 0.9;
154     glEnable GL_BLEND;
155     glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
156 root 1.1 glBegin GL_QUADS;
157     glVertex 0, 0;
158     glVertex 0, $::HEIGHT;
159     glVertex $::WIDTH, $::HEIGHT;
160     glVertex $::WIDTH, 0;
161     glEnd;
162 root 1.29 glDisable GL_BLEND;
163 root 1.1 }
164     }
165    
166     my %DIR = (
167 root 1.3 CFClient::SDLK_KP8, [1, "north"],
168     CFClient::SDLK_KP9, [2, "northeast"],
169     CFClient::SDLK_KP6, [3, "east"],
170     CFClient::SDLK_KP3, [4, "southeast"],
171     CFClient::SDLK_KP2, [5, "south"],
172     CFClient::SDLK_KP1, [6, "southwest"],
173     CFClient::SDLK_KP4, [7, "west"],
174     CFClient::SDLK_KP7, [8, "northwest"],
175    
176     CFClient::SDLK_UP, [1, "north"],
177     CFClient::SDLK_RIGHT, [3, "east"],
178     CFClient::SDLK_DOWN, [5, "south"],
179     CFClient::SDLK_LEFT, [7, "west"],
180 root 1.1 );
181    
182     sub key_down {
183     my ($self, $ev) = @_;
184    
185 root 1.21 return unless $::CONN;
186    
187 root 1.5 my $mod = $ev->{mod};
188     my $sym = $ev->{sym};
189 root 1.22 my $uni = $ev->{unicode};
190 root 1.1
191 root 1.3 if ($sym == CFClient::SDLK_KP5) {
192 root 1.1 $::CONN->user_send ("stay fire");
193 root 1.22 } elsif ($uni == ord ",") {
194 root 1.14 $::CONN->user_send ("take");
195 root 1.28 } elsif ($uni == ord "\t" or $uni == ord " ") {
196 root 1.1 $::CONN->user_send ("apply");
197 root 1.27 } elsif ($sym == CFClient::SDLK_KP_PLUS || $uni == ord "+") {
198     $::CONN->user_send ("rotateshoottype +");
199     } elsif ($sym == CFClient::SDLK_KP_MINUS || $uni == ord "-") {
200     $::CONN->user_send ("rotateshoottype -");
201 root 1.22 } elsif ($uni == ord "'") {
202 root 1.1 $self->emit ('activate_console');
203 root 1.22 } elsif ($uni == ord "/") {
204 root 1.8 $self->emit (activate_console => '/');
205 root 1.1 } elsif (exists $DIR{$sym}) {
206 root 1.3 if ($mod & CFClient::KMOD_SHIFT) {
207 root 1.1 $self->{shft}++;
208     $::CONN->user_send ("fire $DIR{$sym}[0]");
209 root 1.3 } elsif ($mod & CFClient::KMOD_CTRL) {
210 root 1.1 $self->{ctrl}++;
211     $::CONN->user_send ("run $DIR{$sym}[0]");
212     } else {
213     $::CONN->user_send ("$DIR{$sym}[1]");
214     }
215 root 1.8 } elsif ($ev->{unicode}) {
216     $self->{command_widget} ||=
217     new CFClient::MapWidget::Command::
218     command => $self->{command},
219     can_focus => 1,
220     connect_execute => sub {
221 root 1.11 # todo: support callback instead of user_send
222 root 1.23 $::CONN->user_send ($_[1]);
223 root 1.8 },
224     connect_close => sub {
225     (delete $self->{command_widget})->hide;
226     $self->focus_in;
227     },
228     ;
229 root 1.23 $self->{command_widget}->key_down ($ev)
230     unless $ev->{unicode} == 20;
231 root 1.12 return unless $self->{command_widget};
232 root 1.8 $self->{command_widget}->show;
233     $self->{command_widget}->focus_in;
234 root 1.1 }
235     }
236    
237     sub key_up {
238     my ($self, $ev) = @_;
239    
240 root 1.5 my $mod = $ev->{mod};
241     my $sym = $ev->{sym};
242 root 1.1
243 root 1.3 if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) {
244 root 1.1 $::CONN->user_send ("fire_stop");
245     }
246 root 1.3 if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) {
247 root 1.1 $::CONN->user_send ("run_stop");
248     }
249     }
250    
251 root 1.2 sub add_command {
252 root 1.11 my ($self, $command, $tooltip, $widget, $cb) = @_;
253 root 1.2
254 root 1.23 (my $data = $command) =~ s/\\//g;
255    
256     $tooltip =~ s/^\s+//;
257    
258 root 1.25 $tooltip = "<big>$data</big>\n\n$tooltip";
259 root 1.8
260 root 1.23 $tooltip =~ s/\s+$//;
261    
262 root 1.27 $self->{command}{$command} = [$data, $tooltip, $widget, $cb, ++$self->{command_id}];
263 root 1.23 }
264    
265     sub clr_commands {
266     my ($self) = @_;
267    
268     %{$self->{command}} = ();
269 root 1.8 }
270    
271 root 1.18 package CFClient::MapWidget::MapMap;
272    
273 root 1.19 our @ISA = CFClient::UI::Base::;
274 root 1.18
275     use Time::HiRes qw(time);
276     use CFClient::OpenGL;
277    
278     sub size_request {
279     ($::HEIGHT * 0.25, $::HEIGHT * 0.25)
280     }
281    
282     sub size_allocate {
283     my ($self, $w, $h) = @_;
284    
285     $self->SUPER::size_allocate ($w, $h);
286     $self->update;
287     }
288    
289     sub update {
290     my ($self) = @_;
291    
292     delete $self->{texture_atime};
293     $self->SUPER::update;
294     }
295    
296     sub _draw {
297     my ($self) = @_;
298    
299     $::MAP or return;
300    
301     my ($w, $h) = @$self{qw(w h)};
302    
303     my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
304     my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
305    
306     my $sx = int $::CFG->{map_shift_x} / 32;
307     my $sy = int $::CFG->{map_shift_y} / 32;
308    
309     my $ox = 0.5 * ($w - $sw);
310     my $oy = 0.5 * ($h - $sh);
311    
312     glEnable GL_BLEND;
313     glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
314     glEnable GL_TEXTURE_2D;
315     glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
316    
317     if ($self->{texture_atime} < time) {
318     $self->{texture_atime} = time + 1/3;
319    
320     $self->{texture} =
321     new CFClient::Texture
322     w => $w,
323     h => $h,
324     data => $::MAP->mapmap (-$ox, -$oy, $w, $h),
325     type => $CFClient::GL_VERSION >= 1.2 ? GL_UNSIGNED_INT_8_8_8_8_REV : GL_UNSIGNED_BYTE;
326     }
327    
328     $self->{texture}->draw_quad (0, 0);
329    
330     glDisable GL_TEXTURE_2D;
331    
332     glTranslate 0.375, 0.375;
333    
334     #TODO: map scale is completely borked
335    
336     my $x0 = int $ox - $sx + 0.5;
337     my $y0 = int $oy - $sy + 0.5;
338    
339     glColor 1, 1, 0, 1;
340     glBegin GL_LINE_LOOP;
341     glVertex $x0 , $y0 ;
342     glVertex $x0 , $y0 + $sh;
343     glVertex $x0 + $sw, $y0 + $sh;
344     glVertex $x0 + $sw, $y0 ;
345     glEnd;
346    
347     glDisable GL_BLEND;
348     }
349    
350 root 1.8 package CFClient::MapWidget::Command;
351    
352     use strict;
353    
354     use CFClient::OpenGL;
355    
356 root 1.23 our @ISA = CFClient::UI::Frame::;
357 root 1.8
358     sub new {
359     my $class = shift;
360    
361     my $self = $class->SUPER::new (
362 root 1.23 bg => [0, 0, 0, 0.8],
363 root 1.8 @_,
364 root 1.23 );
365    
366     $self->add ($self->{vbox} = new CFClient::UI::VBox);
367    
368     $self->{label} = [
369     map
370 root 1.8 CFClient::UI::Label->new (
371 root 1.25 can_hover => 1,
372     can_events => 1,
373     tooltip_width => 0.33,
374     fontsize => $_,
375 root 1.27 ), (0.8) x 16
376 root 1.23 ];
377    
378     $self->{entry} = new CFClient::UI::Entry
379     connect_changed => sub {
380     $self->update_labels;
381     };
382    
383     $self->{vbox}->add (
384     $self->{entry},
385     @{$self->{label}},
386 root 1.8 );
387    
388     $self
389     }
390    
391     sub size_allocate {
392     my ($self, $w, $h) = @_;
393    
394     $self->SUPER::size_allocate ($w, $h);
395     $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
396     }
397    
398 root 1.23 sub key_down {
399     my ($self, $ev) = @_;
400    
401     if ($ev->{sym} == 13) {
402     if (exists $self->{select}) {
403     $self->emit (execute => $self->{select});
404     $self->emit ("close");
405     }
406     } elsif ($ev->{sym} == 27) {
407     $self->{entry}->set_text ("");
408     $self->emit ("close");
409     return;
410     } elsif ($ev->{sym} == CFClient::SDLK_DOWN) {
411     ++$self->{select_offset}
412     if $self->{select_offset} < $#{ $self->{last_match} || [] };
413     $self->update_labels;
414     } elsif ($ev->{sym} == CFClient::SDLK_UP) {
415     --$self->{select_offset}
416     if $self->{select_offset};
417     $self->update_labels;
418     } else {
419     #$self->{entry}{force_alloc} = 1;
420     $self->{entry}->key_down ($ev);
421     }
422     }
423    
424 root 1.8 sub update_labels {
425     my ($self) = @_;
426    
427 root 1.23 my $text = $self->{entry}->get_text;
428    
429     length $text
430     or return $self->emit ("close");
431    
432     my ($cmd, $arg) = $text =~ /^\s*([^[:space:]]*)(.*)$/;
433    
434     if ($cmd ne $self->{last_search}) {
435     my $regexp = do {
436     my ($beg, @chr) = split //, lc $cmd;
437    
438     # the following regex is used to match our "completion entry"
439     # to an actual command - the parentheses match kind of "overhead"
440     # - the more characters the parentheses match, the less attractive
441     # is the match.
442     my $regexp = "^\Q$beg\E"
443     . join "", map "(?:.*?[ \\\\]\Q$_\E|(.*?)\Q$_\E)", @chr;
444     qr<$regexp>
445     };
446    
447     my @match;
448     my @penalty;
449    
450     for (keys %{$self->{command}}) {
451     if (@penalty = $_ =~ $regexp) {
452     push @match, [$_, length join "", map "::$_", grep defined, @penalty];
453     }
454 root 1.8 }
455 root 1.23
456     @match = map $self->{command}{$_->[0]},
457     sort {
458     $a->[1] <=> $b->[1]
459 root 1.27 or $self->{command}{$a->[0]}[4] <=> $self->{command}{$b->[0]}[4]
460 root 1.23 } @match;
461    
462     $self->{last_search} = $cmd;
463     $self->{last_match} = \@match;
464    
465     $self->{select_offset} = 0;
466 root 1.8 }
467    
468 root 1.23 my @labels = @{ $self->{label} };
469     my @matches = @{ $self->{last_match} || [] };
470 root 1.8
471 root 1.23 if ($self->{select_offset}) {
472     splice @matches, 0, $self->{select_offset}, ();
473 root 1.8
474 root 1.23 my $label = shift @labels;
475     $label->set_text ("...");
476     $label->set_tooltip ("Use Cursor-Up to view previous matches");
477 root 1.8 }
478    
479 root 1.23 for my $label (@labels) {
480     $label->{fg} = [1, 1, 1, 1];
481     $label->{bg} = [0, 0, 0, 0];
482     }
483    
484     if (@matches) {
485     $self->{select} = "$matches[0][0]$arg";
486    
487     $labels[0]->{fg} = [0, 0, 0, 1];
488     $labels[0]->{bg} = [1, 1, 1, 0.8];
489     } else {
490 root 1.24 $self->{select} = "$cmd$arg";
491 root 1.23 }
492    
493     for my $match (@matches) {
494     my $label = shift @labels;
495    
496     if (@labels) {
497     $label->set_text ("$match->[0]$arg");
498     $label->set_tooltip ($match->[1]);
499     } else {
500     $label->set_text ("...");
501     $label->set_tooltip ("Use Cursor-Down to view more matches");
502     last;
503     }
504     }
505 root 1.8
506 root 1.23 for my $label (@labels) {
507     $label->set_text ("");
508     $label->set_tooltip ("");
509 root 1.8 }
510    
511 root 1.23 $self->update;
512     ###
513 root 1.8 }
514    
515 root 1.23 sub _draw {
516     my ($self) = @_;
517 root 1.8
518 root 1.23 # hack
519     local $CFClient::UI::FOCUS = $self->{entry};
520 root 1.10
521 root 1.23 $self->SUPER::_draw;
522 root 1.2 }
523    
524 root 1.1 1