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.164 by root, Mon Apr 24 06:57:39 2006 UTC vs.
Revision 1.190 by root, Mon May 8 22:17:38 2006 UTC

24 my $tip = $widget->{tooltip}; 24 my $tip = $widget->{tooltip};
25 25
26 $tip = $tip->($widget) if CODE:: eq ref $tip; 26 $tip = $tip->($widget) if CODE:: eq ref $tip;
27 27
28 $TOOLTIP->set_markup ($widget->{tooltip}); 28 $TOOLTIP->set_markup ($widget->{tooltip});
29 $TOOLTIP->move ($widget->coord2global ($widget->{w}, 0)); 29
30 $TOOLTIP->show; 30 $TOOLTIP->show;
31
32 my ($x, $y) = $widget->coord2global ($widget->{w}, 0);
33
34 if ($x + $TOOLTIP->{w} > $::WIDTH) {
35 ($x, $y) = $widget->coord2global (-$TOOLTIP->{w}, 0);
36 }
37
38 $TOOLTIP->move ($x, $y);
31 } 39 }
32 40
33 return; 41 return;
34 } 42 }
35 } 43 }
229 $self->{w} = $w; 237 $self->{w} = $w;
230 $self->{h} = $h; 238 $self->{h} = $h;
231 239
232 $self->size_allocate ($w, $h); 240 $self->size_allocate ($w, $h);
233 $self->update; 241 $self->update;
242 $self->emit (size_allocate => $w, $h);
234 } 243 }
235} 244}
236 245
237sub size_allocate { 246sub size_allocate {
238 # nothing to be done 247 # nothing to be done
248}
249
250sub children {
251}
252
253# call when resolution changes etc.
254sub reconfigure {
255 my ($self) = @_;
256
257 $_->reconfigure
258 for $self->children;
259
260 $self->check_size;
261 $self->size_allocate ($self->{w}, $self->{h});
262 $self->update;
239} 263}
240 264
241sub set_max_size { 265sub set_max_size {
242 my ($self, $w, $h) = @_; 266 my ($self, $w, $h) = @_;
243 267
246} 270}
247 271
248# return top left coordinates 272# return top left coordinates
249sub _topleft { 273sub _topleft {
250 my ($self, $x, $y) = @_; 274 my ($self, $x, $y) = @_;
275
276 $self->{parent}
277 or Carp::confess "no parent widget in _topleft\n";#d#
251 278
252 $self->{parent}->_topleft ($x + $self->{x}, $y + $self->{y}); 279 $self->{parent}->_topleft ($x + $self->{x}, $y + $self->{y});
253} 280}
254 281
255# translate global coordinates to local coordinate system 282# translate global coordinates to local coordinate system
376} 403}
377 404
378sub check_size { 405sub check_size {
379 my ($self) = @_; 406 my ($self) = @_;
380 407
408 $self->_check_size;
409 return;
410 #TODO: but needs a vastly more difficult algorithm
411 my $check_size = $CFClient::UI::ROOT->{_check_size} ||= {};
412
413 $check_size->{$self} = $self;
414
415 $CFClient::UI::ROOT->on_refresh (_check_size => sub {
416 while (%$check_size) {
417 my @widgets = values %$check_size;
418 $_->_check_size
419 for @widgets;
420 }
421 });
422}
423
424sub _check_size {
425 my ($self) = @_;
426
427 delete $CFClient::UI::ROOT->{_check_size}{$self};
428
381 $self->{parent} 429 $self->{parent}
382 or return 1; 430 or return 1;
383 431
384 my ($w, $h) = $self->{user_w} && $self->{user_h} 432 my ($w, $h) = $self->{user_w} && $self->{user_h}
385 ? @$self{qw(user_w user_h)} 433 ? @$self{qw(user_w user_h)}
387 435
388 if ($w != $self->{req_w} || $h != $self->{req_h}) { 436 if ($w != $self->{req_w} || $h != $self->{req_h}) {
389 $self->{req_w} = $w; 437 $self->{req_w} = $w;
390 $self->{req_h} = $h; 438 $self->{req_h} = $h;
391 439
392 $self->{parent}->check_size 440 $self->{parent}->_check_size
393 or $self->size_allocate ( 441 or $self->size_allocate (
394 (List::Util::max $self->{w}, $w), 442 (List::Util::max $self->{w}, $w),
395 (List::Util::max $self->{h}, $h), 443 (List::Util::max $self->{h}, $h),
396 ); 444 );
397 445
402} 450}
403 451
404sub update { 452sub update {
405 my ($self) = @_; 453 my ($self) = @_;
406 454
407 $self->{parent}->update 455 my $update = $CFClient::UI::ROOT->{_update} ||= {};
408 if $self->{parent}; 456
457 $update->{$self} = $self;
458
459 $CFClient::UI::ROOT->on_refresh (_update => sub {
460 while (%$update) {
461 my @widgets = values %$update;
462 %$update = ();
463
464 $_->{parent} && $_->{parent}->update
465 for @widgets;
466 }
467 });
409} 468}
410 469
411sub connect { 470sub connect {
412 my ($self, $signal, $cb) = @_; 471 my ($self, $signal, $cb) = @_;
413 472
492sub new { 551sub new {
493 my ($class, %arg) = @_; 552 my ($class, %arg) = @_;
494 553
495 my $children = delete $arg{children} || []; 554 my $children = delete $arg{children} || [];
496 555
497 my $self = $class->SUPER::new (children => [], can_events => 0, %arg); 556 my $self = $class->SUPER::new (
557 children => [],
558 can_events => 0,
559 %arg,
560 );
498 $self->add ($_) for @$children; 561 $self->add ($_) for @$children;
499 562
500 $self 563 $self
501} 564}
502 565
503sub add { 566sub add {
504 my ($self, $child) = @_; 567 my ($self, @widgets) = @_;
505 568
506 $child->set_parent ($self); 569 $_->set_parent ($self)
570 for @widgets;
507 571
508 use sort 'stable'; 572 use sort 'stable';
509 573
510 $self->{children} = [ 574 $self->{children} = [
511 sort { $a->{z} <=> $b->{z} } 575 sort { $a->{z} <=> $b->{z} }
512 @{$self->{children}}, $child 576 @{$self->{children}}, @widgets
513 ]; 577 ];
514 578
515 $child->check_size; 579 $_->check_size
580 for @widgets;
581
582 $self->update;
583}
584
585sub children {
586 @{ $_[0]{children} }
516} 587}
517 588
518sub remove { 589sub remove {
519 my ($self, $child) = @_; 590 my ($self, $child) = @_;
520 591
535 606
536 for (@$children) { 607 for (@$children) {
537 delete $_->{parent}; 608 delete $_->{parent};
538 $_->hide; 609 $_->hide;
539 } 610 }
611
612 $self->check_size;
613 $self->update;
540} 614}
541 615
542sub find_widget { 616sub find_widget {
543 my ($self, $x, $y) = @_; 617 my ($self, $x, $y) = @_;
544 618
619} 693}
620 694
621sub update { 695sub update {
622 my ($self) = @_; 696 my ($self) = @_;
623 697
624 # we want to do this delayed... 698 $ROOT->on_refresh ($self => sub { $self->render_child });
625 $self->render_chld;
626 $self->SUPER::update; 699 $self->SUPER::update;
627}
628
629sub render_chld {
630 my ($self) = @_;
631
632 $self->{texture} = new_from_opengl CFClient::Texture $self->{w}, $self->{h}, sub {
633 glClearColor 0, 0, 0, 1;
634 glClear GL_COLOR_BUFFER_BIT;
635 $self->child->draw;
636 };
637} 700}
638 701
639sub size_allocate { 702sub size_allocate {
640 my ($self, $w, $h) = @_; 703 my ($self, $w, $h) = @_;
641 704
642 $self->child->configure (0, 0, $w, $h); 705 $self->SUPER::size_allocate ($w, $h);
706 $self->update;
707}
643 708
709sub _render {
710 $_[0]{children}[0]->draw;
711}
712
713sub render_child {
714 my ($self) = @_;
715
716 $self->{texture} = new_from_opengl CFClient::Texture $self->{w}, $self->{h}, sub {
717 glClearColor 0, 0, 0, 0;
718 glClear GL_COLOR_BUFFER_BIT;
719
644 $self->render_chld; 720 $self->_render;
721# glColorMask 1, 1, 1, 0;
722# glEnable GL_BLEND;
723# glBlendFunc GL_SRC_ALPHA, GL_ZERO;
724# glRasterPos 0, 0;
725# glCopyPixels 0, 0, $self->{w}, $self->{h};
726# glDisable GL_BLEND;
727# glColorMask 1, 1, 1, 1;
728 };
645} 729}
646 730
647sub _draw { 731sub _draw {
648 my ($self) = @_; 732 my ($self) = @_;
649 733
651 735
652 my $tex = $self->{texture} 736 my $tex = $self->{texture}
653 or return; 737 or return;
654 738
655 glEnable GL_BLEND; 739 glEnable GL_BLEND;
656 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 740 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
657 glEnable GL_TEXTURE_2D; 741 glEnable GL_TEXTURE_2D;
658 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 742 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
743 glColor 0, 0, 0, 1;
659 744
660 $tex->draw_quad (0, 0, $w, $h); 745 $tex->draw_quad (0, 0, $w, $h);
661 746
662 glDisable GL_BLEND; 747 glDisable GL_BLEND;
663 glDisable GL_TEXTURE_2D; 748 glDisable GL_TEXTURE_2D;
667 752
668package CFClient::UI::ViewPort; 753package CFClient::UI::ViewPort;
669 754
670our @ISA = CFClient::UI::Window::; 755our @ISA = CFClient::UI::Window::;
671 756
672sub new { die }
673
674sub size_request { 757sub size_request {
675 my ($self) = @_; 758 my ($self) = @_;
676 759
677 @$self{qw(child_w child_h)} = @{$self->child}{qw(req_w req_h)}; 760 @$self{qw(child_w child_h)} = @{$self->child}{qw(req_w req_h)};
678 $self->child->size_allocate (0, 0, @$self{qw(child_w child_h)}); 761 $self->child->configure (0, 0, @$self{qw(child_w child_h)});
679 762
680 @$self{qw(child_w child_h)} 763 @$self{qw(child_w child_h)}
681} 764}
682 765
683sub _draw { 766sub size_allocate {
684 my ($self) = @_; 767 my ($self, $w, $h) = @_;
685 768
686 $self->{children}[1]->draw; 769 $self->update;
687} 770}
688 771
772sub set_offset {
773 my ($self, $x, $y) = @_;
774
775 $self->{view_x} = int $x;
776 $self->{view_y} = int $y;
777
778 $self->update;
779}
780
781# hmm, this does not work for topleft of $self... but we should not aks for that
782sub _topleft {
783 my ($self, $x, $y) = @_;
784
785 $self->SUPER::_topleft ($x - $self->{view_x}, $y - $self->{view_y})
786}
787
788sub find_widget {
789 my ($self, $x, $y) = @_;
790
791 if ( $x >= $self->{x} && $x < $self->{x} + $self->{w}
792 && $y >= $self->{y} && $y < $self->{y} + $self->{h}
793 ) {
794 $self->child->find_widget ($x + $self->{view_x}, $y + $self->{view_y})
795 } else {
796 $self->CFClient::UI::Base::find_widget ($x, $y)
797 }
798}
799
800sub _render {
801 my ($self) = @_;
802
803 CFClient::OpenGL::glTranslate -$self->{view_x}, -$self->{view_y};
804
805 $self->SUPER::_render;
806}
807
808#############################################################################
809
810package CFClient::UI::ScrolledWindow;
811
812our @ISA = CFClient::UI::HBox::;
813
814sub new {
815 my $class = shift;
816
817 my $self;
818
819 my $slider = new CFClient::UI::Slider
820 vertical => 1,
821 range => [0, 0, 1, 0.01], # HACK fix
822 connect_changed => sub {
823 $self->{vp}->set_offset (0, $_[1] * ($self->{vp}{child_h} - $self->{vp}{h}));
824 },
825 ;
826
827 $self = $class->SUPER::new (
828 vp => (new CFClient::UI::ViewPort),
829 slider => $slider,
830 @_,
831 );
832
833 $self->{vp}->add ($self->{scrolled});
834 $self->add ($self->{vp});
835 $self->add ($self->{slider});
836
837 $self
838}
839
840#TODO# update range on size_allocate depeneing on child
841# update viewport offset on scroll
689 842
690############################################################################# 843#############################################################################
691 844
692package CFClient::UI::Frame; 845package CFClient::UI::Frame;
693 846
750 # TODO: user_x, user_y, overwrite moveto? 903 # TODO: user_x, user_y, overwrite moveto?
751 904
752 my $self = $class->SUPER::new ( 905 my $self = $class->SUPER::new (
753 bg => [1, 1, 1, 1], 906 bg => [1, 1, 1, 1],
754 border_bg => [1, 1, 1, 1], 907 border_bg => [1, 1, 1, 1],
755 border => 0.8, 908 border => 0.6,
756 can_events => 0, 909 can_events => 1,
757 @_ 910 @_
758 ); 911 );
759 912
760 $self->{title} &&= new CFClient::UI::Label 913 $self->{title} &&= new CFClient::UI::Label
761 align => 0, 914 align => 0,
762 valign => 1, 915 valign => 1,
763 text => $self->{title}, 916 text => $self->{title},
764 fontsize => 1; 917 fontsize => $self->{border};
765 918
766 $self 919 $self
767} 920}
768 921
769sub border { 922sub border {
794} 947}
795 948
796sub button_down { 949sub button_down {
797 my ($self, $ev, $x, $y) = @_; 950 my ($self, $ev, $x, $y) = @_;
798 951
952 my ($w, $h) = @$self{qw(w h)};
799 my $border = $self->border; 953 my $border = $self->border;
800 954
801 if ($x < $self->{w} && $x >= $self->{w} - $border 955 my $lr = ($x >= 0 && $x < $border) || ($x > $w - $border && $x < $w);
802 && $y < $self->{h} && $y >= $self->{h} - $border) { 956 my $td = ($y >= 0 && $y < $border) || ($y > $h - $border && $y < $h);
803 957
958 if ($lr & $td) {
959 my ($wx, $wy) = ($self->{x}, $self->{y});
804 my ($ox, $oy) = ($ev->{x}, $ev->{y}); 960 my ($ox, $oy) = ($ev->{x}, $ev->{y});
805 my ($bw, $bh) = ($self->{w}, $self->{h}); 961 my ($bw, $bh) = ($self->{w}, $self->{h});
806 962
963 my $mx = $x < $border;
964 my $my = $y < $border;
965
807 $self->{motion} = sub { 966 $self->{motion} = sub {
808 my ($ev, $x, $y) = @_; 967 my ($ev, $x, $y) = @_;
809 968
810 ($x, $y) = ($ev->{x}, $ev->{y}); 969 my $dx = $ev->{x} - $ox;
970 my $dy = $ev->{y} - $oy;
811 971
812 $self->{user_w} = $bw + $x - $ox; 972 $self->{user_w} = $bw + $dx * ($mx ? -1 : 1);
813 $self->{user_h} = $bh + $y - $oy; 973 $self->{user_h} = $bh + $dy * ($my ? -1 : 1);
974 $self->move ($wx + $dx * $mx, $wy + $dy * $my);
814 $self->check_size; 975 $self->check_size;
815 }; 976 };
816 977
817 } elsif ($x >= 0 && $x < $self->{w} 978 } elsif ($lr ^ $td) {
818 && $y >= 0 && $y < $border) {
819
820 my ($ox, $oy) = ($ev->{x}, $ev->{y}); 979 my ($ox, $oy) = ($ev->{x}, $ev->{y});
821 my ($bx, $by) = ($self->{x}, $self->{y}); 980 my ($bx, $by) = ($self->{x}, $self->{y});
822 981
823 $self->{motion} = sub { 982 $self->{motion} = sub {
824 my ($ev, $x, $y) = @_; 983 my ($ev, $x, $y) = @_;
860 $tex[1]->draw_quad (0, 0, $w, $border); 1019 $tex[1]->draw_quad (0, 0, $w, $border);
861 $tex[3]->draw_quad (0, $border, $border, $ch); 1020 $tex[3]->draw_quad (0, $border, $border, $ch);
862 $tex[2]->draw_quad ($w - $border, $border, $border, $ch); 1021 $tex[2]->draw_quad ($w - $border, $border, $border, $ch);
863 $tex[4]->draw_quad (0, $h - $border, $w, $border); 1022 $tex[4]->draw_quad (0, $h - $border, $w, $border);
864 1023
1024 if (@{$self->{bg}} < 4 || $self->{bg}[3]) {
865 my $bg = $tex[0]; 1025 my $bg = $tex[0];
866 1026
867 # TODO: repeat texture not scale 1027 # TODO: repeat texture not scale
868 my $rep_x = $cw / $bg->{w}; 1028 my $rep_x = $cw / $bg->{w};
869 my $rep_y = $ch / $bg->{h}; 1029 my $rep_y = $ch / $bg->{h};
870 1030
871 glColor @{ $self->{bg} }; 1031 glColor @{ $self->{bg} };
872 1032
873 $bg->{s} = $rep_x; 1033 $bg->{s} = $rep_x;
874 $bg->{t} = $rep_y; 1034 $bg->{t} = $rep_y;
875 $bg->{wrap_mode} = 1; 1035 $bg->{wrap_mode} = 1;
876 $bg->draw_quad ($border, $border, $cw, $ch); 1036 $bg->draw_quad ($border, $border, $cw, $ch);
877 1037
878 glDisable GL_TEXTURE_2D; 1038 glDisable GL_TEXTURE_2D;
879 glDisable GL_BLEND; 1039 glDisable GL_BLEND;
1040 }
880 1041
881 $self->{title}->draw if $self->{title}; 1042 $self->{title}->draw if $self->{title};
1043
882 $self->child->draw; 1044 $self->child->draw;
883} 1045}
884 1046
885############################################################################# 1047#############################################################################
886 1048
908 $self->{children}[$y][$x] = $child; 1070 $self->{children}[$y][$x] = $child;
909 1071
910 $child->check_size; 1072 $child->check_size;
911} 1073}
912 1074
1075sub children {
1076 grep $_, map @$_, grep $_, @{ $_[0]{children} }
1077}
1078
913# TODO: move to container class maybe? send childs a signal on removal? 1079# TODO: move to container class maybe? send childs a signal on removal?
914sub clear { 1080sub clear {
915 my ($self) = @_; 1081 my ($self) = @_;
916 1082
917 my $children = delete $self->{children}; 1083 my @children = $self->children;
1084 delete $self->{children};
918 1085
919 for (grep $_, map @$_, grep $_, @$children) { 1086 for (@children) {
920 delete $_->{parent}; 1087 delete $_->{parent};
921 $_->hide; 1088 $_->hide;
922 } 1089 }
923 1090
924 $self->update; 1091 $self->update;
1185 s/</&lt;/g; 1352 s/</&lt;/g;
1186 1353
1187 $_[1] 1354 $_[1]
1188} 1355}
1189 1356
1357sub update {
1358 my ($self) = @_;
1359
1360 delete $self->{texture};
1361 $self->SUPER::update;
1362}
1363
1190sub set_text { 1364sub set_text {
1191 my ($self, $text) = @_; 1365 my ($self, $text) = @_;
1192 1366
1367 return if $self->{text} eq "T$text";
1368 $self->{text} = "T$text";
1369
1193 $self->{layout}->set_text ($text); 1370 $self->{layout}->set_text ($text);
1194 1371
1195 delete $self->{texture}; 1372 delete $self->{texture};
1373 $self->update;
1196 $self->check_size; 1374 $self->check_size;
1197 $self->update;
1198} 1375}
1199 1376
1200sub set_markup { 1377sub set_markup {
1201 my ($self, $markup) = @_; 1378 my ($self, $markup) = @_;
1202 1379
1380 return if $self->{text} eq "M$markup";
1381 $self->{text} = "M$markup";
1382
1203 $self->{layout}->set_markup ($markup); 1383 $self->{layout}->set_markup ($markup);
1204 1384
1205 delete $self->{texture}; 1385 delete $self->{texture};
1386 $self->update;
1206 $self->check_size; 1387 $self->check_size;
1207 $self->update;
1208} 1388}
1209 1389
1210sub size_request { 1390sub size_request {
1211 my ($self) = @_; 1391 my ($self) = @_;
1212 1392
1241sub set_fontsize { 1421sub set_fontsize {
1242 my ($self, $fontsize) = @_; 1422 my ($self, $fontsize) = @_;
1243 1423
1244 $self->{fontsize} = $fontsize; 1424 $self->{fontsize} = $fontsize;
1245 delete $self->{texture}; 1425 delete $self->{texture};
1426
1427 $self->update;
1246 $self->check_size; 1428 $self->check_size;
1247 $self->update;
1248} 1429}
1249 1430
1250sub _draw { 1431sub _draw {
1251 my ($self) = @_; 1432 my ($self) = @_;
1252 1433
1462 my ($self, $ev) = @_; 1643 my ($self, $ev) = @_;
1463 1644
1464 my $sym = $ev->{sym}; 1645 my $sym = $ev->{sym};
1465 1646
1466 if ($sym == 13) { 1647 if ($sym == 13) {
1648 unshift @{$self->{history}},
1649 my $txt = $self->get_text;
1650 $self->{history_pointer} = -1;
1651 $self->{history_saveback} = '';
1467 $self->emit (activate => $self->get_text); 1652 $self->emit (activate => $txt);
1468 $self->update; 1653 $self->update;
1654
1655 } elsif ($sym == CFClient::SDLK_UP) {
1656 if ($self->{history_pointer} < 0) {
1657 $self->{history_saveback} = $self->get_text;
1658 }
1659 if (@{$self->{history} || []} > 0) {
1660 $self->{history_pointer}++;
1661 if ($self->{history_pointer} >= @{$self->{history} || []}) {
1662 $self->{history_pointer} = @{$self->{history} || []} - 1;
1663 }
1664 $self->set_text ($self->{history}->[$self->{history_pointer}]);
1665 }
1666
1667 } elsif ($sym == CFClient::SDLK_DOWN) {
1668 $self->{history_pointer}--;
1669 $self->{history_pointer} = -1 if $self->{history_pointer} < 0;
1670
1671 if ($self->{history_pointer} >= 0) {
1672 $self->set_text ($self->{history}->[$self->{history_pointer}]);
1673 } else {
1674 $self->set_text ($self->{history_saveback});
1675 }
1469 1676
1470 } else { 1677 } else {
1471 $self->SUPER::key_down ($ev); 1678 $self->SUPER::key_down ($ev);
1472 } 1679 }
1473 1680
1710} 1917}
1711 1918
1712sub set_max { 1919sub set_max {
1713 my ($self, $max) = @_; 1920 my ($self, $max) = @_;
1714 1921
1922 return if $self->{max_val} == $max;
1923
1715 $self->{max_val} = $max; 1924 $self->{max_val} = $max;
1925 $self->update;
1716} 1926}
1717 1927
1718sub set_value { 1928sub set_value {
1719 my ($self, $val, $max) = @_; 1929 my ($self, $val, $max) = @_;
1720 1930
1721 $self->set_max ($max) 1931 $self->set_max ($max)
1722 if defined $max; 1932 if defined $max;
1723 1933
1724 $max = $self->{max_val}; 1934 return if $self->{val} == $val;
1935
1725 $self->{val} = $val; 1936 $self->{val} = $val;
1726
1727 $self->update; 1937 $self->update;
1728} 1938}
1729 1939
1730sub _draw { 1940sub _draw {
1731 my ($self) = @_; 1941 my ($self) = @_;
1794 2004
1795sub new { 2005sub new {
1796 my ($class, %arg) = @_; 2006 my ($class, %arg) = @_;
1797 2007
1798 my $self = $class->SUPER::new ( 2008 my $self = $class->SUPER::new (
1799 tooltip => $arg{type}, 2009 tooltip => $arg{type},
1800 can_hover => 1, 2010 can_hover => 1,
2011 can_events => 1,
1801 %arg, 2012 %arg,
1802 ); 2013 );
1803 2014
1804 $self->add ($self->{value} = new CFClient::UI::Label valign => +1, align => 0, template => "999"); 2015 $self->add ($self->{value} = new CFClient::UI::Label valign => +1, align => 0, template => "999");
1805 $self->add ($self->{gauge} = new CFClient::UI::VGauge type => $self->{type}, expand => 1, can_hover => 1); 2016 $self->add ($self->{gauge} = new CFClient::UI::VGauge type => $self->{type}, expand => 1, can_hover => 1);
1813 2024
1814 $self->{value}->set_fontsize ($fsize); 2025 $self->{value}->set_fontsize ($fsize);
1815 $self->{max} ->set_fontsize ($fsize); 2026 $self->{max} ->set_fontsize ($fsize);
1816} 2027}
1817 2028
2029sub set_max {
2030 my ($self, $max) = @_;
2031
2032 $self->{gauge}->set_max ($max);
2033 $self->{max}->set_text ($max);
2034}
2035
1818sub set_value { 2036sub set_value {
1819 my ($self, $val, $max) = @_; 2037 my ($self, $val, $max) = @_;
1820 2038
1821 $self->set_max ($max) 2039 $self->set_max ($max)
1822 if defined $max; 2040 if defined $max;
1823 2041
1824 $self->{gauge}->set_value ($val, $max); 2042 $self->{gauge}->set_value ($val, $max);
1825 $self->{value}->set_text ($val); 2043 $self->{value}->set_text ($val);
1826}
1827
1828sub set_max {
1829 my ($self, $max) = @_;
1830
1831 $self->{gauge}->set_max ($max);
1832 $self->{max}->set_text ($max);
1833} 2044}
1834 2045
1835############################################################################# 2046#############################################################################
1836 2047
1837package CFClient::UI::Slider; 2048package CFClient::UI::Slider;
1856 # TODO: calculations are off 2067 # TODO: calculations are off
1857 my $self = $class->SUPER::new ( 2068 my $self = $class->SUPER::new (
1858 fg => [1, 1, 1], 2069 fg => [1, 1, 1],
1859 active_fg => [0, 0, 0], 2070 active_fg => [0, 0, 0],
1860 range => [0, 0, 100, 10], 2071 range => [0, 0, 100, 10],
1861 req_w => 20, 2072 req_w => $::WIDTH / 80,
1862 req_h => 20, 2073 req_h => $::WIDTH / 80,
1863 vertical => 0, 2074 vertical => 0,
1864 can_hover => 1, 2075 can_hover => 1,
1865 inner_pad => 5, 2076 inner_pad => 5,
1866 @_ 2077 @_
1867 ); 2078 );
1991 (new CFClient::UI::Empty expand => 1), 2202 (new CFClient::UI::Empty expand => 1),
1992 (new CFClient::UI::Slider vertical => 1), 2203 (new CFClient::UI::Slider vertical => 1),
1993 ], 2204 ],
1994 ); 2205 );
1995 2206
1996 $self->{children}[1]->connect (changed => sub { 2207 $self->{children}[1]->connect (changed => sub { $self->update });
1997 $self->update;
1998 });
1999 2208
2000 $self 2209 $self
2001} 2210}
2002 2211
2003sub set_fontsize { 2212sub set_fontsize {
2011 my ($self, $text) = @_; 2220 my ($self, $text) = @_;
2012 2221
2013 my $layout = $self->{layout}; 2222 my $layout = $self->{layout};
2014 2223
2015 $layout->set_height ($self->{fontsize} * $::FONTSIZE); 2224 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
2016 $layout->set_width ($self->{w}); 2225 $layout->set_width ($self->{children}[0]{w});
2017 $layout->set_text ($text); 2226 $layout->set_text ($text);
2018 2227
2019 ($layout->size)[1] 2228 ($layout->size)[1]
2020} 2229}
2021 2230
2074 $self->{children}[1]{range} = [$height - $self->{h}, 0, $height, $self->{h}]; 2283 $self->{children}[1]{range} = [$height - $self->{h}, 0, $height, $self->{h}];
2075 2284
2076 delete $self->{texture}; 2285 delete $self->{texture};
2077 } 2286 }
2078 2287
2079 $self->{texture} ||= new_from_opengl CFClient::Texture $self->{w}, $self->{h}, sub { 2288 $self->{texture} ||= new_from_opengl CFClient::Texture $self->{children}[0]{w}, $self->{children}[0]{h}, sub {
2080 glClearColor 0, 0, 0, 1; 2289 glClearColor 0, 0, 0, 0;
2081 glClear GL_COLOR_BUFFER_BIT; 2290 glClear GL_COLOR_BUFFER_BIT;
2082 2291
2083 glEnable GL_BLEND; 2292 glEnable GL_BLEND;
2084 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 2293 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2085 glEnable GL_TEXTURE_2D; 2294 glEnable GL_TEXTURE_2D;
2117} 2326}
2118 2327
2119sub _draw { 2328sub _draw {
2120 my ($self) = @_; 2329 my ($self) = @_;
2121 2330
2122 if ($self->{texture}) { 2331 glEnable GL_BLEND;
2332 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
2123 glEnable GL_TEXTURE_2D; 2333 glEnable GL_TEXTURE_2D;
2124 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2334 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2335 glColor 1, 1, 1, 1;
2125 $self->{texture}->draw_quad (0, 0, $self->{w}, $self->{h}); 2336 $self->{texture}->draw_quad (0, 0, $self->{children}[0]{w}, $self->{children}[0]{h});
2126 glDisable GL_TEXTURE_2D; 2337 glDisable GL_TEXTURE_2D;
2127 } 2338 glDisable GL_BLEND;
2128 2339
2129 $self->{children}[1]->draw; 2340 $self->{children}[1]->draw;
2130 2341
2131} 2342}
2132 2343
2301 2512
2302sub size_request { 2513sub size_request {
2303 (32, 8) 2514 (32, 8)
2304} 2515}
2305 2516
2306sub draw { 2517sub _draw {
2307 my ($self) = @_; 2518 my ($self) = @_;
2308 2519
2520 return unless $::CONN;#d# manage and cache textures differently
2309 my $tex = $::CONN->{texture}[$::CONN->{faceid}[$self->{face}]]; 2521 my $tex = $::CONN->{texture}[$::CONN->{faceid}[$self->{face}]];
2310 2522
2523 # TODO animation
2311 if ($tex) { 2524 if ($tex) {
2312 glEnable GL_BLEND; 2525 glEnable GL_BLEND;
2313 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 2526 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2314 glEnable GL_TEXTURE_2D; 2527 glEnable GL_TEXTURE_2D;
2315 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2528 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2320 } 2533 }
2321} 2534}
2322 2535
2323############################################################################# 2536#############################################################################
2324 2537
2538package CFClient::UI::InventoryItem;
2539
2540our @ISA = CFClient::UI::HBox::;
2541
2542sub new {
2543 my $class = shift;
2544
2545 my %args = @_;
2546
2547 my $item = $args{item};
2548
2549 my $desc = $item->{nrof} < 2
2550 ? $item->{name}
2551 : "$item->{nrof} $item->{name_pl}";
2552
2553
2554 my $self = $class->SUPER::new (
2555 can_hover => 1,
2556 can_events => 1,
2557 tooltip => (CFClient::UI::Label->escape ($desc)
2558 . "\n<small>leftclick - pick up\nmiddle click - apply\nrightclick - menu</small>"),
2559 connect_button_down => sub {
2560 my ($self, $ev, $x, $y) = @_;
2561
2562 # todo: maybe put examine on 1? but should just be a tooltip :(
2563 if ($ev->{button} == 1) {
2564 $::CONN->send ("move $::CONN->{player}{tag} $item->{tag} 0");
2565 } elsif ($ev->{button} == 2) {
2566 $::CONN->send ("apply $item->{tag}");
2567 } elsif ($ev->{button} == 3) {
2568 CFClient::UI::Menu->new (
2569 items => [
2570 ["examine", sub { $::CONN->send ("examine $item->{tag}") }],
2571 [
2572 $item->{flags} & Crossfire::Protocol::F_LOCKED ? "lock" : "unlock",
2573 sub { $::CONN->send ("lock $item->{tag}") },
2574 ],
2575 ["mark", sub { $::CONN->send ("mark $item->{tag}") }],
2576 ["apply", sub { $::CONN->send ("apply $item->{tag}") }],
2577 ["drop", sub { $::CONN->send ("move 0 $item->{tag} 0") }],
2578 ],
2579 )->popup ($ev);
2580 }
2581
2582 1
2583 },
2584 %args
2585 );
2586 $self->add(new CFClient::UI::Face
2587 can_events => 0,
2588 face => $item->{face},
2589 anim => $item->{anim},
2590 animspeed => $item->{animspeed});
2591 $self->add(new CFClient::UI::Label
2592 can_events => 0,
2593 text => $desc);
2594
2595 $self
2596}
2597
2598#############################################################################
2599
2600package CFClient::UI::Inventory;
2601
2602our @ISA = CFClient::UI::ScrolledWindow::;
2603
2604sub new {
2605 my $class = shift;
2606
2607 my $self = $class->SUPER::new (
2608 scrolled => (new CFClient::UI::VBox),
2609 @_,
2610 );
2611
2612 $self
2613}
2614
2615sub set_items {
2616 my ($self, $items) = @_;
2617
2618 $self->{scrolled}->clear;
2619 return unless $items;
2620
2621 my @items = sort { $a->{type} <=> $b->{type} } @$items;
2622
2623 $self->{real_items} = \@items;
2624
2625 for my $item (@items) {
2626 my $desc = $item->{nrof} < 2
2627 ? $item->{name}
2628 : "$item->{nrof} $item->{name_pl}";
2629
2630 $self->{scrolled}->add (new CFClient::UI::InventoryItem item => $item);
2631 }
2632
2633# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page];
2634}
2635
2636sub size_request {
2637 my ($self) = @_;
2638 ($self->{req_w}, $self->{req_h});
2639}
2640
2641#############################################################################
2642
2643package CFClient::UI::Menu;
2644
2645our @ISA = CFClient::UI::FancyFrame::;
2646
2647use CFClient::OpenGL;
2648
2649sub new {
2650 my $class = shift;
2651
2652 my $self = $class->SUPER::new (
2653 items => [],
2654 z => 100,
2655 @_,
2656 );
2657
2658 $self->add ($self->{vbox} = new CFClient::UI::VBox);
2659
2660 for my $item (@{ $self->{items} }) {
2661 my ($widget, $cb) = @$item;
2662
2663 # handle various types of items, only text for now
2664 if (!ref $widget) {
2665 $widget = new CFClient::UI::Label
2666 can_hover => 1,
2667 can_events => 1,
2668 text => $widget;
2669 }
2670
2671 $self->{item}{$widget} = $item;
2672
2673 $self->{vbox}->add ($widget);
2674 }
2675
2676 $self
2677}
2678
2679# popup given the event (must be a mouse button down event currently)
2680sub popup {
2681 my ($self, $ev) = @_;
2682
2683 $self->emit ("popdown");
2684
2685 # maybe save $GRAB? must be careful about events...
2686 $GRAB = $self;
2687 $self->{button} = $ev->{button};
2688
2689 $self->show;
2690 $self->move ($ev->{x} - $self->{w} * 0.5, $ev->{y} - $self->{h} * 0.5);
2691}
2692
2693sub mouse_motion {
2694 my ($self, $ev, $x, $y) = @_;
2695
2696 # TODO: should use vbox->find_widget or so
2697 $HOVER = $ROOT->find_widget ($ev->{x}, $ev->{y});
2698 $self->{hover} = $self->{item}{$HOVER};
2699}
2700
2701sub button_up {
2702 my ($self, $ev, $x, $y) = @_;
2703
2704 if ($ev->{button} == $self->{button}) {
2705 undef $GRAB;
2706 $self->hide;
2707
2708 $self->emit ("popdown");
2709 $self->{hover}[1]->() if $self->{hover};
2710 }
2711}
2712
2713#############################################################################
2714
2325package CFClient::UI::Root; 2715package CFClient::UI::Root;
2326 2716
2327our @ISA = CFClient::UI::Container::; 2717our @ISA = CFClient::UI::Container::;
2328 2718
2329use CFClient::OpenGL; 2719use CFClient::OpenGL;
2330 2720
2331sub check_size { 2721sub check_size {
2332 my ($self) = @_; 2722 my ($self) = @_;
2333 2723
2334 $self->configure (0, 0, $::WIDTH, $::HEIGHT); 2724 $self->configure (0, 0, $self->{w}, $self->{h});
2335} 2725}
2336 2726
2337sub size_request { 2727sub size_request {
2338 ($::WIDTH, $::HEIGHT) 2728 my ($self) = @_;
2729
2730 ($self->{w}, $self->{h})
2731}
2732
2733sub size_allocate {
2734 my ($self, $w, $h) = @_;
2735
2736 my $old_w = $self->{old_w};
2737 my $old_h = $self->{old_h};
2738
2739 if ($old_w && $old_h) {
2740 for my $child ($self->children) {
2741 $child->{x} = int 0.5 + $child->{x} * $w / $old_w;
2742 $child->{w} = int 0.5 + $child->{w} * $w / $old_w;
2743 $child->{req_w} = int 0.5 + $child->{req_w} * $w / $old_w if exists $child->{req_w};
2744 $child->{user_w} = int 0.5 + $child->{user_w} * $w / $old_w if exists $child->{user_w};
2745 $child->{y} = int 0.5 + $child->{y} * $h / $old_h;
2746 $child->{h} = int 0.5 + $child->{h} * $h / $old_h;
2747 $child->{req_h} = int 0.5 + $child->{req_h} * $h / $old_h if exists $child->{req_h};
2748 $child->{user_h} = int 0.5 + $child->{user_h} * $h / $old_h if exists $child->{user_h};
2749 }
2750 }
2751
2752 $self->{old_w} = $w;
2753 $self->{old_h} = $h;
2339} 2754}
2340 2755
2341sub configure { 2756sub configure {
2342 my ($self, $x, $y, $w, $h) = @_; 2757 my ($self, $x, $y, $w, $h) = @_;
2343 2758
2344 $self->SUPER::configure ($x, $y, $w, $h); 2759 $self->SUPER::configure ($x, $y, $w, $h);
2345 2760
2346 for my $child (@{$self->{children}}) { 2761 for my $child ($self->children) {
2347 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)}; 2762 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
2348 2763
2349 $X = List::Util::max 0, List::Util::min $w - $W, $X; 2764 $X = List::Util::max 0, List::Util::min $w - $W, $X;
2350 $Y = List::Util::max 0, List::Util::min $h - $H, $Y; 2765 $Y = List::Util::max 0, List::Util::min $h - $H, $Y;
2351 $child->configure ($X, $Y, $W,$H); 2766 $child->configure ($X, $Y, $W, $H);
2352 } 2767 }
2353} 2768}
2354 2769
2355sub _topleft { 2770sub _topleft {
2356 my ($self, $x, $y) = @_; 2771 my ($self, $x, $y) = @_;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines