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.73 by root, Tue Apr 11 18:06:53 2006 UTC vs.
Revision 1.78 by root, Tue Apr 11 22:49:13 2006 UTC

1package CFClient::UI; 1package CFClient::UI;
2 2
3use strict; 3use strict;
4 4
5use Scalar::Util; 5use Scalar::Util ();
6use List::Util ();
6 7
7use CFClient; 8use CFClient;
8 9
9our ($FOCUS, $HOVER, $GRAB); # various widgets 10our ($FOCUS, $HOVER, $GRAB); # various widgets
10 11
42 43
43 my $widget = $GRAB || $TOPLEVEL->find_widget ($x, $y); 44 my $widget = $GRAB || $TOPLEVEL->find_widget ($x, $y);
44 45
45 $BUTTON_STATE &= ~(1 << ($ev->button - 1)); 46 $BUTTON_STATE &= ~(1 << ($ev->button - 1));
46 47
47 $GRAB->button_down ($ev, $GRAB->translate ($x, $y)) if $GRAB; 48 $GRAB->button_up ($ev, $GRAB->translate ($x, $y)) if $GRAB;
48 49
49 if (!$BUTTON_STATE) { 50 if (!$BUTTON_STATE) {
50 my $grab = $GRAB; undef $GRAB; 51 my $grab = $GRAB; undef $GRAB;
51 $grab->update if $grab; 52 $grab->update if $grab;
52 $GRAB->update if $GRAB; 53 $GRAB->update if $GRAB;
82 83
83 bless { 84 bless {
84 x => 0, 85 x => 0,
85 y => 0, 86 y => 0,
86 z => 0, 87 z => 0,
88 w => -1,
89 h => -1,
87 @_ 90 @_
88 }, $class 91 }, $class
89} 92}
90 93
91sub move { 94sub move {
102sub size_request { 105sub size_request {
103 require Carp; 106 require Carp;
104 Carp::confess "size_request is abtract"; 107 Carp::confess "size_request is abtract";
105} 108}
106 109
107sub size_allocate { 110sub _size_allocate {
108 my ($self, $w, $h) = @_; 111 my ($self, $x, $y, $w, $h) = @_;
112
113 $self->{x} = $x;
114 $self->{y} = $y;
115
116 return unless $self->{w} != $w || $self->{h} != $h;
109 117
110 $self->{w} = $w; 118 $self->{w} = $w;
111 $self->{h} = $h; 119 $self->{h} = $h;
120
121 1
122}
123
124sub size_allocate {
125 my ($self, $x, $y, $w, $h) = @_;
126
127 $self->_size_allocate ($x, $y, $w, $h);
112} 128}
113 129
114# translate global koordinates to local coordinate system 130# translate global koordinates to local coordinate system
115sub translate { 131sub translate {
116 my ($self, $x, $y) = @_; 132 my ($self, $x, $y) = @_;
165 glPopMatrix; 181 glPopMatrix;
166 182
167 if ($self == $HOVER) { 183 if ($self == $HOVER) {
168 my ($x, $y) = @$self{qw(x y)}; 184 my ($x, $y) = @$self{qw(x y)};
169 185
170 glColor 1, 1, 1, 0.1; 186 glColor 0, 0, 1, 0.2;
171 glEnable GL_BLEND; 187 glEnable GL_BLEND;
188 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
172 glBegin GL_QUADS; 189 glBegin GL_QUADS;
173 glVertex $x , $y; 190 glVertex $x , $y;
174 glVertex $x + $self->{w}, $y; 191 glVertex $x + $self->{w}, $y;
175 glVertex $x + $self->{w}, $y + $self->{h}; 192 glVertex $x + $self->{w}, $y + $self->{h};
176 glVertex $x , $y + $self->{h}; 193 glVertex $x , $y + $self->{h};
183 my ($self) = @_; 200 my ($self) = @_;
184 201
185 warn "no draw defined for $self\n"; 202 warn "no draw defined for $self\n";
186} 203}
187 204
188sub bbox {
189 my ($self) = @_;
190 my ($w, $h) = $self->size_request;
191 (
192 $self->{x},
193 $self->{y},
194 $self->{x} = $w,
195 $self->{y} = $h
196 )
197}
198
199sub find_widget { 205sub find_widget {
200 my ($self, $x, $y) = @_; 206 my ($self, $x, $y) = @_;
201 207
202 return $self 208 return $self
203 if $x >= $self->{x} && $x < $self->{x} + $self->{w} 209 if $x >= $self->{x} && $x < $self->{x} + $self->{w}
204 && $y >= $self->{y} && $y < $self->{y} + $self->{h}; 210 && $y >= $self->{y} && $y < $self->{y} + $self->{h};
205 211
206 () 212 ()
207} 213}
208 214
209sub del_parent { $_[0]->{parent} = undef }
210
211sub set_parent { 215sub set_parent {
212 my ($self, $par) = @_; 216 my ($self, $par) = @_;
213 217
214 $self->{parent} = $par; 218 $self->{parent} = $par;
215 Scalar::Util::weaken $self->{parent}; 219 Scalar::Util::weaken $self->{parent};
258 my $class = shift; 262 my $class = shift;
259 263
260 # range [value, low, high, page] 264 # range [value, low, high, page]
261 265
262 $class->SUPER::new ( 266 $class->SUPER::new (
263 bg => [0, 0, 0, 0.4], 267 bg => [0, 0, 0, 0.2],
264 active_bg => [1, 1, 1], 268 active_bg => [1, 1, 1],
265 @_ 269 @_
266 ) 270 )
267} 271}
268 272
269sub _draw { 273sub _draw {
270 my ($self) = @_; 274 my ($self) = @_;
271 275
272 my ($w, $h) = @$self{qw(w h)}; 276 my ($w, $h) = @$self{qw(w h)};
273 277
278 glEnable GL_BLEND;
279 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
274 glColor @{ $FOCUS == $self ? $self->{active_bg} : $self->{bg} }; 280 glColor @{ $FOCUS == $self ? $self->{active_bg} : $self->{bg} };
281
275 glBegin GL_QUADS; 282 glBegin GL_QUADS;
276 glVertex 0 , 0; 283 glVertex 0 , 0;
277 glVertex 0 , $h; 284 glVertex 0 , $h;
278 glVertex $w, $h; 285 glVertex $w, $h;
279 glVertex $w, 0; 286 glVertex $w, 0;
280 glEnd; 287 glEnd;
288
289 glDisable GL_BLEND;
281} 290}
282 291
283############################################################################# 292#############################################################################
284 293
285package CFClient::UI::Empty; 294package CFClient::UI::Empty;
308 317
309 $self 318 $self
310} 319}
311 320
312sub add { 321sub add {
313 my ($self, $chld, $expand) = @_; 322 my ($self, $chld) = @_;
314 323
315 $chld->{expand} = $expand;
316 $chld->set_parent ($self); 324 $chld->set_parent ($self);
317 325
318 $self->{children} = [ 326 $self->{children} = [
319 sort { $a->{z} <=> $b->{z} } 327 sort { $a->{z} <=> $b->{z} }
320 @{$self->{children}}, $chld 328 @{$self->{children}}, $chld
321 ]; 329 ];
322 330
323 $self->size_allocate ($self->{w}, $self->{h}) 331 $self->{w} = $self->{h} = -1;
324 if $self->{w}; #TODO: check for "realised state" 332 $self->update;
325} 333}
326 334
327sub remove { 335sub remove {
328 my ($self, $widget) = @_; 336 my ($self, $widget) = @_;
329 337
330 $self->{children} = [ grep $_ != $widget, @{ $self->{children} } ]; 338 $self->{children} = [ grep $_ != $widget, @{ $self->{children} } ];
331 339
332 $self->size_allocate ($self->{w}, $self->{h}); 340 $self->size_allocate (0, 0, $self->{w}, $self->{h});
333} 341}
334 342
335sub find_widget { 343sub find_widget {
336 my ($self, $x, $y) = @_; 344 my ($self, $x, $y) = @_;
337 345
390sub size_request { 398sub size_request {
391 $_[0]{children}[0]->size_request 399 $_[0]{children}[0]->size_request
392} 400}
393 401
394sub size_allocate { 402sub size_allocate {
395 my ($self, $w, $h) = @_; 403 my ($self, $x, $y, $w, $h) = @_;
396 404
397 return unless $self->{w} != $w || $self->{h} != $h; 405 $self->_size_allocate ($x, $y, $w, $h) or return;
398 406
399 $self->SUPER::size_allocate ($w, $h);
400 $self->{children}[0]->size_allocate ($w, $h); 407 $self->{children}[0]->size_allocate (0, 0, $w, $h);
401} 408}
402 409
403############################################################################# 410#############################################################################
404 411
405package CFClient::UI::Window; 412package CFClient::UI::Window;
430 $self->{w}, $self->{h}, sub { $self->child->draw } 437 $self->{w}, $self->{h}, sub { $self->child->draw }
431 ); 438 );
432} 439}
433 440
434sub size_allocate { 441sub size_allocate {
435 my ($self, $w, $h) = @_; 442 my ($self, $x, $y, $w, $h) = @_;
436 443
437 return unless $self->{w} != $w || $self->{h} != $h; 444 $self->_size_allocate ($x, $y, $w, $h) or return;
438 445
439 $self->{w} = $w;
440 $self->{h} = $h;
441
442 $self->child->size_allocate ($w, $h); 446 $self->child->size_allocate (0, 0, $w, $h);
443 447
444 $self->render_chld; 448 $self->render_chld;
445} 449}
446 450
447sub _draw { 451sub _draw {
451 455
452 my $tex = $self->{texture} 456 my $tex = $self->{texture}
453 or return; 457 or return;
454 458
455 glEnable GL_BLEND; 459 glEnable GL_BLEND;
460 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
456 glEnable GL_TEXTURE_2D; 461 glEnable GL_TEXTURE_2D;
457 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 462 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
458 463
459 $tex->draw_quad (0, 0, $w, $h); 464 $tex->draw_quad (0, 0, $w, $h);
460 465
479 484
480 map { $_ + 4 } $chld->size_request; 485 map { $_ + 4 } $chld->size_request;
481} 486}
482 487
483sub size_allocate { 488sub size_allocate {
484 my ($self, $w, $h) = @_; 489 my ($self, $x, $y, $w, $h) = @_;
485 490
486 return unless $self->{w} != $w || $self->{h} != $h; 491 $self->_size_allocate ($x, $y, $w, $h) or return;
487 492
488 $self->{w} = $w;
489 $self->{h} = $h;
490
491 $self->child->size_allocate ($w - 4, $h - 4); 493 $self->child->size_allocate (2, 2, $w - 4, $h - 4);
492 $self->child->move (2, 2);
493} 494}
494 495
495sub _draw { 496sub _draw {
496 my ($self) = @_; 497 my ($self) = @_;
497 498
523 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png); 524 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
524 525
525sub size_request { 526sub size_request {
526 my ($self) = @_; 527 my ($self) = @_;
527 528
529 return ($self->{user_w}, $self->{user_h}) if $self->{user_w} && $self->{user_h};
530
528 my ($w, $h) = $self->SUPER::size_request; 531 my ($w, $h) = $self->SUPER::size_request;
529 532
530 $h += $tex[1]->{h}; 533 $h += $tex[1]->{h};
531 $h += $tex[4]->{h}; 534 $h += $tex[4]->{h};
532 $w += $tex[2]->{w}; 535 $w += $tex[2]->{w};
534 537
535 ($w, $h) 538 ($w, $h)
536} 539}
537 540
538sub size_allocate { 541sub size_allocate {
539 my ($self, $w, $h) = @_; 542 my ($self, $x, $y, $w, $h) = @_;
540 543
541 return unless $self->{w} != $w || $self->{h} != $h; 544 $self->_size_allocate ($x, $y, $w, $h) or return;
542 545
543 $self->SUPER::size_allocate ($w, $h);
544
545 $h -= $tex[1]->{h}; 546 $h -= $tex[1]{h};
546 $h -= $tex[4]->{h}; 547 $h -= $tex[4]{h};
547 $w -= $tex[2]->{w}; 548 $w -= $tex[2]{w};
548 $w -= $tex[3]->{w}; 549 $w -= $tex[3]{w};
549 550
550 $h = $h < 0 ? 0 : $h; 551 $h = $h < 0 ? 0 : $h;
551 $w = $w < 0 ? 0 : $w; 552 $w = $w < 0 ? 0 : $w;
552 553
553 my $child = $self->child; 554 my $child = $self->child;
554 555
555 $child->size_allocate ($w, $h);
556 $child->move ($tex[3]->{w}, $tex[1]->{h}); 556 $child->size_allocate ($tex[3]->{w}, $tex[1]->{h}, $w, $h);
557}
558
559sub button_down {
560 my ($self, $ev, $x, $y) = @_;
561
562 if ($x < $self->{w} && $x >= $self->{w} - $tex[2]{w}
563 && $y < $self->{h} && $y >= $self->{h} - $tex[4]{h}) {
564
565 my ($ox, $oy) = ($ev->button_x, $ev->button_y);
566 my ($bw, $bh) = ($self->{w}, $self->{h});
567
568 $self->{motion} = sub {
569 my ($ev, $x, $y) = @_;
570
571 ($x, $y) = ($ev->motion_x, $ev->motion_y);
572
573 $self->{user_w} = $bw + $x - $ox;
574 $self->{user_h} = $bh + $y - $oy;
575 $self->update;
576 };
577
578 } elsif ($x >= 0 && $x < $self->{w}
579 && $y >= 0 && $y < $tex[1]{h}) {
580
581 my ($ox, $oy) = ($ev->button_x, $ev->button_y);
582 my ($bx, $by) = ($self->{x}, $self->{y});
583
584 $self->{motion} = sub {
585 my ($ev, $x, $y) = @_;
586
587 ($x, $y) = ($ev->motion_x, $ev->motion_y);
588
589 $self->move ($bx + $x - $ox, $by + $y - $oy);
590 $self->update;
591 };
592 }
593}
594
595sub button_up {
596 my ($self, $ev, $x, $y) = @_;
597
598 delete $self->{motion};
599}
600
601sub mouse_motion {
602 my ($self, $ev, $x, $y) = @_;
603
604 $self->{motion}->($ev, $x, $y) if $self->{motion};
557} 605}
558 606
559sub _draw { 607sub _draw {
560 my ($self) = @_; 608 my ($self) = @_;
561 609
562 my ($w, $h) = ($self->{w}, $self->{h}); 610 my ($w, $h) = ($self->{w}, $self->{h});
563 my ($cw, $ch) = ($self->child->{w}, $self->child->{h}); 611 my ($cw, $ch) = ($self->child->{w}, $self->child->{h});
564 612
565 glEnable GL_BLEND; 613 glEnable GL_BLEND;
614 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
566 glEnable GL_TEXTURE_2D; 615 glEnable GL_TEXTURE_2D;
567 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
568 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 616 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
569 617
570 my $top = $tex[1]; 618 my $top = $tex[1];
571 $top->draw_quad (0, 0, $w, $top->{h}); 619 $top->draw_quad (0, 0, $w, $top->{h});
572 620
578 626
579 my $bottom = $tex[4]; 627 my $bottom = $tex[4];
580 $bottom->draw_quad (0, $h - $bottom->{h}, $w, $bottom->{h}); 628 $bottom->draw_quad (0, $h - $bottom->{h}, $w, $bottom->{h});
581 629
582 my $bg = $tex[0]; 630 my $bg = $tex[0];
631
583 glBindTexture GL_TEXTURE_2D, $bg->{name}; 632 glBindTexture GL_TEXTURE_2D, $bg->{name};
584 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 633 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
585 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT; 634 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT;
586 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT; 635 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT;
587 636
588 my $rep_x = $cw / $bg->{w}; 637 my $rep_x = $cw / $bg->{w};
589 my $rep_y = $ch / $bg->{h}; 638 my $rep_y = $ch / $bg->{h};
590 639
591 $bg->draw_quad ($left->{w}, $top->{h}, $cw, $ch); 640 $bg->draw_quad ($left->{w}, $top->{h}, $cw, $ch);
592 641
642 glDisable GL_TEXTURE_2D;
593 glDisable GL_BLEND; 643 glDisable GL_BLEND;
594 glDisable GL_TEXTURE_2D;
595 644
596 $self->child->draw; 645 $self->child->draw;
597 646
598} 647}
599 648
601 650
602package CFClient::UI::Table; 651package CFClient::UI::Table;
603 652
604our @ISA = CFClient::UI::Base::; 653our @ISA = CFClient::UI::Base::;
605 654
655use List::Util qw(max sum);
656
606use SDL::OpenGL; 657use SDL::OpenGL;
658
659sub new {
660 my $class = shift;
661
662 $class->SUPER::new (
663 col_expand => [],
664 @_
665 )
666}
607 667
608sub add { 668sub add {
609 my ($self, $x, $y, $chld) = @_; 669 my ($self, $x, $y, $chld) = @_;
610 my $old_chld = $self->{children}[$y][$x];
611 670
612 $self->{children}[$y][$x] = $chld; 671 $self->{children}[$y][$x] = $chld;
613 $chld->set_parent ($self); 672 $chld->set_parent ($self);
673
674 $self->{w} = $self->{h} = -1;
614 $self->update; 675 $self->update;
615} 676}
616 677
617sub max_row_height { 678sub get_wh {
618 my ($self, $row) = @_; 679 my ($self) = @_;
619 680
620 my $hs = 0; 681 my (@w, @h);
621 for (my $xi = 0; $xi <= $#{$self->{children}->[$row] || []}; $xi++) { 682
683 for my $y (0 .. $#{$self->{children}}) {
622 my $c = $self->{children}->[$row]->[$xi]; 684 my $row = $self->{children}[$y]
623 if ($c) { 685 or next;
686
687 for my $x (0 .. $#$row) {
688 my $widget = $row->[$x]
689 or next;
624 my ($w, $h) = $c->size_request; 690 my ($w, $h) = $widget->size_request;
625 if ($hs < $h) { $hs = $h } 691
692 $w[$x] = max $w[$x], $w;
693 $h[$y] = max $h[$y], $h;
626 } 694 }
627 } 695 }
628 return $hs;
629}
630 696
631sub max_col_width { 697 (\@w, \@h)
698}
699
700sub size_request {
632 my ($self, $col) = @_; 701 my ($self) = @_;
633 702
703 my ($ws, $hs) = $self->get_wh;
704
705 (
706 (sum @$ws),
707 (sum @$hs),
708 )
709}
710
711sub size_allocate {
712 my ($self, $x, $y, $w, $h) = @_;
713
714 $self->_size_allocate ($x, $y, $w, $h) or return;
715
716 my ($ws, $hs) = $self->get_wh;
717
718 my $req_w = sum @$ws;
719 my $req_h = sum @$hs;
720
721 # TODO: nicer code && do row_expand
722 my @col_expand = @{$self->{col_expand}};
723 @col_expand = (1) x @$ws unless @col_expand;
724 my $col_expand = (sum @col_expand) || 1;
725
726 # linearly scale sizes
727 $ws->[$_] += $col_expand[$_] / $col_expand * ($w - $req_w) for 0 .. $#$ws;
728 $hs->[$_] *= 1 * $h / $req_h for 0 .. $#$hs;
729
730 my $y;
731
732 for my $r (0 .. $#{$self->{children}}) {
733 my $row = $self->{children}[$r]
734 or next;
735
634 my $ws = 0; 736 my $x = 0;
635 for (my $yi = 0; $yi <= $#{$self->{children} || []}; $yi++) { 737 my $row_h = $hs->[$r];
636 my $c = ($self->{children}->[$yi] || [])->[$col]; 738
637 if ($c) { 739 for my $c (0 .. $#$row) {
638 my ($w, $h) = $c->size_request; 740 my $widget = $row->[$c]
639 if ($ws < $w) { $ws = $w } 741 or next;
742
743 my $col_w = $ws->[$c];
744
745 $widget->size_allocate ($x, $y, $col_w, $row_h);
746
747 $x += $col_w;
640 } 748 }
749
750 $y += $row_h;
641 } 751 }
642 return $ws; 752
643} 753}
754
755sub find_widget {
756 my ($self, $x, $y) = @_;
757
758 $x -= $self->{x};
759 $y -= $self->{y};
760
761 my $res;
762
763 for (grep $_, map @$_, grep $_, @{ $self->{children} }) {
764 $res = $_->find_widget ($x, $y)
765 and return $res;
766 }
767
768 $self->SUPER::find_widget ($x + $self->{x}, $y + $self->{y})
769}
770
771sub _draw {
772 my ($self) = @_;
773
774 for (grep $_, @{$self->{children}}) {
775 $_->draw for grep $_, @$_;
776 }
777}
778
779#############################################################################
780
781package CFClient::UI::HBox;
782
783# TODO: wrap into common Box base class
784
785our @ISA = CFClient::UI::Container::;
644 786
645sub size_request { 787sub size_request {
646 my ($self) = @_; 788 my ($self) = @_;
647 789
790 my @alloc = map [$_->size_request], @{$self->{children}};
791
792 (
793 (List::Util::sum map $_->[0], @alloc),
794 (List::Util::max map $_->[1], @alloc),
795 )
796}
797
798sub size_allocate {
799 my ($self, $x, $y, $w, $h) = @_;
800
801 $self->_size_allocate ($x, $y, $w, $h) or return;
802
803 return unless $self->{w};
804
648 my ($hs, $ws) = (0, 0); 805 ($h, $w) = ($w, $h);
649 806
650 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) { 807 my $children = $self->{children};
651 $hs += $self->max_row_height ($yi);
652 }
653 808
654 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) { 809 my @h = map +($_->size_request)[0], @$children;
655 my $wm = 0; 810
656 for (my $xi = 0; $xi <= $#{$self->{children}->[$yi]}; $xi++) { 811 my $req_h = List::Util::sum @h;
657 $wm += $self->max_col_width ($xi) 812
813 if ($req_h > $h) {
814 # ah well, not enough space
815 $_ *= $h / $req_h for @h;
816 } else {
817 my $exp = List::Util::sum map $_->{expand}, @$children;
818 $exp ||= 1;
819
820 for (0 .. $#$children) {
821 my $child = $children->[$_];
822
823 my $alloc_h = $h[$_];
824 $alloc_h += ($h - $req_h) * $child->{expand} / $exp;
825 $h[$_] = $alloc_h;
658 } 826 }
659 if ($ws < $wm) { $ws = $wm }
660 } 827 }
661
662 return ($ws, $hs);
663}
664
665sub _draw {
666 my ($self) = @_;
667 828
668 my $y = 0; 829 my $y = 0;
669 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) { 830 for (0 .. $#$children) {
831 my $child = $children->[$_];
670 my $x = 0; 832 my $h = $h[$_];
833 $child->size_allocate ($y, 0, $h, $w);
671 834
672 for (my $xi = 0; $xi <= $#{$self->{children}->[$yi]}; $xi++) { 835 $y += $h;
673
674 my $c = $self->{children}->[$yi]->[$xi];
675 if ($c) {
676 $c->move ($x, $y, 0); #TODO: Move to size_request
677 $c->draw if $c;
678 }
679
680 $x += $self->max_col_width ($xi);
681 }
682
683 $y += $self->max_row_height ($yi);
684 } 836 }
685} 837}
686 838
687############################################################################# 839#############################################################################
688 840
689package CFClient::UI::VBox; 841package CFClient::UI::VBox;
690 842
843# TODO: wrap into common Box base class
844
691our @ISA = CFClient::UI::Container::; 845our @ISA = CFClient::UI::Container::;
692
693use SDL::OpenGL;
694 846
695sub size_request { 847sub size_request {
696 my ($self) = @_; 848 my ($self) = @_;
697 849
698 my @alloc = map [$_->size_request], @{$self->{children}}; 850 my @alloc = map [$_->size_request], @{$self->{children}};
702 (List::Util::sum map $_->[1], @alloc), 854 (List::Util::sum map $_->[1], @alloc),
703 ) 855 )
704} 856}
705 857
706sub size_allocate { 858sub size_allocate {
707 my ($self, $w, $h) = @_; 859 my ($self, $x, $y, $w, $h) = @_;
708 860
709 return unless $self->{w} != $w || $self->{h} != $h; 861 $self->_size_allocate ($x, $y, $w, $h) or return;
710
711 $self->{w} = $w;
712 $self->{h} = $h;
713 862
714 return unless $self->{h}; 863 return unless $self->{h};
715 864
716 my $children = $self->{children}; 865 my $children = $self->{children};
717 866
719 868
720 my $req_h = List::Util::sum @h; 869 my $req_h = List::Util::sum @h;
721 870
722 if ($req_h > $h) { 871 if ($req_h > $h) {
723 # ah well, not enough space 872 # ah well, not enough space
724 $_ = $h[$_] * $h / $req_h for @h; 873 $_ *= $h / $req_h for @h;
725 } else { 874 } else {
726 my @exp = grep $_->{expand}, @$children; 875 my $exp = List::Util::sum map $_->{expand}, @$children;
727 @exp = @$children unless @exp; 876 $exp ||= 1;
728 877
729 my %exp = map +($_ => 1), @exp;
730
731 for (0 .. $#$children) { 878 for (0 .. $#$children) {
732 my $child = $children->[$_]; 879 my $child = $children->[$_];
733 880
734 my $alloc_h = $h[$_]; 881 $h[$_] += ($h - $req_h) * $child->{expand} / $exp;
735 $alloc_h += ($h - $req_h) / @exp if $exp{$child};
736 $h[$_] = $alloc_h;
737 } 882 }
738 } 883 }
739 884
740 my $y = 0; 885 my $y = 0;
741 for (0 .. $#$children) { 886 for (0 .. $#$children) {
742 my $child = $children->[$_]; 887 my $child = $children->[$_];
743 my $h = $h[$_]; 888 my $h = $h[$_];
744 $child->move (0, $y);
745 $child->size_allocate ($w, $h); 889 $child->size_allocate (0, $y, $w, $h);
746 890
747 $y += $h; 891 $y += $h;
748 } 892 }
749} 893}
750 894
758 902
759sub new { 903sub new {
760 my ($class, %arg) = @_; 904 my ($class, %arg) = @_;
761 905
762 my $self = $class->SUPER::new ( 906 my $self = $class->SUPER::new (
763 fg => [1, 1, 1], 907 fg => [1, 1, 1],
764 height => $::FONTSIZE, 908 height => $::FONTSIZE,
765 text => "", 909 text => "",
766 align => -1, 910 align => -1,
911 padding => 2,
767 layout => new CFClient::Layout, 912 layout => new CFClient::Layout,
768 %arg 913 %arg
769 ); 914 );
770 915
771 $self->set_text ($self->{text}); 916 $self->set_text ($self->{text});
772 917
802sub size_request { 947sub size_request {
803 my ($self) = @_; 948 my ($self) = @_;
804 949
805 $self->{layout}->set_width; 950 $self->{layout}->set_width;
806 $self->{layout}->set_height ($self->{height}); 951 $self->{layout}->set_height ($self->{height});
807 $self->{layout}->size 952 my ($w, $h) = $self->{layout}->size;
808# if ($self->{texture}{w} > 1 && $self->{texture}{height} > 1) { #TODO: hack 953
809# ( 954 (
810# $self->{texture}{w}, 955 $w + $self->{padding} * 2,
811# $self->{texture}{h}, 956 $h + $self->{padding} * 2,
812# ) 957 )
813# } else {
814# my ($w, $h, $data) = CFClient::font_render "Yy", $self->{h};
815#
816# ($w, $h)
817# }
818} 958}
819 959
820sub size_allocate { 960sub size_allocate {
821 my ($self, $w, $h) = @_; 961 my ($self, $x, $y, $w, $h) = @_;
822 962
823 return unless $self->{w} != $w || $self->{h} != $h; 963 $self->_size_allocate ($x, $y, $w, $h) or return;
824 964
825 $self->SUPER::size_allocate ($w, $h);
826 delete $self->{texture}; 965 delete $self->{texture};
827} 966}
828 967
829sub update { 968sub update {
830 my ($self) = @_; 969 my ($self) = @_;
836sub _draw { 975sub _draw {
837 my ($self) = @_; 976 my ($self) = @_;
838 977
839 my $tex = $self->{texture} ||= do { 978 my $tex = $self->{texture} ||= do {
840 $self->{layout}->set_width ($self->{w}); 979 $self->{layout}->set_width ($self->{w});
980 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{height});
841 new_from_layout CFClient::Texture $self->{layout}; 981 new_from_layout CFClient::Texture $self->{layout}
842 }; 982 };
843 983
844 glEnable GL_BLEND; 984 glEnable GL_BLEND;
985 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
845 glEnable GL_TEXTURE_2D; 986 glEnable GL_TEXTURE_2D;
846 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
847 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 987 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
848 988
849 glColor @{$self->{fg}}; 989 glColor @{$self->{fg}};
850 990
851 my $x = 991 my $x =
852 $self->{align} < 0 ? 0 992 $self->{align} < 0 ? $self->{padding}
853 : $self->{align} > 0 ? $self->{w} - $self->{texture}{w} 993 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
854 : ($self->{w} + $self->{texture}{w}) * 0.5; 994 : ($self->{w} - $tex->{w}) * 0.5;
855 995
856 $tex->draw_quad ($x, 0); 996 $tex->draw_quad ($x, $self->{padding});
857 997
998 glDisable GL_TEXTURE_2D;
858 glDisable GL_BLEND; 999 glDisable GL_BLEND;
859 glDisable GL_TEXTURE_2D;
860} 1000}
861 1001
862############################################################################# 1002#############################################################################
863 1003
864package CFClient::UI::Entry; 1004package CFClient::UI::Entry;
871sub new { 1011sub new {
872 my $class = shift; 1012 my $class = shift;
873 1013
874 $class->SUPER::new ( 1014 $class->SUPER::new (
875 fg => [1, 1, 1], 1015 fg => [1, 1, 1],
876 bg => [0, 0, 0, 0.4], 1016 bg => [0, 0, 0, 0.2],
877 active_bg => [1, 1, 1], 1017 active_bg => [1, 1, 1],
878 active_fg => [0, 0, 0], 1018 active_fg => [0, 0, 0],
879 @_ 1019 @_
880 ) 1020 )
881} 1021}
888 $self->{text} = $text; 1028 $self->{text} = $text;
889 $self->{layout}->set_width ($self->{w}); 1029 $self->{layout}->set_width ($self->{w});
890 1030
891 $text =~ s/./*/g if $self->{hidden}; 1031 $text =~ s/./*/g if $self->{hidden};
892 1032
893
894 $self->{layout}->set_markup ($self->escape_text ($text)); 1033 $self->{layout}->set_markup ($self->escape_text ($text) . " ");
895 1034
896 $text = substr $text, 0, $self->{cursor}; 1035 $text = substr $text, 0, $self->{cursor};
897 utf8::encode $text; 1036 utf8::encode $text;
898 1037
899 @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text); 1038 @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text);
906 1045
907 ($w + 1, $h) # add 1 for cursor 1046 ($w + 1, $h) # add 1 for cursor
908} 1047}
909 1048
910sub size_allocate { 1049sub size_allocate {
911 my ($self, $w, $h) = @_; 1050 my ($self, $x, $y, $w, $h) = @_;
912 1051
913 return unless $self->{w} != $w || $self->{h} != $h;
914
915 $self->SUPER::size_allocate ($w, $h); 1052 $self->SUPER::size_allocate ($x, $y, $w, $h);
916 1053
917 $self->_set_text ($self->{text}); 1054 $self->_set_text ($self->{text});
918} 1055}
919 1056
920sub set_text { 1057sub set_text {
941 substr $text, $self->{cursor}, 1, ""; 1078 substr $text, $self->{cursor}, 1, "";
942 } elsif ($sym == SDLK_LEFT) { 1079 } elsif ($sym == SDLK_LEFT) {
943 --$self->{cursor} if $self->{cursor}; 1080 --$self->{cursor} if $self->{cursor};
944 } elsif ($sym == SDLK_RIGHT) { 1081 } elsif ($sym == SDLK_RIGHT) {
945 ++$self->{cursor} if $self->{cursor} < length $self->{text}; 1082 ++$self->{cursor} if $self->{cursor} < length $self->{text};
1083 } elsif ($sym == SDLK_HOME) {
1084 $self->{cursor} = 0;
1085 } elsif ($sym == SDLK_END) {
1086 $self->{cursor} = length $text;
946 } elsif ($uni) { 1087 } elsif ($uni) {
947 substr $text, $self->{cursor}++, 0, chr $uni; 1088 substr $text, $self->{cursor}++, 0, chr $uni;
948 } 1089 }
949 1090
950 $self->_set_text ($text); 1091 $self->_set_text ($text);
965 $self->SUPER::button_down ($ev, $x, $y); 1106 $self->SUPER::button_down ($ev, $x, $y);
966 1107
967 my $idx = $self->{layout}->xy_to_index ($x, $y); 1108 my $idx = $self->{layout}->xy_to_index ($x, $y);
968 1109
969 # byte-index to char-index 1110 # byte-index to char-index
970 my $text = $self->{layout}; 1111 my $text = $self->{text};
971 utf8::encode $text; 1112 utf8::encode $text;
972 $self->{cursor} = length substr $text, 0, $idx; 1113 $self->{cursor} = length substr $text, 0, $idx;
973 1114
974 $self->_set_text ($self->{text}); 1115 $self->_set_text ($self->{text});
975 $self->update; 1116 $self->update;
990 $self->{fg} = $self->{active_fg}; 1131 $self->{fg} = $self->{active_fg};
991 } else { 1132 } else {
992 glColor @{$self->{bg}}; 1133 glColor @{$self->{bg}};
993 } 1134 }
994 1135
1136 glEnable GL_BLEND;
1137 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
995 glBegin GL_QUADS; 1138 glBegin GL_QUADS;
996 glVertex 0 , 0; 1139 glVertex 0 , 0;
997 glVertex 0 , $self->{h}; 1140 glVertex 0 , $self->{h};
998 glVertex $self->{w}, $self->{h}; 1141 glVertex $self->{w}, $self->{h};
999 glVertex $self->{w}, 0; 1142 glVertex $self->{w}, 0;
1000 glEnd; 1143 glEnd;
1144 glDisable GL_BLEND;
1001 1145
1002 $self->SUPER::_draw; 1146 $self->SUPER::_draw;
1003 1147
1004 #TODO: force update every cursor change :( 1148 #TODO: force update every cursor change :(
1005 if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) { 1149 if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) {
1016package CFClient::UI::Slider; 1160package CFClient::UI::Slider;
1017 1161
1018use strict; 1162use strict;
1019 1163
1020use SDL::OpenGL; 1164use SDL::OpenGL;
1021use SDL::OpenGL::Constants;
1022 1165
1023our @ISA = CFClient::UI::DrawBG::; 1166our @ISA = CFClient::UI::DrawBG::;
1024
1025sub size_request {
1026 my ($self) = @_;
1027
1028 my $w = 50;
1029 my $h = 10;
1030
1031 $self->{vertical} ? ($h, $w) : ($w, $h)
1032}
1033 1167
1034sub new { 1168sub new {
1035 my $class = shift; 1169 my $class = shift;
1036 1170
1037 # range [value, low, high, page] 1171 # range [value, low, high, page]
1038 1172
1039 $class->SUPER::new ( 1173 my $self = $class->SUPER::new (
1040 fg => [1, 1, 1], 1174 fg => [1, 1, 1],
1041 active_fg => [0, 0, 0], 1175 active_fg => [0, 0, 0],
1042 range => [0, 0, 100, 10], 1176 range => [0, 0, 100, 10],
1177 req_w => 40,
1178 req_h => 10,
1043 vertical => 1, 1179 vertical => 0,
1044 @_ 1180 @_
1045 ) 1181 );
1182
1183 $self
1184}
1185
1186sub size_request {
1187 my ($self) = @_;
1188
1189 my $w = $self->{req_w};
1190 my $h = $self->{req_h};
1191
1192 $self->{vertical} ? ($h, $w) : ($w, $h)
1046} 1193}
1047 1194
1048sub button_down { 1195sub button_down {
1049 my ($self, $ev, $x, $y) = @_; 1196 my ($self, $ev, $x, $y) = @_;
1050 1197
1133 1280
1134use List::Util qw(min max); 1281use List::Util qw(min max);
1135 1282
1136use SDL; 1283use SDL;
1137use SDL::OpenGL; 1284use SDL::OpenGL;
1138use SDL::OpenGL::Constants;
1139 1285
1140our @ISA = CFClient::UI::Base::; 1286our @ISA = CFClient::UI::Base::;
1141 1287
1142sub new { 1288sub new {
1143 my $class = shift; 1289 my $class = shift;
1156sub key_up { 1302sub key_up {
1157} 1303}
1158 1304
1159sub size_request { 1305sub size_request {
1160 ( 1306 (
1161 1 + int $::WIDTH / 32, 1307 1 + 32 * int $::WIDTH / 32,
1162 1 + int $::HEIGHT / 32, 1308 1 + 32 * int $::HEIGHT / 32,
1163 ) 1309 )
1164} 1310}
1165 1311
1166sub update { 1312sub update {
1167 my ($self) = @_; 1313 my ($self) = @_;
1168 1314
1169 $self->{need_update} = 1; 1315 $self->{need_update} = 1;
1316 $self->SUPER::update;
1170} 1317}
1171 1318
1172sub _draw { 1319sub draw {
1173 my ($self) = @_; 1320 my ($self) = @_;
1174 1321
1175 if (delete $self->{need_update}) { 1322 if (delete $self->{need_update}) {
1176 glNewList $self->{list}, GL_COMPILE; 1323 glNewList $self->{list}, GL_COMPILE;
1177 1324
1197 $yofs = $self->{yofs} = min $my, max $my + $::CONN->{maph} - $sh + 1, $self->{yofs}; 1344 $yofs = $self->{yofs} = min $my, max $my + $::CONN->{maph} - $sh + 1, $self->{yofs};
1198 } 1345 }
1199 1346
1200 glEnable GL_TEXTURE_2D; 1347 glEnable GL_TEXTURE_2D;
1201 glEnable GL_BLEND; 1348 glEnable GL_BLEND;
1349 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1202 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1350 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1203 1351
1204 my $sw4 = ($sw + 3) & ~3; 1352 my $sw4 = ($sw + 3) & ~3;
1205 my $darkness = "\x00" x ($sw4 * $sh); 1353 my $darkness = "\x00" x ($sw4 * $sh);
1206 1354
1236# 1384#
1237# $lighting = $pb->get_pixels; 1385# $lighting = $pb->get_pixels;
1238# $lighting =~ s/(.)../$1/gs; 1386# $lighting =~ s/(.)../$1/gs;
1239# } 1387# }
1240 1388
1241 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1242 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 1389 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
1243 1390
1244 $darkness = new CFClient::Texture 1391 $darkness = new CFClient::Texture
1245 width => $sw4, 1392 w => $sw4,
1246 height => $sh, 1393 h => $sh,
1247 data => $darkness, 1394 data => $darkness,
1248 internalformat => GL_ALPHA, 1395 internalformat => GL_ALPHA,
1249 format => GL_ALPHA; 1396 format => GL_ALPHA;
1250 1397
1251 glColor 0.45, 0.45, 0.45, 1; 1398 glColor 0.45, 0.45, 0.45, 1;
1362sub size_request { 1509sub size_request {
1363 ($::WIDTH, $::HEIGHT) 1510 ($::WIDTH, $::HEIGHT)
1364} 1511}
1365 1512
1366sub size_allocate { 1513sub size_allocate {
1367 my ($self, $w, $h) = @_; 1514 my ($self, $x, $y, $w, $h) = @_;
1368 1515
1369 $self->SUPER::size_allocate ($w, $h); 1516 $self->_size_allocate ($x, $y, $w, $h);
1370 1517
1371 $_->size_allocate ($_->size_request) 1518 $_->size_allocate ($_->{x}, $_->{y}, $_->size_request)
1372 for @{$self->{children}}; 1519 for @{$self->{children}};
1373} 1520}
1374 1521
1375sub translate { 1522sub translate {
1376 my ($self, $x, $y) = @_; 1523 my ($self, $x, $y) = @_;
1379} 1526}
1380 1527
1381sub update { 1528sub update {
1382 my ($self) = @_; 1529 my ($self) = @_;
1383 1530
1384 $self->size_allocate ($self->size_request); 1531 $self->size_allocate (0, 0, $::WIDTH, $::HEIGHT);
1385 ::refresh (); 1532 ::refresh ();
1386} 1533}
1387 1534
1388sub add { 1535sub add {
1389 my ($self, $widget) = @_; 1536 my ($self, $widget) = @_;
1390 1537
1391 $self->SUPER::add ($widget); 1538 $self->SUPER::add ($widget);
1392 1539
1393 $widget->size_allocate ($widget->size_request); 1540 $widget->size_allocate ($widget->{x}, $widget->{y}, $widget->size_request);
1394} 1541}
1395 1542
1396sub draw { 1543sub draw {
1397 my ($self) = @_; 1544 my ($self) = @_;
1398 1545

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines