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.124 by elmex, Mon Apr 17 20:29:37 2006 UTC vs.
Revision 1.143 by root, Thu Apr 20 21:28:51 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}
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 abtract";
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 += ($w - $w2) * 0.5;
158 $y += ($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) = @_;
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 $_ }
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->{xxx}++ if $self->{text} eq "Client Setup" && $self->{align};#d# 1047 if (exists $self->{template}) {
1048 my $layout = new CFClient::Layout;
1049 $layout->set_text (delete $self->{template});
1050 $self->{template} = $layout;
1051 }
968 1052
969 $self->set_text (delete $self->{text}) if exists $self->{text}; 1053 $self->set_text (delete $self->{text}) if exists $self->{text};
970 $self->set_markup (delete $self->{markup}) if exists $self->{markup}; 1054 $self->set_markup (delete $self->{markup}) if exists $self->{markup};
971 1055
972 $self 1056 $self
1002 1086
1003sub size_request { 1087sub size_request {
1004 my ($self) = @_; 1088 my ($self) = @_;
1005 1089
1006 $self->{layout}->set_width; 1090 $self->{layout}->set_width;
1007 $self->{layout}->set_height ($self->{fontsize}); 1091 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1008 1092
1009 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 }
1010 1103
1011 ( 1104 (
1012 $w + $self->{padding} * 2, 1105 $w + $self->{padding} * 2,
1013 $h + $self->{padding} * 2, 1106 $h + $self->{padding} * 2,
1014 ) 1107 )
1015} 1108}
1016 1109
1017sub size_allocate { 1110sub size_allocate {
1018 my ($self, $x, $y, $w, $h) = @_; 1111 my ($self, $w, $h) = @_;
1019
1020 $self->_size_allocate ($x, $y, $w, $h) or return;
1021 1112
1022 delete $self->{texture}; 1113 delete $self->{texture};
1023}
1024
1025sub update {
1026 my ($self) = @_;
1027
1028 delete $self->{texture};
1029 $self->SUPER::update;
1030} 1114}
1031 1115
1032sub _draw { 1116sub _draw {
1033 my ($self) = @_; 1117 my ($self) = @_;
1034 1118
1035 my $tex = $self->{texture} ||= do { 1119 my $tex = $self->{texture} ||= do {
1036 $self->{layout}->set_width ($self->{w}); 1120 $self->{layout}->set_width ($self->{w});
1037 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize}); 1121 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize} * $::FONTSIZE);
1038 new_from_layout CFClient::Texture $self->{layout} 1122 new_from_layout CFClient::Texture $self->{layout}
1039 }; 1123 };
1040 1124
1041 glEnable GL_BLEND; 1125 glEnable GL_BLEND;
1042 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 1126 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1067 1151
1068package CFClient::UI::EntryBase; 1152package CFClient::UI::EntryBase;
1069 1153
1070our @ISA = CFClient::UI::Label::; 1154our @ISA = CFClient::UI::Label::;
1071 1155
1072use SDL; 1156use CFClient::OpenGL;
1073use SDL::OpenGL;
1074 1157
1075sub new { 1158sub new {
1076 my $class = shift; 1159 my $class = shift;
1077 1160
1078 $class->SUPER::new ( 1161 $class->SUPER::new (
1092 1175
1093 delete $self->{cur_h}; 1176 delete $self->{cur_h};
1094 1177
1095 return if $self->{text} eq $text; 1178 return if $self->{text} eq $text;
1096 1179
1180 delete $self->{texture};
1181
1097 $self->{last_activity} = $::NOW; 1182 $self->{last_activity} = $::NOW;
1098 $self->{text} = $text; 1183 $self->{text} = $text;
1099 1184
1100 $text =~ s/./*/g if $self->{hidden}; 1185 $text =~ s/./*/g if $self->{hidden};
1101 $self->{layout}->set_text ("$text "); 1186 $self->{layout}->set_text ("$text ");
1114 1199
1115 ($w + 1, $h) # add 1 for cursor 1200 ($w + 1, $h) # add 1 for cursor
1116} 1201}
1117 1202
1118sub size_allocate { 1203sub size_allocate {
1119 my ($self, $x, $y, $w, $h) = @_; 1204 my ($self, $w, $h) = @_;
1120
1121 $self->SUPER::size_allocate ($x, $y, $w, $h);
1122 1205
1123 $self->_set_text ($self->{text}); 1206 $self->_set_text ($self->{text});
1124} 1207}
1125 1208
1126sub set_text { 1209sub set_text {
1132} 1215}
1133 1216
1134sub key_down { 1217sub key_down {
1135 my ($self, $ev) = @_; 1218 my ($self, $ev) = @_;
1136 1219
1137 my $mod = $ev->key_mod; 1220 my $mod = $ev->{mod};
1138 my $sym = $ev->key_sym; 1221 my $sym = $ev->{sym};
1139
1140 my $uni = $ev->key_unicode; 1222 my $uni = $ev->{unicode};
1141 1223
1142 my $text = $self->get_text; 1224 my $text = $self->get_text;
1143 1225
1144 if ($sym == SDLK_BACKSPACE) { 1226 if ($sym == 8) {
1145 substr $text, --$self->{cursor}, 1, "" if $self->{cursor}; 1227 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
1146 } elsif ($sym == SDLK_DELETE) { 1228 } elsif ($sym == 127) {
1147 substr $text, $self->{cursor}, 1, ""; 1229 substr $text, $self->{cursor}, 1, "";
1148 } elsif ($sym == SDLK_LEFT) { 1230 } elsif ($sym == CFClient::SDLK_LEFT) {
1149 --$self->{cursor} if $self->{cursor}; 1231 --$self->{cursor} if $self->{cursor};
1150 } elsif ($sym == SDLK_RIGHT) { 1232 } elsif ($sym == CFClient::SDLK_RIGHT) {
1151 ++$self->{cursor} if $self->{cursor} < length $self->{text}; 1233 ++$self->{cursor} if $self->{cursor} < length $self->{text};
1152 } elsif ($sym == SDLK_HOME) { 1234 } elsif ($sym == CFClient::SDLK_HOME) {
1153 $self->{cursor} = 0; 1235 $self->{cursor} = 0;
1154 } elsif ($sym == SDLK_END) { 1236 } elsif ($sym == CFClient::SDLK_END) {
1155 $self->{cursor} = length $text; 1237 $self->{cursor} = length $text;
1156 } elsif ($sym == SDLK_ESCAPE) { 1238 } elsif ($sym == 27) {
1157 $self->emit ('escape'); 1239 $self->emit ('escape');
1158 } elsif ($uni) { 1240 } elsif ($uni) {
1159 substr $text, $self->{cursor}++, 0, chr $uni; 1241 substr $text, $self->{cursor}++, 0, chr $uni;
1160 } 1242 }
1161 1243
1236 1318
1237package CFClient::UI::Entry; 1319package CFClient::UI::Entry;
1238 1320
1239our @ISA = CFClient::UI::EntryBase::; 1321our @ISA = CFClient::UI::EntryBase::;
1240 1322
1241use SDL; 1323use CFClient::OpenGL;
1242use SDL::OpenGL;
1243 1324
1244sub key_down { 1325sub key_down {
1245 my ($self, $ev) = @_; 1326 my ($self, $ev) = @_;
1246 1327
1247 my $sym = $ev->key_sym; 1328 my $sym = $ev->{sym};
1248 1329
1249 if ($sym == SDLK_RETURN) { 1330 if ($sym == 13) {
1250 $self->emit (activate => $self->get_text); 1331 $self->emit (activate => $self->get_text);
1251 $self->update; 1332 $self->update;
1252 1333
1253 } else { 1334 } else {
1254 $self->SUPER::key_down ($ev); 1335 $self->SUPER::key_down ($ev);
1260 1341
1261package CFClient::UI::Button; 1342package CFClient::UI::Button;
1262 1343
1263our @ISA = CFClient::UI::Label::; 1344our @ISA = CFClient::UI::Label::;
1264 1345
1265use SDL; 1346use CFClient::OpenGL;
1266use SDL::OpenGL;
1267 1347
1268my @tex = 1348my @tex =
1269 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1349 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1270 qw(b1_button_active.png); 1350 qw(b1_button_active.png);
1271 1351
1276 padding => 4, 1356 padding => 4,
1277 fg => [1, 1, 1], 1357 fg => [1, 1, 1],
1278 bg => [1, 1, 1, 0.2], 1358 bg => [1, 1, 1, 0.2],
1279 active_fg => [0, 0, 1], 1359 active_fg => [0, 0, 1],
1280 can_hover => 1, 1360 can_hover => 1,
1361 align => 0,
1362 valign => 0,
1281 @_ 1363 @_
1282 ) 1364 )
1283} 1365}
1284 1366
1285sub button_up { 1367sub button_up {
1322 1404
1323my @tex = 1405my @tex =
1324 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1406 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1325 qw(c1_checkbox_bg.png c1_checkbox_active.png); 1407 qw(c1_checkbox_bg.png c1_checkbox_active.png);
1326 1408
1327use SDL; 1409use CFClient::OpenGL;
1328use SDL::OpenGL;
1329 1410
1330sub new { 1411sub new {
1331 my $class = shift; 1412 my $class = shift;
1332 1413
1333 $class->SUPER::new ( 1414 $class->SUPER::new (
1344 my ($self) = @_; 1425 my ($self) = @_;
1345 1426
1346 ($self->{padding} * 2 + 6) x 2 1427 ($self->{padding} * 2 + 6) x 2
1347} 1428}
1348 1429
1349sub size_allocate {
1350 my ($self, $x, $y, $w, $h) = @_;
1351
1352 $self->_size_allocate ($x, $y, $w, $h);
1353}
1354
1355sub button_down { 1430sub button_down {
1356 my ($self, $ev, $x, $y) = @_; 1431 my ($self, $ev, $x, $y) = @_;
1357 1432
1358 if ($x >= $self->{padding} && $x < $self->{w} - $self->{padding} 1433 if ($x >= $self->{padding} && $x < $self->{w} - $self->{padding}
1359 && $y >= $self->{padding} && $y < $self->{h} - $self->{padding}) { 1434 && $y >= $self->{padding} && $y < $self->{h} - $self->{padding}) {
1389 1464
1390package CFClient::UI::VGauge; 1465package CFClient::UI::VGauge;
1391 1466
1392our @ISA = CFClient::UI::Base::; 1467our @ISA = CFClient::UI::Base::;
1393 1468
1394use SDL::OpenGL; 1469use CFClient::OpenGL;
1395 1470
1396my %tex = ( 1471my %tex = (
1397 food => [ 1472 food => [
1398 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1473 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1399 qw/g1_food_gauge_empty.png g1_food_gauge_full.png/ 1474 qw/g1_food_gauge_empty.png g1_food_gauge_full.png/
1414 1489
1415# eg. VGauge->new (gauge => 'food'), default gauge: food 1490# eg. VGauge->new (gauge => 'food'), default gauge: food
1416sub new { 1491sub new {
1417 my $class = shift; 1492 my $class = shift;
1418 1493
1419 my $self = $class->SUPER::new (gauge => 'food', @_); 1494 my $self = $class->SUPER::new (
1495 type => 'food',
1496 @_
1497 );
1498
1499 $self->{aspect} = $tex{$self->{type}}[0]{w} / $tex{$self->{type}}[0]{h};
1420 1500
1421 $self 1501 $self
1422} 1502}
1423 1503
1424sub size_request { 1504sub size_request {
1425 my ($self) = @_; 1505 my ($self) = @_;
1426 1506
1427 ($self->{w}, $self->{h}) 1507 #my $tex = $tex{$self->{type}}[0];
1508 #@$tex{qw(w h)}
1509 (0, 0)
1428} 1510}
1429 1511
1430sub set_max { 1512sub set_max {
1431 my ($self, $max) = @_; 1513 my ($self, $max) = @_;
1514
1432 $self->{max_val} = $max; 1515 $self->{max_val} = $max;
1433} 1516}
1434 1517
1435sub set_value { 1518sub set_value {
1436 my ($self, $val, $max) = @_; 1519 my ($self, $val, $max) = @_;
1445} 1528}
1446 1529
1447sub _draw { 1530sub _draw {
1448 my ($self) = @_; 1531 my ($self) = @_;
1449 1532
1450 my $tex = $tex{$self->{gauge}}; 1533 my $tex = $tex{$self->{type}};
1451 1534
1452 my ($w, $h) = ($self->{w}, $self->{h}); 1535 my ($w, $h) = ($self->{w}, $self->{h});
1536
1537 if ($self->{vertical}) {
1538 glRotate 90, 0, 0, 1;
1539 glTranslate 0, -$self->{w}, 0;
1540
1541 ($w, $h) = ($h, $w);
1542 }
1453 1543
1454 my $ycut = $self->{val} / ($self->{max_val} || 1); 1544 my $ycut = $self->{val} / ($self->{max_val} || 1);
1455 $ycut = 1 if $self->{val} > $self->{max_val}; 1545 $ycut = 1 if $self->{val} > $self->{max_val};
1456 1546
1457 my $t1 = $tex->[0]; 1547 my $t1 = $tex->[0];
1463 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1553 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1464 1554
1465 my $h1 = $self->{h} - $ycut * $self->{h}; 1555 my $h1 = $self->{h} - $ycut * $self->{h};
1466 my $h2 = $ycut * $self->{h}; 1556 my $h2 = $ycut * $self->{h};
1467 1557
1468 my $yp = 0;
1469
1470 glBindTexture (GL_TEXTURE_2D, $t1->{name}); 1558 glBindTexture GL_TEXTURE_2D, $t1->{name};
1471 glBegin (GL_QUADS); 1559 glBegin GL_QUADS;
1472 glTexCoord (0, 0); glVertex (0 , $yp); 1560 glTexCoord 0 , 0; glVertex 0 , 0;
1473 glTexCoord (0, (1 - $ycut)); glVertex (0 , $yp + $h1); 1561 glTexCoord 0 , $t1->{t} * (1 - $ycut); glVertex 0 , $h1;
1474 glTexCoord (1, (1 - $ycut)); glVertex (0 + $w, $yp + $h1); 1562 glTexCoord $t1->{s}, $t1->{t} * (1 - $ycut); glVertex $w, $h1;
1475 glTexCoord (1, 0); glVertex (0 + $w, $yp); 1563 glTexCoord $t1->{s}, 0; glVertex $w, 0;
1476 glEnd (); 1564 glEnd;
1477 1565
1478 $yp += $h1;
1479
1480 glBindTexture (GL_TEXTURE_2D, $t2->{name}); 1566 glBindTexture GL_TEXTURE_2D, $t2->{name};
1481 glBegin (GL_QUADS); 1567 glBegin GL_QUADS;
1482 glTexCoord (0, (1 - $ycut)); glVertex (0 , $yp); 1568 glTexCoord 0 , $t2->{t} * (1 - $ycut); glVertex 0 , $h1;
1483 glTexCoord (0, 1); glVertex (0 , $yp + $h2); 1569 glTexCoord 0 , $t2->{t}; glVertex 0 , $h1 + $h2;
1484 glTexCoord (1, 1); glVertex (0 + $w, $yp + $h2); 1570 glTexCoord $t2->{s}, $t2->{t}; glVertex $w, $h1 + $h2;
1485 glTexCoord (1, (1 - $ycut)); glVertex (0 + $w, $yp); 1571 glTexCoord $t2->{s}, $t2->{t} * (1 - $ycut); glVertex $w, $h1;
1486 glEnd (); 1572 glEnd;
1487 1573
1488 glDisable GL_BLEND; 1574 glDisable GL_BLEND;
1489 glDisable GL_TEXTURE_2D; 1575 glDisable GL_TEXTURE_2D;
1490} 1576}
1491 1577
1492############################################################################# 1578#############################################################################
1493 1579
1580package CFClient::UI::Gauge;
1581
1582our @ISA = CFClient::UI::VBox::;
1583
1584sub new {
1585 my ($class, %arg) = shift;
1586
1587 my $self = $class->SUPER::new (
1588 @_,
1589 );
1590
1591 $self->add ($self->{value} = new CFClient::UI::Label valign => 1, align => 0, template => "999");
1592 $self->add ($self->{gauge} = new CFClient::UI::VGauge type => $self->{type}, expand => 1);
1593 $self->add ($self->{max} = new CFClient::UI::Label valign => 1, align => 0, template => "999");
1594
1595 $self
1596}
1597
1598sub set_value {
1599 my ($self, $val, $max) = @_;
1600
1601 $self->set_max ($max)
1602 if defined $max;
1603
1604 $self->{gauge}->set_value ($val, $max);
1605 $self->{value}->set_text ($val);
1606}
1607
1608sub set_max {
1609 my ($self, $max) = @_;
1610
1611 $self->{gauge}->set_max ($max);
1612 $self->{max}->set_text ($max);
1613}
1614
1615#############################################################################
1616
1494package CFClient::UI::Slider; 1617package CFClient::UI::Slider;
1495 1618
1496use strict; 1619use strict;
1497 1620
1498use SDL::OpenGL; 1621use CFClient::OpenGL;
1499 1622
1500our @ISA = CFClient::UI::DrawBG::; 1623our @ISA = CFClient::UI::DrawBG::;
1501 1624
1502my @tex = 1625my @tex =
1503 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 1626 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1513 # TODO: calculations are off 1636 # TODO: calculations are off
1514 my $self = $class->SUPER::new ( 1637 my $self = $class->SUPER::new (
1515 fg => [1, 1, 1], 1638 fg => [1, 1, 1],
1516 active_fg => [0, 0, 0], 1639 active_fg => [0, 0, 0],
1517 range => [0, 0, 100, 10], 1640 range => [0, 0, 100, 10],
1518 req_w => 40, 1641 req_w => 20,
1519 req_h => 13, 1642 req_h => 20,
1520 vertical => 0, 1643 vertical => 0,
1521 can_hover => 1, 1644 can_hover => 1,
1522 inner_pad => 5, 1645 inner_pad => 5,
1523 @_ 1646 @_
1524 ); 1647 );
1628 1751
1629package CFClient::UI::TextView; 1752package CFClient::UI::TextView;
1630 1753
1631our @ISA = CFClient::UI::HBox::; 1754our @ISA = CFClient::UI::HBox::;
1632 1755
1633use SDL::OpenGL; 1756use CFClient::OpenGL;
1634 1757
1635sub new { 1758sub new {
1636 my $class = shift; 1759 my $class = shift;
1637 1760
1638 my $self = $class->SUPER::new ( 1761 my $self = $class->SUPER::new (
1639 req_w => $::WIDTH / 6,
1640 req_h => $::HEIGHT / 6,
1641 fontsize => $::FONTSIZE, 1762 fontsize => 1,
1642 @_, 1763 @_,
1643 1764
1644 layout => (new CFClient::Layout), 1765 layout => (new CFClient::Layout),
1645 par => [], 1766 par => [],
1646 height => 0, 1767 height => 0,
1667sub text_height { 1788sub text_height {
1668 my ($self, $text) = @_; 1789 my ($self, $text) = @_;
1669 1790
1670 my $layout = $self->{layout}; 1791 my $layout = $self->{layout};
1671 1792
1672 $layout->set_height ($self->{fontsize}); 1793 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
1673 $layout->set_width ($self->{w}); 1794 $layout->set_width ($self->{w});
1674 $layout->set_text ($text); 1795 $layout->set_text ($text);
1675 1796
1676 ($layout->size)[1] 1797 ($layout->size)[1]
1677} 1798}
1681 1802
1682 $self->{need_reflow}++; 1803 $self->{need_reflow}++;
1683 $self->update; 1804 $self->update;
1684} 1805}
1685 1806
1686sub size_request {
1687 my ($self) = @_;
1688
1689 ($self->{req_w}, $self->{req_h})
1690}
1691
1692sub size_allocate { 1807sub size_allocate {
1693 my ($self, $x, $y, $w, $h) = @_; 1808 my ($self, $w, $h) = @_;
1694 1809
1695 $self->SUPER::size_allocate ($x, $y, $w, $h); 1810 $self->SUPER::size_allocate ($w, $h);
1696 1811
1697 $self->{layout}->set_height ($self->{fontsize}); 1812 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1698 $self->{layout}->set_width ($self->{w}); 1813 $self->{layout}->set_width ($self->{children}[0]{w});
1699 1814
1700 $self->reflow; 1815 $self->reflow;
1701} 1816}
1702 1817
1703sub add_paragraph { 1818sub add_paragraph {
1790 1905
1791} 1906}
1792 1907
1793############################################################################# 1908#############################################################################
1794 1909
1795package CFClient::UI::MapWidget;
1796
1797use strict;
1798
1799use List::Util qw(min max);
1800
1801use SDL;
1802use SDL::OpenGL;
1803
1804our @ISA = CFClient::UI::Base::;
1805
1806sub new {
1807 my $class = shift;
1808
1809 $class->SUPER::new (
1810 z => -1,
1811 can_focus => 1,
1812 list => (glGenLists 1),
1813 @_
1814 )
1815}
1816
1817sub key_down {
1818 print "MAPKEYDOWN\n";
1819}
1820
1821sub key_up {
1822}
1823
1824sub button_down {
1825 my ($self, $ev, $x, $y) = @_;
1826
1827 $self->focus_in;
1828
1829 if ($ev->button == 2) {
1830 my ($ox, $oy) = ($ev->button_x, $ev->button_y);
1831 my ($bw, $bh) = ($::CFG->{map_shift_x}, $::CFG->{map_shift_y});
1832
1833 $self->{motion} = sub {
1834 my ($ev, $x, $y) = @_;
1835
1836 ($x, $y) = ($ev->motion_x, $ev->motion_y);
1837
1838 $::CFG->{map_shift_x} = $bw + $x - $ox;
1839 $::CFG->{map_shift_y} = $bh + $y - $oy;
1840
1841 $self->update;
1842 };
1843 }
1844}
1845
1846sub button_up {
1847 my ($self, $ev, $x, $y) = @_;
1848
1849 delete $self->{motion};
1850}
1851
1852sub mouse_motion {
1853 my ($self, $ev, $x, $y) = @_;
1854
1855 $self->{motion}->($ev, $x, $y) if $self->{motion};
1856}
1857
1858sub size_request {
1859 (
1860 1 + 32 * int $::WIDTH / 32,
1861 1 + 32 * int $::HEIGHT / 32,
1862 )
1863}
1864
1865sub update {
1866 my ($self) = @_;
1867
1868 $self->{need_update} = 1;
1869 $self->SUPER::update;
1870}
1871
1872sub draw {
1873 my ($self) = @_;
1874
1875 if (delete $self->{need_update}) {
1876 glNewList $self->{list}, GL_COMPILE;
1877
1878 if ($::MAP) {
1879 my $sw = int $::WIDTH / 32;
1880 my $sh = int $::HEIGHT / 32;
1881
1882 my $sx = $::CFG->{map_shift_x}; my $sx0 = $sx & 31; $sx = ($sx - $sx0) / 32;
1883 my $sy = $::CFG->{map_shift_y}; my $sy0 = $sy & 31; $sy = ($sy - $sy0) / 32;
1884
1885 glTranslate $sx0 - 32, $sy0 - 32, 0;
1886
1887 my ($w, $h, $data) = $::MAP->draw ($sx, $sy, 0, 0, $sw + 1, $sh + 1);
1888
1889 if ($::CFG->{fow_enable}) {
1890 if ($::CFG->{fow_smooth}) { # smooth fog of war
1891 glConvolutionParameter GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER;
1892 glConvolutionFilter2D
1893 GL_CONVOLUTION_2D,
1894 GL_ALPHA,
1895 3, 3,
1896 GL_ALPHA, GL_FLOAT,
1897 pack "f*",
1898 0.1, 0.1, 0.1,
1899 0.1, 0.2, 0.1,
1900 0.1, 0.1, 0.1,
1901 ;
1902 glEnable GL_CONVOLUTION_2D;
1903 }
1904
1905 $self->{fow_texture} = new CFClient::Texture
1906 w => $w,
1907 h => $h,
1908 data => $data,
1909 internalformat => GL_ALPHA,
1910 format => GL_ALPHA;
1911
1912 glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
1913
1914 glEnable GL_BLEND;
1915 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1916 glEnable GL_TEXTURE_2D;
1917 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
1918
1919 glColor +($::CFG->{fow_intensity}) x 3, 1;
1920 $self->{fow_texture}->draw_quad (0, 0, $w * 32, $h * 32);
1921
1922 glDisable GL_TEXTURE_2D;
1923 glDisable GL_BLEND;
1924 }
1925
1926 # HACK BEGIN
1927 {
1928 glTranslate -($sx0 - 32), -($sy0 - 32), 0;#remove
1929 my ($w, $h) = (250, 250);
1930
1931 glEnable GL_BLEND;
1932 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1933 glEnable GL_TEXTURE_2D;
1934 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1935
1936 $self->{mapmap_texture} =
1937 new CFClient::Texture
1938 w => $w,
1939 h => $h,
1940 data => $::MAP->mapmap ($w, $h),
1941 type => GL_UNSIGNED_INT_8_8_8_8_REV;
1942
1943 $self->{mapmap_texture}->draw_quad (100, 100);
1944
1945 glDisable GL_TEXTURE_2D;
1946 glDisable GL_BLEND;
1947 }
1948 # HACK END
1949 }
1950
1951 glEndList;
1952 }
1953
1954 glPushMatrix;
1955 glCallList $self->{list};
1956 glPopMatrix;
1957
1958 if ($FOCUS != $self) {
1959 glColor 64/255, 64/255, 64/255;
1960 glLogicOp GL_AND;
1961 glEnable GL_COLOR_LOGIC_OP;
1962 glBegin GL_QUADS;
1963 glVertex 0, 0;
1964 glVertex 0, $::HEIGHT;
1965 glVertex $::WIDTH, $::HEIGHT;
1966 glVertex $::WIDTH, 0;
1967 glEnd;
1968 glDisable GL_COLOR_LOGIC_OP;
1969 }
1970}
1971
1972my %DIR = (
1973 SDLK_KP8, [1, "north"],
1974 SDLK_KP9, [2, "northeast"],
1975 SDLK_KP6, [3, "east"],
1976 SDLK_KP3, [4, "southeast"],
1977 SDLK_KP2, [5, "south"],
1978 SDLK_KP1, [6, "southwest"],
1979 SDLK_KP4, [7, "west"],
1980 SDLK_KP7, [8, "northwest"],
1981
1982 SDLK_UP, [1, "north"],
1983 SDLK_RIGHT, [3, "east"],
1984 SDLK_DOWN, [5, "south"],
1985 SDLK_LEFT, [7, "west"],
1986);
1987
1988sub key_down {
1989 my ($self, $ev) = @_;
1990
1991 my $mod = $ev->key_mod;
1992 my $sym = $ev->key_sym;
1993
1994 if ($sym == SDLK_KP5) {
1995 $::CONN->user_send ("stay fire");
1996 } elsif ($sym == SDLK_a) {
1997 $::CONN->user_send ("apply");
1998 } elsif ($sym == SDLK_QUOTE) {
1999 $self->emit ('activate_console');
2000 } elsif ($sym == SDLK_SLASH) {
2001 $self->emit ('activate_console' => '/');
2002 } elsif (exists $DIR{$sym}) {
2003 if ($mod & KMOD_SHIFT) {
2004 $self->{shft}++;
2005 $::CONN->user_send ("fire $DIR{$sym}[0]");
2006 } elsif ($mod & KMOD_CTRL) {
2007 $self->{ctrl}++;
2008 $::CONN->user_send ("run $DIR{$sym}[0]");
2009 } else {
2010 $::CONN->user_send ("$DIR{$sym}[1]");
2011 }
2012 }
2013}
2014
2015sub key_up {
2016 my ($self, $ev) = @_;
2017
2018 my $mod = $ev->key_mod;
2019 my $sym = $ev->key_sym;
2020
2021 if (!($mod & KMOD_SHIFT) && delete $self->{shft}) {
2022 $::CONN->user_send ("fire_stop");
2023 }
2024 if (!($mod & KMOD_CTRL ) && delete $self->{ctrl}) {
2025 $::CONN->user_send ("run_stop");
2026 }
2027}
2028
2029#############################################################################
2030
2031package CFClient::UI::Animator; 1910package CFClient::UI::Animator;
2032 1911
2033use SDL::OpenGL; 1912use CFClient::OpenGL;
2034 1913
2035our @ISA = CFClient::UI::Bin::; 1914our @ISA = CFClient::UI::Bin::;
2036 1915
2037sub moveto { 1916sub moveto {
2038 my ($self, $x, $y) = @_; 1917 my ($self, $x, $y) = @_;
2111 1990
2112package CFClient::UI::Root; 1991package CFClient::UI::Root;
2113 1992
2114our @ISA = CFClient::UI::Container::; 1993our @ISA = CFClient::UI::Container::;
2115 1994
2116use SDL::OpenGL; 1995use CFClient::OpenGL;
1996
1997sub check_size {
1998 my ($self) = @_;
1999
2000 $self->configure (0, 0, $::WITH, $::HEIGHT);
2001}
2117 2002
2118sub size_request { 2003sub size_request {
2119 ($::WIDTH, $::HEIGHT) 2004 ($::WIDTH, $::HEIGHT)
2120} 2005}
2121 2006
2122sub size_allocate { 2007sub configure {
2123 my ($self, $x, $y, $w, $h) = @_; 2008 my ($self, $x, $y, $w, $h) = @_;
2124 2009
2125 $self->_size_allocate ($x, $y, $w, $h); 2010 $self->SUPER::configure ($x, $y, $w, $h);
2126 2011
2127 $_->size_allocate ($_->{x}, $_->{y}, $_->size_request) 2012 $_->configure ($_->{x}, $_->{y}, $_->size_request)
2128 for @{$self->{children}}; 2013 for @{$self->{children}};
2129} 2014}
2130 2015
2131sub _topleft { 2016sub _topleft {
2132 my ($self, $x, $y) = @_; 2017 my ($self, $x, $y) = @_;
2135} 2020}
2136 2021
2137sub update { 2022sub update {
2138 my ($self) = @_; 2023 my ($self) = @_;
2139 2024
2140 $self->size_allocate (0, 0, $::WIDTH, $::HEIGHT); 2025 $self->check_size;
2141 ::refresh (); 2026 ::refresh ();
2142} 2027}
2143 2028
2144sub add { 2029sub add {
2145 my ($self, $widget) = @_; 2030 my ($self, $child) = @_;
2146 2031
2147 $self->SUPER::add ($widget); 2032 $self->SUPER::add ($child);
2148
2149 $widget->size_allocate (int $widget->{x}, int $widget->{y}, $widget->size_request);
2150} 2033}
2151 2034
2152sub on_refresh { 2035sub on_refresh {
2153 my ($self, $id, $cb) = @_; 2036 my ($self, $id, $cb) = @_;
2154 2037

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines