ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/MapWidget.pm
Revision: 1.25
Committed: Wed May 17 15:18:57 2006 UTC (18 years ago) by root
Branch: MAIN
Changes since 1.24: +5 -5 lines
Log Message:
better text layout, minor fixes

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