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.126 by root, Mon Apr 17 20:59:20 2006 UTC vs.
Revision 1.148 by elmex, Sat Apr 22 12:14:45 2006 UTC

21 $FOCUS->key_up ($_[0]) if $FOCUS; 21 $FOCUS->key_up ($_[0]) if $FOCUS;
22} 22}
23 23
24sub feed_sdl_button_down_event { 24sub feed_sdl_button_down_event {
25 my ($ev) = @_; 25 my ($ev) = @_;
26 my ($x, $y) = ($ev->motion_x, $ev->motion_y); 26 my ($x, $y) = ($ev->{x}, $ev->{y});
27 27
28 if (!$BUTTON_STATE) { 28 if (!$BUTTON_STATE) {
29 my $widget = $ROOT->find_widget ($x, $y); 29 my $widget = $ROOT->find_widget ($x, $y);
30 30
31 $GRAB = $widget; 31 $GRAB = $widget;
32 $GRAB->update if $GRAB; 32 $GRAB->update if $GRAB;
33 } 33 }
34 34
35 $BUTTON_STATE |= 1 << ($ev->button - 1); 35 $BUTTON_STATE |= 1 << ($ev->{button} - 1);
36 36
37 $GRAB->button_down ($ev, $GRAB->coord2local ($x, $y)) if $GRAB; 37 $GRAB->button_down ($ev, $GRAB->coord2local ($x, $y)) if $GRAB;
38} 38}
39 39
40sub feed_sdl_button_up_event { 40sub feed_sdl_button_up_event {
41 my ($ev) = @_; 41 my ($ev) = @_;
42 my ($x, $y) = ($ev->motion_x, $ev->motion_y); 42 my ($x, $y) = ($ev->{x}, $ev->{y});
43 43
44 my $widget = $GRAB || $ROOT->find_widget ($x, $y); 44 my $widget = $GRAB || $ROOT->find_widget ($x, $y);
45 45
46 $BUTTON_STATE &= ~(1 << ($ev->button - 1)); 46 $BUTTON_STATE &= ~(1 << ($ev->{button} - 1));
47 47
48 $GRAB->button_up ($ev, $GRAB->coord2local ($x, $y)) if $GRAB; 48 $GRAB->button_up ($ev, $GRAB->coord2local ($x, $y)) if $GRAB;
49 49
50 if (!$BUTTON_STATE) { 50 if (!$BUTTON_STATE) {
51 my $grab = $GRAB; undef $GRAB; 51 my $grab = $GRAB; undef $GRAB;
54 } 54 }
55} 55}
56 56
57sub feed_sdl_motion_event { 57sub feed_sdl_motion_event {
58 my ($ev) = @_; 58 my ($ev) = @_;
59 my ($x, $y) = ($ev->motion_x, $ev->motion_y); 59 my ($x, $y) = ($ev->{x}, $ev->{y});
60 60
61 my $widget = $GRAB || $ROOT->find_widget ($x, $y); 61 my $widget = $GRAB || $ROOT->find_widget ($x, $y);
62 62
63 if ($widget != $HOVER) { 63 if ($widget != $HOVER) {
64 my $hover = $HOVER; $HOVER = $widget; 64 my $hover = $HOVER; $HOVER = $widget;
87 87
88package CFClient::UI::Base; 88package CFClient::UI::Base;
89 89
90use strict; 90use strict;
91 91
92use SDL::OpenGL; 92use CFClient::OpenGL;
93 93
94sub new { 94sub new {
95 my $class = shift; 95 my $class = shift;
96 96
97 my $self = bless { 97 my $self = bless {
98 x => 0, 98 x => 0,
99 y => 0, 99 y => 0,
100 z => 0, 100 z => 0,
101 w => -1,
102 h => -1,
103 @_ 101 @_
104 }, $class; 102 }, $class;
105 103
106 for (keys %$self) { 104 for (keys %$self) {
107 if (/^connect_(.*)$/) { 105 if (/^connect_(.*)$/) {
110 } 108 }
111 109
112 $self 110 $self
113} 111}
114 112
113sub show {
114 my ($self) = @_;
115
116 return if $self->{parent};
117
118 $CFClient::UI::ROOT->add ($self);
119}
120
121sub hide {
122 my ($self) = @_;
123
124 return unless $self->{parent};
125
126 $self->{parent}->remove ($self);
127}
128
115sub move { 129sub move {
116 my ($self, $x, $y, $z) = @_; 130 my ($self, $x, $y, $z) = @_;
131
117 $self->{x} = int $x; 132 $self->{x} = int $x;
118 $self->{y} = int $y; 133 $self->{y} = int $y;
119 $self->{z} = $z if defined $z; 134 $self->{z} = $z if defined $z;
135
136 $self->update;
120} 137}
121 138
122sub needs_redraw { 139sub needs_redraw {
123 0 140 0
124} 141}
125 142
126sub size_request { 143sub size_request {
127 require Carp; 144 require Carp;
128 Carp::confess "size_request is abtract"; 145 Carp::confess "size_request is abstract";
129} 146}
130 147
131sub _size_allocate { 148sub configure {
132 my ($self, $x, $y, $w, $h) = @_; 149 my ($self, $x, $y, $w, $h) = @_;
133 150
151 if ($self->{aspect}) {
152 my $w2 = List::Util::min $w, int $h * $self->{aspect};
153 my $h2 = List::Util::min $h, int $w / $self->{aspect};
154
155 # use alignment to adjust x, y
156
157 $x += int +($w - $w2) * 0.5;
158 $y += int +($h - $h2) * 0.5;
159
160 ($w, $h) = ($w2, $h2);
161 }
162
163 if ($self->{x} != $x || $self->{y} != $y) {
134 $self->{x} = $x; 164 $self->{x} = $x;
135 $self->{y} = $y; 165 $self->{y} = $y;
166 $self->update;
167 }
136 168
137 return unless $self->{w} != $w || $self->{h} != $h; 169 if ($self->{w} != $w || $self->{h} != $h) {
138
139 $self->{w} = $w; 170 $self->{w} = $w;
140 $self->{h} = $h; 171 $self->{h} = $h;
141 172
173 $self->size_allocate ($w, $h);
174 $self->update;
142 1 175 }
143} 176}
144 177
145sub size_allocate { 178sub size_allocate {
146 my ($self, $x, $y, $w, $h) = @_; 179 # nothing to be done
147
148 $self->_size_allocate ($x, $y, $w, $h);
149} 180}
150 181
151# return top left coordinates 182# return top left coordinates
152sub _topleft { 183sub _topleft {
153 my ($self, $x, $y) = @_; 184 my ($self, $x, $y) = @_;
284} 315}
285 316
286sub connect { 317sub connect {
287 my ($self, $signal, $cb) = @_; 318 my ($self, $signal, $cb) = @_;
288 319
289 push @{ $self->{cb}{$signal} }, $cb; 320 push @{ $self->{signal_cb}{$signal} }, $cb;
290} 321}
291 322
292sub emit { 323sub emit {
293 my ($self, $signal, @args) = @_; 324 my ($self, $signal, @args) = @_;
294 325
326 for my $cb (@{$self->{signal_cb}{$signal} || []}) {
295 $_->($self, @args) 327 $cb->($self, @args);
296 for @{$self->{cb}{$signal} || []}; 328 }
297} 329}
298 330
299sub DESTROY { 331sub DESTROY {
300 my ($self) = @_; 332 my ($self) = @_;
301 333
307package CFClient::UI::DrawBG; 339package CFClient::UI::DrawBG;
308 340
309our @ISA = CFClient::UI::Base::; 341our @ISA = CFClient::UI::Base::;
310 342
311use strict; 343use strict;
312use SDL::OpenGL; 344use CFClient::OpenGL;
313 345
314sub new { 346sub new {
315 my $class = shift; 347 my $class = shift;
316 348
317 # range [value, low, high, page] 349 # range [value, low, high, page]
381 $self->{children} = [ 413 $self->{children} = [
382 sort { $a->{z} <=> $b->{z} } 414 sort { $a->{z} <=> $b->{z} }
383 @{$self->{children}}, $child 415 @{$self->{children}}, $child
384 ]; 416 ];
385 417
386 $self->{w} = $self->{h} = -1;
387
388 $child->check_size; 418 $child->check_size;
389} 419}
390 420
391sub remove { 421sub remove {
392 my ($self, $widget) = @_; 422 my ($self, $child) = @_;
393 423
424 delete $child->{parent};
425
394 $self->{children} = [ grep $_ != $widget, @{ $self->{children} } ]; 426 $self->{children} = [ grep $_ != $child, @{ $self->{children} } ];
395 427
396 $self->check_size; 428 $self->check_size;
397} 429}
398 430
399sub find_widget { 431sub find_widget {
431 463
432 $class->SUPER::new (children => [$child], %arg) 464 $class->SUPER::new (children => [$child], %arg)
433} 465}
434 466
435sub add { 467sub add {
436 my ($self, $widget) = @_; 468 my ($self, $child) = @_;
437 469
438 $self->{children} = []; 470 $self->{children} = [];
439 471
440 $self->SUPER::add ($widget); 472 $self->SUPER::add ($child);
441} 473}
442 474
443sub remove { 475sub remove {
444 my ($self, $widget) = @_; 476 my ($self, $widget) = @_;
445 477
454sub size_request { 486sub size_request {
455 $_[0]{children}[0]->size_request 487 $_[0]{children}[0]->size_request
456} 488}
457 489
458sub size_allocate { 490sub size_allocate {
459 my ($self, $x, $y, $w, $h) = @_; 491 my ($self, $w, $h) = @_;
460 492
461 $self->_size_allocate ($x, $y, $w, $h) or return;
462
463 $self->{children}[0]->size_allocate (0, 0, $w, $h); 493 $self->{children}[0]->configure (0, 0, $w, $h);
464} 494}
465 495
466############################################################################# 496#############################################################################
467 497
468package CFClient::UI::Window; 498package CFClient::UI::Window;
469 499
470our @ISA = CFClient::UI::Bin::; 500our @ISA = CFClient::UI::Bin::;
471 501
472use SDL::OpenGL; 502use CFClient::OpenGL;
473 503
474sub new { 504sub new {
475 my ($class, %arg) = @_; 505 my ($class, %arg) = @_;
476 506
477 my $self = $class->SUPER::new (%arg); 507 my $self = $class->SUPER::new (%arg);
494 $self->child->draw; 524 $self->child->draw;
495 }; 525 };
496} 526}
497 527
498sub size_allocate { 528sub size_allocate {
499 my ($self, $x, $y, $w, $h) = @_; 529 my ($self, $w, $h) = @_;
500 530
501 $self->_size_allocate ($x, $y, $w, $h) or return;
502
503 $self->child->size_allocate (0, 0, $w, $h); 531 $self->child->configure (0, 0, $w, $h);
504 532
505 $self->render_chld; 533 $self->render_chld;
506} 534}
507 535
508sub _draw { 536sub _draw {
539 $self->child->size_allocate (0, 0, @$self{qw(child_w child_h)}); 567 $self->child->size_allocate (0, 0, @$self{qw(child_w child_h)});
540 568
541 @$self{qw(child_w child_h)} 569 @$self{qw(child_w child_h)}
542} 570}
543 571
544sub size_allocate {
545 my ($self, $x, $y, $w, $h) = @_;
546
547 $self->_size_allocate ($x, $y, $w, $h) or return;
548}
549
550sub _draw { 572sub _draw {
551 my ($self) = @_; 573 my ($self) = @_;
552 574
553 $self->{children}[1]->draw; 575 $self->{children}[1]->draw;
554} 576}
558 580
559package CFClient::UI::Frame; 581package CFClient::UI::Frame;
560 582
561our @ISA = CFClient::UI::Bin::; 583our @ISA = CFClient::UI::Bin::;
562 584
563use SDL::OpenGL; 585use CFClient::OpenGL;
564
565sub size_request {
566 my ($self) = @_;
567 my $chld = $self->child
568 or return (0, 0);
569
570 $chld->move (2, 2);
571
572 map { $_ + 4 } $chld->size_request;
573}
574
575sub size_allocate {
576 my ($self, $x, $y, $w, $h) = @_;
577
578 $self->_size_allocate ($x, $y, $w, $h) or return;
579
580 $self->child->size_allocate (2, 2, $w - 4, $h - 4);
581}
582
583sub _draw {
584 my ($self) = @_;
585
586 my $chld = $self->child;
587
588 my ($w, $h) = $chld->size_request;
589
590 glBegin GL_QUADS;
591 glColor 0, 0, 0;
592 glVertex 0 , 0;
593 glVertex 0 , $h + 4;
594 glVertex $w + 4 , $h + 4;
595 glVertex $w + 4 , 0;
596 glEnd;
597
598 $chld->draw;
599}
600
601#############################################################################
602
603package CFClient::UI::FancyFrame;
604
605our @ISA = CFClient::UI::Bin::;
606
607use SDL::OpenGL;
608
609my @tex =
610 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
611 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
612 586
613sub new { 587sub new {
614 my $class = shift; 588 my $class = shift;
615 589
616 # TODO: user_x, user_y, overwrite moveto?
617
618 $class->SUPER::new ( 590 my $self = $class->SUPER::new (
619 bg => [1, 1, 1, 1], 591 bg => [1, 1, 1, 1],
620 border_bg => [1, 1, 1, 1], 592 border_bg => [1, 1, 1, 1],
621 border => int $::FONTSIZE * 0.8, 593 border => 0.8,
622 @_ 594 @_
595 );
596
597 $self
598}
599
600sub set_size {
601 my ($self, $w, $h) = @_;
602 $self->{req_w} = $w;
603 $self->{req_h} = $h;
604 $self->check_size;
605}
606
607sub size_request {
608 my ($self) = @_;
609 ($self->{req_w}, $self->{req_h})
610}
611
612sub size_allocate {
613 my ($self, $w, $h) = @_;
614 $self->{w} = $w;
615 $self->{h} = $h;
616 $self->child->configure (0, 0, $w, $h);
617}
618
619sub _draw {
620 my ($self) = @_;
621
622 my ($w, $h) = ($self->{w}, $self->{h});
623
624 glEnable GL_BLEND;
625 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
626 glEnable GL_TEXTURE_2D;
627 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
628
629# glBegin GL_QUADS;
630# glColor 0, 0, 0, 0;
631# glVertex 0 , 0;
632# glVertex 0 , $h;
633# glVertex $w, $h;
634# glVertex $w, 0;
635# glEnd;
636
637
638 $self->child->draw;
639 glDisable GL_BLEND;
640 glDisable GL_TEXTURE_2D;
641}
642
643#############################################################################
644
645package CFClient::UI::FancyFrame;
646
647our @ISA = CFClient::UI::Bin::;
648
649use CFClient::OpenGL;
650
651my @tex =
652 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
653 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
654
655sub new {
656 my $class = shift;
657
658 # TODO: user_x, user_y, overwrite moveto?
659
660 my $self = $class->SUPER::new (
661 bg => [1, 1, 1, 1],
662 border_bg => [1, 1, 1, 1],
663 border => 0.8,
664 @_
665 );
666
667 $self->{title} &&= new CFClient::UI::Label
668 align => 0,
669 valign => 1,
670 text => $self->{title},
671 fontsize => 1;
672
673 $self
674}
675
676sub border {
677 int $_[0]{border} * $::FONTSIZE
678}
679
680sub size_request {
681 my ($self) = @_;
682
683 return ($self->{user_w}, $self->{user_h}) if $self->{user_w} && $self->{user_h};
684
685 my ($w, $h) = $self->SUPER::size_request;
686
687 (
688 $w + $self->border * 2,
689 $h + $self->border * 2,
623 ) 690 )
624} 691}
625 692
626sub size_request {
627 my ($self) = @_;
628
629 return ($self->{user_w}, $self->{user_h}) if $self->{user_w} && $self->{user_h};
630
631 my ($w, $h) = $self->SUPER::size_request;
632
633 (
634 $w + $self->{border} * 2,
635 $h + $self->{border} * 2,
636 )
637}
638
639sub size_allocate { 693sub size_allocate {
640 my ($self, $x, $y, $w, $h) = @_; 694 my ($self, $w, $h) = @_;
641 695
642 $self->_size_allocate ($x, $y, $w, $h) or return;
643
644 $h -= List::Util::max 0, $self->{border} * 2; 696 $h -= List::Util::max 0, $self->border * 2;
645 $w -= List::Util::max 0, $self->{border} * 2; 697 $w -= List::Util::max 0, $self->border * 2;
646 698
699 $self->{title}->configure ($self->border, $self->border - $::FONTSIZE * 2, $w, $::FONTSIZE * 2)
700 if $self->{title};
701
647 $self->child->size_allocate ($self->{border}, $self->{border}, $w, $h); 702 $self->child->configure ($self->border, $self->border, $w, $h);
648} 703}
649 704
650sub button_down { 705sub button_down {
651 my ($self, $ev, $x, $y) = @_; 706 my ($self, $ev, $x, $y) = @_;
652 707
708 my $border = $self->border;
709
653 if ($x < $self->{w} && $x >= $self->{w} - $self->{border} 710 if ($x < $self->{w} && $x >= $self->{w} - $border
654 && $y < $self->{h} && $y >= $self->{h} - $self->{border}) { 711 && $y < $self->{h} && $y >= $self->{h} - $border) {
655 712
656 my ($ox, $oy) = ($ev->button_x, $ev->button_y); 713 my ($ox, $oy) = ($ev->{x}, $ev->{y});
657 my ($bw, $bh) = ($self->{w}, $self->{h}); 714 my ($bw, $bh) = ($self->{w}, $self->{h});
658 715
659 $self->{motion} = sub { 716 $self->{motion} = sub {
660 my ($ev, $x, $y) = @_; 717 my ($ev, $x, $y) = @_;
661 718
662 ($x, $y) = ($ev->motion_x, $ev->motion_y); 719 ($x, $y) = ($ev->{x}, $ev->{y});
663 720
664 $self->{user_w} = $bw + $x - $ox; 721 $self->{user_w} = $bw + $x - $ox;
665 $self->{user_h} = $bh + $y - $oy; 722 $self->{user_h} = $bh + $y - $oy;
666 $self->update; 723 $self->check_size;
667 }; 724 };
668 725
669 } elsif ($x >= 0 && $x < $self->{w} 726 } elsif ($x >= 0 && $x < $self->{w}
670 && $y >= 0 && $y < $self->{border}) { 727 && $y >= 0 && $y < $border) {
671 728
672 my ($ox, $oy) = ($ev->button_x, $ev->button_y); 729 my ($ox, $oy) = ($ev->{x}, $ev->{y});
673 my ($bx, $by) = ($self->{x}, $self->{y}); 730 my ($bx, $by) = ($self->{x}, $self->{y});
674 731
675 $self->{motion} = sub { 732 $self->{motion} = sub {
676 my ($ev, $x, $y) = @_; 733 my ($ev, $x, $y) = @_;
677 734
678 ($x, $y) = ($ev->motion_x, $ev->motion_y); 735 ($x, $y) = ($ev->{x}, $ev->{y});
679 736
680 $self->move ($bx + $x - $ox, $by + $y - $oy); 737 $self->move ($bx + $x - $ox, $by + $y - $oy);
681 $self->update; 738 $self->update;
682 }; 739 };
683 } 740 }
704 glEnable GL_BLEND; 761 glEnable GL_BLEND;
705 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 762 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
706 glEnable GL_TEXTURE_2D; 763 glEnable GL_TEXTURE_2D;
707 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 764 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
708 765
766 my $border = $self->border;
767
709 glColor @{ $self->{border_bg} }; 768 glColor @{ $self->{border_bg} };
710 $tex[1]->draw_quad (0, 0, $w, $self->{border}); 769 $tex[1]->draw_quad (0, 0, $w, $border);
711 $tex[3]->draw_quad (0, $self->{border}, $self->{border}, $ch); 770 $tex[3]->draw_quad (0, $border, $border, $ch);
712 $tex[2]->draw_quad ($w - $self->{border}, $self->{border}, $self->{border}, $ch); 771 $tex[2]->draw_quad ($w - $border, $border, $border, $ch);
713 $tex[4]->draw_quad (0, $h - $self->{border}, $w, $self->{border}); 772 $tex[4]->draw_quad (0, $h - $border, $w, $border);
714 773
715 my $bg = $tex[0]; 774 my $bg = $tex[0];
716 775
717 # TODO: repeat texture not scale 776 # TODO: repeat texture not scale
718 my $rep_x = $cw / $bg->{w}; 777 my $rep_x = $cw / $bg->{w};
721 glColor @{ $self->{bg} }; 780 glColor @{ $self->{bg} };
722 781
723 $bg->{s} = $rep_x; 782 $bg->{s} = $rep_x;
724 $bg->{t} = $rep_y; 783 $bg->{t} = $rep_y;
725 $bg->{wrap_mode} = 1; 784 $bg->{wrap_mode} = 1;
726 $bg->draw_quad ($self->{border}, $self->{border}, $cw, $ch); 785 $bg->draw_quad ($border, $border, $cw, $ch);
727 786
728 glDisable GL_TEXTURE_2D; 787 glDisable GL_TEXTURE_2D;
729 glDisable GL_BLEND; 788 glDisable GL_BLEND;
730 789
790 $self->{title}->draw if $self->{title};
731 $self->child->draw; 791 $self->child->draw;
732} 792}
733 793
734############################################################################# 794#############################################################################
735 795
737 797
738our @ISA = CFClient::UI::Base::; 798our @ISA = CFClient::UI::Base::;
739 799
740use List::Util qw(max sum); 800use List::Util qw(max sum);
741 801
742use SDL::OpenGL; 802use CFClient::OpenGL;
743 803
744sub new { 804sub new {
745 my $class = shift; 805 my $class = shift;
746 806
747 $class->SUPER::new ( 807 $class->SUPER::new (
754 my ($self, $x, $y, $child) = @_; 814 my ($self, $x, $y, $child) = @_;
755 815
756 $child->set_parent ($self); 816 $child->set_parent ($self);
757 $self->{children}[$y][$x] = $child; 817 $self->{children}[$y][$x] = $child;
758 818
759 $self->{w} = $self->{h} = -1;
760
761 $child->check_size; 819 $child->check_size;
762} 820}
763 821
764# TODO: move to container class maybe? send childs a signal on removal? 822# TODO: move to container class maybe? send childs a signal on removal?
765sub clear { 823sub clear {
801 (sum @$hs), 859 (sum @$hs),
802 ) 860 )
803} 861}
804 862
805sub size_allocate { 863sub size_allocate {
806 my ($self, $x, $y, $w, $h) = @_; 864 my ($self, $w, $h) = @_;
807
808 $self->_size_allocate ($x, $y, $w, $h) or return;
809 865
810 my ($ws, $hs) = $self->get_wh; 866 my ($ws, $hs) = $self->get_wh;
811 867
812 my $req_w = sum @$ws; 868 my $req_w = sum @$ws;
813 my $req_h = sum @$hs; 869 my $req_h = sum @$hs;
835 891
836 for my $c (0 .. $#$row) { 892 for my $c (0 .. $#$row) {
837 my $col_w = $ws->[$c]; 893 my $col_w = $ws->[$c];
838 894
839 if (my $widget = $row->[$c]) { 895 if (my $widget = $row->[$c]) {
840 $widget->size_allocate ($x, $y, $col_w, $row_h); 896 $widget->configure ($x, $y, $col_w, $row_h);
841 } 897 }
842 898
843 $x += $col_w; 899 $x += $col_w;
844 } 900 }
845 901
890 (List::Util::max map $_->[1], @alloc), 946 (List::Util::max map $_->[1], @alloc),
891 ) 947 )
892} 948}
893 949
894sub size_allocate { 950sub size_allocate {
895 my ($self, $x, $y, $w, $h) = @_; 951 my ($self, $w, $h) = @_;
896
897 $self->_size_allocate ($x, $y, $w, $h) or return;
898 952
899 ($h, $w) = ($w, $h); 953 ($h, $w) = ($w, $h);
900 954
901 my $children = $self->{children}; 955 my $children = $self->{children};
902 956
924 978
925 my $y = 0; 979 my $y = 0;
926 for (0 .. $#$children) { 980 for (0 .. $#$children) {
927 my $child = $children->[$_]; 981 my $child = $children->[$_];
928 my $h = $h[$_]; 982 my $h = $h[$_];
929 $child->size_allocate ($y, 0, $h, $w); 983 $child->configure ($y, 0, $h, $w);
930 984
931 $y += $h; 985 $y += $h;
932 } 986 }
933 987
934 1 988 1
952 (List::Util::sum map $_->[1], @alloc), 1006 (List::Util::sum map $_->[1], @alloc),
953 ) 1007 )
954} 1008}
955 1009
956sub size_allocate { 1010sub size_allocate {
957 my ($self, $x, $y, $w, $h) = @_; 1011 my ($self, $w, $h) = @_;
958
959 $self->_size_allocate ($x, $y, $w, $h) or return;
960 1012
961 my $children = $self->{children}; 1013 my $children = $self->{children};
962 1014
963 my @h = map +($_->size_request)[1], @$children; 1015 my @h = map +($_->size_request)[1], @$children;
964 1016
982 1034
983 my $y = 0; 1035 my $y = 0;
984 for (0 .. $#$children) { 1036 for (0 .. $#$children) {
985 my $child = $children->[$_]; 1037 my $child = $children->[$_];
986 my $h = $h[$_]; 1038 my $h = $h[$_];
987 $child->size_allocate (0, $y, $w, $h); 1039 $child->configure (0, $y, $w, $h);
988 1040
989 $y += $h; 1041 $y += $h;
990 } 1042 }
991 1043
992 1 1044 1
996 1048
997package CFClient::UI::Label; 1049package CFClient::UI::Label;
998 1050
999our @ISA = CFClient::UI::Base::; 1051our @ISA = CFClient::UI::Base::;
1000 1052
1001use SDL::OpenGL; 1053use CFClient::OpenGL;
1002 1054
1003sub new { 1055sub new {
1004 my ($class, %arg) = @_; 1056 my ($class, %arg) = @_;
1005 1057
1006 my $self = $class->SUPER::new ( 1058 my $self = $class->SUPER::new (
1007 fg => [1, 1, 1], 1059 fg => [1, 1, 1],
1008 fontsize => $::FONTSIZE, 1060 fontsize => 1,
1009 text => "", 1061 text => "",
1010 align => -1, 1062 align => -1,
1011 valign => -1, 1063 valign => -1,
1012 padding => 2, 1064 padding => 2,
1013 layout => new CFClient::Layout, 1065 layout => new CFClient::Layout,
1014 %arg 1066 %arg
1015 ); 1067 );
1016 1068
1017 $self->{xxx}++ if $self->{text} eq "Client Setup" && $self->{align};#d# 1069 if (exists $self->{template}) {
1070 my $layout = new CFClient::Layout;
1071 $layout->set_text (delete $self->{template});
1072 $self->{template} = $layout;
1073 }
1018 1074
1019 $self->set_text (delete $self->{text}) if exists $self->{text}; 1075 $self->set_text (delete $self->{text}) if exists $self->{text};
1020 $self->set_markup (delete $self->{markup}) if exists $self->{markup}; 1076 $self->set_markup (delete $self->{markup}) if exists $self->{markup};
1021 1077
1022 $self 1078 $self
1052 1108
1053sub size_request { 1109sub size_request {
1054 my ($self) = @_; 1110 my ($self) = @_;
1055 1111
1056 $self->{layout}->set_width; 1112 $self->{layout}->set_width;
1057 $self->{layout}->set_height ($self->{fontsize}); 1113 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1058 1114
1059 my ($w, $h) = $self->{layout}->size; 1115 my ($w, $h) = $self->{layout}->size;
1116
1117 if (exists $self->{template}) {
1118 $self->{template}->set_height ($self->{fontsize} * $::FONTSIZE);
1119
1120 my ($w2, $h2) = $self->{template}->size;
1121
1122 $w = List::Util::max $w, $w2;
1123 $h = List::Util::max $h, $h2;
1124 }
1060 1125
1061 ( 1126 (
1062 $w + $self->{padding} * 2, 1127 $w + $self->{padding} * 2,
1063 $h + $self->{padding} * 2, 1128 $h + $self->{padding} * 2,
1064 ) 1129 )
1065} 1130}
1066 1131
1067sub size_allocate { 1132sub size_allocate {
1068 my ($self, $x, $y, $w, $h) = @_; 1133 my ($self, $w, $h) = @_;
1069
1070 $self->_size_allocate ($x, $y, $w, $h) or return;
1071 1134
1072 delete $self->{texture}; 1135 delete $self->{texture};
1073} 1136}
1074 1137
1075sub update { 1138sub set_fontsize {
1076 my ($self) = @_; 1139 my ($self, $fontsize) = @_;
1077 1140
1078 delete $self->{texture}; 1141 $self->{fontsize} = $fontsize;
1079 $self->SUPER::update; 1142 $self->check_size;
1080} 1143}
1081 1144
1082sub _draw { 1145sub _draw {
1083 my ($self) = @_; 1146 my ($self) = @_;
1084 1147
1085 my $tex = $self->{texture} ||= do { 1148 my $tex = $self->{texture} ||= do {
1086 $self->{layout}->set_width ($self->{w}); 1149 $self->{layout}->set_width ($self->{w});
1087 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize}); 1150 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize} * $::FONTSIZE);
1088 new_from_layout CFClient::Texture $self->{layout} 1151 new_from_layout CFClient::Texture $self->{layout}
1089 }; 1152 };
1090 1153
1091 glEnable GL_BLEND; 1154 glEnable GL_BLEND;
1092 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 1155 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1117 1180
1118package CFClient::UI::EntryBase; 1181package CFClient::UI::EntryBase;
1119 1182
1120our @ISA = CFClient::UI::Label::; 1183our @ISA = CFClient::UI::Label::;
1121 1184
1122use SDL; 1185use CFClient::OpenGL;
1123use SDL::OpenGL;
1124 1186
1125sub new { 1187sub new {
1126 my $class = shift; 1188 my $class = shift;
1127 1189
1128 $class->SUPER::new ( 1190 $class->SUPER::new (
1142 1204
1143 delete $self->{cur_h}; 1205 delete $self->{cur_h};
1144 1206
1145 return if $self->{text} eq $text; 1207 return if $self->{text} eq $text;
1146 1208
1209 delete $self->{texture};
1210
1147 $self->{last_activity} = $::NOW; 1211 $self->{last_activity} = $::NOW;
1148 $self->{text} = $text; 1212 $self->{text} = $text;
1149 1213
1150 $text =~ s/./*/g if $self->{hidden}; 1214 $text =~ s/./*/g if $self->{hidden};
1151 $self->{layout}->set_text ("$text "); 1215 $self->{layout}->set_text ("$text ");
1164 1228
1165 ($w + 1, $h) # add 1 for cursor 1229 ($w + 1, $h) # add 1 for cursor
1166} 1230}
1167 1231
1168sub size_allocate { 1232sub size_allocate {
1169 my ($self, $x, $y, $w, $h) = @_; 1233 my ($self, $w, $h) = @_;
1170
1171 $self->SUPER::size_allocate ($x, $y, $w, $h) or return;
1172 1234
1173 $self->_set_text ($self->{text}); 1235 $self->_set_text ($self->{text});
1174} 1236}
1175 1237
1176sub set_text { 1238sub set_text {
1182} 1244}
1183 1245
1184sub key_down { 1246sub key_down {
1185 my ($self, $ev) = @_; 1247 my ($self, $ev) = @_;
1186 1248
1187 my $mod = $ev->key_mod; 1249 my $mod = $ev->{mod};
1188 my $sym = $ev->key_sym; 1250 my $sym = $ev->{sym};
1189
1190 my $uni = $ev->key_unicode; 1251 my $uni = $ev->{unicode};
1191 1252
1192 my $text = $self->get_text; 1253 my $text = $self->get_text;
1193 1254
1194 if ($sym == SDLK_BACKSPACE) { 1255 if ($sym == 8) {
1195 substr $text, --$self->{cursor}, 1, "" if $self->{cursor}; 1256 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
1196 } elsif ($sym == SDLK_DELETE) { 1257 } elsif ($sym == 127) {
1197 substr $text, $self->{cursor}, 1, ""; 1258 substr $text, $self->{cursor}, 1, "";
1198 } elsif ($sym == SDLK_LEFT) { 1259 } elsif ($sym == CFClient::SDLK_LEFT) {
1199 --$self->{cursor} if $self->{cursor}; 1260 --$self->{cursor} if $self->{cursor};
1200 } elsif ($sym == SDLK_RIGHT) { 1261 } elsif ($sym == CFClient::SDLK_RIGHT) {
1201 ++$self->{cursor} if $self->{cursor} < length $self->{text}; 1262 ++$self->{cursor} if $self->{cursor} < length $self->{text};
1202 } elsif ($sym == SDLK_HOME) { 1263 } elsif ($sym == CFClient::SDLK_HOME) {
1203 $self->{cursor} = 0; 1264 $self->{cursor} = 0;
1204 } elsif ($sym == SDLK_END) { 1265 } elsif ($sym == CFClient::SDLK_END) {
1205 $self->{cursor} = length $text; 1266 $self->{cursor} = length $text;
1206 } elsif ($sym == SDLK_ESCAPE) { 1267 } elsif ($sym == 27) {
1207 $self->emit ('escape'); 1268 $self->emit ('escape');
1208 } elsif ($uni) { 1269 } elsif ($uni) {
1209 substr $text, $self->{cursor}++, 0, chr $uni; 1270 substr $text, $self->{cursor}++, 0, chr $uni;
1210 } 1271 }
1211 1272
1286 1347
1287package CFClient::UI::Entry; 1348package CFClient::UI::Entry;
1288 1349
1289our @ISA = CFClient::UI::EntryBase::; 1350our @ISA = CFClient::UI::EntryBase::;
1290 1351
1291use SDL; 1352use CFClient::OpenGL;
1292use SDL::OpenGL;
1293 1353
1294sub key_down { 1354sub key_down {
1295 my ($self, $ev) = @_; 1355 my ($self, $ev) = @_;
1296 1356
1297 my $sym = $ev->key_sym; 1357 my $sym = $ev->{sym};
1298 1358
1299 if ($sym == SDLK_RETURN) { 1359 if ($sym == 13) {
1300 $self->emit (activate => $self->get_text); 1360 $self->emit (activate => $self->get_text);
1301 $self->update; 1361 $self->update;
1302 1362
1303 } else { 1363 } else {
1304 $self->SUPER::key_down ($ev); 1364 $self->SUPER::key_down ($ev);
1310 1370
1311package CFClient::UI::Button; 1371package CFClient::UI::Button;
1312 1372
1313our @ISA = CFClient::UI::Label::; 1373our @ISA = CFClient::UI::Label::;
1314 1374
1315use SDL; 1375use CFClient::OpenGL;
1316use SDL::OpenGL;
1317 1376
1318my @tex = 1377my @tex =
1319 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1378 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1320 qw(b1_button_active.png); 1379 qw(b1_button_active.png);
1321 1380
1322sub new { 1381sub new {
1323 my $class = shift; 1382 my $class = shift;
1324 1383
1371package CFClient::UI::CheckBox; 1430package CFClient::UI::CheckBox;
1372 1431
1373our @ISA = CFClient::UI::DrawBG::; 1432our @ISA = CFClient::UI::DrawBG::;
1374 1433
1375my @tex = 1434my @tex =
1376 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1435 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1377 qw(c1_checkbox_bg.png c1_checkbox_active.png); 1436 qw(c1_checkbox_bg.png c1_checkbox_active.png);
1378 1437
1379use SDL; 1438use CFClient::OpenGL;
1380use SDL::OpenGL;
1381 1439
1382sub new { 1440sub new {
1383 my $class = shift; 1441 my $class = shift;
1384 1442
1385 $class->SUPER::new ( 1443 $class->SUPER::new (
1396 my ($self) = @_; 1454 my ($self) = @_;
1397 1455
1398 ($self->{padding} * 2 + 6) x 2 1456 ($self->{padding} * 2 + 6) x 2
1399} 1457}
1400 1458
1401sub size_allocate {
1402 my ($self, $x, $y, $w, $h) = @_;
1403
1404 $self->_size_allocate ($x, $y, $w, $h) or return;
1405}
1406
1407sub button_down { 1459sub button_down {
1408 my ($self, $ev, $x, $y) = @_; 1460 my ($self, $ev, $x, $y) = @_;
1409 1461
1410 if ($x >= $self->{padding} && $x < $self->{w} - $self->{padding} 1462 if ($x >= $self->{padding} && $x < $self->{w} - $self->{padding}
1411 && $y >= $self->{padding} && $y < $self->{h} - $self->{padding}) { 1463 && $y >= $self->{padding} && $y < $self->{h} - $self->{padding}) {
1437 glDisable GL_BLEND; 1489 glDisable GL_BLEND;
1438} 1490}
1439 1491
1440############################################################################# 1492#############################################################################
1441 1493
1442package CFClient::UI::VGauge; 1494package CFClient::UI::Image;
1443 1495
1444our @ISA = CFClient::UI::Base::; 1496our @ISA = CFClient::UI::Base::;
1445 1497
1446use SDL::OpenGL; 1498use CFClient::OpenGL;
1499use Carp qw/confess/;
1447 1500
1448my %tex = ( 1501our %loaded_images;
1449 food => [
1450 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1451 qw/g1_food_gauge_empty.png g1_food_gauge_full.png/
1452 ],
1453 grace => [
1454 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1455 qw/g1_grace_gauge_empty.png g1_grace_gauge_full.png/
1456 ],
1457 hp => [
1458 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1459 qw/g1_hp_gauge_empty.png g1_hp_gauge_full.png/
1460 ],
1461 mana => [
1462 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1463 qw/g1_mana_gauge_empty.png g1_mana_gauge_full.png/
1464 ],
1465);
1466 1502
1467# eg. VGauge->new (gauge => 'food'), default gauge: food
1468sub new { 1503sub new {
1469 my $class = shift; 1504 my $class = shift;
1470 1505
1471 my $self = $class->SUPER::new (gauge => 'food', @_); 1506 my $self = $class->SUPER::new (@_);
1507
1508 $self->{image} or confess "Image has 'image' not set. This is a fatal error!";
1509
1510 $loaded_images{$self->{image}} ||=
1511 new_from_file CFClient::Texture CFClient::find_rcfile $self->{image}, mipmap => 1;
1512
1513 my $tex = $self->{tex} = $loaded_images{$self->{image}};
1514
1515 Scalar::Util::weaken $loaded_images{$self->{image}};
1516
1517 $self->{aspect} = $tex->{w} / $tex->{h};
1472 1518
1473 $self 1519 $self
1474} 1520}
1475 1521
1476sub size_request { 1522sub size_request {
1477 my ($self) = @_; 1523 my ($self) = @_;
1478 1524
1479 (30, 100) 1525 ($self->{tex}->{w}, $self->{tex}->{h})
1480}
1481
1482sub set_max {
1483 my ($self, $max) = @_;
1484 $self->{max_val} = $max;
1485}
1486
1487sub set_value {
1488 my ($self, $val, $max) = @_;
1489
1490 $self->set_max ($max)
1491 if defined $max;
1492
1493 $max = $self->{max_val};
1494 $self->{val} = $val;
1495
1496 $self->update;
1497} 1526}
1498 1527
1499sub _draw { 1528sub _draw {
1500 my ($self) = @_; 1529 my ($self) = @_;
1501 1530
1502 my $tex = $tex{$self->{gauge}}; 1531 my $tex = $self->{tex};
1503 1532
1504 my ($w, $h) = ($self->{w}, $self->{h}); 1533 my ($w, $h) = ($self->{w}, $self->{h});
1505 1534
1506 my $ycut = $self->{val} / ($self->{max_val} || 1); 1535 if ($self->{rot90}) {
1507 $ycut = 1 if $self->{val} > $self->{max_val}; 1536 glRotate 90, 0, 0, 1;
1537 glTranslate 0, -$self->{w}, 0;
1508 1538
1509 my $t1 = $tex->[0]; 1539 ($w, $h) = ($h, $w);
1510 my $t2 = $tex->[1]; 1540 }
1511 1541
1512 glEnable GL_BLEND; 1542 glEnable GL_BLEND;
1513 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 1543 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1514 glEnable GL_TEXTURE_2D; 1544 glEnable GL_TEXTURE_2D;
1515 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1545 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1516 1546
1547 $tex->draw_quad (0, 0, $w, $h);
1548
1549 glDisable GL_BLEND;
1550 glDisable GL_TEXTURE_2D;
1551}
1552
1553#############################################################################
1554
1555package CFClient::UI::VGauge;
1556
1557our @ISA = CFClient::UI::Base::;
1558
1559use CFClient::OpenGL;
1560
1561my %tex = (
1562 food => [
1563 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1564 qw/g1_food_gauge_empty.png g1_food_gauge_full.png/
1565 ],
1566 grace => [
1567 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1568 qw/g1_grace_gauge_empty.png g1_grace_gauge_full.png/
1569 ],
1570 hp => [
1571 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1572 qw/g1_hp_gauge_empty.png g1_hp_gauge_full.png/
1573 ],
1574 mana => [
1575 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1576 qw/g1_mana_gauge_empty.png g1_mana_gauge_full.png/
1577 ],
1578);
1579
1580# eg. VGauge->new (gauge => 'food'), default gauge: food
1581sub new {
1582 my $class = shift;
1583
1584 my $self = $class->SUPER::new (
1585 type => 'food',
1586 @_
1587 );
1588
1589 $self->{aspect} = $tex{$self->{type}}[0]{w} / $tex{$self->{type}}[0]{h};
1590
1591 $self
1592}
1593
1594sub size_request {
1595 my ($self) = @_;
1596
1597 #my $tex = $tex{$self->{type}}[0];
1598 #@$tex{qw(w h)}
1599 (0, 0)
1600}
1601
1602sub set_max {
1603 my ($self, $max) = @_;
1604
1605 $self->{max_val} = $max;
1606}
1607
1608sub set_value {
1609 my ($self, $val, $max) = @_;
1610
1611 $self->set_max ($max)
1612 if defined $max;
1613
1614 $max = $self->{max_val};
1615 $self->{val} = $val;
1616
1617 $self->update;
1618}
1619
1620sub _draw {
1621 my ($self) = @_;
1622
1623 my $tex = $tex{$self->{type}};
1624
1625 my ($w, $h) = ($self->{w}, $self->{h});
1626
1627 if ($self->{vertical}) {
1628 glRotate 90, 0, 0, 1;
1629 glTranslate 0, -$self->{w}, 0;
1630
1631 ($w, $h) = ($h, $w);
1632 }
1633
1634 my $ycut = $self->{val} / ($self->{max_val} || 1);
1635 $ycut = 1 if $self->{val} > $self->{max_val};
1636
1637 my $t1 = $tex->[0];
1638 my $t2 = $tex->[1];
1639
1640 glEnable GL_BLEND;
1641 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1642 glEnable GL_TEXTURE_2D;
1643 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1644
1517 my $h1 = $self->{h} - $ycut * $self->{h}; 1645 my $h1 = $self->{h} - $ycut * $self->{h};
1518 my $h2 = $ycut * $self->{h}; 1646 my $h2 = $ycut * $self->{h};
1519 1647
1520 my $yp = 0;
1521
1522 glBindTexture (GL_TEXTURE_2D, $t1->{name}); 1648 glBindTexture GL_TEXTURE_2D, $t1->{name};
1523 glBegin (GL_QUADS); 1649 glBegin GL_QUADS;
1524 glTexCoord (0, 0); glVertex (0 , $yp); 1650 glTexCoord 0 , 0; glVertex 0 , 0;
1525 glTexCoord (0, (1 - $ycut)); glVertex (0 , $yp + $h1); 1651 glTexCoord 0 , $t1->{t} * (1 - $ycut); glVertex 0 , $h1;
1526 glTexCoord (1, (1 - $ycut)); glVertex (0 + $w, $yp + $h1); 1652 glTexCoord $t1->{s}, $t1->{t} * (1 - $ycut); glVertex $w, $h1;
1527 glTexCoord (1, 0); glVertex (0 + $w, $yp); 1653 glTexCoord $t1->{s}, 0; glVertex $w, 0;
1528 glEnd (); 1654 glEnd;
1529 1655
1530 $yp += $h1;
1531
1532 glBindTexture (GL_TEXTURE_2D, $t2->{name}); 1656 glBindTexture GL_TEXTURE_2D, $t2->{name};
1533 glBegin (GL_QUADS); 1657 glBegin GL_QUADS;
1534 glTexCoord (0, (1 - $ycut)); glVertex (0 , $yp); 1658 glTexCoord 0 , $t2->{t} * (1 - $ycut); glVertex 0 , $h1;
1535 glTexCoord (0, 1); glVertex (0 , $yp + $h2); 1659 glTexCoord 0 , $t2->{t}; glVertex 0 , $h1 + $h2;
1536 glTexCoord (1, 1); glVertex (0 + $w, $yp + $h2); 1660 glTexCoord $t2->{s}, $t2->{t}; glVertex $w, $h1 + $h2;
1537 glTexCoord (1, (1 - $ycut)); glVertex (0 + $w, $yp); 1661 glTexCoord $t2->{s}, $t2->{t} * (1 - $ycut); glVertex $w, $h1;
1538 glEnd (); 1662 glEnd;
1539 1663
1540 glDisable GL_BLEND; 1664 glDisable GL_BLEND;
1541 glDisable GL_TEXTURE_2D; 1665 glDisable GL_TEXTURE_2D;
1542} 1666}
1543 1667
1544############################################################################# 1668#############################################################################
1545 1669
1670package CFClient::UI::Gauge;
1671
1672our @ISA = CFClient::UI::VBox::;
1673
1674sub new {
1675 my ($class, %arg) = shift;
1676
1677 my $self = $class->SUPER::new (
1678 @_,
1679 );
1680
1681 $self->add ($self->{value} = new CFClient::UI::Label valign => 1, align => 0, template => "999");
1682 $self->add ($self->{gauge} = new CFClient::UI::VGauge type => $self->{type}, expand => 1);
1683 $self->add ($self->{max} = new CFClient::UI::Label valign => 1, align => 0, template => "999");
1684
1685 $self
1686}
1687
1688sub set_fontsize {
1689 my ($self, $fsize) = @_;
1690
1691 $self->{value}->set_fontsize ($fsize);
1692 $self->{max} ->set_fontsize ($fsize);
1693}
1694
1695sub set_value {
1696 my ($self, $val, $max) = @_;
1697
1698 $self->set_max ($max)
1699 if defined $max;
1700
1701 $self->{gauge}->set_value ($val, $max);
1702 $self->{value}->set_text ($val);
1703}
1704
1705sub set_max {
1706 my ($self, $max) = @_;
1707
1708 $self->{gauge}->set_max ($max);
1709 $self->{max}->set_text ($max);
1710}
1711
1712#############################################################################
1713
1546package CFClient::UI::Slider; 1714package CFClient::UI::Slider;
1547 1715
1548use strict; 1716use strict;
1549 1717
1550use SDL::OpenGL; 1718use CFClient::OpenGL;
1551 1719
1552our @ISA = CFClient::UI::DrawBG::; 1720our @ISA = CFClient::UI::DrawBG::;
1553 1721
1554my @tex = 1722my @tex =
1555 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1723 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1565 # TODO: calculations are off 1733 # TODO: calculations are off
1566 my $self = $class->SUPER::new ( 1734 my $self = $class->SUPER::new (
1567 fg => [1, 1, 1], 1735 fg => [1, 1, 1],
1568 active_fg => [0, 0, 0], 1736 active_fg => [0, 0, 0],
1569 range => [0, 0, 100, 10], 1737 range => [0, 0, 100, 10],
1570 req_w => 40, 1738 req_w => 20,
1571 req_h => 13, 1739 req_h => 20,
1572 vertical => 0, 1740 vertical => 0,
1573 can_hover => 1, 1741 can_hover => 1,
1574 inner_pad => 5, 1742 inner_pad => 5,
1575 @_ 1743 @_
1576 ); 1744 );
1680 1848
1681package CFClient::UI::TextView; 1849package CFClient::UI::TextView;
1682 1850
1683our @ISA = CFClient::UI::HBox::; 1851our @ISA = CFClient::UI::HBox::;
1684 1852
1685use SDL::OpenGL; 1853use CFClient::OpenGL;
1686 1854
1687sub new { 1855sub new {
1688 my $class = shift; 1856 my $class = shift;
1689 1857
1690 my $self = $class->SUPER::new ( 1858 my $self = $class->SUPER::new (
1691 req_w => $::WIDTH / 6,
1692 req_h => $::HEIGHT / 6,
1693 fontsize => $::FONTSIZE, 1859 fontsize => 1,
1694 @_, 1860 @_,
1695 1861
1696 layout => (new CFClient::Layout), 1862 layout => (new CFClient::Layout),
1697 par => [], 1863 par => [],
1698 height => 0, 1864 height => 0,
1719sub text_height { 1885sub text_height {
1720 my ($self, $text) = @_; 1886 my ($self, $text) = @_;
1721 1887
1722 my $layout = $self->{layout}; 1888 my $layout = $self->{layout};
1723 1889
1724 $layout->set_height ($self->{fontsize}); 1890 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
1725 $layout->set_width ($self->{w}); 1891 $layout->set_width ($self->{w});
1726 $layout->set_text ($text); 1892 $layout->set_text ($text);
1727 1893
1728 ($layout->size)[1] 1894 ($layout->size)[1]
1729} 1895}
1733 1899
1734 $self->{need_reflow}++; 1900 $self->{need_reflow}++;
1735 $self->update; 1901 $self->update;
1736} 1902}
1737 1903
1738sub size_request {
1739 my ($self) = @_;
1740
1741 ($self->{req_w}, $self->{req_h})
1742}
1743
1744sub size_allocate { 1904sub size_allocate {
1745 my ($self, $x, $y, $w, $h) = @_; 1905 my ($self, $w, $h) = @_;
1746 1906
1747 $self->SUPER::size_allocate ($x, $y, $w, $h) or return; 1907 $self->SUPER::size_allocate ($w, $h);
1748 1908
1749 $self->{layout}->set_height ($self->{fontsize}); 1909 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1750 $self->{layout}->set_width ($self->{w}); 1910 $self->{layout}->set_width ($self->{children}[0]{w});
1751 1911
1752 $self->reflow; 1912 $self->reflow;
1753 $self->update;
1754} 1913}
1755 1914
1756sub add_paragraph { 1915sub add_paragraph {
1757 my ($self, $color, $text) = @_; 1916 my ($self, $color, $text) = @_;
1758 1917
1843 2002
1844} 2003}
1845 2004
1846############################################################################# 2005#############################################################################
1847 2006
1848package CFClient::UI::MapWidget;
1849
1850use strict;
1851
1852use List::Util qw(min max);
1853
1854use SDL;
1855use SDL::OpenGL;
1856
1857our @ISA = CFClient::UI::Base::;
1858
1859sub new {
1860 my $class = shift;
1861
1862 $class->SUPER::new (
1863 z => -1,
1864 can_focus => 1,
1865 list => (glGenLists 1),
1866 @_
1867 )
1868}
1869
1870sub key_down {
1871 print "MAPKEYDOWN\n";
1872}
1873
1874sub key_up {
1875}
1876
1877sub button_down {
1878 my ($self, $ev, $x, $y) = @_;
1879
1880 $self->focus_in;
1881
1882 if ($ev->button == 2) {
1883 my ($ox, $oy) = ($ev->button_x, $ev->button_y);
1884 my ($bw, $bh) = ($::CFG->{map_shift_x}, $::CFG->{map_shift_y});
1885
1886 $self->{motion} = sub {
1887 my ($ev, $x, $y) = @_;
1888
1889 ($x, $y) = ($ev->motion_x, $ev->motion_y);
1890
1891 $::CFG->{map_shift_x} = $bw + $x - $ox;
1892 $::CFG->{map_shift_y} = $bh + $y - $oy;
1893
1894 $self->update;
1895 };
1896 }
1897}
1898
1899sub button_up {
1900 my ($self, $ev, $x, $y) = @_;
1901
1902 delete $self->{motion};
1903}
1904
1905sub mouse_motion {
1906 my ($self, $ev, $x, $y) = @_;
1907
1908 $self->{motion}->($ev, $x, $y) if $self->{motion};
1909}
1910
1911sub size_request {
1912 (
1913 1 + 32 * int $::WIDTH / 32,
1914 1 + 32 * int $::HEIGHT / 32,
1915 )
1916}
1917
1918sub update {
1919 my ($self) = @_;
1920
1921 $self->{need_update} = 1;
1922 $self->SUPER::update;
1923}
1924
1925sub draw {
1926 my ($self) = @_;
1927
1928 if (delete $self->{need_update}) {
1929 glNewList $self->{list}, GL_COMPILE;
1930
1931 if ($::MAP) {
1932 my $sw = int $::WIDTH / 32;
1933 my $sh = int $::HEIGHT / 32;
1934
1935 my $sx = $::CFG->{map_shift_x}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32;
1936 my $sy = $::CFG->{map_shift_y}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32;
1937
1938 glTranslate $sx0 - 32, $sy0 - 32, 0;
1939
1940 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1);
1941
1942 if ($::CFG->{fow_enable}) {
1943 if ($::CFG->{fow_smooth}) { # smooth fog of war
1944 glConvolutionParameter GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER;
1945 glConvolutionFilter2D
1946 GL_CONVOLUTION_2D,
1947 GL_ALPHA,
1948 3, 3,
1949 GL_ALPHA, GL_FLOAT,
1950 pack "f*",
1951 0.1, 0.1, 0.1,
1952 0.1, 0.2, 0.1,
1953 0.1, 0.1, 0.1,
1954 ;
1955 glEnable GL_CONVOLUTION_2D;
1956 }
1957
1958 $self->{fow_texture} = new CFClient::Texture
1959 w => $w,
1960 h => $h,
1961 data => $data,
1962 internalformat => GL_ALPHA,
1963 format => GL_ALPHA;
1964
1965 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
1966
1967 glEnable GL_BLEND;
1968 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1969 glEnable GL_TEXTURE_2D;
1970 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
1971
1972 glColor +($::CFG->{fow_intensity}) x 3, 1;
1973 $self->{fow_texture}->draw_quad (0, 0, $w * 32, $h * 32);
1974
1975 glDisable GL_TEXTURE_2D;
1976 glDisable GL_BLEND;
1977 }
1978
1979 # HACK BEGIN
1980 {
1981 glTranslate -($sx0 - 32), -($sy0 - 32), 0;#remove
1982 my ($w, $h) = (250, 250);
1983
1984 glEnable GL_BLEND;
1985 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1986 glEnable GL_TEXTURE_2D;
1987 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1988
1989 $self->{mapmap_texture} =
1990 new CFClient::Texture
1991 w => $w,
1992 h => $h,
1993 data => $::MAP->mapmap ($w, $h),
1994 type => GL_UNSIGNED_INT_8_8_8_8_REV;
1995
1996 $self->{mapmap_texture}->draw_quad (100, 100);
1997
1998 glDisable GL_TEXTURE_2D;
1999 glDisable GL_BLEND;
2000 }
2001 # HACK END
2002 }
2003
2004 glEndList;
2005 }
2006
2007 glPushMatrix;
2008 glCallList $self->{list};
2009 glPopMatrix;
2010
2011 if ($FOCUS != $self) {
2012 glColor 64/255, 64/255, 64/255;
2013 glLogicOp GL_AND;
2014 glEnable GL_COLOR_LOGIC_OP;
2015 glBegin GL_QUADS;
2016 glVertex 0, 0;
2017 glVertex 0, $::HEIGHT;
2018 glVertex $::WIDTH, $::HEIGHT;
2019 glVertex $::WIDTH, 0;
2020 glEnd;
2021 glDisable GL_COLOR_LOGIC_OP;
2022 }
2023}
2024
2025my %DIR = (
2026 SDLK_KP8, [1, "north"],
2027 SDLK_KP9, [2, "northeast"],
2028 SDLK_KP6, [3, "east"],
2029 SDLK_KP3, [4, "southeast"],
2030 SDLK_KP2, [5, "south"],
2031 SDLK_KP1, [6, "southwest"],
2032 SDLK_KP4, [7, "west"],
2033 SDLK_KP7, [8, "northwest"],
2034
2035 SDLK_UP, [1, "north"],
2036 SDLK_RIGHT, [3, "east"],
2037 SDLK_DOWN, [5, "south"],
2038 SDLK_LEFT, [7, "west"],
2039);
2040
2041sub key_down {
2042 my ($self, $ev) = @_;
2043
2044 my $mod = $ev->key_mod;
2045 my $sym = $ev->key_sym;
2046
2047 if ($sym == SDLK_KP5) {
2048 $::CONN->user_send ("stay fire");
2049 } elsif ($sym == SDLK_a) {
2050 $::CONN->user_send ("apply");
2051 } elsif ($sym == SDLK_QUOTE) {
2052 $self->emit ('activate_console');
2053 } elsif ($sym == SDLK_SLASH) {
2054 $self->emit ('activate_console' => '/');
2055 } elsif (exists $DIR{$sym}) {
2056 if ($mod & KMOD_SHIFT) {
2057 $self->{shft}++;
2058 $::CONN->user_send ("fire $DIR{$sym}[0]");
2059 } elsif ($mod & KMOD_CTRL) {
2060 $self->{ctrl}++;
2061 $::CONN->user_send ("run $DIR{$sym}[0]");
2062 } else {
2063 $::CONN->user_send ("$DIR{$sym}[1]");
2064 }
2065 }
2066}
2067
2068sub key_up {
2069 my ($self, $ev) = @_;
2070
2071 my $mod = $ev->key_mod;
2072 my $sym = $ev->key_sym;
2073
2074 if (!($mod & KMOD_SHIFT) && delete $self->{shft}) {
2075 $::CONN->user_send ("fire_stop");
2076 }
2077 if (!($mod & KMOD_CTRL ) && delete $self->{ctrl}) {
2078 $::CONN->user_send ("run_stop");
2079 }
2080}
2081
2082#############################################################################
2083
2084package CFClient::UI::Animator; 2007package CFClient::UI::Animator;
2085 2008
2086use SDL::OpenGL; 2009use CFClient::OpenGL;
2087 2010
2088our @ISA = CFClient::UI::Bin::; 2011our @ISA = CFClient::UI::Bin::;
2089 2012
2090sub moveto { 2013sub moveto {
2091 my ($self, $x, $y) = @_; 2014 my ($self, $x, $y) = @_;
2164 2087
2165package CFClient::UI::Root; 2088package CFClient::UI::Root;
2166 2089
2167our @ISA = CFClient::UI::Container::; 2090our @ISA = CFClient::UI::Container::;
2168 2091
2169use SDL::OpenGL; 2092use CFClient::OpenGL;
2170 2093
2171sub check_size { 2094sub check_size {
2172 my ($self) = @_; 2095 my ($self) = @_;
2173 2096
2174 $self->size_allocate (0, 0, $::WITH, $::HEIGHT); 2097 $self->configure (0, 0, $::WITH, $::HEIGHT);
2175} 2098}
2176 2099
2177sub size_request { 2100sub size_request {
2178 ($::WIDTH, $::HEIGHT) 2101 ($::WIDTH, $::HEIGHT)
2179} 2102}
2180 2103
2181sub size_allocate { 2104sub configure {
2182 my ($self, $x, $y, $w, $h) = @_; 2105 my ($self, $x, $y, $w, $h) = @_;
2183 2106
2184 $self->_size_allocate ($x, $y, $w, $h); 2107 $self->SUPER::configure ($x, $y, $w, $h);
2185 2108
2186 $_->size_allocate ($_->{x}, $_->{y}, $_->size_request) 2109 $_->configure ($_->{x}, $_->{y}, $_->size_request)
2187 for @{$self->{children}}; 2110 for @{$self->{children}};
2188} 2111}
2189 2112
2190sub _topleft { 2113sub _topleft {
2191 my ($self, $x, $y) = @_; 2114 my ($self, $x, $y) = @_;
2199 $self->check_size; 2122 $self->check_size;
2200 ::refresh (); 2123 ::refresh ();
2201} 2124}
2202 2125
2203sub add { 2126sub add {
2204 my ($self, $widget) = @_; 2127 my ($self, $child) = @_;
2205 2128
2129 # integerize window positions
2130 $child->{x} = int $child->{x};
2131 $child->{y} = int $child->{y};
2132
2206 $self->SUPER::add ($widget); 2133 $self->SUPER::add ($child);
2207
2208 $widget->size_allocate (int $widget->{x}, int $widget->{y}, $widget->size_request);
2209} 2134}
2210 2135
2211sub on_refresh { 2136sub on_refresh {
2212 my ($self, $id, $cb) = @_; 2137 my ($self, $id, $cb) = @_;
2213 2138

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines