ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/UI.pm
Revision: 1.97
Committed: Fri Apr 14 02:03:11 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.96: +124 -51 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     our $TOPLEVEL;
13     our $BUTTON_STATE;
14    
15 elmex 1.1 # class methods for events
16 root 1.51 sub feed_sdl_key_down_event {
17     $FOCUS->key_down ($_[0]) if $FOCUS;
18     }
19    
20     sub feed_sdl_key_up_event {
21     $FOCUS->key_up ($_[0]) if $FOCUS;
22     }
23    
24     sub feed_sdl_button_down_event {
25     my ($ev) = @_;
26     my ($x, $y) = ($ev->motion_x, $ev->motion_y);
27    
28     if (!$BUTTON_STATE) {
29     my $widget = $TOPLEVEL->find_widget ($x, $y);
30    
31     $GRAB = $widget;
32     $GRAB->update if $GRAB;
33     }
34    
35     $BUTTON_STATE |= 1 << ($ev->button - 1);
36    
37 root 1.58 $GRAB->button_down ($ev, $GRAB->translate ($x, $y)) if $GRAB;
38 root 1.51 }
39    
40     sub feed_sdl_button_up_event {
41     my ($ev) = @_;
42     my ($x, $y) = ($ev->motion_x, $ev->motion_y);
43    
44     my $widget = $GRAB || $TOPLEVEL->find_widget ($x, $y);
45    
46     $BUTTON_STATE &= ~(1 << ($ev->button - 1));
47    
48 root 1.77 $GRAB->button_up ($ev, $GRAB->translate ($x, $y)) if $GRAB;
49 root 1.58
50 root 1.51 if (!$BUTTON_STATE) {
51     my $grab = $GRAB; undef $GRAB;
52     $grab->update if $grab;
53     $GRAB->update if $GRAB;
54     }
55     }
56    
57     sub feed_sdl_motion_event {
58     my ($ev) = @_;
59     my ($x, $y) = ($ev->motion_x, $ev->motion_y);
60    
61     my $widget = $GRAB || $TOPLEVEL->find_widget ($x, $y);
62    
63     if ($widget != $HOVER) {
64     my $hover = $HOVER; $HOVER = $widget;
65    
66     $hover->update if $hover;
67     $HOVER->update if $HOVER;
68     }
69    
70 root 1.58 $HOVER->mouse_motion ($ev, $HOVER->translate ($x, $y)) if $HOVER;
71 root 1.51 }
72 elmex 1.1
73 root 1.73 #############################################################################
74    
75     package CFClient::UI::Base;
76    
77     use strict;
78    
79     use SDL::OpenGL;
80    
81 elmex 1.1 sub new {
82     my $class = shift;
83 root 1.10
84 root 1.79 my $self = bless {
85 root 1.65 x => 0,
86     y => 0,
87     z => 0,
88 root 1.75 w => -1,
89     h => -1,
90 root 1.65 @_
91 root 1.79 }, $class;
92    
93     for (keys %$self) {
94     if (/^connect_(.*)$/) {
95     $self->connect ($1 => delete $self->{$_});
96     }
97     }
98    
99     $self
100 elmex 1.1 }
101    
102 root 1.18 sub move {
103     my ($self, $x, $y, $z) = @_;
104     $self->{x} = $x;
105     $self->{y} = $y;
106     $self->{z} = $z if defined $z;
107     }
108    
109 elmex 1.20 sub needs_redraw {
110     0
111     }
112    
113 root 1.14 sub size_request {
114 elmex 1.36 require Carp;
115     Carp::confess "size_request is abtract";
116     }
117    
118 root 1.75 sub _size_allocate {
119     my ($self, $x, $y, $w, $h) = @_;
120    
121 root 1.97 $self->{x} = int $x;
122     $self->{y} = int $y;
123 root 1.75
124     return unless $self->{w} != $w || $self->{h} != $h;
125 root 1.40
126 root 1.97 $self->{w} = int $w;
127     $self->{h} = int $h;
128 root 1.75
129     1
130     }
131    
132     sub size_allocate {
133     my ($self, $x, $y, $w, $h) = @_;
134    
135     $self->_size_allocate ($x, $y, $w, $h);
136 root 1.14 }
137    
138 root 1.82 # translate global coordinates to local coordinate system
139 root 1.58 sub translate {
140     my ($self, $x, $y) = @_;
141    
142     $self->{parent}->translate ($x - $self->{x}, $y - $self->{y});
143     }
144    
145 elmex 1.1 sub focus_in {
146 root 1.51 my ($self) = @_;
147    
148 root 1.68 return if $FOCUS == $self;
149 root 1.97 return unless $self->{can_focus};
150 root 1.68
151 root 1.51 my $focus = $FOCUS; $FOCUS = $self;
152     $focus->update if $focus;
153     $FOCUS->update;
154 elmex 1.1 }
155 root 1.4
156 elmex 1.1 sub focus_out {
157 root 1.51 my ($self) = @_;
158 root 1.4
159 root 1.51 return unless $FOCUS == $self;
160 root 1.4
161 root 1.51 my $focus = $FOCUS; undef $FOCUS;
162     $focus->update if $focus; #?
163 elmex 1.1 }
164 root 1.4
165 root 1.51 sub mouse_motion { }
166     sub button_up { }
167     sub key_down { }
168     sub key_up { }
169    
170 root 1.68 sub button_down {
171     my ($self, $ev, $x, $y) = @_;
172    
173     $self->focus_in;
174     }
175    
176 root 1.51 sub w { $_[0]{w} = $_[1] if @_ > 1; $_[0]{w} }
177     sub h { $_[0]{h} = $_[1] if @_ > 1; $_[0]{h} }
178     sub x { $_[0]{x} = $_[1] if @_ > 1; $_[0]{x} }
179     sub y { $_[0]{y} = $_[1] if @_ > 1; $_[0]{y} }
180     sub z { $_[0]{z} = $_[1] if @_ > 1; $_[0]{z} }
181 elmex 1.11
182 elmex 1.1 sub draw {
183 elmex 1.11 my ($self) = @_;
184    
185 root 1.68 return unless $self->{h} && $self->{w};
186    
187 elmex 1.11 glPushMatrix;
188 root 1.12 glTranslate $self->{x}, $self->{y}, 0;
189 elmex 1.11 $self->_draw;
190 root 1.72 glPopMatrix;
191    
192 root 1.97 if ($self == $HOVER && $self->{can_hover}) {
193 root 1.73 my ($x, $y) = @$self{qw(x y)};
194 root 1.72
195 root 1.76 glColor 0, 0, 1, 0.2;
196 root 1.50 glEnable GL_BLEND;
197 root 1.74 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
198 root 1.48 glBegin GL_QUADS;
199 root 1.72 glVertex $x , $y;
200     glVertex $x + $self->{w}, $y;
201     glVertex $x + $self->{w}, $y + $self->{h};
202     glVertex $x , $y + $self->{h};
203 root 1.47 glEnd;
204 root 1.50 glDisable GL_BLEND;
205 root 1.47 }
206 elmex 1.11 }
207    
208     sub _draw {
209 root 1.38 my ($self) = @_;
210    
211     warn "no draw defined for $self\n";
212 elmex 1.1 }
213 root 1.4
214 root 1.38 sub find_widget {
215     my ($self, $x, $y) = @_;
216    
217     return $self
218     if $x >= $self->{x} && $x < $self->{x} + $self->{w}
219     && $y >= $self->{y} && $y < $self->{y} + $self->{h};
220    
221     ()
222     }
223    
224 elmex 1.32 sub set_parent {
225     my ($self, $par) = @_;
226    
227     $self->{parent} = $par;
228     Scalar::Util::weaken $self->{parent};
229     }
230    
231     sub get_parent {
232     $_[0]->{parent}
233     }
234    
235     sub update {
236     my ($self) = @_;
237    
238     $self->{parent}->update
239     if $self->{parent};
240 elmex 1.1 }
241 elmex 1.2
242 root 1.72 sub connect {
243     my ($self, $signal, $cb) = @_;
244    
245     push @{ $self->{cb}{$signal} }, $cb;
246     }
247    
248     sub emit {
249     my ($self, $signal, @args) = @_;
250    
251     $_->($self, @args)
252     for @{$self->{cb}{$signal} || []};
253     }
254    
255 root 1.18 sub DESTROY {
256     my ($self) = @_;
257    
258 elmex 1.32 #$self->deactivate;
259 root 1.18 }
260    
261 root 1.39 #############################################################################
262    
263 root 1.73 package CFClient::UI::DrawBG;
264 root 1.68
265 root 1.73 our @ISA = CFClient::UI::Base::;
266 root 1.68
267     use strict;
268     use SDL::OpenGL;
269    
270     sub new {
271     my $class = shift;
272    
273     # range [value, low, high, page]
274    
275     $class->SUPER::new (
276 root 1.76 bg => [0, 0, 0, 0.2],
277 root 1.79 active_bg => [1, 1, 1, 0.5],
278 root 1.68 @_
279     )
280     }
281    
282     sub _draw {
283     my ($self) = @_;
284    
285     my ($w, $h) = @$self{qw(w h)};
286    
287 root 1.76 glEnable GL_BLEND;
288     glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
289 root 1.68 glColor @{ $FOCUS == $self ? $self->{active_bg} : $self->{bg} };
290 root 1.76
291 root 1.68 glBegin GL_QUADS;
292     glVertex 0 , 0;
293     glVertex 0 , $h;
294     glVertex $w, $h;
295     glVertex $w, 0;
296     glEnd;
297 root 1.76
298     glDisable GL_BLEND;
299 root 1.68 }
300    
301     #############################################################################
302    
303 root 1.73 package CFClient::UI::Empty;
304 root 1.66
305 root 1.73 our @ISA = CFClient::UI::Base::;
306 root 1.66
307     sub size_request {
308     (0, 0)
309     }
310    
311 root 1.67 sub draw { }
312 root 1.66
313     #############################################################################
314    
315 root 1.73 package CFClient::UI::Container;
316 elmex 1.15
317 root 1.73 our @ISA = CFClient::UI::Base::;
318 elmex 1.15
319 root 1.38 sub new {
320 root 1.64 my ($class, %arg) = @_;
321    
322     my $children = delete $arg{children} || [];
323 root 1.38
324 root 1.65 my $self = $class->SUPER::new (children => [], %arg);
325 root 1.64 $self->add ($_) for @$children;
326 root 1.38
327     $self
328     }
329    
330     sub add {
331 root 1.77 my ($self, $chld) = @_;
332 root 1.38
333     $chld->set_parent ($self);
334    
335 root 1.66 $self->{children} = [
336 root 1.38 sort { $a->{z} <=> $b->{z} }
337 root 1.66 @{$self->{children}}, $chld
338     ];
339 root 1.38
340 root 1.75 $self->{w} = $self->{h} = -1;
341     $self->update;
342 root 1.38 }
343 root 1.35
344 elmex 1.32 sub remove {
345 root 1.38 my ($self, $widget) = @_;
346    
347     $self->{children} = [ grep $_ != $widget, @{ $self->{children} } ];
348    
349 root 1.75 $self->size_allocate (0, 0, $self->{w}, $self->{h});
350 root 1.38 }
351    
352     sub find_widget {
353     my ($self, $x, $y) = @_;
354    
355 root 1.45 $x -= $self->{x};
356     $y -= $self->{y};
357    
358 root 1.38 my $res;
359    
360 root 1.46 for (reverse @{ $self->{children} }) {
361 root 1.45 $res = $_->find_widget ($x, $y)
362 root 1.38 and return $res;
363     }
364    
365 root 1.46 $self->SUPER::find_widget ($x + $self->{x}, $y + $self->{y})
366 elmex 1.32 }
367 elmex 1.15
368 root 1.35 sub _draw {
369     my ($self) = @_;
370    
371 root 1.38 $_->draw for @{$self->{children}};
372 root 1.35 }
373 elmex 1.15
374 root 1.39 #############################################################################
375    
376 root 1.73 package CFClient::UI::Bin;
377 elmex 1.32
378 root 1.73 our @ISA = CFClient::UI::Container::;
379 elmex 1.32
380 root 1.66 sub new {
381     my ($class, %arg) = @_;
382    
383 root 1.73 my $child = (delete $arg{child}) || new CFClient::UI::Empty::;
384 root 1.66
385     $class->SUPER::new (children => [$child], %arg)
386     }
387    
388     sub add {
389     my ($self, $widget) = @_;
390    
391     $self->{children} = [];
392    
393     $self->SUPER::add ($widget);
394     }
395    
396     sub remove {
397     my ($self, $widget) = @_;
398    
399     $self->SUPER::remove ($widget);
400    
401 root 1.73 $self->{children} = [new CFClient::UI::Empty]
402 root 1.66 unless @{$self->{children}};
403     }
404    
405 root 1.39 sub child { $_[0]->{children}[0] }
406 elmex 1.32
407 root 1.38 sub size_request {
408 root 1.68 $_[0]{children}[0]->size_request
409 root 1.38 }
410 elmex 1.32
411 root 1.38 sub size_allocate {
412 root 1.75 my ($self, $x, $y, $w, $h) = @_;
413 root 1.42
414 root 1.75 $self->_size_allocate ($x, $y, $w, $h) or return;
415 root 1.68
416 root 1.75 $self->{children}[0]->size_allocate (0, 0, $w, $h);
417 root 1.38 }
418 elmex 1.32
419 root 1.39 #############################################################################
420    
421 root 1.73 package CFClient::UI::Window;
422 elmex 1.20
423 root 1.73 our @ISA = CFClient::UI::Bin::;
424 elmex 1.20
425     use SDL::OpenGL;
426    
427 root 1.42 sub new {
428 root 1.64 my ($class, %arg) = @_;
429 elmex 1.32
430 root 1.64 my $self = $class->SUPER::new (%arg);
431 elmex 1.32 }
432    
433     sub update {
434     my ($self) = @_;
435 root 1.42
436 root 1.63 # we want to do this delayed...
437 elmex 1.32 $self->render_chld;
438 root 1.42 $self->SUPER::update;
439 elmex 1.20 }
440    
441     sub render_chld {
442     my ($self) = @_;
443    
444     $self->{texture} =
445 root 1.60 CFClient::Texture->new_from_opengl (
446 root 1.42 $self->{w}, $self->{h}, sub { $self->child->draw }
447 elmex 1.20 );
448 elmex 1.36 }
449    
450     sub size_allocate {
451 root 1.75 my ($self, $x, $y, $w, $h) = @_;
452 elmex 1.36
453 root 1.75 $self->_size_allocate ($x, $y, $w, $h) or return;
454 root 1.68
455 root 1.75 $self->child->size_allocate (0, 0, $w, $h);
456 elmex 1.36
457 root 1.42 $self->render_chld;
458 elmex 1.20 }
459    
460     sub _draw {
461     my ($self) = @_;
462    
463 elmex 1.36 my ($w, $h) = ($self->w, $self->h);
464 root 1.29
465 elmex 1.20 my $tex = $self->{texture}
466     or return;
467    
468     glEnable GL_BLEND;
469 root 1.74 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
470 elmex 1.20 glEnable GL_TEXTURE_2D;
471 root 1.35 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
472 elmex 1.20
473 root 1.56 $tex->draw_quad (0, 0, $w, $h);
474 elmex 1.20
475     glDisable GL_BLEND;
476     glDisable GL_TEXTURE_2D;
477     }
478    
479 root 1.39 #############################################################################
480    
481 root 1.73 package CFClient::UI::Frame;
482 elmex 1.15
483 root 1.73 our @ISA = CFClient::UI::Bin::;
484 elmex 1.15
485     use SDL::OpenGL;
486    
487     sub size_request {
488     my ($self) = @_;
489 root 1.39 my $chld = $self->child
490 elmex 1.15 or return (0, 0);
491 root 1.30
492     $chld->move (2, 2);
493    
494 elmex 1.15 map { $_ + 4 } $chld->size_request;
495     }
496    
497 elmex 1.36 sub size_allocate {
498 root 1.75 my ($self, $x, $y, $w, $h) = @_;
499 root 1.42
500 root 1.75 $self->_size_allocate ($x, $y, $w, $h) or return;
501 elmex 1.36
502 root 1.75 $self->child->size_allocate (2, 2, $w - 4, $h - 4);
503 elmex 1.36 }
504    
505 elmex 1.15 sub _draw {
506     my ($self) = @_;
507    
508 root 1.39 my $chld = $self->child;
509 elmex 1.15
510     my ($w, $h) = $chld->size_request;
511    
512     glBegin GL_QUADS;
513 root 1.30 glColor 0, 0, 0;
514 root 1.56 glVertex 0 , 0;
515     glVertex 0 , $h + 4;
516     glVertex $w + 4 , $h + 4;
517     glVertex $w + 4 , 0;
518 elmex 1.15 glEnd;
519    
520 root 1.23 $chld->draw;
521 elmex 1.15 }
522    
523 root 1.39 #############################################################################
524    
525 root 1.73 package CFClient::UI::FancyFrame;
526 elmex 1.31
527 root 1.73 our @ISA = CFClient::UI::Bin::;
528 elmex 1.31
529     use SDL::OpenGL;
530    
531 root 1.41 my @tex =
532 root 1.60 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
533 root 1.41 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
534 elmex 1.34
535 root 1.97 sub new {
536     my $class = shift;
537    
538     # TODO: user_x, user_y, overwrite moveto?
539    
540     $class->SUPER::new (
541     bg => [1, 1, 1, 1],
542     border_bg => [1, 1, 1, 1],
543     border => $::FONTSIZE * 0.8,
544     @_
545     )
546     }
547    
548 elmex 1.34 sub size_request {
549     my ($self) = @_;
550 root 1.39
551 root 1.78 return ($self->{user_w}, $self->{user_h}) if $self->{user_w} && $self->{user_h};
552    
553     my ($w, $h) = $self->SUPER::size_request;
554 elmex 1.34
555 root 1.97 (
556     $w + $self->{border} * 2,
557     $h + $self->{border} * 2,
558     )
559 elmex 1.36 }
560    
561     sub size_allocate {
562 root 1.75 my ($self, $x, $y, $w, $h) = @_;
563 root 1.68
564 root 1.75 $self->_size_allocate ($x, $y, $w, $h) or return;
565 root 1.40
566 root 1.97 $h -= List::Util::max 0, $self->{border} * 2;
567     $w -= List::Util::max 0, $self->{border} * 2;
568 elmex 1.36
569 root 1.97 $self->child->size_allocate ($self->{border}, $self->{border}, $w, $h);
570 elmex 1.34 }
571    
572 root 1.77 sub button_down {
573     my ($self, $ev, $x, $y) = @_;
574    
575 root 1.97 if ($x < $self->{w} && $x >= $self->{w} - $self->{border}
576     && $y < $self->{h} && $y >= $self->{h} - $self->{border}) {
577 root 1.77
578     my ($ox, $oy) = ($ev->button_x, $ev->button_y);
579     my ($bw, $bh) = ($self->{w}, $self->{h});
580    
581     $self->{motion} = sub {
582     my ($ev, $x, $y) = @_;
583    
584     ($x, $y) = ($ev->motion_x, $ev->motion_y);
585    
586     $self->{user_w} = $bw + $x - $ox;
587     $self->{user_h} = $bh + $y - $oy;
588     $self->update;
589     };
590    
591     } elsif ($x >= 0 && $x < $self->{w}
592 root 1.97 && $y >= 0 && $y < $self->{border}) {
593 root 1.77
594     my ($ox, $oy) = ($ev->button_x, $ev->button_y);
595     my ($bx, $by) = ($self->{x}, $self->{y});
596    
597     $self->{motion} = sub {
598     my ($ev, $x, $y) = @_;
599    
600     ($x, $y) = ($ev->motion_x, $ev->motion_y);
601    
602     $self->move ($bx + $x - $ox, $by + $y - $oy);
603     $self->update;
604     };
605     }
606     }
607    
608     sub button_up {
609     my ($self, $ev, $x, $y) = @_;
610    
611     delete $self->{motion};
612     }
613    
614     sub mouse_motion {
615     my ($self, $ev, $x, $y) = @_;
616    
617     $self->{motion}->($ev, $x, $y) if $self->{motion};
618     }
619    
620 elmex 1.34 sub _draw {
621     my ($self) = @_;
622    
623 root 1.97 my ($w, $h ) = ($self->{w}, $self->{h});
624 root 1.43 my ($cw, $ch) = ($self->child->{w}, $self->child->{h});
625 elmex 1.34
626     glEnable GL_BLEND;
627 root 1.74 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
628 elmex 1.34 glEnable GL_TEXTURE_2D;
629 root 1.97 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
630 elmex 1.34
631 root 1.97 glColor @{ $self->{border_bg} };
632     $tex[1]->draw_quad (0, 0, $w, $self->{border});
633     $tex[3]->draw_quad (0, $self->{border}, $self->{border}, $ch);
634     $tex[2]->draw_quad ($w - $self->{border}, $self->{border}, $self->{border}, $ch);
635     $tex[4]->draw_quad (0, $h - $self->{border}, $w, $self->{border});
636 elmex 1.34
637 root 1.41 my $bg = $tex[0];
638 root 1.76
639 root 1.97 # TODO: repeat texture not scale
640 root 1.72 my $rep_x = $cw / $bg->{w};
641     my $rep_y = $ch / $bg->{h};
642 elmex 1.34
643 root 1.97 glColor @{ $self->{bg} };
644     $bg->draw_quad ($self->{border}, $self->{border}, $cw, $ch);
645 elmex 1.34
646 root 1.76 glDisable GL_TEXTURE_2D;
647 elmex 1.34 glDisable GL_BLEND;
648 elmex 1.36
649 root 1.39 $self->child->draw;
650 elmex 1.34 }
651 elmex 1.31
652 root 1.39 #############################################################################
653    
654 root 1.73 package CFClient::UI::Table;
655 elmex 1.15
656 root 1.73 our @ISA = CFClient::UI::Base::;
657 elmex 1.15
658 root 1.75 use List::Util qw(max sum);
659    
660 elmex 1.15 use SDL::OpenGL;
661    
662 root 1.78 sub new {
663     my $class = shift;
664    
665     $class->SUPER::new (
666     col_expand => [],
667     @_
668     )
669     }
670    
671 elmex 1.15 sub add {
672     my ($self, $x, $y, $chld) = @_;
673 elmex 1.32
674 root 1.38 $self->{children}[$y][$x] = $chld;
675 elmex 1.32 $chld->set_parent ($self);
676 root 1.75
677     $self->{w} = $self->{h} = -1;
678 elmex 1.32 $self->update;
679 elmex 1.15 }
680    
681 root 1.75 sub get_wh {
682     my ($self) = @_;
683    
684     my (@w, @h);
685 elmex 1.15
686 root 1.75 for my $y (0 .. $#{$self->{children}}) {
687     my $row = $self->{children}[$y]
688     or next;
689 elmex 1.15
690 root 1.75 for my $x (0 .. $#$row) {
691     my $widget = $row->[$x]
692     or next;
693     my ($w, $h) = $widget->size_request;
694 elmex 1.15
695 root 1.75 $w[$x] = max $w[$x], $w;
696     $h[$y] = max $h[$y], $h;
697 elmex 1.17 }
698 elmex 1.15 }
699 root 1.75
700     (\@w, \@h)
701 elmex 1.15 }
702    
703     sub size_request {
704     my ($self) = @_;
705    
706 root 1.75 my ($ws, $hs) = $self->get_wh;
707 elmex 1.15
708 root 1.75 (
709 root 1.78 (sum @$ws),
710     (sum @$hs),
711 root 1.75 )
712     }
713    
714     sub size_allocate {
715     my ($self, $x, $y, $w, $h) = @_;
716    
717     $self->_size_allocate ($x, $y, $w, $h) or return;
718    
719     my ($ws, $hs) = $self->get_wh;
720    
721 root 1.78 my $req_w = sum @$ws;
722     my $req_h = sum @$hs;
723    
724     # TODO: nicer code && do row_expand
725     my @col_expand = @{$self->{col_expand}};
726     @col_expand = (1) x @$ws unless @col_expand;
727     my $col_expand = (sum @col_expand) || 1;
728 elmex 1.15
729 root 1.75 # linearly scale sizes
730 root 1.78 $ws->[$_] += $col_expand[$_] / $col_expand * ($w - $req_w) for 0 .. $#$ws;
731     $hs->[$_] *= 1 * $h / $req_h for 0 .. $#$hs;
732 elmex 1.15
733 root 1.75 my $y;
734 elmex 1.15
735 root 1.75 for my $r (0 .. $#{$self->{children}}) {
736     my $row = $self->{children}[$r]
737     or next;
738 elmex 1.15
739     my $x = 0;
740 root 1.75 my $row_h = $hs->[$r];
741    
742     for my $c (0 .. $#$row) {
743     my $col_w = $ws->[$c];
744 elmex 1.15
745 root 1.83 if (my $widget = $row->[$c]) {
746     $widget->size_allocate ($x, $y, $col_w, $row_h);
747     }
748 elmex 1.15
749 root 1.75 $x += $col_w;
750 elmex 1.15 }
751    
752 root 1.75 $y += $row_h;
753     }
754    
755     }
756    
757 root 1.76 sub find_widget {
758     my ($self, $x, $y) = @_;
759    
760     $x -= $self->{x};
761     $y -= $self->{y};
762    
763     my $res;
764    
765     for (grep $_, map @$_, grep $_, @{ $self->{children} }) {
766     $res = $_->find_widget ($x, $y)
767     and return $res;
768     }
769    
770     $self->SUPER::find_widget ($x + $self->{x}, $y + $self->{y})
771     }
772    
773 root 1.75 sub _draw {
774     my ($self) = @_;
775    
776     for (grep $_, @{$self->{children}}) {
777     $_->draw for grep $_, @$_;
778 elmex 1.15 }
779     }
780    
781 root 1.39 #############################################################################
782    
783 root 1.76 package CFClient::UI::HBox;
784    
785     # TODO: wrap into common Box base class
786    
787     our @ISA = CFClient::UI::Container::;
788    
789     sub size_request {
790     my ($self) = @_;
791    
792     my @alloc = map [$_->size_request], @{$self->{children}};
793    
794     (
795     (List::Util::sum map $_->[0], @alloc),
796     (List::Util::max map $_->[1], @alloc),
797     )
798     }
799    
800     sub size_allocate {
801     my ($self, $x, $y, $w, $h) = @_;
802    
803 root 1.86 $self->_size_allocate ($x, $y, $w, $h);
804 root 1.76
805     ($h, $w) = ($w, $h);
806    
807     my $children = $self->{children};
808    
809     my @h = map +($_->size_request)[0], @$children;
810    
811     my $req_h = List::Util::sum @h;
812    
813     if ($req_h > $h) {
814     # ah well, not enough space
815 root 1.78 $_ *= $h / $req_h for @h;
816 root 1.76 } else {
817 root 1.77 my $exp = List::Util::sum map $_->{expand}, @$children;
818     $exp ||= 1;
819 root 1.76
820     for (0 .. $#$children) {
821     my $child = $children->[$_];
822    
823     my $alloc_h = $h[$_];
824 root 1.77 $alloc_h += ($h - $req_h) * $child->{expand} / $exp;
825 root 1.76 $h[$_] = $alloc_h;
826     }
827     }
828    
829     my $y = 0;
830     for (0 .. $#$children) {
831     my $child = $children->[$_];
832     my $h = $h[$_];
833     $child->size_allocate ($y, 0, $h, $w);
834    
835     $y += $h;
836     }
837     }
838    
839     #############################################################################
840    
841 root 1.73 package CFClient::UI::VBox;
842 elmex 1.15
843 root 1.76 # TODO: wrap into common Box base class
844    
845 root 1.73 our @ISA = CFClient::UI::Container::;
846 elmex 1.15
847 root 1.43 sub size_request {
848     my ($self) = @_;
849    
850     my @alloc = map [$_->size_request], @{$self->{children}};
851    
852     (
853     (List::Util::max map $_->[0], @alloc),
854     (List::Util::sum map $_->[1], @alloc),
855     )
856     }
857    
858 elmex 1.36 sub size_allocate {
859 root 1.75 my ($self, $x, $y, $w, $h) = @_;
860 elmex 1.36
861 root 1.86 $self->_size_allocate ($x, $y, $w, $h);
862 root 1.68
863     my $children = $self->{children};
864    
865     my @h = map +($_->size_request)[1], @$children;
866    
867     my $req_h = List::Util::sum @h;
868    
869     if ($req_h > $h) {
870     # ah well, not enough space
871 root 1.78 $_ *= $h / $req_h for @h;
872 root 1.68 } else {
873 root 1.77 my $exp = List::Util::sum map $_->{expand}, @$children;
874     $exp ||= 1;
875 root 1.68
876     for (0 .. $#$children) {
877     my $child = $children->[$_];
878 elmex 1.36
879 root 1.77 $h[$_] += ($h - $req_h) * $child->{expand} / $exp;
880 root 1.68 }
881 elmex 1.36 }
882    
883     my $y = 0;
884 root 1.68 for (0 .. $#$children) {
885     my $child = $children->[$_];
886     my $h = $h[$_];
887 root 1.75 $child->size_allocate (0, $y, $w, $h);
888 elmex 1.36
889 root 1.68 $y += $h;
890 elmex 1.36 }
891     }
892    
893 root 1.39 #############################################################################
894    
895 root 1.73 package CFClient::UI::Label;
896 root 1.10
897 root 1.73 our @ISA = CFClient::UI::Base::;
898 root 1.12
899 root 1.10 use SDL::OpenGL;
900    
901     sub new {
902 root 1.64 my ($class, %arg) = @_;
903 root 1.51
904 root 1.59 my $self = $class->SUPER::new (
905 root 1.76 fg => [1, 1, 1],
906     height => $::FONTSIZE,
907     text => "",
908     align => -1,
909     padding => 2,
910     layout => new CFClient::Layout,
911 root 1.64 %arg
912 root 1.59 );
913 root 1.10
914 root 1.64 $self->set_text ($self->{text});
915 root 1.10
916     $self
917     }
918    
919 root 1.68 sub escape_text {
920     local $_ = $_[1];
921    
922     s/&/&amp;/g;
923     s/>/&gt;/g;
924     s/</&lt;/g;
925    
926     $_[1]
927     }
928    
929 elmex 1.15 sub set_text {
930     my ($self, $text) = @_;
931 root 1.28
932     $self->{text} = $text;
933 root 1.59 $self->{layout}->set_markup ($text);
934 root 1.28
935 root 1.59 delete $self->{texture};
936 root 1.81 # $self->{w} = $self->{h} = -1;
937 root 1.68 $self->update;
938 elmex 1.15 }
939    
940     sub get_text {
941     my ($self, $text) = @_;
942 root 1.28
943 elmex 1.15 $self->{text}
944     }
945    
946 root 1.14 sub size_request {
947     my ($self) = @_;
948    
949 root 1.59 $self->{layout}->set_width;
950 root 1.64 $self->{layout}->set_height ($self->{height});
951 root 1.76 my ($w, $h) = $self->{layout}->size;
952    
953     (
954     $w + $self->{padding} * 2,
955     $h + $self->{padding} * 2,
956     )
957 root 1.59 }
958 root 1.51
959 root 1.59 sub size_allocate {
960 root 1.75 my ($self, $x, $y, $w, $h) = @_;
961 root 1.51
962 root 1.75 $self->_size_allocate ($x, $y, $w, $h) or return;
963 root 1.68
964 root 1.59 delete $self->{texture};
965 root 1.14 }
966    
967 root 1.68 sub update {
968     my ($self) = @_;
969    
970     delete $self->{texture};
971     $self->SUPER::update;
972     }
973    
974 elmex 1.11 sub _draw {
975 root 1.10 my ($self) = @_;
976    
977 root 1.59 my $tex = $self->{texture} ||= do {
978     $self->{layout}->set_width ($self->{w});
979 root 1.81 $self->{layout}->set_height (List::Util::min $self->{h} - $self->{padding} * 2, $self->{height});
980 root 1.74 new_from_layout CFClient::Texture $self->{layout}
981 root 1.59 };
982 root 1.10
983 root 1.12 glEnable GL_BLEND;
984 root 1.74 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
985 root 1.10 glEnable GL_TEXTURE_2D;
986 root 1.28 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
987 root 1.10
988 root 1.68 glColor @{$self->{fg}};
989 root 1.12
990 root 1.72 my $x =
991 root 1.76 $self->{align} < 0 ? $self->{padding}
992     : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
993 root 1.74 : ($self->{w} - $tex->{w}) * 0.5;
994 root 1.72
995 root 1.97 glTranslate int $x, int +($self->{h} - $tex->{h}) * 0.5, 0;
996 root 1.82 $tex->draw_quad (0, 0);
997 root 1.10
998 root 1.74 glDisable GL_TEXTURE_2D;
999 root 1.12 glDisable GL_BLEND;
1000 root 1.10 }
1001    
1002 root 1.39 #############################################################################
1003    
1004 root 1.73 package CFClient::UI::Entry;
1005 elmex 1.31
1006 root 1.73 our @ISA = CFClient::UI::Label::;
1007 elmex 1.31
1008     use SDL;
1009     use SDL::OpenGL;
1010    
1011 root 1.68 sub new {
1012     my $class = shift;
1013    
1014     $class->SUPER::new (
1015     fg => [1, 1, 1],
1016 root 1.76 bg => [0, 0, 0, 0.2],
1017 root 1.79 active_bg => [1, 1, 1, 0.5],
1018 root 1.68 active_fg => [0, 0, 0],
1019 root 1.97 can_hover => 1,
1020     can_focus => 1,
1021 root 1.68 @_
1022     )
1023     }
1024    
1025     sub _set_text {
1026     my ($self, $text) = @_;
1027    
1028     $self->{last_activity} = $::NOW;
1029    
1030     $self->{text} = $text;
1031     $self->{layout}->set_width ($self->{w});
1032 root 1.82 $self->{layout}->set_height (List::Util::min $self->{h} - $self->{padding} * 2, $self->{height});
1033 root 1.72
1034     $text =~ s/./*/g if $self->{hidden};
1035    
1036 root 1.76 $self->{layout}->set_markup ($self->escape_text ($text) . " ");
1037 root 1.68
1038     $text = substr $text, 0, $self->{cursor};
1039     utf8::encode $text;
1040    
1041     @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text);
1042     }
1043    
1044     sub size_request {
1045     my ($self) = @_;
1046    
1047     my ($w, $h) = $self->SUPER::size_request;
1048    
1049     ($w + 1, $h) # add 1 for cursor
1050     }
1051    
1052     sub size_allocate {
1053 root 1.75 my ($self, $x, $y, $w, $h) = @_;
1054 root 1.68
1055 root 1.75 $self->SUPER::size_allocate ($x, $y, $w, $h);
1056 root 1.68
1057     $self->_set_text ($self->{text});
1058     }
1059    
1060     sub set_text {
1061     my ($self, $text) = @_;
1062    
1063     $self->{cursor} = length $text;
1064     $self->_set_text ($text);
1065     $self->update;
1066     }
1067    
1068 elmex 1.31 sub key_down {
1069     my ($self, $ev) = @_;
1070    
1071     my $mod = $ev->key_mod;
1072     my $sym = $ev->key_sym;
1073    
1074     my $uni = $ev->key_unicode;
1075    
1076     my $text = $self->get_text;
1077    
1078     if ($sym == SDLK_BACKSPACE) {
1079 root 1.68 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
1080     } elsif ($sym == SDLK_DELETE) {
1081     substr $text, $self->{cursor}, 1, "";
1082     } elsif ($sym == SDLK_LEFT) {
1083     --$self->{cursor} if $self->{cursor};
1084     } elsif ($sym == SDLK_RIGHT) {
1085     ++$self->{cursor} if $self->{cursor} < length $self->{text};
1086 root 1.76 } elsif ($sym == SDLK_HOME) {
1087     $self->{cursor} = 0;
1088     } elsif ($sym == SDLK_END) {
1089     $self->{cursor} = length $text;
1090 elmex 1.31 } elsif ($uni) {
1091 root 1.68 substr $text, $self->{cursor}++, 0, chr $uni;
1092 elmex 1.31 }
1093 root 1.51
1094 root 1.68 $self->_set_text ($text);
1095     $self->update;
1096     }
1097    
1098     sub focus_in {
1099     my ($self) = @_;
1100    
1101     $self->{last_activity} = $::NOW;
1102    
1103     $self->SUPER::focus_in;
1104 elmex 1.31 }
1105    
1106 root 1.51 sub button_down {
1107 root 1.68 my ($self, $ev, $x, $y) = @_;
1108    
1109     $self->SUPER::button_down ($ev, $x, $y);
1110    
1111     my $idx = $self->{layout}->xy_to_index ($x, $y);
1112    
1113     # byte-index to char-index
1114 root 1.76 my $text = $self->{text};
1115 root 1.68 utf8::encode $text;
1116     $self->{cursor} = length substr $text, 0, $idx;
1117 root 1.51
1118 root 1.68 $self->_set_text ($self->{text});
1119     $self->update;
1120 root 1.51 }
1121    
1122 root 1.58 sub mouse_motion {
1123     my ($self, $ev, $x, $y) = @_;
1124 root 1.68 # printf "M %d,%d %d,%d\n", $ev->motion_x, $ev->motion_y, $x, $y;#d#
1125 root 1.58 }
1126    
1127 root 1.51 sub _draw {
1128     my ($self) = @_;
1129    
1130 root 1.68 local $self->{fg} = $self->{fg};
1131    
1132 root 1.51 if ($FOCUS == $self) {
1133 root 1.68 glColor @{$self->{active_bg}};
1134     $self->{fg} = $self->{active_fg};
1135 root 1.51 } else {
1136 root 1.68 glColor @{$self->{bg}};
1137 root 1.51 }
1138    
1139 root 1.76 glEnable GL_BLEND;
1140     glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1141 root 1.51 glBegin GL_QUADS;
1142 root 1.68 glVertex 0 , 0;
1143     glVertex 0 , $self->{h};
1144     glVertex $self->{w}, $self->{h};
1145     glVertex $self->{w}, 0;
1146 root 1.51 glEnd;
1147 root 1.76 glDisable GL_BLEND;
1148 root 1.51
1149     $self->SUPER::_draw;
1150 root 1.68
1151     #TODO: force update every cursor change :(
1152     if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) {
1153     glColor @{$self->{fg}};
1154     glBegin GL_LINES;
1155     glVertex $self->{cur_x}, $self->{cur_y};
1156     glVertex $self->{cur_x}, $self->{cur_y} + $self->{cur_h};
1157     glEnd;
1158     }
1159     }
1160    
1161     #############################################################################
1162    
1163 root 1.79 package CFClient::UI::Button;
1164    
1165     our @ISA = CFClient::UI::Label::;
1166    
1167     use SDL;
1168     use SDL::OpenGL;
1169    
1170 elmex 1.85 my @tex =
1171     map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1172     qw(b1_button_active.png);
1173    
1174 root 1.79 sub new {
1175     my $class = shift;
1176    
1177     $class->SUPER::new (
1178     padding => 4,
1179     fg => [1, 1, 1],
1180     bg => [1, 1, 1, 0.2],
1181     active_fg => [1, 1, 0],
1182 root 1.97 can_hover => 1,
1183 root 1.79 @_
1184     )
1185     }
1186    
1187     sub button_up {
1188     my ($self, $ev, $x, $y) = @_;
1189    
1190     if ($x >= 0 && $x < $self->{w}
1191     && $y >= 0 && $y < $self->{h}) {
1192     $self->emit ("activate");
1193     }
1194     }
1195    
1196     sub _draw {
1197     my ($self) = @_;
1198    
1199     local $self->{fg} = $self->{fg};
1200 elmex 1.85 my $tex = $tex[0];
1201 root 1.79
1202     glEnable GL_BLEND;
1203 elmex 1.85 glEnable GL_TEXTURE_2D;
1204 root 1.79 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1205    
1206     if ($GRAB == $self) {
1207     $self->{fg} = $self->{active_fg};
1208     }
1209    
1210 elmex 1.85 glBindTexture GL_TEXTURE_2D, $tex->{name};
1211     glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1212    
1213     $tex->draw_quad (0, 0, $self->{w}, $self->{h});
1214    
1215     glDisable GL_TEXTURE_2D;
1216 root 1.79 glDisable GL_BLEND;
1217    
1218     $self->SUPER::_draw;
1219     }
1220    
1221     #############################################################################
1222    
1223 root 1.86 package CFClient::UI::CheckBox;
1224    
1225     our @ISA = CFClient::UI::DrawBG::;
1226    
1227     use SDL;
1228     use SDL::OpenGL;
1229    
1230     sub new {
1231     my $class = shift;
1232    
1233     $class->SUPER::new (
1234 root 1.87 padding => 2,
1235 root 1.86 fg => [1, 1, 1],
1236     active_fg => [1, 1, 0],
1237     state => 0,
1238 root 1.97 can_hover => 1,
1239 root 1.86 @_
1240     )
1241     }
1242    
1243 root 1.87 sub size_request {
1244     my ($self) = @_;
1245    
1246     ($self->{padding} * 2 + 6) x 2
1247     }
1248    
1249     sub size_allocate {
1250     my ($self, $x, $y, $w, $h) = @_;
1251    
1252     $self->_size_allocate ($x, $y, $w, $h);
1253     }
1254    
1255 root 1.86 sub button_down {
1256     my ($self, $ev, $x, $y) = @_;
1257    
1258     if ($x >= $self->{padding} && $x < $self->{w} - $self->{padding}
1259     && $y >= $self->{padding} && $y < $self->{h} - $self->{padding}) {
1260     $self->{state} = !$self->{state};
1261 root 1.87 $self->emit (changed => $self->{state});
1262 root 1.86 }
1263     }
1264    
1265     sub _draw {
1266     my ($self) = @_;
1267    
1268 root 1.87 $self->SUPER::_draw;
1269 root 1.86
1270 root 1.87 glTranslate $self->{padding} + 0.375, $self->{padding} + 0.375, 0;
1271 root 1.86
1272 root 1.87 my $s = (List::Util::min @$self{qw(w h)}) - $self->{padding} * 2;
1273    
1274     glColor @{ $FOCUS == $self ? $self->{active_fg} : $self->{fg} };
1275 root 1.86
1276 root 1.87 glBegin GL_LINE_LOOP;
1277     glVertex 0 , 0;
1278     glVertex 0 , $s;
1279     glVertex $s, $s;
1280     glVertex $s, 0;
1281     glEnd;
1282 root 1.86
1283 root 1.87 if ($self->{state}) {
1284     glBegin GL_LINES;
1285     glVertex 0 , 0;
1286     glVertex $s, $s;
1287     glVertex $s, 0;
1288     glVertex 0 , $s;
1289     glEnd;
1290     }
1291 root 1.86 }
1292    
1293     #############################################################################
1294    
1295 root 1.73 package CFClient::UI::Slider;
1296 root 1.68
1297     use strict;
1298    
1299     use SDL::OpenGL;
1300    
1301 root 1.73 our @ISA = CFClient::UI::DrawBG::;
1302 root 1.68
1303     sub new {
1304     my $class = shift;
1305    
1306     # range [value, low, high, page]
1307    
1308 root 1.97 # TODO: 0-width page
1309     # TODO: req_w/h are wrong with vertical
1310     # TODO: calculations are off
1311 root 1.76 my $self = $class->SUPER::new (
1312 root 1.68 fg => [1, 1, 1],
1313     active_fg => [0, 0, 0],
1314     range => [0, 0, 100, 10],
1315 root 1.76 req_w => 40,
1316 root 1.97 req_h => 13,
1317 root 1.76 vertical => 0,
1318 root 1.97 can_hover => 1,
1319 root 1.68 @_
1320 root 1.76 );
1321    
1322     $self
1323     }
1324    
1325     sub size_request {
1326     my ($self) = @_;
1327    
1328     my $w = $self->{req_w};
1329     my $h = $self->{req_h};
1330    
1331     $self->{vertical} ? ($h, $w) : ($w, $h)
1332 root 1.68 }
1333    
1334 root 1.69 sub button_down {
1335     my ($self, $ev, $x, $y) = @_;
1336    
1337     $self->SUPER::button_down ($ev, $x, $y);
1338     $self->mouse_motion ($ev, $x, $y);
1339     }
1340    
1341     sub mouse_motion {
1342     my ($self, $ev, $x, $y) = @_;
1343    
1344     if ($GRAB == $self) {
1345     my ($value, $lo, $hi, $page) = @{$self->{range}};
1346    
1347 root 1.71 my ($x, $w) = $self->{vertical} ? ($y, $self->{h}) : ($x, $self->{w});
1348    
1349     $x = $x * ($hi - $lo) / $w + $lo;
1350 root 1.69 $x = $lo if $x < $lo;
1351     $x = $hi - $page if $x > $hi - $page;
1352     $self->{range}[0] = $x;
1353    
1354 root 1.72 $self->emit (changed => $x);
1355 root 1.69 $self->update;
1356     }
1357     }
1358    
1359 root 1.68 sub _draw {
1360     my ($self) = @_;
1361    
1362     $self->SUPER::_draw ();
1363    
1364     my ($w, $h) = @$self{qw(w h)};
1365    
1366     if ($self->{vertical}) {
1367     # draw a vertical slider like a rotated horizontal slider
1368    
1369     glRotate 90, 0, 0, 1;
1370 root 1.71 glTranslate 0, -$self->{w}, 0;
1371 root 1.68
1372     ($w, $h) = ($h, $w);
1373     }
1374    
1375     my $fg = $FOCUS == $self ? $self->{active_fg} : $self->{fg};
1376     my $bg = $FOCUS == $self ? $self->{active_bg} : $self->{bg};
1377    
1378 root 1.69 my ($value, $lo, $hi, $page) = @{$self->{range}};
1379    
1380     $page = int $page * $w / ($hi - $lo);
1381     $value = int +($value - $lo) * $w / ($hi - $lo);
1382    
1383     $w -= $page;
1384     $page &= ~1;
1385     glTranslate $page * 0.5, 0, 0;
1386 root 1.80 $page ||= 2;
1387 root 1.69
1388 root 1.68 glColor @$fg;
1389     glBegin GL_LINES;
1390     glVertex 0, 0; glVertex 0, $h;
1391     glVertex $w - 1, 0; glVertex $w - 1, $h;
1392     glVertex 0, $h * 0.5; glVertex $w, $h * 0.5;
1393     glEnd;
1394 root 1.69
1395     my $knob_a = $value - $page * 0.5;
1396     my $knob_b = $value + $page * 0.5;
1397    
1398     glBegin GL_QUADS;
1399     glColor @$fg;
1400     glVertex $knob_a, 0;
1401     glVertex $knob_a, $h;
1402     glVertex $knob_b, $h;
1403     glVertex $knob_b, 0;
1404    
1405     if ($knob_a < $knob_b - 2) {
1406     glColor @$bg;
1407     glVertex $knob_a + 1, 1;
1408     glVertex $knob_a + 1, $h - 1;
1409     glVertex $knob_b - 1, $h - 1;
1410     glVertex $knob_b - 1, 1;
1411     }
1412     glEnd;
1413 root 1.51 }
1414    
1415 root 1.39 #############################################################################
1416    
1417 root 1.97 package CFClient::UI::TextView;
1418    
1419     our @ISA = CFClient::UI::HBox::;
1420    
1421     use SDL::OpenGL;
1422    
1423     sub new {
1424     my $class = shift;
1425    
1426     my $self = $class->SUPER::new (
1427     par => [],
1428     @_,
1429     children => [
1430     (new CFClient::UI::Empty expand => 1),
1431     (new CFClient::UI::Slider vertical => 1),
1432     ],
1433     );
1434    
1435     $self
1436     }
1437    
1438     sub add_paragraph {
1439     my ($self, $color, $text) = @_;
1440    
1441     push @{$self->{par}}, [$color, $text];
1442     my $count = scalar @{$self->{par}};
1443     $self->{children}[1]{range} = [$count - 1, 0, $count, 1];
1444     $self->{children}[1]->update;
1445     }
1446    
1447     sub _draw {
1448     my ($self) = @_;
1449    
1450     my $par = $self->{par};
1451    
1452     my $bottom = (scalar @$par) - 1;
1453    
1454     my $w = $self->{children}[0]{w};
1455     my $y = $self->{h};
1456    
1457     glEnable GL_BLEND;
1458     glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1459     glEnable GL_TEXTURE_2D;
1460     glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
1461    
1462     # TODO: everything!
1463     while ($y > 0 && $bottom >= 0) {
1464     my $par = $par->[$bottom--];
1465    
1466     my $layout = new CFClient::Layout;
1467    
1468     $layout->set_height ($::FONTSIZE);
1469     $layout->set_width ($w);
1470     $layout->set_text ($par->[1]);
1471     my $tex = new_from_layout CFClient::Texture $layout;
1472     $y -= $tex->{h};
1473    
1474     glColor @{ $par->[0] };
1475     $tex->draw_quad (0, $y);
1476     }
1477    
1478     glDisable GL_TEXTURE_2D;
1479     glDisable GL_BLEND;
1480     }
1481    
1482     #############################################################################
1483    
1484 root 1.73 package CFClient::UI::MapWidget;
1485 root 1.4
1486 elmex 1.2 use strict;
1487 elmex 1.7
1488 root 1.25 use List::Util qw(min max);
1489 elmex 1.2
1490 root 1.16 use SDL;
1491 elmex 1.2 use SDL::OpenGL;
1492    
1493 root 1.73 our @ISA = CFClient::UI::Base::;
1494 root 1.25
1495 root 1.64 sub new {
1496     my $class = shift;
1497    
1498 root 1.65 $class->SUPER::new (
1499 root 1.97 z => -1,
1500     can_focus => 1,
1501     list => (glGenLists 1),
1502 root 1.65 @_
1503     )
1504 root 1.64 }
1505    
1506 elmex 1.2 sub key_down {
1507     print "MAPKEYDOWN\n";
1508     }
1509    
1510     sub key_up {
1511     }
1512    
1513 elmex 1.36 sub size_request {
1514 root 1.52 (
1515 root 1.77 1 + 32 * int $::WIDTH / 32,
1516     1 + 32 * int $::HEIGHT / 32,
1517 root 1.52 )
1518 elmex 1.36 }
1519    
1520 root 1.65 sub update {
1521     my ($self) = @_;
1522    
1523     $self->{need_update} = 1;
1524 root 1.74 $self->SUPER::update;
1525 root 1.65 }
1526    
1527 root 1.77 sub draw {
1528 root 1.21 my ($self) = @_;
1529    
1530 root 1.94 $self->{need_update}++;#d#
1531 root 1.65 if (delete $self->{need_update}) {
1532     glNewList $self->{list}, GL_COMPILE;
1533 root 1.25
1534 root 1.94 my $sw = int $::WIDTH / 32;
1535     my $sh = int $::HEIGHT / 32;
1536    
1537 root 1.95 if ($::MAP) {
1538     my ($w, $h, $data) = $::MAP->draw (0, 0, $sw, $sh);
1539 root 1.94
1540 root 1.95 if ($::CFG->{fow_enable}) {
1541     if ($::CFG->{fow_smooth}) { # smooth fog of war
1542     glConvolutionParameter GL_CONVOLUTION_2D, GL_CONVOLUTION_BORDER_MODE, GL_CONSTANT_BORDER;
1543     glConvolutionFilter2D
1544     GL_CONVOLUTION_2D,
1545     GL_ALPHA,
1546     3, 3,
1547     GL_ALPHA, GL_FLOAT,
1548     pack "f*",
1549     0.1, 0.1, 0.1,
1550     0.1, 0.2, 0.1,
1551     0.1, 0.1, 0.1,
1552     ;
1553     glEnable GL_CONVOLUTION_2D;
1554     }
1555 root 1.25
1556 root 1.95 my $tex = new CFClient::Texture
1557     w => $w,
1558     h => $h,
1559     data => $data,
1560     internalformat => GL_ALPHA,
1561     format => GL_ALPHA;
1562    
1563     glDisable GL_CONVOLUTION_2D if $::CFG->{fow_smooth};
1564    
1565     glEnable GL_BLEND;
1566     glEnable GL_TEXTURE_2D;
1567     glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
1568 root 1.35
1569 root 1.95 glColor +($::CFG->{fow_intensity}) x 3, 1;
1570     $tex->draw_quad (0, 0, $w * 32, $h * 32);
1571 root 1.65
1572 root 1.95 glDisable GL_TEXTURE_2D;
1573     glDisable GL_BLEND;
1574 elmex 1.2 }
1575     }
1576    
1577 root 1.65 glEndList;
1578     }
1579    
1580     glCallList $self->{list};
1581 root 1.87
1582     if ($FOCUS != $self) {
1583 root 1.97 glColor 64/255, 64/255, 64/255;
1584     glLogicOp GL_AND;
1585     glEnable GL_COLOR_LOGIC_OP;
1586 root 1.87 glBegin GL_QUADS;
1587     glVertex 0, 0;
1588     glVertex 0, $::HEIGHT;
1589     glVertex $::WIDTH, $::HEIGHT;
1590     glVertex $::WIDTH, 0;
1591     glEnd;
1592 root 1.97 glDisable GL_COLOR_LOGIC_OP;
1593 root 1.87 }
1594 elmex 1.2 }
1595    
1596 root 1.16 my %DIR = (
1597     SDLK_KP8, [1, "north"],
1598 root 1.18 SDLK_KP9, [2, "northeast"],
1599 root 1.16 SDLK_KP6, [3, "east"],
1600     SDLK_KP3, [4, "southeast"],
1601     SDLK_KP2, [5, "south"],
1602     SDLK_KP1, [6, "southwest"],
1603     SDLK_KP4, [7, "west"],
1604     SDLK_KP7, [8, "northwest"],
1605 root 1.18
1606     SDLK_UP, [1, "north"],
1607     SDLK_RIGHT, [3, "east"],
1608     SDLK_DOWN, [5, "south"],
1609     SDLK_LEFT, [7, "west"],
1610 root 1.16 );
1611    
1612     sub key_down {
1613     my ($self, $ev) = @_;
1614    
1615     my $mod = $ev->key_mod;
1616     my $sym = $ev->key_sym;
1617    
1618     if ($sym == SDLK_KP5) {
1619 root 1.89 $::CONN->user_send ("command stay fire");
1620 elmex 1.85 } elsif ($sym == SDLK_a) {
1621 root 1.89 $::CONN->user_send ("command apply");
1622 root 1.16 } elsif (exists $DIR{$sym}) {
1623     if ($mod & KMOD_SHIFT) {
1624 root 1.18 $self->{shft}++;
1625 root 1.89 $::CONN->user_send ("command fire $DIR{$sym}[0]");
1626 root 1.16 } elsif ($mod & KMOD_CTRL) {
1627 root 1.18 $self->{ctrl}++;
1628 root 1.89 $::CONN->user_send ("command run $DIR{$sym}[0]");
1629 root 1.16 } else {
1630 root 1.89 $::CONN->user_send ("command $DIR{$sym}[1]");
1631 root 1.16 }
1632     }
1633     }
1634    
1635     sub key_up {
1636     my ($self, $ev) = @_;
1637    
1638     my $mod = $ev->key_mod;
1639     my $sym = $ev->key_sym;
1640    
1641 root 1.18 if (!($mod & KMOD_SHIFT) && delete $self->{shft}) {
1642 root 1.89 $::CONN->user_send ("command fire_stop");
1643 root 1.18 }
1644     if (!($mod & KMOD_CTRL ) && delete $self->{ctrl}) {
1645 root 1.89 $::CONN->user_send ("command run_stop");
1646 root 1.16 }
1647     }
1648    
1649 root 1.39 #############################################################################
1650    
1651 root 1.73 package CFClient::UI::Animator;
1652 root 1.35
1653     use SDL::OpenGL;
1654    
1655 root 1.73 our @ISA = CFClient::UI::Bin::;
1656 root 1.35
1657     sub moveto {
1658     my ($self, $x, $y) = @_;
1659    
1660     $self->{moveto} = [$self->{x}, $self->{y}, $x, $y];
1661 root 1.56 $self->{speed} = 0.001;
1662 root 1.35 $self->{time} = 1;
1663    
1664     ::animation_start $self;
1665     }
1666    
1667     sub animate {
1668     my ($self, $interval) = @_;
1669    
1670     $self->{time} -= $interval * $self->{speed};
1671     if ($self->{time} <= 0) {
1672     $self->{time} = 0;
1673     ::animation_stop $self;
1674     }
1675    
1676     my ($x0, $y0, $x1, $y1) = @{$self->{moveto}};
1677    
1678     $self->{x} = $x0 * $self->{time} + $x1 * (1 - $self->{time});
1679     $self->{y} = $y0 * $self->{time} + $y1 * (1 - $self->{time});
1680     }
1681    
1682     sub _draw {
1683     my ($self) = @_;
1684    
1685     glPushMatrix;
1686 root 1.51 glRotate $self->{time} * 1000, 0, 1, 0;
1687 root 1.38 $self->{children}[0]->draw;
1688 root 1.35 glPopMatrix;
1689     }
1690    
1691 root 1.51 #############################################################################
1692    
1693 root 1.96 package CFClient::UI::Flopper;
1694    
1695     our @ISA = CFClient::UI::Button::;
1696    
1697     sub new {
1698     my $class = shift;
1699    
1700     my $self = $class->SUPER::new (
1701     state => 0,
1702     connect_activate => \&toggle_flopper,
1703     @_
1704     );
1705    
1706     if ($self->{state}) {
1707     $self->{state} = 0;
1708     $self->toggle_flopper;
1709     }
1710    
1711     $self
1712     }
1713    
1714     sub toggle_flopper {
1715     my ($self) = @_;
1716    
1717 root 1.97 # TODO: use animation
1718 root 1.96 if ($self->{state} = !$self->{state}) {
1719     $CFClient::UI::TOPLEVEL->add ($self->{other});
1720     $self->{other}->move (
1721     ($::WIDTH - $self->{other}{w}) * 0.5,
1722     ($::HEIGHT - $self->{other}{h}) * 0.5,
1723     );
1724     } else {
1725     $CFClient::UI::TOPLEVEL->remove ($self->{other});
1726     }
1727     }
1728    
1729     #############################################################################
1730    
1731 root 1.73 package CFClient::UI::Toplevel;
1732 root 1.51
1733 root 1.73 our @ISA = CFClient::UI::Container::;
1734 root 1.51
1735     sub size_request {
1736     ($::WIDTH, $::HEIGHT)
1737     }
1738    
1739     sub size_allocate {
1740 root 1.75 my ($self, $x, $y, $w, $h) = @_;
1741 root 1.51
1742 root 1.75 $self->_size_allocate ($x, $y, $w, $h);
1743 root 1.51
1744 root 1.75 $_->size_allocate ($_->{x}, $_->{y}, $_->size_request)
1745 root 1.51 for @{$self->{children}};
1746     }
1747    
1748 root 1.58 sub translate {
1749     my ($self, $x, $y) = @_;
1750    
1751     ($x, $y)
1752     }
1753    
1754 root 1.51 sub update {
1755     my ($self) = @_;
1756    
1757 root 1.75 $self->size_allocate (0, 0, $::WIDTH, $::HEIGHT);
1758 root 1.51 ::refresh ();
1759     }
1760    
1761     sub add {
1762     my ($self, $widget) = @_;
1763    
1764     $self->SUPER::add ($widget);
1765    
1766 root 1.75 $widget->size_allocate ($widget->{x}, $widget->{y}, $widget->size_request);
1767 root 1.51 }
1768    
1769     sub draw {
1770     my ($self) = @_;
1771    
1772     $self->_draw;
1773     }
1774    
1775     #############################################################################
1776    
1777 root 1.73 package CFClient::UI;
1778 root 1.51
1779 root 1.73 $TOPLEVEL = new CFClient::UI::Toplevel;
1780 root 1.51
1781     1
1782 root 1.5