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.186 by root, Mon May 8 20:39:34 2006 UTC vs.
Revision 1.193 by root, Wed May 10 21:12:26 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
256 251
257 $_->reconfigure 252 $_->reconfigure
258 for $self->children; 253 for $self->children;
259 254
260 $self->check_size; 255 $self->check_size;
261 $self->size_allocate ($self->{w}, $self->{h}); 256 $CFClient::UI::ROOT->{size_alloc}{$self} = [$self, $self->{w}, $self->{h}];
262 $self->update; 257 $self->update;
263} 258}
264 259
265sub set_max_size { 260sub set_max_size {
266 my ($self, $w, $h) = @_; 261 my ($self, $w, $h) = @_;
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}
271
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} 265}
281 266
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
398 381
399sub set_parent { 382sub set_parent {
400 my ($self, $parent) = @_; 383 my ($self, $parent) = @_;
401 384
402 Scalar::Util::weaken ($self->{parent} = $parent); 385 Scalar::Util::weaken ($self->{parent} = $parent);
386
387 $self->check_size
388 unless exists $self->{req_w};
403} 389}
404 390
405sub check_size { 391sub check_size {
406 my ($self) = @_; 392 my ($self) = @_;
407 393
408 $self->{parent} 394 $CFClient::UI::ROOT->{check_size}{$self} = $self;
409 or return 1;
410
411 my ($w, $h) = $self->{user_w} && $self->{user_h}
412 ? @$self{qw(user_w user_h)}
413 : $self->size_request;
414
415 if ($w != $self->{req_w} || $h != $self->{req_h}) {
416 $self->{req_w} = $w;
417 $self->{req_h} = $h;
418
419 $self->{parent}->check_size
420 or $self->size_allocate (
421 (List::Util::max $self->{w}, $w),
422 (List::Util::max $self->{h}, $h),
423 );
424
425 1
426 } else {
427 0
428 }
429} 395}
430 396
431sub update { 397sub update {
432 my ($self) = @_; 398 my ($self) = @_;
433 399
530 496
531 $self 497 $self
532} 498}
533 499
534sub add { 500sub add {
535 my ($self, $child) = @_; 501 my ($self, @widgets) = @_;
536 502
537 $child->set_parent ($self); 503 $_->set_parent ($self)
504 for @widgets;
538 505
539 use sort 'stable'; 506 use sort 'stable';
540 507
541 $self->{children} = [ 508 $self->{children} = [
542 sort { $a->{z} <=> $b->{z} } 509 sort { $a->{z} <=> $b->{z} }
543 @{$self->{children}}, $child 510 @{$self->{children}}, @widgets
544 ]; 511 ];
545 512
546 $child->check_size; 513 $self->check_size;
547 $self->update; 514 $self->update;
548} 515}
549 516
550sub children { 517sub children {
551 @{ $_[0]{children} } 518 @{ $_[0]{children} }
741 $self->{view_y} = int $y; 708 $self->{view_y} = int $y;
742 709
743 $self->update; 710 $self->update;
744} 711}
745 712
746# 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
747sub _topleft { 714sub coord2local {
748 my ($self, $x, $y) = @_; 715 my ($self, $x, $y) = @_;
749 716
750 $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)
751} 727}
752 728
753sub find_widget { 729sub find_widget {
754 my ($self, $x, $y) = @_; 730 my ($self, $x, $y) = @_;
755 731
1236 ) 1212 )
1237} 1213}
1238 1214
1239sub size_allocate { 1215sub size_allocate {
1240 my ($self, $w, $h) = @_; 1216 my ($self, $w, $h) = @_;
1217
1218 Carp::confess "negative size" if $w < 0 || $h < 0;#d#
1241 1219
1242 my $children = $self->{children}; 1220 my $children = $self->{children};
1243 1221
1244 my @h = map $_->{req_h}, @$children; 1222 my @h = map $_->{req_h}, @$children;
1245 1223
1332 return if $self->{text} eq "T$text"; 1310 return if $self->{text} eq "T$text";
1333 $self->{text} = "T$text"; 1311 $self->{text} = "T$text";
1334 1312
1335 $self->{layout}->set_text ($text); 1313 $self->{layout}->set_text ($text);
1336 1314
1337 delete $self->{texture};
1338 $self->update; 1315 $self->update;
1339 $self->check_size; 1316 $self->check_size;
1340} 1317}
1341 1318
1342sub set_markup { 1319sub set_markup {
1345 return if $self->{text} eq "M$markup"; 1322 return if $self->{text} eq "M$markup";
1346 $self->{text} = "M$markup"; 1323 $self->{text} = "M$markup";
1347 1324
1348 $self->{layout}->set_markup ($markup); 1325 $self->{layout}->set_markup ($markup);
1349 1326
1350 delete $self->{texture};
1351 $self->update; 1327 $self->update;
1352 $self->check_size; 1328 $self->check_size;
1353} 1329}
1354 1330
1355sub size_request { 1331sub size_request {
2507sub new { 2483sub new {
2508 my $class = shift; 2484 my $class = shift;
2509 2485
2510 my %args = @_; 2486 my %args = @_;
2511 2487
2512 my $item = $args{item}; 2488 my $item = delete $args{item};
2513 2489
2514 my $desc = $item->{nrof} < 2 2490 my $desc = $item->{nrof} < 2
2515 ? $item->{name} 2491 ? $item->{name}
2516 : "$item->{nrof} $item->{name_pl}"; 2492 : "$item->{nrof} $item->{name_pl}";
2517 2493
2546 2522
2547 1 2523 1
2548 }, 2524 },
2549 %args 2525 %args
2550 ); 2526 );
2527
2551 $self->add(new CFClient::UI::Face 2528 $self->add (new CFClient::UI::Face
2552 can_events => 0, 2529 can_events => 0,
2553 face => $item->{face}, 2530 face => $item->{face},
2554 anim => $item->{anim}, 2531 anim => $item->{anim},
2555 animspeed => $item->{animspeed}); 2532 animspeed => $item->{animspeed},
2533 );
2534
2556 $self->add(new CFClient::UI::Label 2535 $self->add (new CFClient::UI::Label
2557 can_events => 0, 2536 can_events => 0,
2558 text => $desc); 2537 text => $desc,
2538 );
2559 2539
2560 $self 2540 $self
2561} 2541}
2562 2542
2563############################################################################# 2543#############################################################################
2590 for my $item (@items) { 2570 for my $item (@items) {
2591 my $desc = $item->{nrof} < 2 2571 my $desc = $item->{nrof} < 2
2592 ? $item->{name} 2572 ? $item->{name}
2593 : "$item->{nrof} $item->{name_pl}"; 2573 : "$item->{nrof} $item->{name_pl}";
2594 2574
2595 $self->{scrolled}->add (new CFClient::UI::InventoryItem item => $item); 2575 $self->{scrolled}->add ($item->{widget} ||= new CFClient::UI::InventoryItem item => $item);
2596 } 2576 }
2597 2577
2598# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page]; 2578# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page];
2599} 2579}
2600 2580
2681 2661
2682our @ISA = CFClient::UI::Container::; 2662our @ISA = CFClient::UI::Container::;
2683 2663
2684use CFClient::OpenGL; 2664use CFClient::OpenGL;
2685 2665
2666sub new {
2667 my $class = shift;
2668
2669 $class->SUPER::new (
2670 @_,
2671 )
2672}
2673
2674sub configure {
2675 my ($self, $x, $y, $w, $h) = @_;
2676
2677 $self->{w} = $w;
2678 $self->{h} = $h;
2679}
2680
2686sub check_size { 2681sub check_size {
2687 my ($self) = @_; 2682 my ($self) = @_;
2688 2683
2689 $self->configure (0, 0, $self->{w}, $self->{h}); 2684 $self->size_allocate ($self->{w}, $self->{h})
2685 if $self->{w};
2690} 2686}
2691 2687
2692sub size_request { 2688sub size_request {
2693 my ($self) = @_; 2689 my ($self) = @_;
2694 2690
2702 my $old_h = $self->{old_h}; 2698 my $old_h = $self->{old_h};
2703 2699
2704 if ($old_w && $old_h) { 2700 if ($old_w && $old_h) {
2705 for my $child ($self->children) { 2701 for my $child ($self->children) {
2706 $child->{x} = int 0.5 + $child->{x} * $w / $old_w; 2702 $child->{x} = int 0.5 + $child->{x} * $w / $old_w;
2707 $child->{w} = int 0.5 + $child->{req_w} * $w / $old_w; 2703 $child->{w} = int 0.5 + $child->{w} * $w / $old_w;
2708 $child->{req_w} = int 0.5 + $child->{req_w} * $w / $old_w if exists $child->{req_w}; 2704 $child->{req_w} = int 0.5 + $child->{req_w} * $w / $old_w if exists $child->{req_w};
2709 $child->{user_w} = int 0.5 + $child->{user_w} * $w / $old_w if exists $child->{user_w}; 2705 $child->{user_w} = int 0.5 + $child->{user_w} * $w / $old_w if exists $child->{user_w};
2710 $child->{y} = int 0.5 + $child->{y} * $h / $old_h; 2706 $child->{y} = int 0.5 + $child->{y} * $h / $old_h;
2711 $child->{h} = int 0.5 + $child->{h} * $h / $old_h; 2707 $child->{h} = int 0.5 + $child->{h} * $h / $old_h;
2712 $child->{req_h} = int 0.5 + $child->{req_h} * $h / $old_h if exists $child->{req_h}; 2708 $child->{req_h} = int 0.5 + $child->{req_h} * $h / $old_h if exists $child->{req_h};
2713 $child->{user_h} = int 0.5 + $child->{user_h} * $h / $old_h if exists $child->{user_h}; 2709 $child->{user_h} = int 0.5 + $child->{user_h} * $h / $old_h if exists $child->{user_h};
2714 } 2710 }
2715 } 2711 }
2716 2712
2717 $self->{old_w} = $w;
2718 $self->{old_h} = $h;
2719}
2720
2721sub configure {
2722 my ($self, $x, $y, $w, $h) = @_;
2723
2724 $self->SUPER::configure ($x, $y, $w, $h);
2725
2726 for my $child ($self->children) { 2713 for my $child ($self->children) {
2727 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)}; 2714 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
2728 2715
2729 $X = List::Util::max 0, List::Util::min $w - $W, $X; 2716 $X = List::Util::max 0, List::Util::min $w - $W, $X;
2730 $Y = List::Util::max 0, List::Util::min $h - $H, $Y; 2717 $Y = List::Util::max 0, List::Util::min $h - $H, $Y;
2731 $child->configure ($X, $Y, $W, $H); 2718 $child->configure ($X, $Y, $W, $H);
2732 } 2719 }
2733}
2734 2720
2735sub _topleft { 2721 $self->{old_w} = $w;
2722 $self->{old_h} = $h;
2723}
2724
2725sub coord2local {
2736 my ($self, $x, $y) = @_; 2726 my ($self, $x, $y) = @_;
2737 2727
2738 ($x, $y) 2728 ($x, $y)
2739} 2729}
2740 2730
2731sub coord2global {
2732 my ($self, $x, $y) = @_;
2733
2734 ($x, $y)
2735}
2736
2741sub update { 2737sub update {
2742 my ($self) = @_; 2738 my ($self) = @_;
2743 2739
2744 $self->check_size; 2740 $self->check_size;
2745 ::refresh (); 2741 $::WANT_REFRESH++;
2746} 2742}
2747 2743
2748sub add { 2744sub add {
2749 my ($self, $child) = @_; 2745 my ($self, $child) = @_;
2750 2746
2751 # integerize window positions 2747 # integerise window positions
2752 $child->{x} = int $child->{x}; 2748 $child->{x} = int $child->{x};
2753 $child->{y} = int $child->{y}; 2749 $child->{y} = int $child->{y};
2754 2750
2755 $self->SUPER::add ($child); 2751 $self->SUPER::add ($child);
2756} 2752}
2759 my ($self, $id, $cb) = @_; 2755 my ($self, $id, $cb) = @_;
2760 2756
2761 $self->{refresh_hook}{$id} = $cb; 2757 $self->{refresh_hook}{$id} = $cb;
2762} 2758}
2763 2759
2764sub draw { 2760sub draw {
2765 my ($self) = @_; 2761 my ($self) = @_;
2766 2762
2763 if ($self->{check_size}) {
2764 my @queue = ([], []);
2765
2766 for (;;) {
2767 if ($self->{check_size}) {
2768 # heuristic: check containers last
2769 push @{ $queue[ ! ! $_->isa ("CFClient::UI::Container") ] }, $_
2770 for values %{delete $self->{check_size}}
2771 }
2772
2773 my $widget = (pop @{ $queue[0] }) || (pop @{ $queue[1] }) || last;
2774
2775 my ($w, $h) = $widget->{user_w} && $widget->{user_h}
2776 ? @$widget{qw(user_w user_h)}
2777 : $widget->size_request;
2778
2779 if ($w != $widget->{req_w} || $h != $widget->{req_h}) {
2780 Carp::confess "$widget: size_request is negative" if $w < 0 || $h < 0;#d#
2781
2782 $widget->{req_w} = $w;
2783 $widget->{req_h} = $h;
2784
2785 $self->{size_alloc}{$widget} = [$widget, $widget->{w}, $widget->{h}];
2786
2787 $widget->{parent}->check_size
2788 if $widget->{parent};
2789 }
2790 }
2791 }
2792
2793 while ($self->{size_alloc}) {
2794 for (values %{delete $self->{size_alloc}}) {
2795 my ($widget, $w, $h) = @$_;
2796
2797 $w = 0 if $w < 0;
2798 $h = 0 if $h < 0;
2799
2800 $widget->{w} = $w;
2801 $widget->{h} = $h;
2802 $widget->size_allocate ($w, $h);
2803 $widget->emit (size_allocate => $w, $h);
2804 }
2805 }
2806
2767 while (my $rcb = delete $self->{refresh_hook}) { 2807 while ($self->{refresh_hook}) {
2768 $_->() for values %$rcb; 2808 $_->()
2809 for values %{delete $self->{refresh_hook}};
2769 } 2810 }
2770 2811
2771 glViewport 0, 0, $::WIDTH, $::HEIGHT; 2812 glViewport 0, 0, $::WIDTH, $::HEIGHT;
2772 glClearColor +($::CFG->{fow_intensity}) x 3, 1; 2813 glClearColor +($::CFG->{fow_intensity}) x 3, 1;
2773 glClear GL_COLOR_BUFFER_BIT; 2814 glClear GL_COLOR_BUFFER_BIT;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines