ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/UI.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC/UI.pm (file contents):
Revision 1.189 by root, Mon May 8 22:17:24 2006 UTC vs.
Revision 1.191 by root, Tue May 9 22:27:53 2006 UTC

232 $self->{y} = $y; 232 $self->{y} = $y;
233 $self->update; 233 $self->update;
234 } 234 }
235 235
236 if ($self->{w} != $w || $self->{h} != $h) { 236 if ($self->{w} != $w || $self->{h} != $h) {
237 $self->{w} = $w; 237 $CFClient::UI::ROOT->{size_alloc}{$self} = [$self, $w, $h];
238 $self->{h} = $h;
239
240 $self->size_allocate ($w, $h);
241 $self->update;
242 $self->emit (size_allocate => $w, $h);
243 } 238 }
244} 239}
245 240
246sub size_allocate { 241sub size_allocate {
247 # nothing to be done 242 # nothing to be done
267 262
268 delete $self->{max_w}; $self->{max_w} = $w if $w; 263 delete $self->{max_w}; $self->{max_w} = $w if $w;
269 delete $self->{max_h}; $self->{max_h} = $h if $h; 264 delete $self->{max_h}; $self->{max_h} = $h if $h;
270} 265}
271 266
272# return top left coordinates
273sub _topleft {
274 my ($self, $x, $y) = @_;
275
276 $self->{parent}
277 or Carp::confess "no parent widget in _topleft\n";#d#
278
279 $self->{parent}->_topleft ($x + $self->{x}, $y + $self->{y});
280}
281
282# translate global coordinates to local coordinate system 267# translate global coordinates to local coordinate system
283sub coord2local { 268sub coord2local {
284 my ($self, $x, $y) = @_; 269 my ($self, $x, $y) = @_;
285 270
286 my ($X, $Y) = $self->_topleft; 271 $self->{parent}->coord2local ($x - $self->{x}, $y - $self->{y})
287 ($x - $X, $y - $Y)
288} 272}
289 273
290# translate local coordinates to global coordinate system 274# translate local coordinates to global coordinate system
291sub coord2global { 275sub coord2global {
292 my ($self, $x, $y) = @_; 276 my ($self, $x, $y) = @_;
293 277
294 my ($X, $Y) = $self->_topleft; 278 $self->{parent}->coord2global ($x + $self->{x}, $y + $self->{y})
295 ($x + $X, $y + $Y)
296} 279}
297 280
298sub focus_in { 281sub focus_in {
299 my ($self) = @_; 282 my ($self) = @_;
300 283
397} 380}
398 381
399sub set_parent { 382sub set_parent {
400 my ($self, $parent) = @_; 383 my ($self, $parent) = @_;
401 384
385 $self->{_tree_depth} = $parent->{_tree_depth} + 1;
402 Scalar::Util::weaken ($self->{parent} = $parent); 386 Scalar::Util::weaken ($self->{parent} = $parent);
403} 387}
404 388
405sub check_size { 389sub check_size {
406 my ($self) = @_; 390 my ($self) = @_;
407 391
408 $self->_check_size;
409 return;
410 my $check_size = $CFClient::UI::ROOT->{_check_size} ||= {};
411
412 $check_size->{$self} = $self;
413
414 $CFClient::UI::ROOT->on_refresh (_check_size => sub {
415 while (%$check_size) {
416 my @widgets = values %$check_size;
417 $_->_check_size
418 for @widgets;
419 }
420 });
421}
422
423sub _check_size {
424 my ($self) = @_;
425
426 delete $CFClient::UI::ROOT->{_check_size}{$self}; 392 $CFClient::UI::ROOT->{check_size}{$self} = $self;
427
428 $self->{parent}
429 or return 1;
430
431 my ($w, $h) = $self->{user_w} && $self->{user_h}
432 ? @$self{qw(user_w user_h)}
433 : $self->size_request;
434
435 if ($w != $self->{req_w} || $h != $self->{req_h}) {
436 $self->{req_w} = $w;
437 $self->{req_h} = $h;
438
439 $self->{parent}->_check_size
440 or $self->size_allocate (
441 (List::Util::max $self->{w}, $w),
442 (List::Util::max $self->{h}, $h),
443 );
444
445 1
446 } else {
447 0
448 }
449} 393}
450 394
451sub update { 395sub update {
452 my ($self) = @_; 396 my ($self) = @_;
453 397
454 my $update = $CFClient::UI::ROOT->{_update} ||= {}; 398 $self->{parent}->update
455 399 if $self->{parent};
456 $update->{$self} = $self;
457
458 $CFClient::UI::ROOT->on_refresh (_update => sub {
459 while (%$update) {
460 my @widgets = values %$update;
461 %$update = ();
462
463 $_->{parent} && $_->{parent}->update
464 for @widgets;
465 }
466 });
467} 400}
468 401
469sub connect { 402sub connect {
470 my ($self, $signal, $cb) = @_; 403 my ($self, $signal, $cb) = @_;
471 404
775 $self->{view_y} = int $y; 708 $self->{view_y} = int $y;
776 709
777 $self->update; 710 $self->update;
778} 711}
779 712
780# hmm, this does not work for topleft of $self... but we should not aks for that 713# hmm, this does not work for topleft of $self... but we should not ask for that
781sub _topleft { 714sub coord2local {
782 my ($self, $x, $y) = @_; 715 my ($self, $x, $y) = @_;
783 716
784 $self->SUPER::_topleft ($x - $self->{view_x}, $y - $self->{view_y}) 717 $self->SUPER::coord2local ($x + $self->{view_x}, $y + $self->{view_y})
718}
719
720sub coord2global {
721 my ($self, $x, $y) = @_;
722
723 $x = List::Util::min $self->{w}, $x - $self->{view_x};
724 $y = List::Util::min $self->{h}, $y - $self->{view_y};
725
726 $self->SUPER::coord2global ($x, $y)
785} 727}
786 728
787sub find_widget { 729sub find_widget {
788 my ($self, $x, $y) = @_; 730 my ($self, $x, $y) = @_;
789 731
1366 return if $self->{text} eq "T$text"; 1308 return if $self->{text} eq "T$text";
1367 $self->{text} = "T$text"; 1309 $self->{text} = "T$text";
1368 1310
1369 $self->{layout}->set_text ($text); 1311 $self->{layout}->set_text ($text);
1370 1312
1371 delete $self->{texture};
1372 $self->update; 1313 $self->update;
1373 $self->check_size; 1314 $self->check_size;
1374} 1315}
1375 1316
1376sub set_markup { 1317sub set_markup {
1379 return if $self->{text} eq "M$markup"; 1320 return if $self->{text} eq "M$markup";
1380 $self->{text} = "M$markup"; 1321 $self->{text} = "M$markup";
1381 1322
1382 $self->{layout}->set_markup ($markup); 1323 $self->{layout}->set_markup ($markup);
1383 1324
1384 delete $self->{texture};
1385 $self->update; 1325 $self->update;
1386 $self->check_size; 1326 $self->check_size;
1387} 1327}
1388 1328
1389sub size_request { 1329sub size_request {
2715 2655
2716our @ISA = CFClient::UI::Container::; 2656our @ISA = CFClient::UI::Container::;
2717 2657
2718use CFClient::OpenGL; 2658use CFClient::OpenGL;
2719 2659
2660sub new {
2661 my $class = shift;
2662
2663 $class->SUPER::new (
2664 @_,
2665 )
2666}
2667
2668sub configure {
2669 my ($self, $x, $y, $w, $h) = @_;
2670
2671 $self->{w} = $w;
2672 $self->{h} = $h;
2673}
2674
2720sub check_size { 2675sub check_size {
2721 my ($self) = @_; 2676 my ($self) = @_;
2722 2677
2723 $self->configure (0, 0, $self->{w}, $self->{h}); 2678 $self->size_allocate ($self->{w}, $self->{h})
2679 if $self->{w};
2724} 2680}
2725 2681
2726sub size_request { 2682sub size_request {
2727 my ($self) = @_; 2683 my ($self) = @_;
2728 2684
2746 $child->{req_h} = int 0.5 + $child->{req_h} * $h / $old_h if exists $child->{req_h}; 2702 $child->{req_h} = int 0.5 + $child->{req_h} * $h / $old_h if exists $child->{req_h};
2747 $child->{user_h} = int 0.5 + $child->{user_h} * $h / $old_h if exists $child->{user_h}; 2703 $child->{user_h} = int 0.5 + $child->{user_h} * $h / $old_h if exists $child->{user_h};
2748 } 2704 }
2749 } 2705 }
2750 2706
2751 $self->{old_w} = $w;
2752 $self->{old_h} = $h;
2753}
2754
2755sub configure {
2756 my ($self, $x, $y, $w, $h) = @_;
2757
2758 $self->SUPER::configure ($x, $y, $w, $h);
2759
2760 for my $child ($self->children) { 2707 for my $child ($self->children) {
2761 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)}; 2708 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
2762 2709
2763 $X = List::Util::max 0, List::Util::min $w - $W, $X; 2710 $X = List::Util::max 0, List::Util::min $w - $W, $X;
2764 $Y = List::Util::max 0, List::Util::min $h - $H, $Y; 2711 $Y = List::Util::max 0, List::Util::min $h - $H, $Y;
2765 $child->configure ($X, $Y, $W, $H); 2712 $child->configure ($X, $Y, $W, $H);
2766 } 2713 }
2767}
2768 2714
2769sub _topleft { 2715 $self->{old_w} = $w;
2716 $self->{old_h} = $h;
2717}
2718
2719sub coord2local {
2770 my ($self, $x, $y) = @_; 2720 my ($self, $x, $y) = @_;
2771 2721
2772 ($x, $y) 2722 ($x, $y)
2773} 2723}
2774 2724
2725sub coord2global {
2726 my ($self, $x, $y) = @_;
2727
2728 ($x, $y)
2729}
2730
2775sub update { 2731sub update {
2776 my ($self) = @_; 2732 my ($self) = @_;
2777 2733
2778 $self->check_size; 2734 $self->check_size;
2779 ::refresh (); 2735 $::WANT_REFRESH++;
2780} 2736}
2781 2737
2782sub add { 2738sub add {
2783 my ($self, $child) = @_; 2739 my ($self, $child) = @_;
2784 2740
2785 # integerize window positions 2741 # integerise window positions
2786 $child->{x} = int $child->{x}; 2742 $child->{x} = int $child->{x};
2787 $child->{y} = int $child->{y}; 2743 $child->{y} = int $child->{y};
2788 2744
2789 $self->SUPER::add ($child); 2745 $self->SUPER::add ($child);
2790} 2746}
2793 my ($self, $id, $cb) = @_; 2749 my ($self, $id, $cb) = @_;
2794 2750
2795 $self->{refresh_hook}{$id} = $cb; 2751 $self->{refresh_hook}{$id} = $cb;
2796} 2752}
2797 2753
2798sub draw { 2754sub draw {
2799 my ($self) = @_; 2755 my ($self) = @_;
2800 2756
2757 if ($self->{check_size}) {
2758 my @queue = ([], []);
2759
2760 for (;;) {
2761 if ($self->{check_size}) {
2762 # heuristic: check containers last
2763 push @{ $queue[ ! ! $_->isa ("CFClient::UI::Container") ] }, $_
2764 for values %{delete $self->{check_size}}
2765 }
2766
2767 my $widget = (pop @{ $queue[0] }) || (pop @{ $queue[1] }) || last;
2768
2769 my ($w, $h) = $widget->{user_w} && $widget->{user_h}
2770 ? @$widget{qw(user_w user_h)}
2771 : $widget->size_request;
2772
2773 if ($w != $widget->{req_w} || $h != $widget->{req_h}) {
2774 $widget->{req_w} = $w;
2775 $widget->{req_h} = $h;
2776
2777 $self->{size_alloc}{$widget} = [$widget, $widget->{w}, $widget->{h}];
2778
2779 $widget->{parent}->check_size
2780 if $widget->{parent};
2781 }
2782 }
2783 }
2784
2785 while ($self->{size_alloc}) {
2786 for (values %{delete $self->{size_alloc}}) {
2787 my ($widget, $w, $h) = @$_;
2788
2789 $widget->{w} = $w;
2790 $widget->{h} = $h;
2791 $widget->size_allocate ($w, $h);
2792 $widget->emit (size_allocate => $w, $h);
2793 }
2794 }
2795
2801 while (my $rcb = delete $self->{refresh_hook}) { 2796 while ($self->{refresh_hook}) {
2802 $_->() for values %$rcb; 2797 $_->()
2798 for values %{delete $self->{refresh_hook}};
2803 } 2799 }
2804 2800
2805 glViewport 0, 0, $::WIDTH, $::HEIGHT; 2801 glViewport 0, 0, $::WIDTH, $::HEIGHT;
2806 glClearColor +($::CFG->{fow_intensity}) x 3, 1; 2802 glClearColor +($::CFG->{fow_intensity}) x 3, 1;
2807 glClear GL_COLOR_BUFFER_BIT; 2803 glClear GL_COLOR_BUFFER_BIT;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines