ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/UI.pm
Revision: 1.189
Committed: Mon May 8 22:17:24 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.188: +34 -3 lines
Log Message:
*** empty log message ***

File Contents

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