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.43 by elmex, Mon May 29 19:30:28 2006 UTC vs.
Revision 1.60 by root, Thu Jun 15 08:29:18 2006 UTC

14 14
15 my $self = $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 => glGenList, 18 list => glGenList,
19
20 smooth_matrix => [
21 0.05, 0.13, 0.05,
22 0.13, 0.30, 0.13,
23 0.05, 0.13, 0.05,
24 ],
25
19 @_ 26 @_
20 ); 27 );
21 28
22 $self->{completer} = new CFClient::MapWidget::Command:: 29 $self->{completer} = new CFClient::MapWidget::Command::
23 command => $self->{command}, 30 command => $self->{command},
54} 61}
55 62
56sub button_down { 63sub button_down {
57 my ($self, $ev, $x, $y) = @_; 64 my ($self, $ev, $x, $y) = @_;
58 65
66 return unless $::CONN;
67
59 $self->focus_in; 68 $self->focus_in;
60 69
61 if ($ev->{button} == 2) { 70 if ($ev->{button} == 1) {
71 my $x = CFClient::floor +($ev->{x} - $self->{sx0}) / $self->{tilesize} - $self->{sx};
72 my $y = CFClient::floor +($ev->{y} - $self->{sy0}) / $self->{tilesize} - $self->{sy};
73
74 $x -= int 0.5 * $self->{sw};
75 $y -= int 0.5 * $self->{sh};
76
77 $::CONN->lookat ($x, $y)
78 if $::CONN;
79
80 } elsif ($ev->{button} == 2) {
62 my ($ox, $oy) = ($ev->{x}, $ev->{y}); 81 my ($ox, $oy) = ($ev->{x}, $ev->{y});
63 my ($bw, $bh) = ($::CFG->{map_shift_x}, $::CFG->{map_shift_y}); 82 my ($bw, $bh) = ($::CFG->{map_shift_x}, $::CFG->{map_shift_y});
64 83
65 $self->{motion} = sub { 84 $self->{motion} = sub {
66 my ($ev, $x, $y) = @_; 85 my ($ev, $x, $y) = @_;
71 $::CFG->{map_shift_y} = $bh + $y - $oy; 90 $::CFG->{map_shift_y} = $bh + $y - $oy;
72 91
73 $self->update; 92 $self->update;
74 }; 93 };
75 } 94 }
95
96 1
76} 97}
77 98
78sub button_up { 99sub button_up {
79 my ($self, $ev, $x, $y) = @_; 100 my ($self, $ev, $x, $y) = @_;
80 101
81 delete $self->{motion}; 102 delete $self->{motion};
103
104 1
82} 105}
83 106
84sub mouse_motion { 107sub mouse_motion {
85 my ($self, $ev, $x, $y) = @_; 108 my ($self, $ev, $x, $y) = @_;
86 109
110 if ($self->{motion}) {
87 $self->{motion}->($ev, $x, $y) if $self->{motion}; 111 $self->{motion}->($ev, $x, $y);
112 } else {
113 return 0;
114 }
115
116 1
88} 117}
89 118
90sub size_request { 119sub size_request {
91 ( 120 (
92 1 + 32 * int $::WIDTH / 32, 121 1 + 32 * int $::WIDTH / 32,
118); 147);
119 148
120sub key_down { 149sub key_down {
121 my ($self, $ev) = @_; 150 my ($self, $ev) = @_;
122 151
123 return unless $::CONN; 152 return 0 unless $::CONN;
124 153
125 my $mod = $ev->{mod}; 154 my $mod = $ev->{mod};
126 my $sym = $ev->{sym}; 155 my $sym = $ev->{sym};
127 my $uni = $ev->{unicode}; 156 my $uni = $ev->{unicode};
128 157
148 $self->{completer}->set_prefix (""); 177 $self->{completer}->set_prefix ("");
149 $self->{completer}->show; 178 $self->{completer}->show;
150 } elsif (exists $DIR{$sym}) { 179 } elsif (exists $DIR{$sym}) {
151 if ($mod & CFClient::KMOD_SHIFT) { 180 if ($mod & CFClient::KMOD_SHIFT) {
152 $self->{shft}++; 181 $self->{shft}++;
182 if ($DIR{$sym}[0] != $self->{fire_dir}) {
153 $::CONN->user_send ("fire $DIR{$sym}[0]"); 183 $::CONN->user_send ("fire $DIR{$sym}[0]");
184 }
185 $self->{fire_dir} = $DIR{$sym}[0];
154 } elsif ($mod & CFClient::KMOD_CTRL) { 186 } elsif ($mod & CFClient::KMOD_CTRL) {
155 $self->{ctrl}++; 187 $self->{ctrl}++;
156 $::CONN->user_send ("run $DIR{$sym}[0]"); 188 $::CONN->user_send ("run $DIR{$sym}[0]");
157 } else { 189 } else {
158 $::CONN->user_send ("$DIR{$sym}[1]"); 190 $::CONN->user_send ("$DIR{$sym}[1]");
159 } 191 }
160 } elsif ($sym == CFClient::SDLK_INSERT && $mod & CFClient::KMOD_CTRL) { 192 } elsif ($sym == CFClient::SDLK_INSERT && $mod & CFClient::KMOD_CTRL) {
161 CFClient::Recorder::start (1); 193 $::BIND_EDITOR->set_binding (undef, undef, [],
194 sub {
195 my ($mod, $sym, $cmds) = @_;
196 $::CFG->{bindings}->{$mod}->{$sym} = $cmds;
197 });
198 $::BIND_EDITOR->start;
199 $::BIND_EDITOR->show;
162 } elsif ($sym == CFClient::SDLK_INSERT && not ($mod & CFClient::KMOD_CTRL)) { 200 } elsif ($sym == CFClient::SDLK_INSERT && not ($mod & CFClient::KMOD_CTRL)) {
163 CFClient::Recorder::stop (1); 201 $::BIND_EDITOR->stop;
202 $::BIND_EDITOR->ask_for_bind_and_commit;
203 $::BIND_EDITOR->hide;
164 } elsif (my $bind_cmd = $::CFG->{bindings}->{$mod}->{$sym}) { 204 } elsif (my $bind_cmd = $::CFG->{bindings}->{$mod}->{$sym}) {
165 $::CONN->user_send ($_) for @$bind_cmd; 205 $::CONN->user_send ($_) for @$bind_cmd;
166 } elsif ((ord 'a') <= $uni && $uni <= (ord 'z')) { 206 } elsif ((ord 'a') <= $uni && $uni <= (ord 'z')) {
167 $self->{completer}->key_down ($ev); 207 $self->{completer}->key_down ($ev);
168 $self->{completer}->show; 208 $self->{completer}->show;
209 } else {
210 return 0;
211 }
212
169 } 213 1
170} 214}
171 215
172sub key_up { 216sub key_up {
173 my ($self, $ev) = @_; 217 my ($self, $ev) = @_;
174 218
219 my $res = 0;
175 my $mod = $ev->{mod}; 220 my $mod = $ev->{mod};
176 my $sym = $ev->{sym}; 221 my $sym = $ev->{sym};
177 222
223 if ($::CFG->{shift_fire_stop}) {
178 if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) { 224 if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) {
179 $::CONN->user_send ("fire_stop"); 225 $::CONN->user_send ("fire_stop");
226 delete $self->{fire_dir};
227 $res = 1;
228 }
229 } else {
230 if (exists $DIR{$sym} && delete $self->{shft}) {
231 $::CONN->user_send ("fire_stop");
232 delete $self->{fire_dir};
233 $res = 1;
234 } elsif (($sym == CFClient::SDLK_LSHIFT || $sym == CFClient::SDLK_RSHIFT) && delete $self->{shft}) { # XXX: is RSHIFT ok?
235 $::CONN->user_send ("fire_stop");
236 delete $self->{fire_dir};
237 $res = 1;
238 }
180 } 239 }
240
181 if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) { 241 if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) {
182 $::CONN->user_send ("run_stop"); 242 $::CONN->user_send ("run_stop");
243 $res = 1;
183 } 244 }
245
246 $res
184} 247}
185 248
186sub draw { 249sub draw {
187 my ($self) = @_; 250 my ($self) = @_;
251
252 return unless $::MAP;
188 253
189 my $focused = $CFClient::UI::FOCUS == $self 254 my $focused = $CFClient::UI::FOCUS == $self
190 || $CFClient::UI::FOCUS == $self->{completer}{entry}; 255 || $CFClient::UI::FOCUS == $self->{completer}{entry};
191 256
192 return 257 return
193 unless $focused || !$::FAST; 258 unless $focused || !$::FAST;
194 259
195 if (delete $self->{need_update}) { 260 if (delete $self->{need_update}) {
261 my $tilesize = $self->{tilesize} = int 32 * $::CFG->{map_scale};
262
263 my $sx = $self->{sx} = CFClient::ceil $::CFG->{map_shift_x} / $tilesize;
264 my $sy = $self->{sy} = CFClient::ceil $::CFG->{map_shift_y} / $tilesize;
265
266 my $sx0 = $self->{sx0} = $::CFG->{map_shift_x} - $sx * $tilesize;
267 my $sy0 = $self->{sy0} = $::CFG->{map_shift_y} - $sy * $tilesize;
268
269 my $sw = $self->{sw} = 1 + CFClient::ceil $::WIDTH / $tilesize;
270 my $sh = $self->{sh} = 1 + CFClient::ceil $::HEIGHT / $tilesize;
271
272 if ($::CFG->{fow_enable}) {
273 my ($w, $h, $data) = $::MAP->fow_texture ($sx, $sy, 0, 0, $sw, $sh);
274
275 if ($::CFG->{fow_smooth} && $CFClient::OpenGL::GL_VERSION >= 1.2) { # smooth fog of war
276 glConvolutionParameter (GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER);
277 glConvolutionFilter2D (
278 GL_CONVOLUTION_2D,
279 GL_ALPHA,
280 3, 3,
281 GL_ALPHA, GL_FLOAT,
282 (pack "f*", @{ $self->{smooth_matrix} }),
283 );
284 glEnable GL_CONVOLUTION_2D;
285 }
286
287 $self->{fow_texture} = new CFClient::Texture
288 w => $w,
289 h => $h,
290 data => $data,
291 internalformat => GL_ALPHA,
292 format => GL_ALPHA;
293
294 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
295 } else {
296 delete $self->{fow_texture};
297 }
298
196 glNewList $self->{list}; 299 glNewList $self->{list};
197 300
198 if ($::MAP) {
199 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
200 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
201
202 my $sx = $::CFG->{map_shift_x} / $::CFG->{map_scale}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32;
203 my $sy = $::CFG->{map_shift_y} / $::CFG->{map_scale}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32;
204
205 glPushMatrix; 301 glPushMatrix;
302 glTranslate $sx0, $sy0;
206 glScale $::CFG->{map_scale}, $::CFG->{map_scale}; 303 glScale $::CFG->{map_scale}, $::CFG->{map_scale};
207 304
208 glTranslate $sx0 - 32, $sy0 - 32, 0; 305 $::MAP->draw ($sx, $sy, 0, 0, $sw, $sh);
209 306
210 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1); 307 if (my $tex = $self->{fow_texture}) {
211
212 if ($::CFG->{fow_enable}) {
213 if ($::CFG->{fow_smooth} && $CFClient::OpenGL::GL_VERSION >= 1.2) { # smooth fog of war
214 glConvolutionParameter (GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER);
215 glConvolutionFilter2D (
216 GL_CONVOLUTION_2D,
217 GL_ALPHA,
218 3, 3,
219 GL_ALPHA, GL_FLOAT,
220 pack "f*",
221 0.05, 0.13, 0.05,
222 0.13, 0.30, 0.13,
223 0.05, 0.13, 0.05,
224 );
225 glEnable GL_CONVOLUTION_2D;
226 }
227
228 $self->{fow_texture_name} ||= glGenTexture;
229 # try to re-use the texture name: TODO improve texture class instead
230
231 $self->{fow_texture} = new CFClient::Texture
232 w => $w,
233 h => $h,
234 data => $data,
235 name => $self->{fow_texture_name},
236 internalformat => GL_ALPHA,
237 format => GL_ALPHA;
238
239 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
240
241 glEnable GL_TEXTURE_2D; 308 glEnable GL_TEXTURE_2D;
242 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 309 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
243 310
311 glScale 32, 32;
244 glColor +($::CFG->{fow_intensity}) x 3, 0.8; 312 glColor +($::CFG->{fow_intensity}) x 3, 0.9;
245 $self->{fow_texture}->draw_quad_alpha (0, 0, $w * 32, $h * 32); 313 $self->{fow_texture}->draw_quad_alpha (0, 0);
246 314
247 glDisable GL_TEXTURE_2D; 315 glDisable GL_TEXTURE_2D;
248 } 316 }
249 317
250 glPopMatrix; 318 glPopMatrix;
251 }
252 319
253 glEndList; 320 glEndList;
254 } 321 }
255 322
256 glPushMatrix; 323 glPushMatrix;
257 glCallList $self->{list}; 324 glCallList $self->{list};
258 glPopMatrix; 325 glPopMatrix;
259 326
260 # TNT2 emulates logops in software (or worse :) 327 # TNT2 emulates logops in software (or worse :)
261 if ($focused) { 328 unless ($focused) {
262 (delete $self->{out_of_focus})->destroy
263 if $self->{out_of_focus};
264 } else {
265 glColor 0.4, 0.2, 0.2, 0.6; 329 glColor 0.4, 0.2, 0.2, 0.6;
266 glEnable GL_BLEND; 330 glEnable GL_BLEND;
267 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 331 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
268 glBegin GL_QUADS; 332 glBegin GL_QUADS;
269 glVertex 0, 0; 333 glVertex 0, 0;
270 glVertex 0, $::HEIGHT; 334 glVertex 0, $::HEIGHT;
271 glVertex $::WIDTH, $::HEIGHT; 335 glVertex $::WIDTH, $::HEIGHT;
272 glVertex $::WIDTH, 0; 336 glVertex $::WIDTH, 0;
273 glEnd; 337 glEnd;
274 glDisable GL_BLEND; 338 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 } 339 }
297} 340}
298 341
299sub DESTROY { 342sub DESTROY {
300 my $self = shift; 343 my $self = shift;
413 456
414 $self->{entry} = new CFClient::UI::Entry 457 $self->{entry} = new CFClient::UI::Entry
415 on_changed => sub { 458 on_changed => sub {
416 $self->update_labels; 459 $self->update_labels;
417 }, 460 },
461 on_button_down => sub {
462 my ($entry, $ev, $x, $y) = @_;
463
464 if ($ev->{button} == 3) {
465 (new CFClient::UI::Menu
466 items => [
467 ["bind to a key" => sub { $::BIND_EDITOR->do_quick_binding ([$self->{select}], sub { $entry->focus_in }) }]
468 ],
469 )->popup ($ev);
470 return 1;
471 }
472 0
473 },
418 on_key_down => sub { 474 on_key_down => sub {
419 my ($entry, $ev) = @_; 475 my ($entry, $ev) = @_;
420 476
421 my $self = $entry->{parent}{parent}; 477 my $self = $entry->{parent}{parent};
422 478
423 if ($ev->{sym} == 13) { 479 if ($ev->{sym} == 13) {
424 if (exists $self->{select}) { 480 if (exists $self->{select}) {
425 $self->{last_command} = $self->{select}; 481 $self->{last_command} = $self->{select};
426 $::CONN->user_send ($self->{select}); 482 $::CONN->user_send ($self->{select});
483
484 unshift @{$self->{history}}, $self->{select};
485 $self->{hist_ptr} = 0;
486
427 $self->hide; 487 $self->hide;
428 } 488 }
429 } elsif ($ev->{sym} == 27) { 489 } elsif ($ev->{sym} == 27) {
490 $self->{hist_ptr} = 0;
430 $self->hide; 491 $self->hide;
431 return; 492 return;
432 } elsif ($ev->{sym} == CFClient::SDLK_DOWN) { 493 } elsif ($ev->{sym} == CFClient::SDLK_DOWN) {
494 if ($self->{hist_ptr} > 1) {
495 $self->{hist_ptr}--;
496 $self->{entry}->set_text ($self->{history}->[$self->{hist_ptr} - 1]);
497 } elsif ($self->{hist_ptr} > 0) {
498 $self->{hist_ptr}--;
499 $self->{entry}->set_text ($self->{hist_saveback});
500 } else {
433 ++$self->{select_offset} 501 ++$self->{select_offset}
434 if $self->{select_offset} < $#{ $self->{last_match} || [] }; 502 if $self->{select_offset} < $#{ $self->{last_match} || [] };
503 }
435 $self->update_labels; 504 $self->update_labels;
436 } elsif ($ev->{sym} == CFClient::SDLK_UP) { 505 } elsif ($ev->{sym} == CFClient::SDLK_UP) {
506 if ($self->{select_offset}) {
437 --$self->{select_offset} 507 --$self->{select_offset}
508 } else {
509 unless ($self->{hist_ptr}) {
510 $self->{hist_saveback} = $self->{entry}->get_text;
511 }
512 if ($self->{hist_ptr} <= $#{$self->{history}}) {
438 if $self->{select_offset}; 513 $self->{hist_ptr}++;
514 }
515 $self->{entry}->set_text ($self->{history}->[$self->{hist_ptr} - 1])
516 if exists $self->{history}->[$self->{hist_ptr} - 1];
517 }
439 $self->update_labels; 518 $self->update_labels;
440 } else { 519 } else {
441 return 0; 520 return 0;
442 } 521 }
443 522
462 541
463sub size_allocate { 542sub size_allocate {
464 my ($self, $w, $h) = @_; 543 my ($self, $w, $h) = @_;
465 544
466 $self->SUPER::size_allocate ($w, $h); 545 $self->SUPER::size_allocate ($w, $h);
467 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10); 546 $self->move_abs (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
468} 547}
469 548
470sub show { 549sub show {
471 my ($self) = @_; 550 my ($self) = @_;
472 551
482} 561}
483 562
484sub key_down { 563sub key_down {
485 my ($self, $ev) = @_; 564 my ($self, $ev) = @_;
486 565
487 $self->{entry}->key_down ($ev); 566 $self->{entry}->key_down ($ev)
488} 567}
489 568
490sub update_labels { 569sub update_labels {
491 my ($self) = @_; 570 my ($self) = @_;
492 571

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines