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.120 by elmex, Sun Apr 16 17:43:17 2006 UTC vs.
Revision 1.147 by root, Sat Apr 22 03:50:25 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) = @_;
225 glPopMatrix; 256 glPopMatrix;
226 257
227 if ($self == $HOVER && $self->{can_hover}) { 258 if ($self == $HOVER && $self->{can_hover}) {
228 my ($x, $y) = @$self{qw(x y)}; 259 my ($x, $y) = @$self{qw(x y)};
229 260
230 glColor 0, 0, 1, 0.2; 261 glColor 1, 0.8, 0.5, 0.2;
231 glEnable GL_BLEND; 262 glEnable GL_BLEND;
232 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 263 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
233 glBegin GL_QUADS; 264 glBegin GL_QUADS;
234 glVertex $x , $y; 265 glVertex $x , $y;
235 glVertex $x + $self->{w}, $y; 266 glVertex $x + $self->{w}, $y;
260 my ($self, $parent) = @_; 291 my ($self, $parent) = @_;
261 292
262 Scalar::Util::weaken ($self->{parent} = $parent); 293 Scalar::Util::weaken ($self->{parent} = $parent);
263} 294}
264 295
296sub check_size {
297 my ($self) = @_;
298
299 my ($w, $h) = $self->size_request;
300
301 if ($w != $self->{req_w} || $h != $self->{req_h}) {
302 $self->{req_w} = $w;
303 $self->{req_h} = $h;
304
305 $self->{parent}->check_size
306 if $self->{parent};
307 }
308}
309
265sub update { 310sub update {
266 my ($self) = @_; 311 my ($self) = @_;
267 312
268 $self->{parent}->update 313 $self->{parent}->update
269 if $self->{parent}; 314 if $self->{parent};
270} 315}
271 316
272sub connect { 317sub connect {
273 my ($self, $signal, $cb) = @_; 318 my ($self, $signal, $cb) = @_;
274 319
275 push @{ $self->{cb}{$signal} }, $cb; 320 push @{ $self->{signal_cb}{$signal} }, $cb;
276} 321}
277 322
278sub emit { 323sub emit {
279 my ($self, $signal, @args) = @_; 324 my ($self, $signal, @args) = @_;
280 325
326 for my $cb (@{$self->{signal_cb}{$signal} || []}) {
281 $_->($self, @args) 327 $cb->($self, @args);
282 for @{$self->{cb}{$signal} || []}; 328 }
283} 329}
284 330
285sub DESTROY { 331sub DESTROY {
286 my ($self) = @_; 332 my ($self) = @_;
287 333
293package CFClient::UI::DrawBG; 339package CFClient::UI::DrawBG;
294 340
295our @ISA = CFClient::UI::Base::; 341our @ISA = CFClient::UI::Base::;
296 342
297use strict; 343use strict;
298use SDL::OpenGL; 344use CFClient::OpenGL;
299 345
300sub new { 346sub new {
301 my $class = shift; 347 my $class = shift;
302 348
303 # range [value, low, high, page] 349 # range [value, low, high, page]
367 $self->{children} = [ 413 $self->{children} = [
368 sort { $a->{z} <=> $b->{z} } 414 sort { $a->{z} <=> $b->{z} }
369 @{$self->{children}}, $child 415 @{$self->{children}}, $child
370 ]; 416 ];
371 417
372 $self->{w} = $self->{h} = -1; 418 $child->check_size;
373 $self->update;
374} 419}
375 420
376sub remove { 421sub remove {
377 my ($self, $widget) = @_; 422 my ($self, $child) = @_;
378 423
424 delete $child->{parent};
425
379 $self->{children} = [ grep $_ != $widget, @{ $self->{children} } ]; 426 $self->{children} = [ grep $_ != $child, @{ $self->{children} } ];
380 427
381 $self->size_allocate (0, 0, $self->{w}, $self->{h}); 428 $self->check_size;
382} 429}
383 430
384sub find_widget { 431sub find_widget {
385 my ($self, $x, $y) = @_; 432 my ($self, $x, $y) = @_;
386 433
416 463
417 $class->SUPER::new (children => [$child], %arg) 464 $class->SUPER::new (children => [$child], %arg)
418} 465}
419 466
420sub add { 467sub add {
421 my ($self, $widget) = @_; 468 my ($self, $child) = @_;
422 469
423 $self->{children} = []; 470 $self->{children} = [];
424 471
425 $self->SUPER::add ($widget); 472 $self->SUPER::add ($child);
426} 473}
427 474
428sub remove { 475sub remove {
429 my ($self, $widget) = @_; 476 my ($self, $widget) = @_;
430 477
439sub size_request { 486sub size_request {
440 $_[0]{children}[0]->size_request 487 $_[0]{children}[0]->size_request
441} 488}
442 489
443sub size_allocate { 490sub size_allocate {
444 my ($self, $x, $y, $w, $h) = @_; 491 my ($self, $w, $h) = @_;
445 492
446 $self->_size_allocate ($x, $y, $w, $h) or return;
447
448 $self->{children}[0]->size_allocate (0, 0, $w, $h); 493 $self->{children}[0]->configure (0, 0, $w, $h);
449} 494}
450 495
451############################################################################# 496#############################################################################
452 497
453package CFClient::UI::Window; 498package CFClient::UI::Window;
454 499
455our @ISA = CFClient::UI::Bin::; 500our @ISA = CFClient::UI::Bin::;
456 501
457use SDL::OpenGL; 502use CFClient::OpenGL;
458 503
459sub new { 504sub new {
460 my ($class, %arg) = @_; 505 my ($class, %arg) = @_;
461 506
462 my $self = $class->SUPER::new (%arg); 507 my $self = $class->SUPER::new (%arg);
479 $self->child->draw; 524 $self->child->draw;
480 }; 525 };
481} 526}
482 527
483sub size_allocate { 528sub size_allocate {
484 my ($self, $x, $y, $w, $h) = @_; 529 my ($self, $w, $h) = @_;
485 530
486 $self->_size_allocate ($x, $y, $w, $h) or return;
487
488 $self->child->size_allocate (0, 0, $w, $h); 531 $self->child->configure (0, 0, $w, $h);
489 532
490 $self->render_chld; 533 $self->render_chld;
491} 534}
492 535
493sub _draw { 536sub _draw {
509 glDisable GL_TEXTURE_2D; 552 glDisable GL_TEXTURE_2D;
510} 553}
511 554
512############################################################################# 555#############################################################################
513 556
557package CFClient::UI::ViewPort;
558
559our @ISA = CFClient::UI::Window::;
560
561sub new { die }
562
563sub size_request {
564 my ($self) = @_;
565
566 @$self{qw(child_w child_h)} = $self->child->size_request;
567 $self->child->size_allocate (0, 0, @$self{qw(child_w child_h)});
568
569 @$self{qw(child_w child_h)}
570}
571
572sub _draw {
573 my ($self) = @_;
574
575 $self->{children}[1]->draw;
576}
577
578
579#############################################################################
580
514package CFClient::UI::Frame; 581package CFClient::UI::Frame;
515 582
516our @ISA = CFClient::UI::Bin::; 583our @ISA = CFClient::UI::Bin::;
517 584
518use SDL::OpenGL; 585use CFClient::OpenGL;
519 586
520sub size_request { 587sub size_request {
521 my ($self) = @_; 588 my ($self) = @_;
522 my $chld = $self->child 589 my $chld = $self->child
523 or return (0, 0); 590 or return (0, 0);
528} 595}
529 596
530sub size_allocate { 597sub size_allocate {
531 my ($self, $x, $y, $w, $h) = @_; 598 my ($self, $x, $y, $w, $h) = @_;
532 599
533 $self->_size_allocate ($x, $y, $w, $h) or return;
534
535 $self->child->size_allocate (2, 2, $w - 4, $h - 4); 600 $self->child->configure (2, 2, $w - 4, $h - 4);
536} 601}
537 602
538sub _draw { 603sub _draw {
539 my ($self) = @_; 604 my ($self) = @_;
540 605
557 622
558package CFClient::UI::FancyFrame; 623package CFClient::UI::FancyFrame;
559 624
560our @ISA = CFClient::UI::Bin::; 625our @ISA = CFClient::UI::Bin::;
561 626
562use SDL::OpenGL; 627use CFClient::OpenGL;
563 628
564my @tex = 629my @tex =
565 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 630 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
566 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png); 631 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
567 632
568sub new { 633sub new {
569 my $class = shift; 634 my $class = shift;
570 635
571 # TODO: user_x, user_y, overwrite moveto? 636 # TODO: user_x, user_y, overwrite moveto?
572 637
573 $class->SUPER::new ( 638 my $self = $class->SUPER::new (
574 bg => [1, 1, 1, 1], 639 bg => [1, 1, 1, 1],
575 border_bg => [1, 1, 1, 1], 640 border_bg => [1, 1, 1, 1],
576 border => int $::FONTSIZE * 0.8, 641 border => 0.8,
577 @_ 642 @_
643 );
644
645 $self->{title} &&= new CFClient::UI::Label
646 align => 0,
647 valign => 1,
648 text => $self->{title},
649 fontsize => 1;
650
651 $self
652}
653
654sub border {
655 int $_[0]{border} * $::FONTSIZE
656}
657
658sub size_request {
659 my ($self) = @_;
660
661 return ($self->{user_w}, $self->{user_h}) if $self->{user_w} && $self->{user_h};
662
663 my ($w, $h) = $self->SUPER::size_request;
664
665 (
666 $w + $self->border * 2,
667 $h + $self->border * 2,
578 ) 668 )
579} 669}
580 670
581sub size_request {
582 my ($self) = @_;
583
584 return ($self->{user_w}, $self->{user_h}) if $self->{user_w} && $self->{user_h};
585
586 my ($w, $h) = $self->SUPER::size_request;
587
588 (
589 $w + $self->{border} * 2,
590 $h + $self->{border} * 2,
591 )
592}
593
594sub size_allocate { 671sub size_allocate {
595 my ($self, $x, $y, $w, $h) = @_; 672 my ($self, $w, $h) = @_;
596 673
597 $self->_size_allocate ($x, $y, $w, $h) or return;
598
599 $h -= List::Util::max 0, $self->{border} * 2; 674 $h -= List::Util::max 0, $self->border * 2;
600 $w -= List::Util::max 0, $self->{border} * 2; 675 $w -= List::Util::max 0, $self->border * 2;
601 676
677 $self->{title}->configure ($self->border, $self->border - $::FONTSIZE * 2, $w, $::FONTSIZE * 2)
678 if $self->{title};
679
602 $self->child->size_allocate ($self->{border}, $self->{border}, $w, $h); 680 $self->child->configure ($self->border, $self->border, $w, $h);
603} 681}
604 682
605sub button_down { 683sub button_down {
606 my ($self, $ev, $x, $y) = @_; 684 my ($self, $ev, $x, $y) = @_;
607 685
686 my $border = $self->border;
687
608 if ($x < $self->{w} && $x >= $self->{w} - $self->{border} 688 if ($x < $self->{w} && $x >= $self->{w} - $border
609 && $y < $self->{h} && $y >= $self->{h} - $self->{border}) { 689 && $y < $self->{h} && $y >= $self->{h} - $border) {
610 690
611 my ($ox, $oy) = ($ev->button_x, $ev->button_y); 691 my ($ox, $oy) = ($ev->{x}, $ev->{y});
612 my ($bw, $bh) = ($self->{w}, $self->{h}); 692 my ($bw, $bh) = ($self->{w}, $self->{h});
613 693
614 $self->{motion} = sub { 694 $self->{motion} = sub {
615 my ($ev, $x, $y) = @_; 695 my ($ev, $x, $y) = @_;
616 696
617 ($x, $y) = ($ev->motion_x, $ev->motion_y); 697 ($x, $y) = ($ev->{x}, $ev->{y});
618 698
619 $self->{user_w} = $bw + $x - $ox; 699 $self->{user_w} = $bw + $x - $ox;
620 $self->{user_h} = $bh + $y - $oy; 700 $self->{user_h} = $bh + $y - $oy;
621 $self->update; 701 $self->check_size;
622 }; 702 };
623 703
624 } elsif ($x >= 0 && $x < $self->{w} 704 } elsif ($x >= 0 && $x < $self->{w}
625 && $y >= 0 && $y < $self->{border}) { 705 && $y >= 0 && $y < $border) {
626 706
627 my ($ox, $oy) = ($ev->button_x, $ev->button_y); 707 my ($ox, $oy) = ($ev->{x}, $ev->{y});
628 my ($bx, $by) = ($self->{x}, $self->{y}); 708 my ($bx, $by) = ($self->{x}, $self->{y});
629 709
630 $self->{motion} = sub { 710 $self->{motion} = sub {
631 my ($ev, $x, $y) = @_; 711 my ($ev, $x, $y) = @_;
632 712
633 ($x, $y) = ($ev->motion_x, $ev->motion_y); 713 ($x, $y) = ($ev->{x}, $ev->{y});
634 714
635 $self->move ($bx + $x - $ox, $by + $y - $oy); 715 $self->move ($bx + $x - $ox, $by + $y - $oy);
636 $self->update; 716 $self->update;
637 }; 717 };
638 } 718 }
659 glEnable GL_BLEND; 739 glEnable GL_BLEND;
660 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 740 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
661 glEnable GL_TEXTURE_2D; 741 glEnable GL_TEXTURE_2D;
662 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 742 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
663 743
744 my $border = $self->border;
745
664 glColor @{ $self->{border_bg} }; 746 glColor @{ $self->{border_bg} };
665 $tex[1]->draw_quad (0, 0, $w, $self->{border}); 747 $tex[1]->draw_quad (0, 0, $w, $border);
666 $tex[3]->draw_quad (0, $self->{border}, $self->{border}, $ch); 748 $tex[3]->draw_quad (0, $border, $border, $ch);
667 $tex[2]->draw_quad ($w - $self->{border}, $self->{border}, $self->{border}, $ch); 749 $tex[2]->draw_quad ($w - $border, $border, $border, $ch);
668 $tex[4]->draw_quad (0, $h - $self->{border}, $w, $self->{border}); 750 $tex[4]->draw_quad (0, $h - $border, $w, $border);
669 751
670 my $bg = $tex[0]; 752 my $bg = $tex[0];
671 753
672 # TODO: repeat texture not scale 754 # TODO: repeat texture not scale
673 my $rep_x = $cw / $bg->{w}; 755 my $rep_x = $cw / $bg->{w};
676 glColor @{ $self->{bg} }; 758 glColor @{ $self->{bg} };
677 759
678 $bg->{s} = $rep_x; 760 $bg->{s} = $rep_x;
679 $bg->{t} = $rep_y; 761 $bg->{t} = $rep_y;
680 $bg->{wrap_mode} = 1; 762 $bg->{wrap_mode} = 1;
681 $bg->draw_quad ($self->{border}, $self->{border}, $cw, $ch); 763 $bg->draw_quad ($border, $border, $cw, $ch);
682 764
683 glDisable GL_TEXTURE_2D; 765 glDisable GL_TEXTURE_2D;
684 glDisable GL_BLEND; 766 glDisable GL_BLEND;
685 767
768 $self->{title}->draw if $self->{title};
686 $self->child->draw; 769 $self->child->draw;
687} 770}
688 771
689############################################################################# 772#############################################################################
690 773
692 775
693our @ISA = CFClient::UI::Base::; 776our @ISA = CFClient::UI::Base::;
694 777
695use List::Util qw(max sum); 778use List::Util qw(max sum);
696 779
697use SDL::OpenGL; 780use CFClient::OpenGL;
698 781
699sub new { 782sub new {
700 my $class = shift; 783 my $class = shift;
701 784
702 $class->SUPER::new ( 785 $class->SUPER::new (
709 my ($self, $x, $y, $child) = @_; 792 my ($self, $x, $y, $child) = @_;
710 793
711 $child->set_parent ($self); 794 $child->set_parent ($self);
712 $self->{children}[$y][$x] = $child; 795 $self->{children}[$y][$x] = $child;
713 796
714 $self->{w} = $self->{h} = -1; 797 $child->check_size;
715 $self->update;
716} 798}
717 799
718# TODO: move to container class maybe? send childs a signal on removal? 800# TODO: move to container class maybe? send childs a signal on removal?
719sub clear { 801sub clear {
720 my ($self) = @_; 802 my ($self) = @_;
755 (sum @$hs), 837 (sum @$hs),
756 ) 838 )
757} 839}
758 840
759sub size_allocate { 841sub size_allocate {
760 my ($self, $x, $y, $w, $h) = @_; 842 my ($self, $w, $h) = @_;
761
762 $self->_size_allocate ($x, $y, $w, $h) or return;
763 843
764 my ($ws, $hs) = $self->get_wh; 844 my ($ws, $hs) = $self->get_wh;
765 845
766 my $req_w = sum @$ws; 846 my $req_w = sum @$ws;
767 my $req_h = sum @$hs; 847 my $req_h = sum @$hs;
789 869
790 for my $c (0 .. $#$row) { 870 for my $c (0 .. $#$row) {
791 my $col_w = $ws->[$c]; 871 my $col_w = $ws->[$c];
792 872
793 if (my $widget = $row->[$c]) { 873 if (my $widget = $row->[$c]) {
794 $widget->size_allocate ($x, $y, $col_w, $row_h); 874 $widget->configure ($x, $y, $col_w, $row_h);
795 } 875 }
796 876
797 $x += $col_w; 877 $x += $col_w;
798 } 878 }
799 879
844 (List::Util::max map $_->[1], @alloc), 924 (List::Util::max map $_->[1], @alloc),
845 ) 925 )
846} 926}
847 927
848sub size_allocate { 928sub size_allocate {
849 my ($self, $x, $y, $w, $h) = @_; 929 my ($self, $w, $h) = @_;
850
851 $self->_size_allocate ($x, $y, $w, $h);
852 930
853 ($h, $w) = ($w, $h); 931 ($h, $w) = ($w, $h);
854 932
855 my $children = $self->{children}; 933 my $children = $self->{children};
856 934
878 956
879 my $y = 0; 957 my $y = 0;
880 for (0 .. $#$children) { 958 for (0 .. $#$children) {
881 my $child = $children->[$_]; 959 my $child = $children->[$_];
882 my $h = $h[$_]; 960 my $h = $h[$_];
883 $child->size_allocate ($y, 0, $h, $w); 961 $child->configure ($y, 0, $h, $w);
884 962
885 $y += $h; 963 $y += $h;
886 } 964 }
965
966 1
887} 967}
888 968
889############################################################################# 969#############################################################################
890 970
891package CFClient::UI::VBox; 971package CFClient::UI::VBox;
904 (List::Util::sum map $_->[1], @alloc), 984 (List::Util::sum map $_->[1], @alloc),
905 ) 985 )
906} 986}
907 987
908sub size_allocate { 988sub size_allocate {
909 my ($self, $x, $y, $w, $h) = @_; 989 my ($self, $w, $h) = @_;
910
911 $self->_size_allocate ($x, $y, $w, $h);
912 990
913 my $children = $self->{children}; 991 my $children = $self->{children};
914 992
915 my @h = map +($_->size_request)[1], @$children; 993 my @h = map +($_->size_request)[1], @$children;
916 994
934 1012
935 my $y = 0; 1013 my $y = 0;
936 for (0 .. $#$children) { 1014 for (0 .. $#$children) {
937 my $child = $children->[$_]; 1015 my $child = $children->[$_];
938 my $h = $h[$_]; 1016 my $h = $h[$_];
939 $child->size_allocate (0, $y, $w, $h); 1017 $child->configure (0, $y, $w, $h);
940 1018
941 $y += $h; 1019 $y += $h;
942 } 1020 }
1021
1022 1
943} 1023}
944 1024
945############################################################################# 1025#############################################################################
946 1026
947package CFClient::UI::Label; 1027package CFClient::UI::Label;
948 1028
949our @ISA = CFClient::UI::Base::; 1029our @ISA = CFClient::UI::Base::;
950 1030
951use SDL::OpenGL; 1031use CFClient::OpenGL;
952 1032
953sub new { 1033sub new {
954 my ($class, %arg) = @_; 1034 my ($class, %arg) = @_;
955 1035
956 my $self = $class->SUPER::new ( 1036 my $self = $class->SUPER::new (
957 fg => [1, 1, 1], 1037 fg => [1, 1, 1],
958 fontsize => $::FONTSIZE, 1038 fontsize => 1,
959 text => "", 1039 text => "",
960 align => -1, 1040 align => -1,
961 valign => -1, 1041 valign => -1,
962 padding => 2, 1042 padding => 2,
963 layout => new CFClient::Layout, 1043 layout => new CFClient::Layout,
964 %arg 1044 %arg
965 ); 1045 );
966 1046
967 $self->set_text ($self->{text}); 1047 if (exists $self->{template}) {
1048 my $layout = new CFClient::Layout;
1049 $layout->set_text (delete $self->{template});
1050 $self->{template} = $layout;
1051 }
1052
1053 $self->set_text (delete $self->{text}) if exists $self->{text};
1054 $self->set_markup (delete $self->{markup}) if exists $self->{markup};
968 1055
969 $self 1056 $self
970} 1057}
971 1058
972sub escape_text { 1059sub escape_text {
980} 1067}
981 1068
982sub set_text { 1069sub set_text {
983 my ($self, $text) = @_; 1070 my ($self, $text) = @_;
984 1071
985 $self->{text} = $text;
986 $self->{layout}->set_markup ($text); 1072 $self->{layout}->set_text ($text);
987 1073
988 delete $self->{texture}; 1074 delete $self->{texture};
989# $self->{w} = $self->{h} = -1;
990 $self->update; 1075 $self->update;
991} 1076}
992 1077
993sub get_text { 1078sub set_markup {
994 my ($self, $text) = @_; 1079 my ($self, $markup) = @_;
995 1080
996 $self->{text} 1081 $self->{layout}->set_markup ($markup);
1082
1083 delete $self->{texture};
1084 $self->update;
997} 1085}
998 1086
999sub size_request { 1087sub size_request {
1000 my ($self) = @_; 1088 my ($self) = @_;
1001 1089
1002 $self->{layout}->set_width; 1090 $self->{layout}->set_width;
1003 $self->{layout}->set_height ($self->{fontsize}); 1091 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1092
1004 my ($w, $h) = $self->{layout}->size; 1093 my ($w, $h) = $self->{layout}->size;
1094
1095 if (exists $self->{template}) {
1096 $self->{template}->set_height ($self->{fontsize} * $::FONTSIZE);
1097
1098 my ($w2, $h2) = $self->{template}->size;
1099
1100 $w = List::Util::max $w, $w2;
1101 $h = List::Util::max $h, $h2;
1102 }
1005 1103
1006 ( 1104 (
1007 $w + $self->{padding} * 2, 1105 $w + $self->{padding} * 2,
1008 $h + $self->{padding} * 2, 1106 $h + $self->{padding} * 2,
1009 ) 1107 )
1010} 1108}
1011 1109
1012sub size_allocate { 1110sub size_allocate {
1013 my ($self, $x, $y, $w, $h) = @_; 1111 my ($self, $w, $h) = @_;
1014
1015 $self->_size_allocate ($x, $y, $w, $h) or return;
1016 1112
1017 delete $self->{texture}; 1113 delete $self->{texture};
1018} 1114}
1019 1115
1020sub update { 1116sub set_fontsize {
1021 my ($self) = @_; 1117 my ($self, $fontsize) = @_;
1022 1118
1023 delete $self->{texture}; 1119 $self->{fontsize} = $fontsize;
1024 $self->SUPER::update; 1120 $self->check_size;
1025} 1121}
1026 1122
1027sub _draw { 1123sub _draw {
1028 my ($self) = @_; 1124 my ($self) = @_;
1029 1125
1030 my $tex = $self->{texture} ||= do { 1126 my $tex = $self->{texture} ||= do {
1031 $self->{layout}->set_width ($self->{w}); 1127 $self->{layout}->set_width ($self->{w});
1032 $self->{layout}->set_height (List::Util::min $self->{h} - $self->{padding} * 2, $self->{fontsize}); 1128 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize} * $::FONTSIZE);
1033 new_from_layout CFClient::Texture $self->{layout} 1129 new_from_layout CFClient::Texture $self->{layout}
1034 }; 1130 };
1035 1131
1036 glEnable GL_BLEND; 1132 glEnable GL_BLEND;
1037 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 1133 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1038 glEnable GL_TEXTURE_2D; 1134 glEnable GL_TEXTURE_2D;
1039 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1135 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1040 1136
1041 glColor @{$self->{fg}}; 1137 glColor @{$self->{fg}};
1042 1138
1043 my $x = 1139 $self->{ox} = int (
1044 $self->{align} < 0 ? $self->{padding} 1140 $self->{align} < 0 ? $self->{padding}
1045 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding} 1141 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
1046 : ($self->{w} - $tex->{w}) * 0.5; 1142 : ($self->{w} - $tex->{w}) * 0.5
1143 );
1047 1144
1048 my $y = 1145 $self->{oy} = int (
1049 $self->{valign} < 0 ? $self->{padding} 1146 $self->{valign} < 0 ? $self->{padding}
1050 : $self->{valign} > 0 ? $self->{h} - $tex->{h} - $self->{padding} 1147 : $self->{valign} > 0 ? $self->{h} - $tex->{h} - $self->{padding}
1051 : ($self->{h} - $tex->{h}) * 0.5; 1148 : ($self->{h} - $tex->{h}) * 0.5
1149 );
1052 1150
1053 $tex->draw_quad (int $x, int $y); 1151 $tex->draw_quad ($self->{ox}, $self->{oy});
1054 1152
1055 glDisable GL_TEXTURE_2D; 1153 glDisable GL_TEXTURE_2D;
1056 glDisable GL_BLEND; 1154 glDisable GL_BLEND;
1057} 1155}
1058 1156
1059############################################################################# 1157#############################################################################
1060 1158
1061package CFClient::UI::Entry; 1159package CFClient::UI::EntryBase;
1062 1160
1063our @ISA = CFClient::UI::Label::; 1161our @ISA = CFClient::UI::Label::;
1064 1162
1065use SDL; 1163use CFClient::OpenGL;
1066use SDL::OpenGL;
1067 1164
1068sub new { 1165sub new {
1069 my $class = shift; 1166 my $class = shift;
1070 1167
1071 $class->SUPER::new ( 1168 $class->SUPER::new (
1081} 1178}
1082 1179
1083sub _set_text { 1180sub _set_text {
1084 my ($self, $text) = @_; 1181 my ($self, $text) = @_;
1085 1182
1086 my $old_text = $self->{text}; 1183 delete $self->{cur_h};
1184
1185 return if $self->{text} eq $text;
1186
1187 delete $self->{texture};
1087 1188
1088 $self->{last_activity} = $::NOW; 1189 $self->{last_activity} = $::NOW;
1089
1090 $self->{text} = $text; 1190 $self->{text} = $text;
1091 $self->{layout}->set_width ($self->{w});
1092 $self->{layout}->set_height (List::Util::min $self->{h} - $self->{padding} * 2, $self->{fontsize});
1093 1191
1094 $text =~ s/./*/g if $self->{hidden}; 1192 $text =~ s/./*/g if $self->{hidden};
1193 $self->{layout}->set_text ("$text ");
1095 1194
1096 $self->{layout}->set_markup ($self->escape_text ($text) . " "); 1195 $self->emit (changed => $self->{text});
1196}
1097 1197
1098 $text = substr $text, 0, $self->{cursor}; 1198sub get_text {
1099 utf8::encode $text; 1199 $_[0]{text}
1100
1101 @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text);
1102
1103 $self->emit (changed => $self->{text}) # XXX: is this the right place to do this?
1104 if $old_text ne $self->{text};
1105} 1200}
1106 1201
1107sub size_request { 1202sub size_request {
1108 my ($self) = @_; 1203 my ($self) = @_;
1109 1204
1111 1206
1112 ($w + 1, $h) # add 1 for cursor 1207 ($w + 1, $h) # add 1 for cursor
1113} 1208}
1114 1209
1115sub size_allocate { 1210sub size_allocate {
1116 my ($self, $x, $y, $w, $h) = @_; 1211 my ($self, $w, $h) = @_;
1117
1118 $self->SUPER::size_allocate ($x, $y, $w, $h);
1119 1212
1120 $self->_set_text ($self->{text}); 1213 $self->_set_text ($self->{text});
1121} 1214}
1122 1215
1123sub set_text { 1216sub set_text {
1129} 1222}
1130 1223
1131sub key_down { 1224sub key_down {
1132 my ($self, $ev) = @_; 1225 my ($self, $ev) = @_;
1133 1226
1134 my $mod = $ev->key_mod; 1227 my $mod = $ev->{mod};
1135 my $sym = $ev->key_sym; 1228 my $sym = $ev->{sym};
1136
1137 my $uni = $ev->key_unicode; 1229 my $uni = $ev->{unicode};
1138 1230
1139 my $text = $self->get_text; 1231 my $text = $self->get_text;
1140 1232
1141 if ($sym == SDLK_BACKSPACE) { 1233 if ($sym == 8) {
1142 substr $text, --$self->{cursor}, 1, "" if $self->{cursor}; 1234 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
1143 } elsif ($sym == SDLK_DELETE) { 1235 } elsif ($sym == 127) {
1144 substr $text, $self->{cursor}, 1, ""; 1236 substr $text, $self->{cursor}, 1, "";
1145 } elsif ($sym == SDLK_LEFT) { 1237 } elsif ($sym == CFClient::SDLK_LEFT) {
1146 --$self->{cursor} if $self->{cursor}; 1238 --$self->{cursor} if $self->{cursor};
1147 } elsif ($sym == SDLK_RIGHT) { 1239 } elsif ($sym == CFClient::SDLK_RIGHT) {
1148 ++$self->{cursor} if $self->{cursor} < length $self->{text}; 1240 ++$self->{cursor} if $self->{cursor} < length $self->{text};
1149 } elsif ($sym == SDLK_HOME) { 1241 } elsif ($sym == CFClient::SDLK_HOME) {
1150 $self->{cursor} = 0; 1242 $self->{cursor} = 0;
1151 } elsif ($sym == SDLK_END) { 1243 } elsif ($sym == CFClient::SDLK_END) {
1152 $self->{cursor} = length $text; 1244 $self->{cursor} = length $text;
1153 } elsif ($sym == SDLK_ESCAPE) { 1245 } elsif ($sym == 27) {
1154 $self->emit ('escape'); 1246 $self->emit ('escape');
1155 } elsif ($uni) { 1247 } elsif ($uni) {
1156 substr $text, $self->{cursor}++, 0, chr $uni; 1248 substr $text, $self->{cursor}++, 0, chr $uni;
1157 } 1249 }
1158 1250
1213 1305
1214 $self->SUPER::_draw; 1306 $self->SUPER::_draw;
1215 1307
1216 #TODO: force update every cursor change :( 1308 #TODO: force update every cursor change :(
1217 if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) { 1309 if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) {
1310
1311 unless (exists $self->{cur_h}) {
1312 my $text = substr $self->{text}, 0, $self->{cursor};
1313 utf8::encode $text;
1314
1315 @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text)
1316 }
1317
1218 glColor @{$self->{fg}}; 1318 glColor @{$self->{fg}};
1219 glBegin GL_LINES; 1319 glBegin GL_LINES;
1220 glVertex $self->{cur_x}, $self->{cur_y};
1221 glVertex $self->{cur_x}, $self->{cur_y} + $self->{cur_h}; 1320 glVertex $self->{cur_x} + $self->{ox}, $self->{cur_y} + $self->{oy};
1321 glVertex $self->{cur_x} + $self->{ox}, $self->{cur_y} + $self->{oy} + $self->{cur_h};
1222 glEnd; 1322 glEnd;
1223 } 1323 }
1224} 1324}
1225 1325
1226package CFClient::UI::LineEntry; 1326package CFClient::UI::Entry;
1227 1327
1228our @ISA = CFClient::UI::Entry::; 1328our @ISA = CFClient::UI::EntryBase::;
1229 1329
1230use SDL; 1330use CFClient::OpenGL;
1231use SDL::OpenGL;
1232 1331
1233sub key_down { 1332sub key_down {
1234 my ($self, $ev) = @_; 1333 my ($self, $ev) = @_;
1235 1334
1236 my $sym = $ev->key_sym; 1335 my $sym = $ev->{sym};
1237 1336
1238 if ($sym == SDLK_RETURN) { 1337 if ($sym == 13) {
1239 $self->emit (activate => $self->get_text); 1338 $self->emit (activate => $self->get_text);
1240 $self->update; 1339 $self->update;
1241 1340
1242 } else { 1341 } else {
1243 $self->SUPER::key_down ($ev); 1342 $self->SUPER::key_down ($ev);
1249 1348
1250package CFClient::UI::Button; 1349package CFClient::UI::Button;
1251 1350
1252our @ISA = CFClient::UI::Label::; 1351our @ISA = CFClient::UI::Label::;
1253 1352
1254use SDL; 1353use CFClient::OpenGL;
1255use SDL::OpenGL;
1256 1354
1257my @tex = 1355my @tex =
1258 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1356 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1259 qw(b1_button_active.png); 1357 qw(b1_button_active.png);
1260 1358
1261sub new { 1359sub new {
1262 my $class = shift; 1360 my $class = shift;
1263 1361
1264 $class->SUPER::new ( 1362 $class->SUPER::new (
1265 padding => 4, 1363 padding => 4,
1266 fg => [1, 1, 1], 1364 fg => [1, 1, 1],
1267 bg => [1, 1, 1, 0.2], 1365 bg => [1, 1, 1, 0.2],
1268 active_fg => [1, 1, 0], 1366 active_fg => [0, 0, 1],
1269 can_hover => 1, 1367 can_hover => 1,
1368 align => 0,
1369 valign => 0,
1270 @_ 1370 @_
1271 ) 1371 )
1272} 1372}
1273 1373
1274sub button_up { 1374sub button_up {
1308package CFClient::UI::CheckBox; 1408package CFClient::UI::CheckBox;
1309 1409
1310our @ISA = CFClient::UI::DrawBG::; 1410our @ISA = CFClient::UI::DrawBG::;
1311 1411
1312my @tex = 1412my @tex =
1313 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1413 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1314 qw(c1_checkbox_bg.png c1_checkbox_active.png); 1414 qw(c1_checkbox_bg.png c1_checkbox_active.png);
1315 1415
1316use SDL; 1416use CFClient::OpenGL;
1317use SDL::OpenGL;
1318 1417
1319sub new { 1418sub new {
1320 my $class = shift; 1419 my $class = shift;
1321 1420
1322 $class->SUPER::new ( 1421 $class->SUPER::new (
1333 my ($self) = @_; 1432 my ($self) = @_;
1334 1433
1335 ($self->{padding} * 2 + 6) x 2 1434 ($self->{padding} * 2 + 6) x 2
1336} 1435}
1337 1436
1338sub size_allocate {
1339 my ($self, $x, $y, $w, $h) = @_;
1340
1341 $self->_size_allocate ($x, $y, $w, $h);
1342}
1343
1344sub button_down { 1437sub button_down {
1345 my ($self, $ev, $x, $y) = @_; 1438 my ($self, $ev, $x, $y) = @_;
1346 1439
1347 if ($x >= $self->{padding} && $x < $self->{w} - $self->{padding} 1440 if ($x >= $self->{padding} && $x < $self->{w} - $self->{padding}
1348 && $y >= $self->{padding} && $y < $self->{h} - $self->{padding}) { 1441 && $y >= $self->{padding} && $y < $self->{h} - $self->{padding}) {
1374 glDisable GL_BLEND; 1467 glDisable GL_BLEND;
1375} 1468}
1376 1469
1377############################################################################# 1470#############################################################################
1378 1471
1472package CFClient::UI::Image;
1473
1474our @ISA = CFClient::UI::Base::;
1475
1476use CFClient::OpenGL;
1477use Carp qw/confess/;
1478
1479our %loaded_images;
1480
1481sub new {
1482 my $class = shift;
1483
1484 my $self = $class->SUPER::new (@_);
1485
1486 $self->{image} or confess "Image has 'image' not set. This is a fatal error!";
1487
1488 $loaded_images{$self->{image}} ||=
1489 new_from_file CFClient::Texture CFClient::find_rcfile $self->{image}, mipmap => 1;
1490
1491 my $tex = $self->{tex} = $loaded_images{$self->{image}};
1492
1493 Scalar::Util::weaken $loaded_images{$self->{image}};
1494
1495 $self->{aspect} = $tex->{w} / $tex->{h};
1496
1497 $self
1498}
1499
1500sub size_request {
1501 my ($self) = @_;
1502
1503 ($self->{tex}->{w}, $self->{tex}->{h})
1504}
1505
1506sub _draw {
1507 my ($self) = @_;
1508
1509 my $tex = $self->{tex};
1510
1511 my ($w, $h) = ($self->{w}, $self->{h});
1512
1513 if ($self->{rot90}) {
1514 glRotate 90, 0, 0, 1;
1515 glTranslate 0, -$self->{w}, 0;
1516
1517 ($w, $h) = ($h, $w);
1518 }
1519
1520 glEnable GL_BLEND;
1521 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1522 glEnable GL_TEXTURE_2D;
1523 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1524
1525 $tex->draw_quad (0, 0, $w, $h);
1526
1527 glDisable GL_BLEND;
1528 glDisable GL_TEXTURE_2D;
1529}
1530
1531#############################################################################
1532
1533package CFClient::UI::VGauge;
1534
1535our @ISA = CFClient::UI::Base::;
1536
1537use CFClient::OpenGL;
1538
1539my %tex = (
1540 food => [
1541 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1542 qw/g1_food_gauge_empty.png g1_food_gauge_full.png/
1543 ],
1544 grace => [
1545 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1546 qw/g1_grace_gauge_empty.png g1_grace_gauge_full.png/
1547 ],
1548 hp => [
1549 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1550 qw/g1_hp_gauge_empty.png g1_hp_gauge_full.png/
1551 ],
1552 mana => [
1553 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1554 qw/g1_mana_gauge_empty.png g1_mana_gauge_full.png/
1555 ],
1556);
1557
1558# eg. VGauge->new (gauge => 'food'), default gauge: food
1559sub new {
1560 my $class = shift;
1561
1562 my $self = $class->SUPER::new (
1563 type => 'food',
1564 @_
1565 );
1566
1567 $self->{aspect} = $tex{$self->{type}}[0]{w} / $tex{$self->{type}}[0]{h};
1568
1569 $self
1570}
1571
1572sub size_request {
1573 my ($self) = @_;
1574
1575 #my $tex = $tex{$self->{type}}[0];
1576 #@$tex{qw(w h)}
1577 (0, 0)
1578}
1579
1580sub set_max {
1581 my ($self, $max) = @_;
1582
1583 $self->{max_val} = $max;
1584}
1585
1586sub set_value {
1587 my ($self, $val, $max) = @_;
1588
1589 $self->set_max ($max)
1590 if defined $max;
1591
1592 $max = $self->{max_val};
1593 $self->{val} = $val;
1594
1595 $self->update;
1596}
1597
1598sub _draw {
1599 my ($self) = @_;
1600
1601 my $tex = $tex{$self->{type}};
1602
1603 my ($w, $h) = ($self->{w}, $self->{h});
1604
1605 if ($self->{vertical}) {
1606 glRotate 90, 0, 0, 1;
1607 glTranslate 0, -$self->{w}, 0;
1608
1609 ($w, $h) = ($h, $w);
1610 }
1611
1612 my $ycut = $self->{val} / ($self->{max_val} || 1);
1613 $ycut = 1 if $self->{val} > $self->{max_val};
1614
1615 my $t1 = $tex->[0];
1616 my $t2 = $tex->[1];
1617
1618 glEnable GL_BLEND;
1619 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1620 glEnable GL_TEXTURE_2D;
1621 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1622
1623 my $h1 = $self->{h} - $ycut * $self->{h};
1624 my $h2 = $ycut * $self->{h};
1625
1626 glBindTexture GL_TEXTURE_2D, $t1->{name};
1627 glBegin GL_QUADS;
1628 glTexCoord 0 , 0; glVertex 0 , 0;
1629 glTexCoord 0 , $t1->{t} * (1 - $ycut); glVertex 0 , $h1;
1630 glTexCoord $t1->{s}, $t1->{t} * (1 - $ycut); glVertex $w, $h1;
1631 glTexCoord $t1->{s}, 0; glVertex $w, 0;
1632 glEnd;
1633
1634 glBindTexture GL_TEXTURE_2D, $t2->{name};
1635 glBegin GL_QUADS;
1636 glTexCoord 0 , $t2->{t} * (1 - $ycut); glVertex 0 , $h1;
1637 glTexCoord 0 , $t2->{t}; glVertex 0 , $h1 + $h2;
1638 glTexCoord $t2->{s}, $t2->{t}; glVertex $w, $h1 + $h2;
1639 glTexCoord $t2->{s}, $t2->{t} * (1 - $ycut); glVertex $w, $h1;
1640 glEnd;
1641
1642 glDisable GL_BLEND;
1643 glDisable GL_TEXTURE_2D;
1644}
1645
1646#############################################################################
1647
1648package CFClient::UI::Gauge;
1649
1650our @ISA = CFClient::UI::VBox::;
1651
1652sub new {
1653 my ($class, %arg) = shift;
1654
1655 my $self = $class->SUPER::new (
1656 @_,
1657 );
1658
1659 $self->add ($self->{value} = new CFClient::UI::Label valign => 1, align => 0, template => "999");
1660 $self->add ($self->{gauge} = new CFClient::UI::VGauge type => $self->{type}, expand => 1);
1661 $self->add ($self->{max} = new CFClient::UI::Label valign => 1, align => 0, template => "999");
1662
1663 $self
1664}
1665
1666sub set_fontsize {
1667 my ($self, $fsize) = @_;
1668
1669 $self->{value}->set_fontsize ($fsize);
1670 $self->{max} ->set_fontsize ($fsize);
1671}
1672
1673sub set_value {
1674 my ($self, $val, $max) = @_;
1675
1676 $self->set_max ($max)
1677 if defined $max;
1678
1679 $self->{gauge}->set_value ($val, $max);
1680 $self->{value}->set_text ($val);
1681}
1682
1683sub set_max {
1684 my ($self, $max) = @_;
1685
1686 $self->{gauge}->set_max ($max);
1687 $self->{max}->set_text ($max);
1688}
1689
1690#############################################################################
1691
1379package CFClient::UI::Slider; 1692package CFClient::UI::Slider;
1380 1693
1381use strict; 1694use strict;
1382 1695
1383use SDL::OpenGL; 1696use CFClient::OpenGL;
1384 1697
1385our @ISA = CFClient::UI::DrawBG::; 1698our @ISA = CFClient::UI::DrawBG::;
1386 1699
1387my @tex = 1700my @tex =
1388 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1701 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1398 # TODO: calculations are off 1711 # TODO: calculations are off
1399 my $self = $class->SUPER::new ( 1712 my $self = $class->SUPER::new (
1400 fg => [1, 1, 1], 1713 fg => [1, 1, 1],
1401 active_fg => [0, 0, 0], 1714 active_fg => [0, 0, 0],
1402 range => [0, 0, 100, 10], 1715 range => [0, 0, 100, 10],
1403 req_w => 40, 1716 req_w => 20,
1404 req_h => 13, 1717 req_h => 20,
1405 vertical => 0, 1718 vertical => 0,
1406 can_hover => 1, 1719 can_hover => 1,
1407 inner_pad => 5, 1720 inner_pad => 5,
1408 @_ 1721 @_
1409 ); 1722 );
1513 1826
1514package CFClient::UI::TextView; 1827package CFClient::UI::TextView;
1515 1828
1516our @ISA = CFClient::UI::HBox::; 1829our @ISA = CFClient::UI::HBox::;
1517 1830
1518use SDL::OpenGL; 1831use CFClient::OpenGL;
1519 1832
1520sub new { 1833sub new {
1521 my $class = shift; 1834 my $class = shift;
1522 1835
1523 my $self = $class->SUPER::new ( 1836 my $self = $class->SUPER::new (
1524 req_w => $::WIDTH / 6,
1525 req_h => $::HEIGHT / 6,
1526 fontsize => $::FONTSIZE, 1837 fontsize => 1,
1527 @_, 1838 @_,
1528 1839
1529 layout => (new CFClient::Layout), 1840 layout => (new CFClient::Layout),
1530 par => [], 1841 par => [],
1531 height => 0, 1842 height => 0,
1552sub text_height { 1863sub text_height {
1553 my ($self, $text) = @_; 1864 my ($self, $text) = @_;
1554 1865
1555 my $layout = $self->{layout}; 1866 my $layout = $self->{layout};
1556 1867
1557 $layout->set_height ($self->{fontsize}); 1868 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
1558 $layout->set_width ($self->{w}); 1869 $layout->set_width ($self->{w});
1559 $layout->set_text ($text); 1870 $layout->set_text ($text);
1560 1871
1561 ($layout->size)[1] 1872 ($layout->size)[1]
1562} 1873}
1566 1877
1567 $self->{need_reflow}++; 1878 $self->{need_reflow}++;
1568 $self->update; 1879 $self->update;
1569} 1880}
1570 1881
1571sub size_request {
1572 my ($self) = @_;
1573
1574 ($self->{req_w}, $self->{req_h})
1575}
1576
1577sub size_allocate { 1882sub size_allocate {
1578 my ($self, $x, $y, $w, $h) = @_; 1883 my ($self, $w, $h) = @_;
1579 1884
1580 $self->SUPER::size_allocate ($x, $y, $w, $h); 1885 $self->SUPER::size_allocate ($w, $h);
1581 1886
1582 $self->{layout}->set_height ($self->{fontsize}); 1887 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1583 $self->{layout}->set_width ($self->{w}); 1888 $self->{layout}->set_width ($self->{children}[0]{w});
1584 1889
1585 $self->reflow; 1890 $self->reflow;
1586} 1891}
1587 1892
1588sub add_paragraph { 1893sub add_paragraph {
1675 1980
1676} 1981}
1677 1982
1678############################################################################# 1983#############################################################################
1679 1984
1680package CFClient::UI::MapWidget;
1681
1682use strict;
1683
1684use List::Util qw(min max);
1685
1686use SDL;
1687use SDL::OpenGL;
1688
1689our @ISA = CFClient::UI::Base::;
1690
1691sub new {
1692 my $class = shift;
1693
1694 $class->SUPER::new (
1695 z => -1,
1696 can_focus => 1,
1697 list => (glGenLists 1),
1698 @_
1699 )
1700}
1701
1702sub key_down {
1703 print "MAPKEYDOWN\n";
1704}
1705
1706sub key_up {
1707}
1708
1709sub button_down {
1710 my ($self, $ev, $x, $y) = @_;
1711
1712 $self->focus_in;
1713
1714 if ($ev->button == 2) {
1715 my ($ox, $oy) = ($ev->button_x, $ev->button_y);
1716 my ($bw, $bh) = ($::CFG->{map_shift_x}, $::CFG->{map_shift_y});
1717
1718 $self->{motion} = sub {
1719 my ($ev, $x, $y) = @_;
1720
1721 ($x, $y) = ($ev->motion_x, $ev->motion_y);
1722
1723 $::CFG->{map_shift_x} = $bw + $x - $ox;
1724 $::CFG->{map_shift_y} = $bh + $y - $oy;
1725
1726 $self->update;
1727 };
1728 }
1729}
1730
1731sub button_up {
1732 my ($self, $ev, $x, $y) = @_;
1733
1734 delete $self->{motion};
1735}
1736
1737sub mouse_motion {
1738 my ($self, $ev, $x, $y) = @_;
1739
1740 $self->{motion}->($ev, $x, $y) if $self->{motion};
1741}
1742
1743sub size_request {
1744 (
1745 1 + 32 * int $::WIDTH / 32,
1746 1 + 32 * int $::HEIGHT / 32,
1747 )
1748}
1749
1750sub update {
1751 my ($self) = @_;
1752
1753 $self->{need_update} = 1;
1754 $self->SUPER::update;
1755}
1756
1757sub draw {
1758 my ($self) = @_;
1759
1760 if (delete $self->{need_update}) {
1761 glNewList $self->{list}, GL_COMPILE;
1762
1763 if ($::MAP) {
1764 my $sw = int $::WIDTH / 32;
1765 my $sh = int $::HEIGHT / 32;
1766
1767 my $sx = $::CFG->{map_shift_x}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32;
1768 my $sy = $::CFG->{map_shift_y}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32;
1769
1770 glTranslate $sx0 - 32, $sy0 - 32, 0;
1771
1772 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1);
1773
1774 if ($::CFG->{fow_enable}) {
1775 if ($::CFG->{fow_smooth}) { # smooth fog of war
1776 glConvolutionParameter GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER;
1777 glConvolutionFilter2D
1778 GL_CONVOLUTION_2D,
1779 GL_ALPHA,
1780 3, 3,
1781 GL_ALPHA, GL_FLOAT,
1782 pack "f*",
1783 0.1, 0.1, 0.1,
1784 0.1, 0.2, 0.1,
1785 0.1, 0.1, 0.1,
1786 ;
1787 glEnable GL_CONVOLUTION_2D;
1788 }
1789
1790 $self->{fow_texture} = new CFClient::Texture
1791 w => $w,
1792 h => $h,
1793 data => $data,
1794 internalformat => GL_ALPHA,
1795 format => GL_ALPHA;
1796
1797 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
1798
1799 glEnable GL_BLEND;
1800 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1801 glEnable GL_TEXTURE_2D;
1802 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
1803
1804 glColor +($::CFG->{fow_intensity}) x 3, 1;
1805 $self->{fow_texture}->draw_quad (0, 0, $w * 32, $h * 32);
1806
1807 glDisable GL_TEXTURE_2D;
1808 glDisable GL_BLEND;
1809 }
1810
1811 # HACK BEGIN
1812 {
1813 glTranslate -($sx0 - 32), -($sy0 - 32), 0;#remove
1814 my ($w, $h) = (250, 250);
1815
1816 glEnable GL_BLEND;
1817 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1818 glEnable GL_TEXTURE_2D;
1819 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1820
1821 $self->{mapmap_texture} =
1822 new CFClient::Texture
1823 w => $w,
1824 h => $h,
1825 data => $::MAP->mapmap ($w, $h),
1826 type => GL_UNSIGNED_INT_8_8_8_8_REV;
1827
1828 $self->{mapmap_texture}->draw_quad (100, 100);
1829
1830 glDisable GL_TEXTURE_2D;
1831 glDisable GL_BLEND;
1832 }
1833 # HACK END
1834 }
1835
1836 glEndList;
1837 }
1838
1839 glPushMatrix;
1840 glCallList $self->{list};
1841 glPopMatrix;
1842
1843 if ($FOCUS != $self) {
1844 glColor 64/255, 64/255, 64/255;
1845 glLogicOp GL_AND;
1846 glEnable GL_COLOR_LOGIC_OP;
1847 glBegin GL_QUADS;
1848 glVertex 0, 0;
1849 glVertex 0, $::HEIGHT;
1850 glVertex $::WIDTH, $::HEIGHT;
1851 glVertex $::WIDTH, 0;
1852 glEnd;
1853 glDisable GL_COLOR_LOGIC_OP;
1854 }
1855}
1856
1857my %DIR = (
1858 SDLK_KP8, [1, "north"],
1859 SDLK_KP9, [2, "northeast"],
1860 SDLK_KP6, [3, "east"],
1861 SDLK_KP3, [4, "southeast"],
1862 SDLK_KP2, [5, "south"],
1863 SDLK_KP1, [6, "southwest"],
1864 SDLK_KP4, [7, "west"],
1865 SDLK_KP7, [8, "northwest"],
1866
1867 SDLK_UP, [1, "north"],
1868 SDLK_RIGHT, [3, "east"],
1869 SDLK_DOWN, [5, "south"],
1870 SDLK_LEFT, [7, "west"],
1871);
1872
1873sub key_down {
1874 my ($self, $ev) = @_;
1875
1876 my $mod = $ev->key_mod;
1877 my $sym = $ev->key_sym;
1878
1879 if ($sym == SDLK_KP5) {
1880 $::CONN->user_send ("command stay fire");
1881 } elsif ($sym == SDLK_a) {
1882 $::CONN->user_send ("command apply");
1883 } elsif ($sym == SDLK_QUOTE) {
1884 $self->emit ('activate_console');
1885 } elsif ($sym == SDLK_SLASH) {
1886 $self->emit ('activate_console' => '/');
1887 } elsif (exists $DIR{$sym}) {
1888 if ($mod & KMOD_SHIFT) {
1889 $self->{shft}++;
1890 $::CONN->user_send ("command fire $DIR{$sym}[0]");
1891 } elsif ($mod & KMOD_CTRL) {
1892 $self->{ctrl}++;
1893 $::CONN->user_send ("command run $DIR{$sym}[0]");
1894 } else {
1895 $::CONN->user_send ("command $DIR{$sym}[1]");
1896 }
1897 }
1898}
1899
1900sub key_up {
1901 my ($self, $ev) = @_;
1902
1903 my $mod = $ev->key_mod;
1904 my $sym = $ev->key_sym;
1905
1906 if (!($mod & KMOD_SHIFT) && delete $self->{shft}) {
1907 $::CONN->user_send ("command fire_stop");
1908 }
1909 if (!($mod & KMOD_CTRL ) && delete $self->{ctrl}) {
1910 $::CONN->user_send ("command run_stop");
1911 }
1912}
1913
1914#############################################################################
1915
1916package CFClient::UI::Animator; 1985package CFClient::UI::Animator;
1917 1986
1918use SDL::OpenGL; 1987use CFClient::OpenGL;
1919 1988
1920our @ISA = CFClient::UI::Bin::; 1989our @ISA = CFClient::UI::Bin::;
1921 1990
1922sub moveto { 1991sub moveto {
1923 my ($self, $x, $y) = @_; 1992 my ($self, $x, $y) = @_;
1996 2065
1997package CFClient::UI::Root; 2066package CFClient::UI::Root;
1998 2067
1999our @ISA = CFClient::UI::Container::; 2068our @ISA = CFClient::UI::Container::;
2000 2069
2001use SDL::OpenGL; 2070use CFClient::OpenGL;
2071
2072sub check_size {
2073 my ($self) = @_;
2074
2075 $self->configure (0, 0, $::WITH, $::HEIGHT);
2076}
2002 2077
2003sub size_request { 2078sub size_request {
2004 ($::WIDTH, $::HEIGHT) 2079 ($::WIDTH, $::HEIGHT)
2005} 2080}
2006 2081
2007sub size_allocate { 2082sub configure {
2008 my ($self, $x, $y, $w, $h) = @_; 2083 my ($self, $x, $y, $w, $h) = @_;
2009 2084
2010 $self->_size_allocate ($x, $y, $w, $h); 2085 $self->SUPER::configure ($x, $y, $w, $h);
2011 2086
2012 $_->size_allocate ($_->{x}, $_->{y}, $_->size_request) 2087 $_->configure ($_->{x}, $_->{y}, $_->size_request)
2013 for @{$self->{children}}; 2088 for @{$self->{children}};
2014} 2089}
2015 2090
2016sub _topleft { 2091sub _topleft {
2017 my ($self, $x, $y) = @_; 2092 my ($self, $x, $y) = @_;
2020} 2095}
2021 2096
2022sub update { 2097sub update {
2023 my ($self) = @_; 2098 my ($self) = @_;
2024 2099
2025 $self->size_allocate (0, 0, $::WIDTH, $::HEIGHT); 2100 $self->check_size;
2026 ::refresh (); 2101 ::refresh ();
2027} 2102}
2028 2103
2029sub add { 2104sub add {
2030 my ($self, $widget) = @_; 2105 my ($self, $child) = @_;
2031 2106
2107 # integerize window positions
2108 $child->{x} = int $child->{x};
2109 $child->{y} = int $child->{y};
2110
2032 $self->SUPER::add ($widget); 2111 $self->SUPER::add ($child);
2033
2034 $widget->size_allocate (int $widget->{x}, int $widget->{y}, $widget->size_request);
2035} 2112}
2036 2113
2037sub on_refresh { 2114sub on_refresh {
2038 my ($self, $id, $cb) = @_; 2115 my ($self, $id, $cb) = @_;
2039 2116

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines