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.42 by root, Mon May 29 18:33:23 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 }
192 } elsif ($sym == CFClient::SDLK_INSERT && $mod & CFClient::KMOD_CTRL) {
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;
200 } elsif ($sym == CFClient::SDLK_INSERT && not ($mod & CFClient::KMOD_CTRL)) {
201 $::BIND_EDITOR->stop;
202 $::BIND_EDITOR->ask_for_bind_and_commit;
203 $::BIND_EDITOR->hide;
204 } elsif (my $bind_cmd = $::CFG->{bindings}->{$mod}->{$sym}) {
205 $::CONN->user_send ($_) for @$bind_cmd;
160 } elsif ((ord 'a') <= $uni && $uni <= (ord 'z')) { 206 } elsif ((ord 'a') <= $uni && $uni <= (ord 'z')) {
161 $self->{completer}->key_down ($ev); 207 $self->{completer}->key_down ($ev);
162 $self->{completer}->show; 208 $self->{completer}->show;
209 } else {
210 return 0;
211 }
212
163 } 213 1
164} 214}
165 215
166sub key_up { 216sub key_up {
167 my ($self, $ev) = @_; 217 my ($self, $ev) = @_;
168 218
219 my $res = 0;
169 my $mod = $ev->{mod}; 220 my $mod = $ev->{mod};
170 my $sym = $ev->{sym}; 221 my $sym = $ev->{sym};
171 222
223 if ($::CFG->{shift_fire_stop}) {
172 if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) { 224 if (!($mod & CFClient::KMOD_SHIFT) && delete $self->{shft}) {
173 $::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 }
174 } 239 }
240
175 if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) { 241 if (!($mod & CFClient::KMOD_CTRL ) && delete $self->{ctrl}) {
176 $::CONN->user_send ("run_stop"); 242 $::CONN->user_send ("run_stop");
243 $res = 1;
177 } 244 }
245
246 $res
178} 247}
179 248
180sub draw { 249sub draw {
181 my ($self) = @_; 250 my ($self) = @_;
251
252 return unless $::MAP;
182 253
183 my $focused = $CFClient::UI::FOCUS == $self 254 my $focused = $CFClient::UI::FOCUS == $self
184 || $CFClient::UI::FOCUS == $self->{completer}{entry}; 255 || $CFClient::UI::FOCUS == $self->{completer}{entry};
185 256
186 return 257 return
187 unless $focused || !$::FAST; 258 unless $focused || !$::FAST;
188 259
189 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
190 glNewList $self->{list}; 299 glNewList $self->{list};
191 300
192 if ($::MAP) {
193 my $sw = int $::WIDTH / (32 * $::CFG->{map_scale}) + 0.99;
194 my $sh = int $::HEIGHT / (32 * $::CFG->{map_scale}) + 0.99;
195
196 my $sx = $::CFG->{map_shift_x} / $::CFG->{map_scale}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32;
197 my $sy = $::CFG->{map_shift_y} / $::CFG->{map_scale}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32;
198
199 glPushMatrix; 301 glPushMatrix;
302 glTranslate $sx0, $sy0;
200 glScale $::CFG->{map_scale}, $::CFG->{map_scale}; 303 glScale $::CFG->{map_scale}, $::CFG->{map_scale};
201 304
202 glTranslate $sx0 - 32, $sy0 - 32, 0; 305 $::MAP->draw ($sx, $sy, 0, 0, $sw, $sh);
203 306
204 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1); 307 if (my $tex = $self->{fow_texture}) {
205
206 if ($::CFG->{fow_enable}) {
207 if ($::CFG->{fow_smooth} && $CFClient::OpenGL::GL_VERSION >= 1.2) { # smooth fog of war
208 glConvolutionParameter (GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER);
209 glConvolutionFilter2D (
210 GL_CONVOLUTION_2D,
211 GL_ALPHA,
212 3, 3,
213 GL_ALPHA, GL_FLOAT,
214 pack "f*",
215 0.05, 0.13, 0.05,
216 0.13, 0.30, 0.13,
217 0.05, 0.13, 0.05,
218 );
219 glEnable GL_CONVOLUTION_2D;
220 }
221
222 $self->{fow_texture_name} ||= glGenTexture;
223 # try to re-use the texture name: TODO improve texture class instead
224
225 $self->{fow_texture} = new CFClient::Texture
226 w => $w,
227 h => $h,
228 data => $data,
229 name => $self->{fow_texture_name},
230 internalformat => GL_ALPHA,
231 format => GL_ALPHA;
232
233 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
234
235 glEnable GL_TEXTURE_2D; 308 glEnable GL_TEXTURE_2D;
236 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 309 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
237 310
311 glScale 32, 32;
238 glColor +($::CFG->{fow_intensity}) x 3, 0.8; 312 glColor +($::CFG->{fow_intensity}) x 3, 0.9;
239 $self->{fow_texture}->draw_quad_alpha (0, 0, $w * 32, $h * 32); 313 $self->{fow_texture}->draw_quad_alpha (0, 0);
240 314
241 glDisable GL_TEXTURE_2D; 315 glDisable GL_TEXTURE_2D;
242 } 316 }
243 317
244 glPopMatrix; 318 glPopMatrix;
245 }
246 319
247 glEndList; 320 glEndList;
248 } 321 }
249 322
250 glPushMatrix; 323 glPushMatrix;
251 glCallList $self->{list}; 324 glCallList $self->{list};
252 glPopMatrix; 325 glPopMatrix;
253 326
254 # TNT2 emulates logops in software (or worse :) 327 # TNT2 emulates logops in software (or worse :)
255 if ($focused) { 328 unless ($focused) {
256 (delete $self->{out_of_focus})->destroy
257 if $self->{out_of_focus};
258 } else {
259 glColor 0.4, 0.2, 0.2, 0.6; 329 glColor 0.4, 0.2, 0.2, 0.6;
260 glEnable GL_BLEND; 330 glEnable GL_BLEND;
261 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 331 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
262 glBegin GL_QUADS; 332 glBegin GL_QUADS;
263 glVertex 0, 0; 333 glVertex 0, 0;
264 glVertex 0, $::HEIGHT; 334 glVertex 0, $::HEIGHT;
265 glVertex $::WIDTH, $::HEIGHT; 335 glVertex $::WIDTH, $::HEIGHT;
266 glVertex $::WIDTH, 0; 336 glVertex $::WIDTH, 0;
267 glEnd; 337 glEnd;
268 glDisable GL_BLEND; 338 glDisable GL_BLEND;
269
270# $self->{out_of_focus} ||= do {
271# my $label = new CFClient::UI::Label
272# x => 0,
273# y => 0,
274# z => 1,
275# ellipsise => 0,
276# text => "map out of focus (click map to play)";
277#
278# $label->show;
279# $label->update;
280#
281# $CFClient::UI::ROOT->on_post_alloc ("$self$label" => sub {
282# $label->move (
283# ($::WIDTH - $label->{w}) * 0.5,
284# ($::HEIGHT - $label->{h}) * 0.5,
285# );
286# });
287#
288# $label
289# };
290 } 339 }
291} 340}
292 341
293sub DESTROY { 342sub DESTROY {
294 my $self = shift; 343 my $self = shift;
407 456
408 $self->{entry} = new CFClient::UI::Entry 457 $self->{entry} = new CFClient::UI::Entry
409 on_changed => sub { 458 on_changed => sub {
410 $self->update_labels; 459 $self->update_labels;
411 }, 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 },
412 on_key_down => sub { 474 on_key_down => sub {
413 my ($entry, $ev) = @_; 475 my ($entry, $ev) = @_;
414 476
415 my $self = $entry->{parent}{parent}; 477 my $self = $entry->{parent}{parent};
416 478
417 if ($ev->{sym} == 13) { 479 if ($ev->{sym} == 13) {
418 if (exists $self->{select}) { 480 if (exists $self->{select}) {
419 $self->{last_command} = $self->{select}; 481 $self->{last_command} = $self->{select};
420 $::CONN->user_send ($self->{select}); 482 $::CONN->user_send ($self->{select});
483
484 unshift @{$self->{history}}, $self->{select};
485 $self->{hist_ptr} = 0;
486
421 $self->hide; 487 $self->hide;
422 } 488 }
423 } elsif ($ev->{sym} == 27) { 489 } elsif ($ev->{sym} == 27) {
490 $self->{hist_ptr} = 0;
424 $self->hide; 491 $self->hide;
425 return; 492 return;
426 } 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 {
427 ++$self->{select_offset} 501 ++$self->{select_offset}
428 if $self->{select_offset} < $#{ $self->{last_match} || [] }; 502 if $self->{select_offset} < $#{ $self->{last_match} || [] };
503 }
429 $self->update_labels; 504 $self->update_labels;
430 } elsif ($ev->{sym} == CFClient::SDLK_UP) { 505 } elsif ($ev->{sym} == CFClient::SDLK_UP) {
506 if ($self->{select_offset}) {
431 --$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}}) {
432 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 }
433 $self->update_labels; 518 $self->update_labels;
434 } else { 519 } else {
435 return 0; 520 return 0;
436 } 521 }
437 522
456 541
457sub size_allocate { 542sub size_allocate {
458 my ($self, $w, $h) = @_; 543 my ($self, $w, $h) = @_;
459 544
460 $self->SUPER::size_allocate ($w, $h); 545 $self->SUPER::size_allocate ($w, $h);
461 $self->move (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10); 546 $self->move_abs (($::WIDTH - $w) * 0.5, ($::HEIGHT - $h) * 0.6, 10);
462} 547}
463 548
464sub show { 549sub show {
465 my ($self) = @_; 550 my ($self) = @_;
466 551
476} 561}
477 562
478sub key_down { 563sub key_down {
479 my ($self, $ev) = @_; 564 my ($self, $ev) = @_;
480 565
481 $self->{entry}->key_down ($ev); 566 $self->{entry}->key_down ($ev)
482} 567}
483 568
484sub update_labels { 569sub update_labels {
485 my ($self) = @_; 570 my ($self) = @_;
486 571

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines