ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/UI.pm
Revision: 1.244
Committed: Sat May 27 21:06:09 2006 UTC (18 years ago) by root
Branch: MAIN
Changes since 1.243: +18 -2 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 package CFClient::UI;
2
3 use utf8;
4 use strict;
5
6 use Scalar::Util ();
7 use List::Util ();
8
9 use CFClient;
10 use CFClient::Texture;
11
12 our ($FOCUS, $HOVER, $GRAB); # various widgets
13
14 our $LAYOUT;
15 our $ROOT;
16 our $TOOLTIP;
17 our $BUTTON_STATE;
18
19 our %WIDGET; # all widgets, weak-referenced
20
21 sub get_layout {
22 for (grep { $_->{name} } values %WIDGET) {
23 $LAYOUT->{$_->{name}} = {
24 x => $_->{x} / $::WIDTH,
25 y => $_->{y} / $::HEIGHT,
26 w => $_->{w} / $::WIDTH,
27 h => $_->{h} / $::HEIGHT
28 };
29 }
30
31 return $LAYOUT;
32 }
33
34 sub set_layout {
35 my ($layout) = @_;
36 $LAYOUT = $layout;
37 }
38
39 sub check_tooltip {
40 if (!$GRAB) {
41 for (my $widget = $HOVER; $widget; $widget = $widget->{parent}) {
42 if (length $widget->{tooltip}) {
43
44 if ($TOOLTIP->{owner} != $widget) {
45 $TOOLTIP->{owner} = $widget;
46
47 my $tip = $widget->{tooltip};
48
49 $tip = $tip->($widget) if CODE:: eq ref $tip;
50
51 $TOOLTIP->set_tooltip_from ($widget);
52 $TOOLTIP->show;
53
54 my ($x, $y) = $widget->coord2global ($widget->{w}, 0);
55
56 ($x, $y) = $widget->coord2global (-$TOOLTIP->{w}, 0)
57 if $x + $TOOLTIP->{w} > $::WIDTH;
58
59 $TOOLTIP->move ($x, $y);
60 $TOOLTIP->check_size;
61 $TOOLTIP->update;
62 }
63
64 return;
65 }
66 }
67 }
68
69 $TOOLTIP->hide;
70 delete $TOOLTIP->{owner};
71 }
72
73 # class methods for events
74 sub feed_sdl_key_down_event {
75 $FOCUS->emit (key_down => $_[0])
76 if $FOCUS;
77 }
78
79 sub feed_sdl_key_up_event {
80 $FOCUS->emit (key_up => $_[0])
81 if $FOCUS;
82 }
83
84 sub feed_sdl_button_down_event {
85 my ($ev) = @_;
86 my ($x, $y) = ($ev->{x}, $ev->{y});
87
88 if (!$BUTTON_STATE) {
89 my $widget = $ROOT->find_widget ($x, $y);
90
91 $GRAB = $widget;
92 $GRAB->update if $GRAB;
93
94 check_tooltip;
95 }
96
97 $BUTTON_STATE |= 1 << ($ev->{button} - 1);
98
99 $GRAB->emit (button_down => $ev, $GRAB->coord2local ($x, $y))
100 if $GRAB;
101 }
102
103 sub feed_sdl_button_up_event {
104 my ($ev) = @_;
105 my ($x, $y) = ($ev->{x}, $ev->{y});
106
107 my $widget = $GRAB || $ROOT->find_widget ($x, $y);
108
109 $BUTTON_STATE &= ~(1 << ($ev->{button} - 1));
110
111 $GRAB->emit (button_up => $ev, $GRAB->coord2local ($x, $y))
112 if $GRAB;
113
114 if (!$BUTTON_STATE) {
115 my $grab = $GRAB; undef $GRAB;
116 $grab->update if $grab;
117 $GRAB->update if $GRAB;
118
119 check_tooltip;
120 }
121 }
122
123 sub feed_sdl_motion_event {
124 my ($ev) = @_;
125 my ($x, $y) = ($ev->{x}, $ev->{y});
126
127 my $widget = $GRAB || $ROOT->find_widget ($x, $y);
128
129 if ($widget != $HOVER) {
130 my $hover = $HOVER; $HOVER = $widget;
131
132 $hover->update if $hover && $hover->{can_hover};
133 $HOVER->update if $HOVER && $HOVER->{can_hover};
134
135 check_tooltip;
136 }
137
138 $HOVER->emit (mouse_motion => $ev, $HOVER->coord2local ($x, $y))
139 if $HOVER;
140 }
141
142 # convert position array to integers
143 sub harmonize {
144 my ($vals) = @_;
145
146 my $rem = 0;
147
148 for (@$vals) {
149 my $i = int $_ + $rem;
150 $rem += $_ - $i;
151 $_ = $i;
152 }
153 }
154
155 sub full_refresh {
156 # make a copy, otherwise for complains about freed values.
157 my @widgets = values %WIDGET;
158
159 $_->update
160 for @widgets;
161 }
162
163 sub reconfigure_widgets {
164 # make a copy, otherwise C<for> complains about freed values.
165 my @widgets = values %WIDGET;
166
167 $_->reconfigure
168 for @widgets;
169 }
170
171 # call when resolution changes etc.
172 sub rescale_widgets {
173 my ($sx, $sy) = @_;
174
175 for my $widget (values %WIDGET) {
176 if ($widget->{is_toplevel}) {
177 $widget->{x} = int 0.5 + $widget->{x} * $sx if exists $widget->{x};
178 $widget->{w} = int 0.5 + $widget->{w} * $sx if exists $widget->{w};
179 $widget->{req_w} = int 0.5 + $widget->{req_w} * $sx if exists $widget->{req_w};
180 $widget->{user_w} = int 0.5 + $widget->{user_w} * $sx if exists $widget->{user_w};
181 $widget->{y} = int 0.5 + $widget->{y} * $sy if exists $widget->{y};
182 $widget->{h} = int 0.5 + $widget->{h} * $sy if exists $widget->{h};
183 $widget->{req_h} = int 0.5 + $widget->{req_h} * $sy if exists $widget->{req_h};
184 $widget->{user_h} = int 0.5 + $widget->{user_h} * $sy if exists $widget->{user_h};
185 }
186 }
187
188 reconfigure_widgets;
189 }
190
191 #############################################################################
192
193 package CFClient::UI::Base;
194
195 use strict;
196
197 use CFClient::OpenGL;
198
199 sub new {
200 my $class = shift;
201
202 my $self = bless {
203 x => 0,
204 y => 0,
205 z => 0,
206 can_events => 1,
207 @_
208 }, $class;
209
210 for (keys %$self) {
211 if (/^on_(.*)$/) {
212 $self->connect ($1 => delete $self->{$_});
213 }
214 }
215
216 Scalar::Util::weaken ($CFClient::UI::WIDGET{$self+0} = $self);
217
218 if (my $layout = $CFClient::UI::LAYOUT->{$self->{name}}) {
219 $self->{user_x} = $layout->{x} * $::WIDTH;
220 $self->{user_y} = $layout->{y} * $::HEIGHT;
221 $self->{user_w} = ($layout->{w} != 0 ? $layout->{w} : 1) * $::WIDTH;
222 $self->{user_h} = ($layout->{h} != 0 ? $layout->{h} : 1) * $::HEIGHT;
223 }
224
225 $self
226 }
227
228 sub destroy {
229 my ($self) = @_;
230
231 $self->hide;
232 %$self = ();
233 }
234
235 sub show {
236 my ($self) = @_;
237 return if $self->{parent};
238
239 $CFClient::UI::ROOT->add ($self);
240 }
241
242 sub show_centered {
243 my ($self) = @_;
244 return if $self->{parent};
245
246 $self->show;
247
248 $CFClient::UI::ROOT->on_post_alloc (
249 "centered $self" => sub {
250 $self->move (($::WIDTH - $self->{w}) * 0.5, ($::HEIGHT - $self->{h}) * 0.5);
251 },
252 );
253 }
254
255 sub set_invisible {
256 my ($self) = @_;
257
258 return unless $self->{visible};
259
260 # broken show/hide model
261
262 delete $self->{root};
263 delete $self->{visible};
264
265 undef $GRAB if $GRAB == $self;
266 undef $HOVER if $HOVER == $self;
267
268 CFClient::UI::check_tooltip
269 if $CFClient::UI::TOOLTIP->{owner} == $self;
270
271 $self->focus_out;
272
273 $self->emit (visibility_change => 0);
274 }
275
276 sub hide {
277 my ($self) = @_;
278
279 $self->set_invisible;
280
281 $self->{parent}->remove ($self)
282 if $self->{parent};
283 }
284
285 sub move {
286 my ($self, $x, $y, $z) = @_;
287
288 $self->{x} = int $x;
289 $self->{y} = int $y;
290 $self->{z} = $z if defined $z;
291
292 $self->update;
293 }
294
295 sub set_size {
296 my ($self, $w, $h) = @_;
297
298 $self->{user_w} = $w;
299 $self->{user_h} = $h;
300
301 $self->check_size;
302 }
303
304 sub size_request {
305 require Carp;
306 Carp::confess "size_request is abstract";
307 }
308
309 sub configure {
310 my ($self, $x, $y, $w, $h) = @_;
311
312 if ($self->{aspect}) {
313 my $w2 = List::Util::min $w, int $h * $self->{aspect};
314 my $h2 = List::Util::min $h, int $w / $self->{aspect};
315
316 # use alignment to adjust x, y
317
318 $x += int +($w - $w2) * 0.5;
319 $y += int +($h - $h2) * 0.5;
320
321 ($w, $h) = ($w2, $h2);
322 }
323
324 if ($self->{x} != $x || $self->{y} != $y) {
325 $self->{x} = $x;
326 $self->{y} = $y;
327 $self->update;
328 }
329
330 if ($self->{w} != $w || $self->{h} != $h) {
331 $CFClient::UI::ROOT->{size_alloc}{$self} = [$self, $w, $h];
332 }
333 }
334
335 sub size_allocate {
336 # nothing to be done
337 }
338
339 sub reconfigure {
340 my ($self) = @_;
341
342 $self->check_size (1);
343 $self->update;
344 }
345
346 sub children {
347 }
348
349 sub set_max_size {
350 my ($self, $w, $h) = @_;
351
352 delete $self->{max_w}; $self->{max_w} = $w if $w;
353 delete $self->{max_h}; $self->{max_h} = $h if $h;
354 }
355
356 sub set_tooltip {
357 my ($self, $tooltip) = @_;
358
359 $tooltip =~ s/^\s+//;
360 $tooltip =~ s/\s+$//;
361
362 return if $self->{tooltip} eq $tooltip;
363
364 $self->{tooltip} = $tooltip;
365
366 if ($CFClient::UI::TOOLTIP->{owner} == $self) {
367 delete $CFClient::UI::TOOLTIP->{owner};
368 CFClient::UI::check_tooltip;
369 }
370 }
371
372 # translate global coordinates to local coordinate system
373 sub coord2local {
374 my ($self, $x, $y) = @_;
375
376 $self->{parent}->coord2local ($x - $self->{x}, $y - $self->{y})
377 }
378
379 # translate local coordinates to global coordinate system
380 sub coord2global {
381 my ($self, $x, $y) = @_;
382
383 $self->{parent}->coord2global ($x + $self->{x}, $y + $self->{y})
384 }
385
386 sub focus_in {
387 my ($self) = @_;
388
389 return if $FOCUS == $self;
390 return unless $self->{can_focus};
391
392 my $focus = $FOCUS; $FOCUS = $self;
393
394 $self->_emit (focus_in => $focus);
395
396 $focus->update if $focus;
397 $FOCUS->update;
398 }
399
400 sub focus_out {
401 my ($self) = @_;
402
403 return unless $FOCUS == $self;
404
405 my $focus = $FOCUS; undef $FOCUS;
406
407 $self->_emit (focus_out => $focus);
408
409 $focus->update if $focus; #?
410
411 $::MAPWIDGET->focus_in #d# focus mapwidget if no other widget has focus
412 unless $FOCUS;
413 }
414
415 sub mouse_motion { }
416 sub button_up { }
417 sub key_down { }
418 sub key_up { }
419
420 sub button_down {
421 my ($self, $ev, $x, $y) = @_;
422
423 $self->focus_in;
424 }
425
426 sub w { $_[0]{w} = $_[1] if @_ > 1; $_[0]{w} }
427 sub h { $_[0]{h} = $_[1] if @_ > 1; $_[0]{h} }
428 sub x { $_[0]{x} = $_[1] if @_ > 1; $_[0]{x} }
429 sub y { $_[0]{y} = $_[1] if @_ > 1; $_[0]{y} }
430 sub z { $_[0]{z} = $_[1] if @_ > 1; $_[0]{z} }
431
432 sub draw {
433 my ($self) = @_;
434
435 return unless $self->{h} && $self->{w};
436
437 glPushMatrix;
438 glTranslate $self->{x}, $self->{y}, 0;
439 $self->_draw;
440 glPopMatrix;
441
442 if ($self == $HOVER && $self->{can_hover}) {
443 my ($x, $y) = @$self{qw(x y)};
444
445 glColor 1, 0.8, 0.5, 0.2;
446 glEnable GL_BLEND;
447 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
448 glBegin GL_QUADS;
449 glVertex $x , $y;
450 glVertex $x + $self->{w}, $y;
451 glVertex $x + $self->{w}, $y + $self->{h};
452 glVertex $x , $y + $self->{h};
453 glEnd;
454 glDisable GL_BLEND;
455 }
456
457 if ($ENV{PCLIENT_DEBUG}) {
458 glPushMatrix;
459 glColor 1, 1, 0, 1;
460 glTranslate $self->{x} + 0.375, $self->{y} + 0.375;
461 glBegin GL_LINE_LOOP;
462 glVertex 0 , 0;
463 glVertex $self->{w} - 1, 0;
464 glVertex $self->{w} - 1, $self->{h} - 1;
465 glVertex 0 , $self->{h} - 1;
466 glEnd;
467 glPopMatrix;
468 #CFClient::UI::Label->new (w => $self->{w}, h => $self->{h}, text => $self, fontsize => 0)->_draw;
469 }
470 }
471
472 sub _draw {
473 my ($self) = @_;
474
475 warn "no draw defined for $self\n";
476 }
477
478 sub find_widget {
479 my ($self, $x, $y) = @_;
480
481 return () unless $self->{can_events};
482
483 return $self
484 if $x >= $self->{x} && $x < $self->{x} + $self->{w}
485 && $y >= $self->{y} && $y < $self->{y} + $self->{h};
486
487 ()
488 }
489
490 sub set_parent {
491 my ($self, $parent) = @_;
492
493 Scalar::Util::weaken ($self->{parent} = $parent);
494
495 if ($parent->{visible} || 1) {
496 $self->{root} = $parent->{root};
497 $self->{visible} = $parent->{visible} + 1;
498
499 $self->emit (visibility_change => 1)
500 unless $self->{parent}{visible};
501 }
502
503 # TODO: req_w _does_change after ->reconfigure
504 $self->check_size
505 unless exists $self->{req_w};
506
507 $self->show;
508 }
509
510 sub check_size {
511 my ($self, $forced) = @_;
512
513 $self->{force_alloc} = 1 if $forced;
514 $CFClient::UI::ROOT->{check_size}{$self} = $self;
515 }
516
517 sub update {
518 my ($self) = @_;
519
520 $self->{parent}->update
521 if $self->{parent};
522 }
523
524 sub connect {
525 my ($self, $signal, $cb) = @_;
526
527 push @{ $self->{signal_cb}{$signal} }, $cb;
528 }
529
530 sub _emit {
531 my ($self, $signal, @args) = @_;
532
533 List::Util::sum map $_->($self, @args), @{$self->{signal_cb}{$signal} || []}
534 }
535
536 sub emit {
537 my ($self, $signal, @args) = @_;
538
539 $self->_emit ($signal, @args)
540 || $self->$signal (@args);
541 }
542
543 sub visibility_change {
544 #my ($self, $visible) = @_;
545 }
546
547 sub DESTROY {
548 my ($self) = @_;
549
550 delete $WIDGET{$self+0};
551 #$self->deactivate;
552 }
553
554 #############################################################################
555
556 package CFClient::UI::DrawBG;
557
558 our @ISA = CFClient::UI::Base::;
559
560 use strict;
561 use CFClient::OpenGL;
562
563 sub new {
564 my $class = shift;
565
566 # range [value, low, high, page]
567
568 $class->SUPER::new (
569 #bg => [0, 0, 0, 0.2],
570 #active_bg => [1, 1, 1, 0.5],
571 @_
572 )
573 }
574
575 sub _draw {
576 my ($self) = @_;
577
578 my $color = $FOCUS == $self && $self->{active_bg}
579 ? $self->{active_bg}
580 : $self->{bg};
581
582 if ($color && (@$color < 4 || $color->[3])) {
583 my ($w, $h) = @$self{qw(w h)};
584
585 glEnable GL_BLEND;
586 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
587 glColor @$color;
588
589 glBegin GL_QUADS;
590 glVertex 0 , 0;
591 glVertex 0 , $h;
592 glVertex $w, $h;
593 glVertex $w, 0;
594 glEnd;
595
596 glDisable GL_BLEND;
597 }
598 }
599
600 #############################################################################
601
602 package CFClient::UI::Empty;
603
604 our @ISA = CFClient::UI::Base::;
605
606 sub new {
607 my ($class, %arg) = @_;
608 $class->SUPER::new (can_events => 0, %arg);
609 }
610
611 sub size_request {
612 (0, 0)
613 }
614
615 sub draw { }
616
617 #############################################################################
618
619 package CFClient::UI::Container;
620
621 our @ISA = CFClient::UI::Base::;
622
623 sub new {
624 my ($class, %arg) = @_;
625
626 my $children = delete $arg{children} || [];
627
628 my $self = $class->SUPER::new (
629 children => [],
630 can_events => 0,
631 %arg,
632 );
633 $self->add ($_) for @$children;
634
635 $self
636 }
637
638 sub add {
639 my ($self, @widgets) = @_;
640
641 $_->set_parent ($self)
642 for @widgets;
643
644 use sort 'stable';
645
646 $self->{children} = [
647 sort { $a->{z} <=> $b->{z} }
648 @{$self->{children}}, @widgets
649 ];
650
651 $self->check_size (1);
652 $self->update;
653 }
654
655 sub children {
656 @{ $_[0]{children} }
657 }
658
659 sub remove {
660 my ($self, $child) = @_;
661
662 delete $child->{parent};
663 $child->hide;
664
665 $self->{children} = [ grep $_ != $child, @{ $self->{children} } ];
666
667 $self->check_size (1);
668 $self->update;
669 }
670
671 sub clear {
672 my ($self) = @_;
673
674 my $children = delete $self->{children};
675 $self->{children} = [];
676
677 for (@$children) {
678 delete $_->{parent};
679 $_->hide;
680 }
681
682 $self->check_size;
683 $self->update;
684 }
685
686 sub find_widget {
687 my ($self, $x, $y) = @_;
688
689 $x -= $self->{x};
690 $y -= $self->{y};
691
692 my $res;
693
694 for (reverse @{ $self->{children} }) {
695 $res = $_->find_widget ($x, $y)
696 and return $res;
697 }
698
699 $self->SUPER::find_widget ($x + $self->{x}, $y + $self->{y})
700 }
701
702 sub _draw {
703 my ($self) = @_;
704
705 $_->draw for @{$self->{children}};
706 }
707
708 #############################################################################
709
710 package CFClient::UI::Bin;
711
712 our @ISA = CFClient::UI::Container::;
713
714 sub new {
715 my ($class, %arg) = @_;
716
717 my $child = (delete $arg{child}) || new CFClient::UI::Empty::;
718
719 $class->SUPER::new (children => [$child], %arg)
720 }
721
722 sub add {
723 my ($self, $child) = @_;
724
725 $self->{children} = [];
726
727 $self->SUPER::add ($child);
728 }
729
730 sub remove {
731 my ($self, $widget) = @_;
732
733 $self->SUPER::remove ($widget);
734
735 $self->{children} = [new CFClient::UI::Empty]
736 unless @{$self->{children}};
737 }
738
739 sub child { $_[0]->{children}[0] }
740
741 sub size_request {
742 $_[0]{children}[0]->size_request
743 }
744
745 sub size_allocate {
746 my ($self, $w, $h) = @_;
747
748 $self->{children}[0]->configure (0, 0, $w, $h);
749 }
750
751 #############################################################################
752
753 package CFClient::UI::Window;
754
755 our @ISA = CFClient::UI::Bin::;
756
757 use CFClient::OpenGL;
758
759 sub new {
760 my ($class, %arg) = @_;
761
762 my $self = $class->SUPER::new (%arg);
763 }
764
765 sub update {
766 my ($self) = @_;
767
768 $ROOT->on_post_alloc ($self => sub { $self->render_child });
769 $self->SUPER::update;
770 }
771
772 sub size_allocate {
773 my ($self, $w, $h) = @_;
774
775 $self->SUPER::size_allocate ($w, $h);
776 $self->update;
777 }
778
779 sub _render {
780 $_[0]{children}[0]->draw;
781 }
782
783 sub render_child {
784 my ($self) = @_;
785
786 $self->{texture} = new_from_opengl CFClient::Texture $self->{w}, $self->{h}, sub {
787 glClearColor 0, 0, 0, 0;
788 glClear GL_COLOR_BUFFER_BIT;
789
790 $self->_render;
791 };
792 }
793
794 sub _draw {
795 my ($self) = @_;
796
797 my ($w, $h) = ($self->w, $self->h);
798
799 my $tex = $self->{texture}
800 or return;
801
802 glEnable GL_TEXTURE_2D;
803 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
804 glColor 1, 1, 1, 1;
805
806 $tex->draw_quad_alpha_premultiplied (0, 0, $w, $h);
807
808 glDisable GL_TEXTURE_2D;
809 }
810
811 #############################################################################
812
813 package CFClient::UI::ViewPort;
814
815 our @ISA = CFClient::UI::Window::;
816
817 sub new {
818 my $class = shift;
819
820 $class->SUPER::new (
821 scroll_x => 0,
822 scroll_y => 1,
823 @_,
824 )
825 }
826
827 sub size_request {
828 my ($self) = @_;
829
830 @$self{qw(child_w child_h)} = @{$self->child}{qw(req_w req_h)};
831
832 @$self{qw(child_w child_h)}
833 }
834
835 sub size_allocate {
836 my ($self, $w, $h) = @_;
837
838 $w = $self->{child_w} if $self->{scroll_x} && $self->{child_w};
839 $h = $self->{child_h} if $self->{scroll_y} && $self->{child_h};
840
841 $self->child->configure (0, 0, $w, $h);
842 $self->update;
843 }
844
845 sub set_offset {
846 my ($self, $x, $y) = @_;
847
848 $self->{view_x} = int $x;
849 $self->{view_y} = int $y;
850
851 $self->update;
852 }
853
854 # hmm, this does not work for topleft of $self... but we should not ask for that
855 sub coord2local {
856 my ($self, $x, $y) = @_;
857
858 $self->SUPER::coord2local ($x + $self->{view_x}, $y + $self->{view_y})
859 }
860
861 sub coord2global {
862 my ($self, $x, $y) = @_;
863
864 $x = List::Util::min $self->{w}, $x - $self->{view_x};
865 $y = List::Util::min $self->{h}, $y - $self->{view_y};
866
867 $self->SUPER::coord2global ($x, $y)
868 }
869
870 sub find_widget {
871 my ($self, $x, $y) = @_;
872
873 if ( $x >= $self->{x} && $x < $self->{x} + $self->{w}
874 && $y >= $self->{y} && $y < $self->{y} + $self->{h}
875 ) {
876 $self->child->find_widget ($x + $self->{view_x}, $y + $self->{view_y})
877 } else {
878 $self->CFClient::UI::Base::find_widget ($x, $y)
879 }
880 }
881
882 sub _render {
883 my ($self) = @_;
884
885 CFClient::OpenGL::glTranslate -$self->{view_x}, -$self->{view_y};
886
887 $self->SUPER::_render;
888 }
889
890 #############################################################################
891
892 package CFClient::UI::ScrolledWindow;
893
894 our @ISA = CFClient::UI::HBox::;
895
896 sub new {
897 my $class = shift;
898
899 my $self;
900
901 my $slider = new CFClient::UI::Slider
902 vertical => 1,
903 range => [0, 0, 1, 0.01], # HACK fix
904 on_changed => sub {
905 $self->{vp}->set_offset (0, $_[1]);
906 },
907 ;
908
909 $self = $class->SUPER::new (
910 vp => (new CFClient::UI::ViewPort expand => 1),
911 slider => $slider,
912 @_,
913 );
914
915 $self->{vp}->add ($self->{scrolled});
916 $self->add ($self->{vp});
917 $self->add ($self->{slider});
918
919 $self
920 }
921
922 sub update {
923 my ($self) = @_;
924
925 $self->SUPER::update;
926
927 # todo: overwrite size_allocate of child
928 my $child = $self->{vp}->child;
929 $self->{slider}->set_range ([$self->{slider}{range}[0], 0, $child->{h}, $self->{vp}{h}, 1]);
930 }
931
932 sub size_allocate {
933 my ($self, $w, $h) = @_;
934
935 $self->SUPER::size_allocate ($w, $h);
936
937 my $child = $self->{vp}->child;
938 $self->{slider}->set_range ([$self->{slider}{range}[0], 0, $child->{h}, $self->{vp}{h}, 1]);
939 }
940
941 #TODO# update range on size_allocate depending on child
942 # update viewport offset on scroll
943
944 #############################################################################
945
946 package CFClient::UI::Frame;
947
948 our @ISA = CFClient::UI::Bin::;
949
950 use CFClient::OpenGL;
951
952 sub new {
953 my $class = shift;
954
955 $class->SUPER::new (
956 bg => undef,
957 @_,
958 )
959 }
960
961 sub _draw {
962 my ($self) = @_;
963
964 if ($self->{bg}) {
965 my ($w, $h) = @$self{qw(w h)};
966
967 glEnable GL_BLEND;
968 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
969 glColor @{ $self->{bg} };
970
971 glBegin GL_QUADS;
972 glVertex 0 , 0;
973 glVertex 0 , $h;
974 glVertex $w, $h;
975 glVertex $w, 0;
976 glEnd;
977
978 glDisable GL_BLEND;
979 }
980
981 $self->SUPER::_draw;
982 }
983
984 #############################################################################
985
986 package CFClient::UI::FancyFrame;
987
988 our @ISA = CFClient::UI::Bin::;
989
990 use CFClient::OpenGL;
991
992 my @tex =
993 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
994 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
995
996 sub new {
997 my $class = shift;
998
999 # TODO: user_x, user_y, overwrite moveto?
1000
1001 my $self = $class->SUPER::new (
1002 bg => [1, 1, 1, 1],
1003 border_bg => [1, 1, 1, 1],
1004 border => 0.6,
1005 is_toplevel => 1,
1006 can_events => 1,
1007 @_
1008 );
1009
1010 $self->{title} &&= new CFClient::UI::Label
1011 align => 0,
1012 valign => 1,
1013 text => $self->{title},
1014 fontsize => $self->{border};
1015
1016 $self
1017 }
1018
1019 sub border {
1020 int $_[0]{border} * $::FONTSIZE
1021 }
1022
1023 sub size_request {
1024 my ($self) = @_;
1025
1026 my ($w, $h) = $self->SUPER::size_request;
1027
1028 (
1029 $w + $self->border * 2,
1030 $h + $self->border * 2,
1031 )
1032 }
1033
1034 sub size_allocate {
1035 my ($self, $w, $h) = @_;
1036
1037 $h -= List::Util::max 0, $self->border * 2;
1038 $w -= List::Util::max 0, $self->border * 2;
1039
1040 $self->{title}->configure ($self->border, int $self->border - $::FONTSIZE * 2, $w, int $::FONTSIZE * 2)
1041 if $self->{title};
1042
1043 $self->child->configure ($self->border, $self->border, $w, $h);
1044 }
1045
1046 sub button_down {
1047 my ($self, $ev, $x, $y) = @_;
1048
1049 my ($w, $h) = @$self{qw(w h)};
1050 my $border = $self->border;
1051
1052 my $lr = ($x >= 0 && $x < $border) || ($x > $w - $border && $x < $w);
1053 my $td = ($y >= 0 && $y < $border) || ($y > $h - $border && $y < $h);
1054
1055 if ($lr & $td) {
1056 my ($wx, $wy) = ($self->{x}, $self->{y});
1057 my ($ox, $oy) = ($ev->{x}, $ev->{y});
1058 my ($bw, $bh) = ($self->{w}, $self->{h});
1059
1060 my $mx = $x < $border;
1061 my $my = $y < $border;
1062
1063 $self->{motion} = sub {
1064 my ($ev, $x, $y) = @_;
1065
1066 my $dx = $ev->{x} - $ox;
1067 my $dy = $ev->{y} - $oy;
1068
1069 $self->{user_x} = $wx + $dx * $mx;
1070 $self->{user_y} = $wy + $dy * $my;
1071 $self->{user_w} = $bw + $dx * ($mx ? -1 : 1);
1072 $self->{user_h} = $bh + $dy * ($my ? -1 : 1);
1073 $self->move ($self->{user_x}, $self->{user_y});
1074 $self->check_size;
1075 };
1076
1077 } elsif ($lr ^ $td) {
1078 my ($ox, $oy) = ($ev->{x}, $ev->{y});
1079 my ($bx, $by) = ($self->{x}, $self->{y});
1080
1081 $self->{motion} = sub {
1082 my ($ev, $x, $y) = @_;
1083
1084 ($x, $y) = ($ev->{x}, $ev->{y});
1085
1086 $self->{user_x} = $bx + $x - $ox;
1087 $self->{user_y} = $by + $y - $oy;
1088 $self->move ($self->{user_x}, $self->{user_y});
1089 $self->update;
1090 };
1091 }
1092 }
1093
1094 sub button_up {
1095 my ($self, $ev, $x, $y) = @_;
1096
1097 delete $self->{motion};
1098 }
1099
1100 sub mouse_motion {
1101 my ($self, $ev, $x, $y) = @_;
1102
1103 $self->{motion}->($ev, $x, $y) if $self->{motion};
1104 }
1105
1106 sub _draw {
1107 my ($self) = @_;
1108
1109 my ($w, $h ) = ($self->{w}, $self->{h});
1110 my ($cw, $ch) = ($self->child->{w}, $self->child->{h});
1111
1112 glEnable GL_TEXTURE_2D;
1113 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
1114
1115 my $border = $self->border;
1116
1117 glColor @{ $self->{border_bg} };
1118 $tex[1]->draw_quad_alpha (0, 0, $w, $border);
1119 $tex[3]->draw_quad_alpha (0, $border, $border, $ch);
1120 $tex[2]->draw_quad_alpha ($w - $border, $border, $border, $ch);
1121 $tex[4]->draw_quad_alpha (0, $h - $border, $w, $border);
1122
1123 if (@{$self->{bg}} < 4 || $self->{bg}[3]) {
1124 my $bg = $tex[0];
1125
1126 # TODO: repeat texture not scale
1127 my $rep_x = $cw / $bg->{w};
1128 my $rep_y = $ch / $bg->{h};
1129
1130 glColor @{ $self->{bg} };
1131
1132 $bg->{s} = $rep_x;
1133 $bg->{t} = $rep_y;
1134 $bg->{wrap_mode} = 1;
1135 $bg->draw_quad_alpha ($border, $border, $cw, $ch);
1136 }
1137
1138 glDisable GL_TEXTURE_2D;
1139
1140 $self->{title}->draw if $self->{title};
1141
1142 $self->child->draw;
1143 }
1144
1145 #############################################################################
1146
1147 package CFClient::UI::Table;
1148
1149 our @ISA = CFClient::UI::Base::;
1150
1151 use List::Util qw(max sum);
1152
1153 use CFClient::OpenGL;
1154
1155 sub new {
1156 my $class = shift;
1157
1158 $class->SUPER::new (
1159 col_expand => [],
1160 @_,
1161 )
1162 }
1163
1164 sub children {
1165 grep $_, map @$_, grep $_, @{ $_[0]{children} }
1166 }
1167
1168 sub add {
1169 my ($self, $x, $y, $child) = @_;
1170
1171 $child->set_parent ($self);
1172 $self->{children}[$y][$x] = $child;
1173
1174 $self->check_size (1);
1175 }
1176
1177 # TODO: move to container class maybe? send children a signal on removal?
1178 sub clear {
1179 my ($self) = @_;
1180
1181 my @children = $self->children;
1182 delete $self->{children};
1183
1184 for (@children) {
1185 delete $_->{parent};
1186 $_->hide;
1187 }
1188
1189 $self->check_size (1);
1190 $self->update;
1191 }
1192
1193 sub get_wh {
1194 my ($self) = @_;
1195
1196 my (@w, @h);
1197
1198 for my $y (0 .. $#{$self->{children}}) {
1199 my $row = $self->{children}[$y]
1200 or next;
1201
1202 for my $x (0 .. $#$row) {
1203 my $widget = $row->[$x]
1204 or next;
1205 my ($w, $h) = @$widget{qw(req_w req_h)};
1206
1207 $w[$x] = max $w[$x], $w;
1208 $h[$y] = max $h[$y], $h;
1209 }
1210 }
1211
1212 (\@w, \@h)
1213 }
1214
1215 sub size_request {
1216 my ($self) = @_;
1217
1218 my ($ws, $hs) = $self->get_wh;
1219
1220 (
1221 (sum @$ws),
1222 (sum @$hs),
1223 )
1224 }
1225
1226 sub size_allocate {
1227 my ($self, $w, $h) = @_;
1228
1229 my ($ws, $hs) = $self->get_wh;
1230
1231 my $req_w = (sum @$ws) || 1;
1232 my $req_h = (sum @$hs) || 1;
1233
1234 # TODO: nicer code && do row_expand
1235 my @col_expand = @{$self->{col_expand}};
1236 @col_expand = (1) x @$ws unless @col_expand;
1237 my $col_expand = (sum @col_expand) || 1;
1238
1239 # linearly scale sizes
1240 $ws->[$_] += $col_expand[$_] / $col_expand * ($w - $req_w) for 0 .. $#$ws;
1241 $hs->[$_] *= 1 * $h / $req_h for 0 .. $#$hs;
1242
1243 CFClient::UI::harmonize $ws;
1244 CFClient::UI::harmonize $hs;
1245
1246 my $y;
1247
1248 for my $r (0 .. $#{$self->{children}}) {
1249 my $row = $self->{children}[$r]
1250 or next;
1251
1252 my $x = 0;
1253 my $row_h = $hs->[$r];
1254
1255 for my $c (0 .. $#$row) {
1256 my $col_w = $ws->[$c];
1257
1258 if (my $widget = $row->[$c]) {
1259 $widget->configure ($x, $y, $col_w, $row_h);
1260 }
1261
1262 $x += $col_w;
1263 }
1264
1265 $y += $row_h;
1266 }
1267
1268 }
1269
1270 sub find_widget {
1271 my ($self, $x, $y) = @_;
1272
1273 $x -= $self->{x};
1274 $y -= $self->{y};
1275
1276 my $res;
1277
1278 for (grep $_, map @$_, grep $_, @{ $self->{children} }) {
1279 $res = $_->find_widget ($x, $y)
1280 and return $res;
1281 }
1282
1283 $self->SUPER::find_widget ($x + $self->{x}, $y + $self->{y})
1284 }
1285
1286 sub _draw {
1287 my ($self) = @_;
1288
1289 for (grep $_, @{$self->{children}}) {
1290 $_->draw for grep $_, @$_;
1291 }
1292 }
1293
1294 #############################################################################
1295
1296 package CFClient::UI::HBox;
1297
1298 # TODO: wrap into common Box base class
1299
1300 our @ISA = CFClient::UI::Container::;
1301
1302 sub size_request {
1303 my ($self) = @_;
1304
1305 my @alloc = map [$_->size_request], @{$self->{children}};
1306
1307 (
1308 (List::Util::sum map $_->[0], @alloc),
1309 (List::Util::max map $_->[1], @alloc),
1310 )
1311 }
1312
1313 sub size_allocate {
1314 my ($self, $w, $h) = @_;
1315
1316 ($h, $w) = ($w, $h);
1317
1318 my $children = $self->{children};
1319
1320 my @h = map $_->{req_w}, @$children;
1321
1322 my $req_h = List::Util::sum @h;
1323
1324 if ($req_h > $h) {
1325 # ah well, not enough space
1326 $_ *= $h / $req_h for @h;
1327 } else {
1328 my $exp = List::Util::sum map $_->{expand}, @$children;
1329 $exp ||= 1;
1330
1331 for (0 .. $#$children) {
1332 my $child = $children->[$_];
1333
1334 my $alloc_h = $h[$_];
1335 $alloc_h += ($h - $req_h) * $child->{expand} / $exp;
1336 $h[$_] = $alloc_h;
1337 }
1338 }
1339
1340 CFClient::UI::harmonize \@h;
1341
1342 my $y = 0;
1343 for (0 .. $#$children) {
1344 my $child = $children->[$_];
1345 my $h = $h[$_];
1346 $child->configure ($y, 0, $h, $w);
1347
1348 $y += $h;
1349 }
1350
1351 1
1352 }
1353
1354 #############################################################################
1355
1356 package CFClient::UI::VBox;
1357
1358 # TODO: wrap into common Box base class
1359
1360 our @ISA = CFClient::UI::Container::;
1361
1362 sub size_request {
1363 my ($self) = @_;
1364
1365 my @alloc = map [$_->size_request], @{$self->{children}};
1366
1367 (
1368 (List::Util::max map $_->[0], @alloc),
1369 (List::Util::sum map $_->[1], @alloc),
1370 )
1371 }
1372
1373 sub size_allocate {
1374 my ($self, $w, $h) = @_;
1375
1376 Carp::confess "negative size" if $w < 0 || $h < 0;#d#
1377
1378 my $children = $self->{children};
1379
1380 my @h = map $_->{req_h}, @$children;
1381
1382 my $req_h = List::Util::sum @h;
1383
1384 if ($req_h > $h) {
1385 # ah well, not enough space
1386 $_ *= $h / $req_h for @h;
1387 } else {
1388 my $exp = List::Util::sum map $_->{expand}, @$children;
1389 $exp ||= 1;
1390
1391 for (0 .. $#$children) {
1392 my $child = $children->[$_];
1393
1394 $h[$_] += ($h - $req_h) * $child->{expand} / $exp;
1395 }
1396 }
1397
1398 CFClient::UI::harmonize \@h;
1399
1400 my $y = 0;
1401 for (0 .. $#$children) {
1402 my $child = $children->[$_];
1403 my $h = $h[$_];
1404 $child->configure (0, $y, $w, $h);
1405
1406 $y += $h;
1407 }
1408
1409 1
1410 }
1411
1412 #############################################################################
1413
1414 package CFClient::UI::Label;
1415
1416 our @ISA = CFClient::UI::DrawBG::;
1417
1418 use CFClient::OpenGL;
1419
1420 sub new {
1421 my ($class, %arg) = @_;
1422
1423 my $self = $class->SUPER::new (
1424 fg => [1, 1, 1],
1425 #bg => none
1426 #active_bg => none
1427 #font => default_font
1428 #text => initial text
1429 #markup => initial narkup
1430 #max_w => maximum pixel width
1431 ellipsise => 3, # end
1432 layout => (new CFClient::Layout),
1433 fontsize => 1,
1434 align => -1,
1435 valign => -1,
1436 padding => 2,
1437 can_events => 0,
1438 %arg
1439 );
1440
1441 if (exists $self->{template}) {
1442 my $layout = new CFClient::Layout;
1443 $layout->set_text (delete $self->{template});
1444 $self->{template} = $layout;
1445 }
1446
1447 if (exists $self->{markup}) {
1448 $self->set_markup (delete $self->{markup});
1449 } else {
1450 $self->set_text (delete $self->{text});
1451 }
1452
1453 $self
1454 }
1455
1456 sub escape($) {
1457 local $_ = $_[0];
1458
1459 s/&/&amp;/g;
1460 s/>/&gt;/g;
1461 s/</&lt;/g;
1462
1463 $_
1464 }
1465
1466 sub update {
1467 my ($self) = @_;
1468
1469 delete $self->{texture};
1470 $self->SUPER::update;
1471 }
1472
1473 sub set_text {
1474 my ($self, $text) = @_;
1475
1476 return if $self->{text} eq "T$text";
1477 $self->{text} = "T$text";
1478
1479 $self->{layout} = new CFClient::Layout if $self->{layout}->is_rgba;
1480 $self->{layout}->set_text ($text);
1481
1482 $self->update;
1483 $self->check_size;
1484 }
1485
1486 sub set_markup {
1487 my ($self, $markup) = @_;
1488
1489 return if $self->{text} eq "M$markup";
1490 $self->{text} = "M$markup";
1491
1492 my $rgba = $markup =~ /span.*(?:foreground|background)/;
1493
1494 $self->{layout} = new CFClient::Layout $rgba if $self->{layout}->is_rgba != $rgba;
1495 $self->{layout}->set_markup ($markup);
1496
1497 $self->update;
1498 $self->check_size;
1499 }
1500
1501 sub size_request {
1502 my ($self) = @_;
1503
1504 $self->{layout}->set_font ($self->{font}) if $self->{font};
1505 $self->{layout}->set_width ($self->{max_w} || -1);
1506 $self->{layout}->set_ellipsise ($self->{ellipsise});
1507 $self->{layout}->set_single_paragraph_mode ($self->{ellipsise});
1508 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1509
1510 my ($w, $h) = $self->{layout}->size;
1511
1512 if (exists $self->{template}) {
1513 $self->{template}->set_font ($self->{font}) if $self->{font};
1514 $self->{template}->set_height ($self->{fontsize} * $::FONTSIZE);
1515
1516 my ($w2, $h2) = $self->{template}->size;
1517
1518 $w = List::Util::max $w, $w2;
1519 $h = List::Util::max $h, $h2;
1520 }
1521
1522 (
1523 $w + $self->{padding} * 2,
1524 $h + $self->{padding} * 2,
1525 )
1526 }
1527
1528 sub size_allocate {
1529 my ($self, $w, $h) = @_;
1530
1531 delete $self->{texture};
1532 }
1533
1534 sub set_fontsize {
1535 my ($self, $fontsize) = @_;
1536
1537 $self->{fontsize} = $fontsize;
1538 delete $self->{texture};
1539
1540 $self->update;
1541 $self->check_size;
1542 }
1543
1544 sub _draw {
1545 my ($self) = @_;
1546
1547 $self->SUPER::_draw; # draw background, if applicable
1548
1549 my $tex = $self->{texture} ||= do {
1550 $self->{layout}->set_foreground (@{$self->{fg}});
1551 $self->{layout}->set_font ($self->{font}) if $self->{font};
1552 $self->{layout}->set_width ($self->{w});
1553 $self->{layout}->set_ellipsise ($self->{ellipsise});
1554 $self->{layout}->set_single_paragraph_mode ($self->{ellipsise});
1555 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1556
1557 my $tex = new_from_layout CFClient::Texture $self->{layout};
1558
1559 $self->{ox} = int ($self->{align} < 0 ? $self->{padding}
1560 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
1561 : ($self->{w} - $tex->{w}) * 0.5);
1562
1563 $self->{oy} = int ($self->{valign} < 0 ? $self->{padding}
1564 : $self->{valign} > 0 ? $self->{h} - $tex->{h} - $self->{padding}
1565 : ($self->{h} - $tex->{h}) * 0.5);
1566
1567 $tex
1568 };
1569
1570 glEnable GL_TEXTURE_2D;
1571 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1572
1573 if ($tex->{format} == GL_ALPHA) {
1574 glColor @{$self->{fg}};
1575 $tex->draw_quad_alpha ($self->{ox}, $self->{oy});
1576 } else {
1577 $tex->draw_quad_alpha_premultiplied ($self->{ox}, $self->{oy});
1578 }
1579
1580 glDisable GL_TEXTURE_2D;
1581 }
1582
1583 #############################################################################
1584
1585 package CFClient::UI::EntryBase;
1586
1587 our @ISA = CFClient::UI::Label::;
1588
1589 use CFClient::OpenGL;
1590
1591 sub new {
1592 my $class = shift;
1593
1594 $class->SUPER::new (
1595 fg => [1, 1, 1],
1596 bg => [0, 0, 0, 0.2],
1597 active_bg => [1, 1, 1, 0.5],
1598 active_fg => [0, 0, 0],
1599 can_hover => 1,
1600 can_focus => 1,
1601 valign => 0,
1602 can_events => 1,
1603 #text => ...
1604 @_
1605 )
1606 }
1607
1608 sub _set_text {
1609 my ($self, $text) = @_;
1610
1611 delete $self->{cur_h};
1612
1613 return if $self->{text} eq $text;
1614
1615 delete $self->{texture};
1616
1617 $self->{last_activity} = $::NOW;
1618 $self->{text} = $text;
1619
1620 $text =~ s/./*/g if $self->{hidden};
1621 $self->{layout}->set_text ("$text ");
1622
1623 $self->_emit (changed => $self->{text});
1624 }
1625
1626 sub set_text {
1627 my ($self, $text) = @_;
1628
1629 $self->{cursor} = length $text;
1630 $self->_set_text ($text);
1631 $self->update;
1632 $self->check_size;
1633 }
1634
1635 sub get_text {
1636 $_[0]{text}
1637 }
1638
1639 sub size_request {
1640 my ($self) = @_;
1641
1642 my ($w, $h) = $self->SUPER::size_request;
1643
1644 ($w + 1, $h) # add 1 for cursor
1645 }
1646
1647 sub key_down {
1648 my ($self, $ev) = @_;
1649
1650 my $mod = $ev->{mod};
1651 my $sym = $ev->{sym};
1652 my $uni = $ev->{unicode};
1653
1654 my $text = $self->get_text;
1655
1656 if ($uni == 8) {
1657 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
1658 } elsif ($uni == 127) {
1659 substr $text, $self->{cursor}, 1, "";
1660 } elsif ($sym == CFClient::SDLK_LEFT) {
1661 --$self->{cursor} if $self->{cursor};
1662 } elsif ($sym == CFClient::SDLK_RIGHT) {
1663 ++$self->{cursor} if $self->{cursor} < length $self->{text};
1664 } elsif ($sym == CFClient::SDLK_HOME) {
1665 $self->{cursor} = 0;
1666 } elsif ($sym == CFClient::SDLK_END) {
1667 $self->{cursor} = length $text;
1668 } elsif ($uni == 27) {
1669 $self->_emit ('escape');
1670 } elsif ($uni) {
1671 substr $text, $self->{cursor}++, 0, chr $uni;
1672 }
1673
1674 $self->_set_text ($text);
1675 $self->update;
1676 $self->check_size;
1677 }
1678
1679 sub focus_in {
1680 my ($self) = @_;
1681
1682 $self->{last_activity} = $::NOW;
1683
1684 $self->SUPER::focus_in;
1685 }
1686
1687 sub button_down {
1688 my ($self, $ev, $x, $y) = @_;
1689
1690 $self->SUPER::button_down ($ev, $x, $y);
1691
1692 my $idx = $self->{layout}->xy_to_index ($x, $y);
1693
1694 # byte-index to char-index
1695 my $text = $self->{text};
1696 utf8::encode $text;
1697 $self->{cursor} = length substr $text, 0, $idx;
1698
1699 $self->_set_text ($self->{text});
1700 $self->update;
1701 }
1702
1703 sub mouse_motion {
1704 my ($self, $ev, $x, $y) = @_;
1705 # printf "M %d,%d %d,%d\n", $ev->motion_x, $ev->motion_y, $x, $y;#d#
1706 }
1707
1708 sub _draw {
1709 my ($self) = @_;
1710
1711 local $self->{fg} = $self->{fg};
1712
1713 if ($FOCUS == $self) {
1714 glColor @{$self->{active_bg}};
1715 $self->{fg} = $self->{active_fg};
1716 } else {
1717 glColor @{$self->{bg}};
1718 }
1719
1720 glEnable GL_BLEND;
1721 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1722 glBegin GL_QUADS;
1723 glVertex 0 , 0;
1724 glVertex 0 , $self->{h};
1725 glVertex $self->{w}, $self->{h};
1726 glVertex $self->{w}, 0;
1727 glEnd;
1728 glDisable GL_BLEND;
1729
1730 $self->SUPER::_draw;
1731
1732 #TODO: force update every cursor change :(
1733 if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) {
1734
1735 unless (exists $self->{cur_h}) {
1736 my $text = substr $self->{text}, 0, $self->{cursor};
1737 utf8::encode $text;
1738
1739 @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text)
1740 }
1741
1742 glColor @{$self->{fg}};
1743 glBegin GL_LINES;
1744 glVertex $self->{cur_x} + $self->{ox}, $self->{cur_y} + $self->{oy};
1745 glVertex $self->{cur_x} + $self->{ox}, $self->{cur_y} + $self->{oy} + $self->{cur_h};
1746 glEnd;
1747 }
1748 }
1749
1750 package CFClient::UI::Entry;
1751
1752 our @ISA = CFClient::UI::EntryBase::;
1753
1754 use CFClient::OpenGL;
1755
1756 sub key_down {
1757 my ($self, $ev) = @_;
1758
1759 my $sym = $ev->{sym};
1760
1761 if ($sym == 13) {
1762 unshift @{$self->{history}},
1763 my $txt = $self->get_text;
1764 $self->{history_pointer} = -1;
1765 $self->{history_saveback} = '';
1766 $self->_emit (activate => $txt);
1767 $self->update;
1768
1769 } elsif ($sym == CFClient::SDLK_UP) {
1770 if ($self->{history_pointer} < 0) {
1771 $self->{history_saveback} = $self->get_text;
1772 }
1773 if (@{$self->{history} || []} > 0) {
1774 $self->{history_pointer}++;
1775 if ($self->{history_pointer} >= @{$self->{history} || []}) {
1776 $self->{history_pointer} = @{$self->{history} || []} - 1;
1777 }
1778 $self->set_text ($self->{history}->[$self->{history_pointer}]);
1779 }
1780
1781 } elsif ($sym == CFClient::SDLK_DOWN) {
1782 $self->{history_pointer}--;
1783 $self->{history_pointer} = -1 if $self->{history_pointer} < 0;
1784
1785 if ($self->{history_pointer} >= 0) {
1786 $self->set_text ($self->{history}->[$self->{history_pointer}]);
1787 } else {
1788 $self->set_text ($self->{history_saveback});
1789 }
1790
1791 } else {
1792 $self->SUPER::key_down ($ev);
1793 }
1794
1795 }
1796
1797 #############################################################################
1798
1799 package CFClient::UI::Button;
1800
1801 our @ISA = CFClient::UI::Label::;
1802
1803 use CFClient::OpenGL;
1804
1805 my @tex =
1806 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1807 qw(b1_button_active.png);
1808
1809 sub new {
1810 my $class = shift;
1811
1812 $class->SUPER::new (
1813 padding => 4,
1814 fg => [1, 1, 1],
1815 active_fg => [0, 0, 1],
1816 can_hover => 1,
1817 align => 0,
1818 valign => 0,
1819 can_events => 1,
1820 @_
1821 )
1822 }
1823
1824 sub activate { }
1825
1826 sub button_up {
1827 my ($self, $ev, $x, $y) = @_;
1828
1829 $self->emit ("activate")
1830 if $x >= 0 && $x < $self->{w}
1831 && $y >= 0 && $y < $self->{h};
1832 }
1833
1834 sub _draw {
1835 my ($self) = @_;
1836
1837 local $self->{fg} = $self->{fg};
1838
1839 if ($GRAB == $self) {
1840 $self->{fg} = $self->{active_fg};
1841 }
1842
1843 glEnable GL_TEXTURE_2D;
1844 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1845 glColor 0, 0, 0, 1;
1846
1847 $tex[0]->draw_quad_alpha (0, 0, $self->{w}, $self->{h});
1848
1849 glDisable GL_TEXTURE_2D;
1850
1851 $self->SUPER::_draw;
1852 }
1853
1854 #############################################################################
1855
1856 package CFClient::UI::CheckBox;
1857
1858 our @ISA = CFClient::UI::DrawBG::;
1859
1860 my @tex =
1861 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1862 qw(c1_checkbox_bg.png c1_checkbox_active.png);
1863
1864 use CFClient::OpenGL;
1865
1866 sub new {
1867 my $class = shift;
1868
1869 $class->SUPER::new (
1870 padding => 2,
1871 fg => [1, 1, 1],
1872 active_fg => [1, 1, 0],
1873 bg => [0, 0, 0, 0.2],
1874 active_bg => [1, 1, 1, 0.5],
1875 state => 0,
1876 can_hover => 1,
1877 @_
1878 )
1879 }
1880
1881 sub size_request {
1882 my ($self) = @_;
1883
1884 ($self->{padding} * 2 + 6) x 2
1885 }
1886
1887 sub button_down {
1888 my ($self, $ev, $x, $y) = @_;
1889
1890 if ($x >= $self->{padding} && $x < $self->{w} - $self->{padding}
1891 && $y >= $self->{padding} && $y < $self->{h} - $self->{padding}) {
1892 $self->{state} = !$self->{state};
1893 $self->_emit (changed => $self->{state});
1894 }
1895 }
1896
1897 sub _draw {
1898 my ($self) = @_;
1899
1900 $self->SUPER::_draw;
1901
1902 glTranslate $self->{padding} + 0.375, $self->{padding} + 0.375, 0;
1903
1904 my $s = (List::Util::min @$self{qw(w h)}) - $self->{padding} * 2;
1905
1906 glColor @{ $FOCUS == $self ? $self->{active_fg} : $self->{fg} };
1907
1908 my $tex = $self->{state} ? $tex[1] : $tex[0];
1909
1910 glEnable GL_TEXTURE_2D;
1911 $tex->draw_quad_alpha (0, 0, $s, $s);
1912 glDisable GL_TEXTURE_2D;
1913 }
1914
1915 #############################################################################
1916
1917 package CFClient::UI::Image;
1918
1919 our @ISA = CFClient::UI::Base::;
1920
1921 use CFClient::OpenGL;
1922 use Carp qw/confess/;
1923
1924 our %loaded_images;
1925
1926 sub new {
1927 my $class = shift;
1928
1929 my $self = $class->SUPER::new (can_events => 0, @_);
1930
1931 $self->{image} or confess "Image has 'image' not set. This is a fatal error!";
1932
1933 $loaded_images{$self->{image}} ||=
1934 new_from_file CFClient::Texture CFClient::find_rcfile $self->{image}, mipmap => 1;
1935
1936 my $tex = $self->{tex} = $loaded_images{$self->{image}};
1937
1938 Scalar::Util::weaken $loaded_images{$self->{image}};
1939
1940 $self->{aspect} = $tex->{w} / $tex->{h};
1941
1942 $self
1943 }
1944
1945 sub size_request {
1946 my ($self) = @_;
1947
1948 ($self->{tex}->{w}, $self->{tex}->{h})
1949 }
1950
1951 sub _draw {
1952 my ($self) = @_;
1953
1954 my $tex = $self->{tex};
1955
1956 my ($w, $h) = ($self->{w}, $self->{h});
1957
1958 if ($self->{rot90}) {
1959 glRotate 90, 0, 0, 1;
1960 glTranslate 0, -$self->{w}, 0;
1961
1962 ($w, $h) = ($h, $w);
1963 }
1964
1965 glEnable GL_TEXTURE_2D;
1966 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1967
1968 $tex->draw_quad_alpha (0, 0, $w, $h);
1969
1970 glDisable GL_TEXTURE_2D;
1971 }
1972
1973 #############################################################################
1974
1975 package CFClient::UI::VGauge;
1976
1977 our @ISA = CFClient::UI::Base::;
1978
1979 use List::Util qw(min max);
1980
1981 use CFClient::OpenGL;
1982
1983 my %tex = (
1984 food => [
1985 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1986 qw/g1_food_gauge_empty.png g1_food_gauge_full.png/
1987 ],
1988 grace => [
1989 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1990 qw/g1_grace_gauge_empty.png g1_grace_gauge_full.png g1_grace_gauge_overflow.png/
1991 ],
1992 hp => [
1993 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1994 qw/g1_hp_gauge_empty.png g1_hp_gauge_full.png/
1995 ],
1996 mana => [
1997 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1998 qw/g1_mana_gauge_empty.png g1_mana_gauge_full.png g1_mana_gauge_overflow.png/
1999 ],
2000 );
2001
2002 # eg. VGauge->new (gauge => 'food'), default gauge: food
2003 sub new {
2004 my $class = shift;
2005
2006 my $self = $class->SUPER::new (
2007 type => 'food',
2008 @_
2009 );
2010
2011 $self->{aspect} = $tex{$self->{type}}[0]{w} / $tex{$self->{type}}[0]{h};
2012
2013 $self
2014 }
2015
2016 sub size_request {
2017 my ($self) = @_;
2018
2019 #my $tex = $tex{$self->{type}}[0];
2020 #@$tex{qw(w h)}
2021 (0, 0)
2022 }
2023
2024 sub set_max {
2025 my ($self, $max) = @_;
2026
2027 return if $self->{max_val} == $max;
2028
2029 $self->{max_val} = $max;
2030 $self->update;
2031 }
2032
2033 sub set_value {
2034 my ($self, $val, $max) = @_;
2035
2036 $self->set_max ($max)
2037 if defined $max;
2038
2039 return if $self->{val} == $val;
2040
2041 $self->{val} = $val;
2042 $self->update;
2043 }
2044
2045 sub _draw {
2046 my ($self) = @_;
2047
2048 my $tex = $tex{$self->{type}};
2049 my ($t1, $t2, $t3) = @$tex;
2050
2051 my ($w, $h) = ($self->{w}, $self->{h});
2052
2053 if ($self->{vertical}) {
2054 glRotate 90, 0, 0, 1;
2055 glTranslate 0, -$self->{w}, 0;
2056
2057 ($w, $h) = ($h, $w);
2058 }
2059
2060 my $ycut = $self->{val} / ($self->{max_val} || 1);
2061
2062 my $ycut1 = max 0, min 1, $ycut;
2063 my $ycut2 = max 0, min 1, $ycut - 1;
2064
2065 my $h1 = $self->{h} * (1 - $ycut1);
2066 my $h2 = $self->{h} * (1 - $ycut2);
2067
2068 glEnable GL_BLEND;
2069 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2070 glEnable GL_TEXTURE_2D;
2071 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2072
2073 glBindTexture GL_TEXTURE_2D, $t1->{name};
2074 glBegin GL_QUADS;
2075 glTexCoord 0 , 0; glVertex 0 , 0;
2076 glTexCoord 0 , $t1->{t} * (1 - $ycut1); glVertex 0 , $h1;
2077 glTexCoord $t1->{s}, $t1->{t} * (1 - $ycut1); glVertex $w, $h1;
2078 glTexCoord $t1->{s}, 0; glVertex $w, 0;
2079 glEnd;
2080
2081 my $ycut1 = List::Util::min 1, $ycut;
2082 glBindTexture GL_TEXTURE_2D, $t2->{name};
2083 glBegin GL_QUADS;
2084 glTexCoord 0 , $t2->{t} * (1 - $ycut1); glVertex 0 , $h1;
2085 glTexCoord 0 , $t2->{t} * (1 - $ycut2); glVertex 0 , $h2;
2086 glTexCoord $t2->{s}, $t2->{t} * (1 - $ycut2); glVertex $w, $h2;
2087 glTexCoord $t2->{s}, $t2->{t} * (1 - $ycut1); glVertex $w, $h1;
2088 glEnd;
2089
2090 if ($t3) {
2091 glBindTexture GL_TEXTURE_2D, $t3->{name};
2092 glBegin GL_QUADS;
2093 glTexCoord 0 , $t3->{t} * (1 - $ycut2); glVertex 0 , $h2;
2094 glTexCoord 0 , $t3->{t}; glVertex 0 , $self->{h};
2095 glTexCoord $t3->{s}, $t3->{t}; glVertex $w, $self->{h};
2096 glTexCoord $t3->{s}, $t3->{t} * (1 - $ycut2); glVertex $w, $h2;
2097 glEnd;
2098 }
2099
2100 glDisable GL_BLEND;
2101 glDisable GL_TEXTURE_2D;
2102 }
2103
2104 #############################################################################
2105
2106 package CFClient::UI::Gauge;
2107
2108 our @ISA = CFClient::UI::VBox::;
2109
2110 sub new {
2111 my ($class, %arg) = @_;
2112
2113 my $self = $class->SUPER::new (
2114 tooltip => $arg{type},
2115 can_hover => 1,
2116 can_events => 1,
2117 %arg,
2118 );
2119
2120 $self->add ($self->{value} = new CFClient::UI::Label valign => +1, align => 0, template => "999");
2121 $self->add ($self->{gauge} = new CFClient::UI::VGauge type => $self->{type}, expand => 1, can_hover => 1);
2122 $self->add ($self->{max} = new CFClient::UI::Label valign => -1, align => 0, template => "999");
2123
2124 $self
2125 }
2126
2127 sub set_fontsize {
2128 my ($self, $fsize) = @_;
2129
2130 $self->{value}->set_fontsize ($fsize);
2131 $self->{max} ->set_fontsize ($fsize);
2132 }
2133
2134 sub set_max {
2135 my ($self, $max) = @_;
2136
2137 $self->{gauge}->set_max ($max);
2138 $self->{max}->set_text ($max);
2139 }
2140
2141 sub set_value {
2142 my ($self, $val, $max) = @_;
2143
2144 $self->set_max ($max)
2145 if defined $max;
2146
2147 $self->{gauge}->set_value ($val, $max);
2148 $self->{value}->set_text ($val);
2149 }
2150
2151 #############################################################################
2152
2153 package CFClient::UI::Slider;
2154
2155 use strict;
2156
2157 use CFClient::OpenGL;
2158
2159 our @ISA = CFClient::UI::DrawBG::;
2160
2161 my @tex =
2162 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
2163 qw(s1_slider.png s1_slider_bg.png);
2164
2165 sub new {
2166 my $class = shift;
2167
2168 # range [value, low, high, page, unit]
2169
2170 # TODO: 0-width page
2171 # TODO: req_w/h are wrong with vertical
2172 # TODO: calculations are off
2173 my $self = $class->SUPER::new (
2174 fg => [1, 1, 1],
2175 active_fg => [0, 0, 0],
2176 bg => [0, 0, 0, 0.2],
2177 active_bg => [1, 1, 1, 0.5],
2178 range => [0, 0, 100, 10, 0],
2179 req_w => $::WIDTH / 80,
2180 req_h => $::WIDTH / 80,
2181 vertical => 0,
2182 can_hover => 1,
2183 inner_pad => 0.02,
2184 @_
2185 );
2186
2187 $self->set_value ($self->{range}[0]);
2188 $self->update;
2189
2190 $self
2191 }
2192
2193 sub set_range {
2194 my ($self, $range) = @_;
2195
2196 ($range, $self->{range}) = ($self->{range}, $range);
2197
2198 $self->update
2199 if "@$range" ne "@{$self->{range}}";
2200 }
2201
2202 sub set_value {
2203 my ($self, $value) = @_;
2204
2205 my ($old_value, $lo, $hi, $page, $unit) = @{$self->{range}};
2206
2207 $hi = $lo + 1 if $hi <= $lo;
2208
2209 $page = $hi - $lo if $page > $hi - $lo;
2210
2211 $value = $lo if $value < $lo;
2212 $value = $hi - $page if $value > $hi - $page;
2213
2214 $value = $lo + $unit * int +($value - $lo + $unit * 0.5) / $unit
2215 if $unit;
2216
2217 @{$self->{range}} = ($value, $lo, $hi, $page, $unit);
2218
2219 if ($value != $old_value) {
2220 $self->_emit (changed => $value);
2221 $self->update;
2222 }
2223 }
2224
2225 sub size_request {
2226 my ($self) = @_;
2227
2228 my $w = $self->{req_w};
2229 my $h = $self->{req_h};
2230
2231 $self->{vertical} ? ($h, $w) : ($w, $h)
2232 }
2233
2234 sub button_down {
2235 my ($self, $ev, $x, $y) = @_;
2236
2237 $self->SUPER::button_down ($ev, $x, $y);
2238
2239 $self->{click} = [$self->{range}[0], $self->{vertical} ? $y : $x];
2240
2241 $self->mouse_motion ($ev, $x, $y);
2242 }
2243
2244 sub mouse_motion {
2245 my ($self, $ev, $x, $y) = @_;
2246
2247 if ($GRAB == $self) {
2248 my ($x, $w) = $self->{vertical} ? ($y, $self->{h}) : ($x, $self->{w});
2249
2250 my (undef, $lo, $hi, $page) = @{$self->{range}};
2251
2252 $x = ($x - $self->{click}[1]) / ($w * $self->{scale});
2253
2254 $self->set_value ($self->{click}[0] + $x * ($hi - $page - $lo));
2255 }
2256 }
2257
2258 sub update {
2259 my ($self) = @_;
2260
2261 $CFClient::UI::ROOT->on_post_alloc ($self => sub {
2262 $self->set_value ($self->{range}[0]);
2263
2264 my ($value, $lo, $hi, $page) = @{$self->{range}};
2265 my $range = ($hi - $page - $lo) || 1e-100;
2266
2267 my $knob_w = List::Util::min 1, $page / ($hi - $lo) || 0.1;
2268
2269 $self->{offset} = List::Util::max $self->{inner_pad}, $knob_w * 0.5;
2270 $self->{scale} = 1 - 2 * $self->{offset} || 1e-100;
2271
2272 $value = ($value - $lo) / $range;
2273 $value = $value * $self->{scale} + $self->{offset};
2274
2275 $self->{knob_x} = $value - $knob_w * 0.5;
2276 $self->{knob_w} = $knob_w;
2277 });
2278
2279 $self->SUPER::update;
2280 }
2281
2282 sub _draw {
2283 my ($self) = @_;
2284
2285 $self->SUPER::_draw ();
2286
2287 glScale $self->{w}, $self->{h};
2288
2289 if ($self->{vertical}) {
2290 # draw a vertical slider like a rotated horizontal slider
2291
2292 glTranslate 1, 0, 0;
2293 glRotate 90, 0, 0, 1;
2294 }
2295
2296 my $fg = $FOCUS == $self ? $self->{active_fg} : $self->{fg};
2297 my $bg = $FOCUS == $self ? $self->{active_bg} : $self->{bg};
2298
2299 glEnable GL_TEXTURE_2D;
2300 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2301
2302 # draw background
2303 $tex[1]->draw_quad_alpha (0, 0, 1, 1);
2304
2305 # draw handle
2306 $tex[0]->draw_quad_alpha ($self->{knob_x}, 0, $self->{knob_w}, 1);
2307
2308 glDisable GL_TEXTURE_2D;
2309 }
2310
2311 #############################################################################
2312
2313 package CFClient::UI::ValSlider;
2314
2315 our @ISA = CFClient::UI::HBox::;
2316
2317 sub new {
2318 my ($class, %arg) = @_;
2319
2320 my $range = delete $arg{range};
2321
2322 my $self = $class->SUPER::new (
2323 slider => (new CFClient::UI::Slider expand => 1, range => $range),
2324 entry => (new CFClient::UI::Label text => "", template => delete $arg{template}),
2325 to_value => sub { shift },
2326 from_value => sub { shift },
2327 %arg,
2328 );
2329
2330 $self->{slider}->connect (changed => sub {
2331 my ($self, $value) = @_;
2332 $self->{parent}{entry}->set_text ($self->{parent}{to_value}->($value));
2333 $self->{parent}->emit (changed => $value);
2334 });
2335
2336 # $self->{entry}->connect (changed => sub {
2337 # my ($self, $value) = @_;
2338 # $self->{parent}{slider}->set_value ($self->{parent}{from_value}->($value));
2339 # $self->{parent}->emit (changed => $value);
2340 # });
2341
2342 $self->add ($self->{slider}, $self->{entry});
2343
2344 $self->{slider}->emit (changed => $self->{slider}{range}[0]);
2345
2346 $self
2347 }
2348
2349 sub set_range { shift->{slider}->set_range (@_) }
2350 sub set_value { shift->{slider}->set_value (@_) }
2351
2352 #############################################################################
2353
2354 package CFClient::UI::TextView;
2355
2356 our @ISA = CFClient::UI::HBox::;
2357
2358 use CFClient::OpenGL;
2359
2360 sub new {
2361 my $class = shift;
2362
2363 my $self = $class->SUPER::new (
2364 fontsize => 1,
2365 can_events => 0,
2366 #font => default_font
2367 @_,
2368
2369 layout => (new CFClient::Layout 1),
2370 par => [],
2371 height => 0,
2372 children => [
2373 (new CFClient::UI::Empty expand => 1),
2374 (new CFClient::UI::Slider vertical => 1),
2375 ],
2376 );
2377
2378 $self->{children}[1]->connect (changed => sub { $self->update });
2379
2380 $self
2381 }
2382
2383 sub set_fontsize {
2384 my ($self, $fontsize) = @_;
2385
2386 $self->{fontsize} = $fontsize;
2387 $self->reflow;
2388 }
2389
2390 sub size_allocate {
2391 my ($self, $w, $h) = @_;
2392
2393 $self->SUPER::size_allocate ($w, $h);
2394
2395 $self->{layout}->set_font ($self->{font}) if $self->{font};
2396 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
2397 $self->{layout}->set_width ($self->{children}[0]{w});
2398
2399 $self->reflow;
2400 }
2401
2402 sub text_size {
2403 my ($self, $text, $indent) = @_;
2404
2405 my $layout = $self->{layout};
2406
2407 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
2408 $layout->set_width ($self->{children}[0]{w} - $indent);
2409 $layout->set_markup ($text);
2410
2411 $layout->size
2412 }
2413
2414 sub reflow {
2415 my ($self) = @_;
2416
2417 $self->{need_reflow}++;
2418 $self->update;
2419 }
2420
2421 sub set_offset {
2422 my ($self, $offset) = @_;
2423
2424 # todo: base offset on lines or so, not on pixels
2425 $self->{children}[1]->set_value ($offset);
2426 }
2427
2428 sub clear {
2429 my ($self) = @_;
2430
2431 $self->{par} = [];
2432 $self->{height} = 0;
2433 $self->{children}[1]->set_range ([0, 0, 0, 1, 1]);
2434 }
2435
2436 sub add_paragraph {
2437 my ($self, $color, $text, $indent) = @_;
2438
2439 for my $line (split /\n/, $text) {
2440 my ($w, $h) = $self->text_size ($line);
2441 $self->{height} += $h;
2442 push @{$self->{par}}, [$w + $indent, $h, $color, $indent, $line];
2443 }
2444
2445 $self->{children}[1]->set_range ([$self->{height}, 0, $self->{height}, $self->{h}, 1]);
2446 }
2447
2448 sub update {
2449 my ($self) = @_;
2450
2451 $self->SUPER::update;
2452
2453 return unless $self->{h} > 0;
2454
2455 delete $self->{texture};
2456
2457 $ROOT->on_post_alloc ($self, sub {
2458 my ($W, $H) = @{$self->{children}[0]}{qw(w h)};
2459
2460 if (delete $self->{need_reflow}) {
2461 my $height = 0;
2462
2463 my $layout = $self->{layout};
2464
2465 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
2466
2467 for (@{$self->{par}}) {
2468 if (1 || $_->[0] >= $W) { # TODO: works,but needs reconfigure etc. support
2469 $layout->set_width ($W - $_->[3]);
2470 $layout->set_markup ($_->[4]);
2471 my ($w, $h) = $layout->size;
2472 $_->[0] = $w + $_->[3];
2473 $_->[1] = $h;
2474 }
2475
2476 $height += $_->[1];
2477 }
2478
2479 $self->{height} = $height;
2480
2481 $self->{children}[1]->set_range ([$height, 0, $height, $H, 1]);
2482
2483 delete $self->{texture};
2484 }
2485
2486 $self->{texture} ||= new_from_opengl CFClient::Texture $W, $H, sub {
2487 glClearColor 0.5, 0.5, 0.5, 0;
2488 glClear GL_COLOR_BUFFER_BIT;
2489
2490 my $top = int $self->{children}[1]{range}[0];
2491
2492 my $y0 = $top;
2493 my $y1 = $top + $H;
2494
2495 my $y = 0;
2496
2497 my $layout = $self->{layout};
2498
2499 $layout->set_font ($self->{font}) if $self->{font};
2500
2501 glEnable GL_BLEND;
2502 #TODO# not correct in windows where rgba is forced off
2503 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
2504
2505 for my $par (@{$self->{par}}) {
2506 my $h = $par->[1];
2507
2508 if ($y0 < $y + $h && $y < $y1) {
2509 $layout->set_foreground (@{ $par->[2] });
2510 $layout->set_width ($W - $par->[3]);
2511 $layout->set_markup ($par->[4]);
2512
2513 my ($w, $h, $data, $format, $internalformat) = $layout->render;
2514
2515 glRasterPos $par->[3], $y - $y0;
2516 glDrawPixels $w, $h, $format, GL_UNSIGNED_BYTE, $data;
2517 }
2518
2519 $y += $h;
2520 }
2521
2522 glDisable GL_BLEND;
2523 };
2524 });
2525 }
2526
2527 sub _draw {
2528 my ($self) = @_;
2529
2530 glEnable GL_TEXTURE_2D;
2531 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2532 glColor 1, 1, 1, 1;
2533 $self->{texture}->draw_quad_alpha (0, 0, $self->{children}[0]{w}, $self->{children}[0]{h});
2534 glDisable GL_TEXTURE_2D;
2535
2536 $self->{children}[1]->draw;
2537
2538 }
2539
2540 #############################################################################
2541
2542 package CFClient::UI::Animator;
2543
2544 use CFClient::OpenGL;
2545
2546 our @ISA = CFClient::UI::Bin::;
2547
2548 sub moveto {
2549 my ($self, $x, $y) = @_;
2550
2551 $self->{moveto} = [$self->{x}, $self->{y}, $x, $y];
2552 $self->{speed} = 0.001;
2553 $self->{time} = 1;
2554
2555 ::animation_start $self;
2556 }
2557
2558 sub animate {
2559 my ($self, $interval) = @_;
2560
2561 $self->{time} -= $interval * $self->{speed};
2562 if ($self->{time} <= 0) {
2563 $self->{time} = 0;
2564 ::animation_stop $self;
2565 }
2566
2567 my ($x0, $y0, $x1, $y1) = @{$self->{moveto}};
2568
2569 $self->{x} = $x0 * $self->{time} + $x1 * (1 - $self->{time});
2570 $self->{y} = $y0 * $self->{time} + $y1 * (1 - $self->{time});
2571 }
2572
2573 sub _draw {
2574 my ($self) = @_;
2575
2576 glPushMatrix;
2577 glRotate $self->{time} * 1000, 0, 1, 0;
2578 $self->{children}[0]->draw;
2579 glPopMatrix;
2580 }
2581
2582 #############################################################################
2583
2584 package CFClient::UI::Flopper;
2585
2586 our @ISA = CFClient::UI::Button::;
2587
2588 sub new {
2589 my $class = shift;
2590
2591 my $self = $class->SUPER::new (
2592 state => 0,
2593 on_activate => \&toggle_flopper,
2594 @_
2595 );
2596
2597 if ($self->{state}) {
2598 $self->{state} = 0;
2599 $self->toggle_flopper;
2600 }
2601
2602 $self
2603 }
2604
2605 sub toggle_flopper {
2606 my ($self) = @_;
2607
2608 # TODO: use animation
2609 if ($self->{state} = !$self->{state}) {
2610 $CFClient::UI::ROOT->add ($self->{other});
2611 $self->{other}->move ($self->coord2global (0, $self->{h}));
2612 $self->_emit ("open");
2613 } else {
2614 $CFClient::UI::ROOT->remove ($self->{other});
2615 $self->_emit ("close");
2616 }
2617
2618 $self->_emit (changed => $self->{state});
2619 }
2620
2621 #############################################################################
2622
2623 package CFClient::UI::Tooltip;
2624
2625 our @ISA = CFClient::UI::Bin::;
2626
2627 use CFClient::OpenGL;
2628
2629 sub new {
2630 my $class = shift;
2631
2632 $class->SUPER::new (
2633 @_,
2634 can_events => 0,
2635 )
2636 }
2637
2638 sub set_tooltip_from {
2639 my ($self, $widget) = @_;
2640
2641 $self->add (new CFClient::UI::Label
2642 markup => $widget->{tooltip},
2643 max_w => ($widget->{tooltip_width} || 0.25) * $::WIDTH,
2644 fontsize => 0.8,
2645 fg => [0, 0, 0, 1],
2646 ellipsise => 0,
2647 font => ($widget->{tooltip_font} || $::FONT_PROP),
2648 );
2649 }
2650
2651 sub size_request {
2652 my ($self) = @_;
2653
2654 my ($w, $h) = @{$self->child}{qw(req_w req_h)};
2655
2656 ($w + 4, $h + 4)
2657 }
2658
2659 sub size_allocate {
2660 my ($self, $w, $h) = @_;
2661
2662 $self->SUPER::size_allocate ($w - 4, $h - 4);
2663 }
2664
2665 sub _draw {
2666 my ($self) = @_;
2667
2668 glTranslate 0.375, 0.375;
2669
2670 my ($w, $h) = @$self{qw(w h)};
2671
2672 glColor 1, 0.8, 0.4;
2673 glBegin GL_QUADS;
2674 glVertex 0 , 0;
2675 glVertex 0 , $h;
2676 glVertex $w, $h;
2677 glVertex $w, 0;
2678 glEnd;
2679
2680 glColor 0, 0, 0;
2681 glBegin GL_LINE_LOOP;
2682 glVertex 0 , 0;
2683 glVertex 0 , $h;
2684 glVertex $w, $h;
2685 glVertex $w, 0;
2686 glEnd;
2687
2688 glTranslate 2 - 0.375, 2 - 0.375;
2689 $self->SUPER::_draw;
2690 }
2691
2692 #############################################################################
2693
2694 package CFClient::UI::Face;
2695
2696 our @ISA = CFClient::UI::Base::;
2697
2698 use CFClient::OpenGL;
2699
2700 sub new {
2701 my $class = shift;
2702
2703 my $self = $class->SUPER::new (
2704 aspect => 1,
2705 can_events => 0,
2706 @_,
2707 );
2708
2709 if ($self->{anim} && $self->{animspeed}) {
2710 Scalar::Util::weaken (my $widget = $self);
2711
2712 $self->{timer} = Event->timer (
2713 at => $self->{animspeed} * int $::NOW / $self->{animspeed},
2714 hard => 1,
2715 interval => $self->{animspeed},
2716 cb => sub {
2717 ++$widget->{frame};
2718 $widget->update;
2719 },
2720 );
2721 }
2722
2723 $self
2724 }
2725
2726 sub size_request {
2727 (32, 8)
2728 }
2729
2730 sub update {
2731 my ($self) = @_;
2732
2733 return unless $self->{visible};
2734
2735 $self->SUPER::update;
2736 }
2737
2738 sub _draw {
2739 my ($self) = @_;
2740
2741 return unless $::CONN;
2742
2743 my $face;
2744
2745 if ($self->{frame}) {
2746 my $anim = $::CONN->{anim}[$self->{anim}];
2747
2748 $face = $anim->[ $self->{frame} % @$anim ]
2749 if $anim && @$anim;
2750 }
2751
2752 my $tex = $::CONN->{texture}[$::CONN->{faceid}[$face || $self->{face}]];
2753
2754 if ($tex) {
2755 glEnable GL_TEXTURE_2D;
2756 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2757 glColor 1, 1, 1, 1;
2758 $tex->draw_quad_alpha (0, 0, $self->{w}, $self->{h});
2759 glDisable GL_TEXTURE_2D;
2760 }
2761 }
2762
2763 sub DESTROY {
2764 my ($self) = @_;
2765
2766 $self->{timer}->cancel
2767 if $self->{timer};
2768
2769 $self->SUPER::DESTROY;
2770 }
2771
2772 #############################################################################
2773
2774 package CFClient::UI::Inventory;
2775
2776 our @ISA = CFClient::UI::ScrolledWindow::;
2777
2778 sub new {
2779 my $class = shift;
2780
2781 my $self = $class->SUPER::new (
2782 scrolled => (new CFClient::UI::Table col_expand => [0, 1, 0]),
2783 @_,
2784 );
2785
2786 $self
2787 }
2788
2789 sub set_items {
2790 my ($self, $items) = @_;
2791
2792 $self->{scrolled}->clear;
2793 return unless $items;
2794
2795 my @items = sort {
2796 ($a->{type} <=> $b->{type})
2797 or ($a->{name} cmp $b->{name})
2798 } @$items;
2799
2800 $self->{real_items} = \@items;
2801
2802 my $row = 0;
2803 for my $item (@items) {
2804 CFClient::Item::update_widgets $item;
2805
2806 $self->{scrolled}->add (0, $row, $item->{face_widget});
2807 $self->{scrolled}->add (1, $row, $item->{desc_widget});
2808 $self->{scrolled}->add (2, $row, $item->{weight_widget});
2809
2810 $row++;
2811 }
2812 }
2813
2814 sub size_request {
2815 my ($self) = @_;
2816 ($self->{req_w}, $self->{req_h});
2817 }
2818
2819 #############################################################################
2820
2821 package CFClient::UI::Menu;
2822
2823 our @ISA = CFClient::UI::FancyFrame::;
2824
2825 use CFClient::OpenGL;
2826
2827 sub new {
2828 my $class = shift;
2829
2830 my $self = $class->SUPER::new (
2831 items => [],
2832 z => 100,
2833 @_,
2834 );
2835
2836 $self->add ($self->{vbox} = new CFClient::UI::VBox);
2837
2838 for my $item (@{ $self->{items} }) {
2839 my ($widget, $cb) = @$item;
2840
2841 # handle various types of items, only text for now
2842 if (!ref $widget) {
2843 $widget = new CFClient::UI::Label
2844 can_hover => 1,
2845 can_events => 1,
2846 text => $widget;
2847 }
2848
2849 $self->{item}{$widget} = $item;
2850
2851 $self->{vbox}->add ($widget);
2852 }
2853
2854 $self
2855 }
2856
2857 # popup given the event (must be a mouse button down event currently)
2858 sub popup {
2859 my ($self, $ev) = @_;
2860
2861 $self->_emit ("popdown");
2862
2863 # maybe save $GRAB? must be careful about events...
2864 $GRAB = $self;
2865 $self->{button} = $ev->{button};
2866
2867 $self->show;
2868 $self->move ($ev->{x} - $self->{w} * 0.5, $ev->{y} - $self->{h} * 0.5);
2869 }
2870
2871 sub mouse_motion {
2872 my ($self, $ev, $x, $y) = @_;
2873
2874 # TODO: should use vbox->find_widget or so
2875 $HOVER = $ROOT->find_widget ($ev->{x}, $ev->{y});
2876 $self->{hover} = $self->{item}{$HOVER};
2877 }
2878
2879 sub button_up {
2880 my ($self, $ev, $x, $y) = @_;
2881
2882 if ($ev->{button} == $self->{button}) {
2883 undef $GRAB;
2884 $self->hide;
2885
2886 $self->_emit ("popdown");
2887 $self->{hover}[1]->() if $self->{hover};
2888 }
2889 }
2890
2891 #############################################################################
2892
2893 package CFClient::UI::Statusbox;
2894
2895 our @ISA = CFClient::UI::VBox::;
2896
2897 sub new {
2898 my $class = shift;
2899
2900 $class->SUPER::new (
2901 fontsize => 0.8,
2902 @_,
2903 )
2904 }
2905
2906 sub reorder {
2907 my ($self) = @_;
2908 my $NOW = time;
2909
2910 while (my ($k, $v) = each %{ $self->{item} }) {
2911 delete $self->{item}{$k} if $v->{timeout} < $NOW;
2912 }
2913
2914 my @widgets;
2915
2916 my @items = sort {
2917 $a->{pri} <=> $b->{pri}
2918 or $b->{id} <=> $a->{id}
2919 } values %{ $self->{item} };
2920
2921 my $count = 10 + 1;
2922 for my $item (@items) {
2923 last unless --$count;
2924
2925 push @widgets, $item->{label} ||= do {
2926 # TODO: doesn't handle markup well (read as: at all)
2927 my $short = $item->{count} > 1
2928 ? "<b>$item->{count} ×</b> $item->{text}"
2929 : $item->{text};
2930
2931 for ($short) {
2932 s/^\s+//;
2933 s/\s+/ /g;
2934 }
2935
2936 new CFClient::UI::Label
2937 markup => $short,
2938 tooltip => $item->{tooltip},
2939 tooltip_font => $::FONT_PROP,
2940 tooltip_width => 0.67,
2941 fontsize => $item->{fontsize} || $self->{fontsize},
2942 max_w => $::WIDTH * 0.44,
2943 fg => $item->{fg},
2944 can_events => 1,
2945 can_hover => 1
2946 };
2947 }
2948
2949 $self->clear;
2950 $self->SUPER::add (reverse @widgets);
2951 }
2952
2953 sub add {
2954 my ($self, $text, %arg) = @_;
2955
2956 $text =~ s/^\s+//;
2957 $text =~ s/\s+$//;
2958
2959 return unless $text;
2960
2961 my $timeout = time + ((delete $arg{timeout}) || 60);
2962
2963 my $group = exists $arg{group} ? $arg{group} : ++$self->{id};
2964
2965 if (my $item = $self->{item}{$group}) {
2966 if ($item->{text} eq $text) {
2967 $item->{count}++;
2968 } else {
2969 $item->{count} = 1;
2970 $item->{text} = $item->{tooltip} = $text;
2971 }
2972 $item->{id} = ++$self->{id};
2973 $item->{timeout} = $timeout;
2974 delete $item->{label};
2975 } else {
2976 $self->{item}{$group} = {
2977 id => ++$self->{id},
2978 text => $text,
2979 timeout => $timeout,
2980 tooltip => $text,
2981 fg => [0.8, 0.8, 0.8, 0.8],
2982 pri => 0,
2983 count => 1,
2984 %arg,
2985 };
2986 }
2987
2988 $self->reorder;
2989 }
2990
2991 sub reconfigure {
2992 my ($self) = @_;
2993
2994 delete $_->{label}
2995 for values %{ $self->{item} || {} };
2996
2997 $self->reorder;
2998 $self->SUPER::reconfigure;
2999 }
3000
3001 #############################################################################
3002
3003 package CFClient::UI::Root;
3004
3005 our @ISA = CFClient::UI::Container::;
3006
3007 use CFClient::OpenGL;
3008
3009 sub new {
3010 my $class = shift;
3011
3012 $class->SUPER::new (
3013 visible => 1,
3014 @_,
3015 )
3016 }
3017
3018 sub configure {
3019 my ($self, $x, $y, $w, $h) = @_;
3020
3021 $self->{w} = $w;
3022 $self->{h} = $h;
3023 }
3024
3025 sub check_size {
3026 my ($self) = @_;
3027
3028 $self->size_allocate ($self->{w}, $self->{h})
3029 if $self->{w};
3030 }
3031
3032 sub size_request {
3033 my ($self) = @_;
3034
3035 ($self->{w}, $self->{h})
3036 }
3037
3038 sub size_allocate {
3039 my ($self, $w, $h) = @_;
3040
3041 for my $child ($self->children) {
3042 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
3043
3044 $X = $child->{req_x} > 0 ? $child->{req_x} : $w - $W - $child->{req_x} + 1
3045 if exists $child->{req_x};
3046
3047 $Y = $child->{req_y} > 0 ? $child->{req_y} : $h - $H - $child->{req_y} + 1
3048 if exists $child->{req_y};
3049
3050 $X = $self->{user_x} if exists $self->{user_x};
3051 $Y = $self->{user_y} if exists $self->{user_y};
3052
3053 $X = List::Util::max 0, List::Util::min $w - $W, int $X + 0.5;
3054 $Y = List::Util::max 0, List::Util::min $h - $H, int $Y + 0.5;
3055
3056 $child->configure ($X, $Y, $W, $H);
3057 }
3058 }
3059
3060 sub coord2local {
3061 my ($self, $x, $y) = @_;
3062
3063 ($x, $y)
3064 }
3065
3066 sub coord2global {
3067 my ($self, $x, $y) = @_;
3068
3069 ($x, $y)
3070 }
3071
3072 sub update {
3073 my ($self) = @_;
3074
3075 $self->check_size;
3076 $::WANT_REFRESH++;
3077 }
3078
3079 sub add {
3080 my ($self, @children) = @_;
3081
3082 for (my @widgets = @children; my $w = pop @widgets; ) {
3083 push @widgets, $w->children;
3084 $w->{root} = $self;
3085 $w->{visible} = $self->{visible} + 1;
3086 }
3087
3088 for my $child (@children) {
3089 $child->{is_toplevel} = 1;
3090
3091 # integerise window positions
3092 $child->{x} = int $child->{x};
3093 $child->{y} = int $child->{y};
3094 }
3095
3096 $self->SUPER::add (@children);
3097 }
3098
3099 sub remove {
3100 my ($self, @children) = @_;
3101
3102 $self->SUPER::remove (@children);
3103
3104 while (@children) {
3105 my $w = pop @children;
3106 push @children, $w->children;
3107 $w->set_invisible;
3108 }
3109 }
3110
3111 sub on_refresh {
3112 my ($self, $id, $cb) = @_;
3113
3114 $self->{refresh_hook}{$id} = $cb;
3115 }
3116
3117 sub on_post_alloc {
3118 my ($self, $id, $cb) = @_;
3119
3120 $self->{post_alloc_hook}{$id} = $cb;
3121 }
3122
3123 sub draw {
3124 my ($self) = @_;
3125
3126 while ($self->{refresh_hook}) {
3127 $_->()
3128 for values %{delete $self->{refresh_hook}};
3129 }
3130
3131 if ($self->{check_size}) {
3132 my @queue;
3133
3134 for (;;) {
3135 if ($self->{check_size}) {
3136 #TODO use array-of-depth approach
3137
3138 @queue = sort { $a->{visible} <=> $b->{visible} }
3139 @queue, values %{delete $self->{check_size}};
3140 }
3141
3142 my $widget = pop @queue || last;
3143
3144 defined $widget->{visible} or last; # do not resize invisible widgets
3145
3146 my ($w, $h) = $widget->{user_w} && $widget->{user_h}
3147 ? @$widget{qw(user_w user_h)}
3148 : $widget->size_request;
3149
3150 if (delete $widget->{force_alloc}
3151 or $w != $widget->{req_w} or $h != $widget->{req_h}) {
3152 Carp::confess "$widget: size_request is negative" if $w < 0 || $h < 0;#d#
3153
3154 $widget->{req_w} = $w;
3155 $widget->{req_h} = $h;
3156
3157 $self->{size_alloc}{$widget} = [$widget, $widget->{w} || $w, $widget->{h} || $h];
3158
3159 $widget->{parent}->check_size
3160 if $widget->{parent};
3161 }
3162 }
3163 }
3164
3165 while ($self->{size_alloc}) {
3166 for (values %{delete $self->{size_alloc}}) {
3167 my ($widget, $w, $h) = @$_;
3168
3169 $w = 0 if $w < 0;
3170 $h = 0 if $h < 0;
3171
3172 $widget->{w} = $w;
3173 $widget->{h} = $h;
3174 $widget->emit (size_allocate => $w, $h);
3175 }
3176 }
3177
3178 while ($self->{post_alloc_hook}) {
3179 $_->()
3180 for values %{delete $self->{post_alloc_hook}};
3181 }
3182
3183 glViewport 0, 0, $::WIDTH, $::HEIGHT;
3184 glClearColor +($::CFG->{fow_intensity}) x 3, 1;
3185 glClear GL_COLOR_BUFFER_BIT;
3186
3187 glMatrixMode GL_PROJECTION;
3188 glLoadIdentity;
3189 glOrtho 0, $::WIDTH, $::HEIGHT, 0, -10000, 10000;
3190 glMatrixMode GL_MODELVIEW;
3191 glLoadIdentity;
3192
3193 $self->_draw;
3194 }
3195
3196 #############################################################################
3197
3198 package CFClient::UI;
3199
3200 $ROOT = new CFClient::UI::Root;
3201 $TOOLTIP = new CFClient::UI::Tooltip z => 900;
3202
3203 1
3204