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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines