ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/UI.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC/UI.pm (file contents):
Revision 1.190 by root, Mon May 8 22:17:38 2006 UTC vs.
Revision 1.205 by root, Mon May 15 00:15:08 2006 UTC

1package CFClient::UI; 1package CFClient::UI;
2 2
3use utf8;
3use strict; 4use strict;
4 5
5use Scalar::Util (); 6use Scalar::Util ();
6use List::Util (); 7use List::Util ();
7 8
10our ($FOCUS, $HOVER, $GRAB); # various widgets 11our ($FOCUS, $HOVER, $GRAB); # various widgets
11 12
12our $ROOT; 13our $ROOT;
13our $TOOLTIP; 14our $TOOLTIP;
14our $BUTTON_STATE; 15our $BUTTON_STATE;
16
17our %WIDGET; # all widgets, weak-referenced
15 18
16sub check_tooltip { 19sub check_tooltip {
17 if (!$GRAB) { 20 if (!$GRAB) {
18 for (my $widget = $HOVER; $widget; $widget = $widget->{parent}) { 21 for (my $widget = $HOVER; $widget; $widget = $widget->{parent}) {
19 if (length $widget->{tooltip}) { 22 if (length $widget->{tooltip}) {
23 26
24 my $tip = $widget->{tooltip}; 27 my $tip = $widget->{tooltip};
25 28
26 $tip = $tip->($widget) if CODE:: eq ref $tip; 29 $tip = $tip->($widget) if CODE:: eq ref $tip;
27 30
28 $TOOLTIP->set_markup ($widget->{tooltip}); 31 $TOOLTIP->set_tooltip_from ($widget);
29
30 $TOOLTIP->show; 32 $TOOLTIP->show;
31 33
32 my ($x, $y) = $widget->coord2global ($widget->{w}, 0); 34 my ($x, $y) = $widget->coord2global ($widget->{w}, 0);
33 35
34 if ($x + $TOOLTIP->{w} > $::WIDTH) {
35 ($x, $y) = $widget->coord2global (-$TOOLTIP->{w}, 0); 36 ($x, $y) = $widget->coord2global (-$TOOLTIP->{w}, 0)
36 } 37 if $x + $TOOLTIP->{w} > $::WIDTH;
37 38
38 $TOOLTIP->move ($x, $y); 39 $TOOLTIP->move ($x, $y);
40 $TOOLTIP->check_size;
41 $TOOLTIP->update;
39 } 42 }
40 43
41 return; 44 return;
42 } 45 }
43 } 46 }
130 133
131 for (@$vals) { 134 for (@$vals) {
132 my $i = int $_ + $rem; 135 my $i = int $_ + $rem;
133 $rem += $_ - $i; 136 $rem += $_ - $i;
134 $_ = $i; 137 $_ = $i;
138 }
139}
140
141# call when resolution changes etc.
142sub rescale_widgets {
143 my ($sx, $sy) = @_;
144
145 for my $widget (values %WIDGET) {
146 if ($widget->{toplevel}) {
147 $widget->{x} = int 0.5 + $widget->{x} * $sx if exists $widget->{x};
148 $widget->{w} = int 0.5 + $widget->{w} * $sx if exists $widget->{w};
149 $widget->{req_w} = int 0.5 + $widget->{req_w} * $sx if exists $widget->{req_w};
150 $widget->{user_w} = int 0.5 + $widget->{user_w} * $sx if exists $widget->{user_w};
151 $widget->{y} = int 0.5 + $widget->{y} * $sy if exists $widget->{y};
152 $widget->{h} = int 0.5 + $widget->{h} * $sy if exists $widget->{h};
153 $widget->{req_h} = int 0.5 + $widget->{req_h} * $sy if exists $widget->{req_h};
154 $widget->{user_h} = int 0.5 + $widget->{user_h} * $sy if exists $widget->{user_h};
155 }
156
157 $widget->reconfigure;
135 } 158 }
136} 159}
137 160
138############################################################################# 161#############################################################################
139 162
158 if (/^connect_(.*)$/) { 181 if (/^connect_(.*)$/) {
159 $self->connect ($1 => delete $self->{$_}); 182 $self->connect ($1 => delete $self->{$_});
160 } 183 }
161 } 184 }
162 185
186 Scalar::Util::weaken ($CFClient::UI::WIDGET{$self+0} = $self);
187
163 $self 188 $self
164} 189}
165 190
166sub destroy { 191sub destroy {
167 my ($self) = @_; 192 my ($self) = @_;
232 $self->{y} = $y; 257 $self->{y} = $y;
233 $self->update; 258 $self->update;
234 } 259 }
235 260
236 if ($self->{w} != $w || $self->{h} != $h) { 261 if ($self->{w} != $w || $self->{h} != $h) {
237 $self->{w} = $w; 262 $CFClient::UI::ROOT->{size_alloc}{$self} = [$self, $w, $h];
238 $self->{h} = $h;
239
240 $self->size_allocate ($w, $h);
241 $self->update;
242 $self->emit (size_allocate => $w, $h);
243 } 263 }
244} 264}
245 265
246sub size_allocate { 266sub size_allocate {
247 # nothing to be done 267 # nothing to be done
248} 268}
249 269
270sub reconfigure {
271 my ($self) = @_;
272
273 $self->check_size (1);
274 $self->update;
275}
276
250sub children { 277sub children {
251}
252
253# call when resolution changes etc.
254sub reconfigure {
255 my ($self) = @_;
256
257 $_->reconfigure
258 for $self->children;
259
260 $self->check_size;
261 $self->size_allocate ($self->{w}, $self->{h});
262 $self->update;
263} 278}
264 279
265sub set_max_size { 280sub set_max_size {
266 my ($self, $w, $h) = @_; 281 my ($self, $w, $h) = @_;
267 282
268 delete $self->{max_w}; $self->{max_w} = $w if $w; 283 delete $self->{max_w}; $self->{max_w} = $w if $w;
269 delete $self->{max_h}; $self->{max_h} = $h if $h; 284 delete $self->{max_h}; $self->{max_h} = $h if $h;
270}
271
272# return top left coordinates
273sub _topleft {
274 my ($self, $x, $y) = @_;
275
276 $self->{parent}
277 or Carp::confess "no parent widget in _topleft\n";#d#
278
279 $self->{parent}->_topleft ($x + $self->{x}, $y + $self->{y});
280} 285}
281 286
282# translate global coordinates to local coordinate system 287# translate global coordinates to local coordinate system
283sub coord2local { 288sub coord2local {
284 my ($self, $x, $y) = @_; 289 my ($self, $x, $y) = @_;
285 290
286 my ($X, $Y) = $self->_topleft; 291 $self->{parent}->coord2local ($x - $self->{x}, $y - $self->{y})
287 ($x - $X, $y - $Y)
288} 292}
289 293
290# translate local coordinates to global coordinate system 294# translate local coordinates to global coordinate system
291sub coord2global { 295sub coord2global {
292 my ($self, $x, $y) = @_; 296 my ($self, $x, $y) = @_;
293 297
294 my ($X, $Y) = $self->_topleft; 298 $self->{parent}->coord2global ($x + $self->{x}, $y + $self->{y})
295 ($x + $X, $y + $Y)
296} 299}
297 300
298sub focus_in { 301sub focus_in {
299 my ($self) = @_; 302 my ($self) = @_;
300 303
372 glVertex $self->{w}, 0; 375 glVertex $self->{w}, 0;
373 glVertex $self->{w}, $self->{h}; 376 glVertex $self->{w}, $self->{h};
374 glVertex 0 , $self->{h}; 377 glVertex 0 , $self->{h};
375 glEnd; 378 glEnd;
376 glPopMatrix; 379 glPopMatrix;
377 CFClient::UI::Label->new (w => $self->{w}, h => $self->{h}, text => $self, fontsize => 0)->_draw; 380 #CFClient::UI::Label->new (w => $self->{w}, h => $self->{h}, text => $self, fontsize => 0)->_draw;
378 } 381 }
379} 382}
380 383
381sub _draw { 384sub _draw {
382 my ($self) = @_; 385 my ($self) = @_;
398 401
399sub set_parent { 402sub set_parent {
400 my ($self, $parent) = @_; 403 my ($self, $parent) = @_;
401 404
402 Scalar::Util::weaken ($self->{parent} = $parent); 405 Scalar::Util::weaken ($self->{parent} = $parent);
406
407 # TODO: req_w _does_change after ->reconfigure
408 $self->check_size
409 unless exists $self->{req_w};
403} 410}
404 411
405sub check_size { 412sub check_size {
406 my ($self) = @_; 413 my ($self, $forced) = @_;
407 414
408 $self->_check_size; 415 $self->{force_alloc} = 1 if $forced;
409 return;
410 #TODO: but needs a vastly more difficult algorithm
411 my $check_size = $CFClient::UI::ROOT->{_check_size} ||= {};
412
413 $check_size->{$self} = $self;
414
415 $CFClient::UI::ROOT->on_refresh (_check_size => sub {
416 while (%$check_size) {
417 my @widgets = values %$check_size;
418 $_->_check_size
419 for @widgets;
420 }
421 });
422}
423
424sub _check_size {
425 my ($self) = @_;
426
427 delete $CFClient::UI::ROOT->{_check_size}{$self}; 416 $CFClient::UI::ROOT->{check_size}{$self} = $self;
428
429 $self->{parent}
430 or return 1;
431
432 my ($w, $h) = $self->{user_w} && $self->{user_h}
433 ? @$self{qw(user_w user_h)}
434 : $self->size_request;
435
436 if ($w != $self->{req_w} || $h != $self->{req_h}) {
437 $self->{req_w} = $w;
438 $self->{req_h} = $h;
439
440 $self->{parent}->_check_size
441 or $self->size_allocate (
442 (List::Util::max $self->{w}, $w),
443 (List::Util::max $self->{h}, $h),
444 );
445
446 1
447 } else {
448 0
449 }
450} 417}
451 418
452sub update { 419sub update {
453 my ($self) = @_; 420 my ($self) = @_;
454 421
455 my $update = $CFClient::UI::ROOT->{_update} ||= {}; 422 $self->{parent}->update
456 423 if $self->{parent};
457 $update->{$self} = $self;
458
459 $CFClient::UI::ROOT->on_refresh (_update => sub {
460 while (%$update) {
461 my @widgets = values %$update;
462 %$update = ();
463
464 $_->{parent} && $_->{parent}->update
465 for @widgets;
466 }
467 });
468} 424}
469 425
470sub connect { 426sub connect {
471 my ($self, $signal, $cb) = @_; 427 my ($self, $signal, $cb) = @_;
472 428
480} 436}
481 437
482sub DESTROY { 438sub DESTROY {
483 my ($self) = @_; 439 my ($self) = @_;
484 440
441 delete $WIDGET{$self+0};
485 #$self->deactivate; 442 #$self->deactivate;
486} 443}
487 444
488############################################################################# 445#############################################################################
489 446
574 $self->{children} = [ 531 $self->{children} = [
575 sort { $a->{z} <=> $b->{z} } 532 sort { $a->{z} <=> $b->{z} }
576 @{$self->{children}}, @widgets 533 @{$self->{children}}, @widgets
577 ]; 534 ];
578 535
579 $_->check_size 536 $self->check_size (1);
580 for @widgets;
581
582 $self->update; 537 $self->update;
583} 538}
584 539
585sub children { 540sub children {
586 @{ $_[0]{children} } 541 @{ $_[0]{children} }
693} 648}
694 649
695sub update { 650sub update {
696 my ($self) = @_; 651 my ($self) = @_;
697 652
698 $ROOT->on_refresh ($self => sub { $self->render_child }); 653 $ROOT->on_post_alloc ($self => sub { $self->render_child });
699 $self->SUPER::update; 654 $self->SUPER::update;
700} 655}
701 656
702sub size_allocate { 657sub size_allocate {
703 my ($self, $w, $h) = @_; 658 my ($self, $w, $h) = @_;
734 my ($w, $h) = ($self->w, $self->h); 689 my ($w, $h) = ($self->w, $self->h);
735 690
736 my $tex = $self->{texture} 691 my $tex = $self->{texture}
737 or return; 692 or return;
738 693
739 glEnable GL_BLEND;
740 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
741 glEnable GL_TEXTURE_2D; 694 glEnable GL_TEXTURE_2D;
742 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 695 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
743 glColor 0, 0, 0, 1; 696 glColor 0, 0, 0, 1;
744 697
745 $tex->draw_quad (0, 0, $w, $h); 698 $tex->draw_quad_alpha_premultiplied (0, 0, $w, $h);
746 699
747 glDisable GL_BLEND;
748 glDisable GL_TEXTURE_2D; 700 glDisable GL_TEXTURE_2D;
749} 701}
750 702
751############################################################################# 703#############################################################################
752 704
776 $self->{view_y} = int $y; 728 $self->{view_y} = int $y;
777 729
778 $self->update; 730 $self->update;
779} 731}
780 732
781# hmm, this does not work for topleft of $self... but we should not aks for that 733# hmm, this does not work for topleft of $self... but we should not ask for that
782sub _topleft { 734sub coord2local {
783 my ($self, $x, $y) = @_; 735 my ($self, $x, $y) = @_;
784 736
785 $self->SUPER::_topleft ($x - $self->{view_x}, $y - $self->{view_y}) 737 $self->SUPER::coord2local ($x + $self->{view_x}, $y + $self->{view_y})
738}
739
740sub coord2global {
741 my ($self, $x, $y) = @_;
742
743 $x = List::Util::min $self->{w}, $x - $self->{view_x};
744 $y = List::Util::min $self->{h}, $y - $self->{view_y};
745
746 $self->SUPER::coord2global ($x, $y)
786} 747}
787 748
788sub find_widget { 749sub find_widget {
789 my ($self, $x, $y) = @_; 750 my ($self, $x, $y) = @_;
790 751
835 $self->add ($self->{slider}); 796 $self->add ($self->{slider});
836 797
837 $self 798 $self
838} 799}
839 800
840#TODO# update range on size_allocate depeneing on child 801#TODO# update range on size_allocate depending on child
841# update viewport offset on scroll 802# update viewport offset on scroll
842 803
843############################################################################# 804#############################################################################
844 805
845package CFClient::UI::Frame; 806package CFClient::UI::Frame;
849use CFClient::OpenGL; 810use CFClient::OpenGL;
850 811
851sub new { 812sub new {
852 my $class = shift; 813 my $class = shift;
853 814
854 my $self = $class->SUPER::new ( 815 $class->SUPER::new (
855 bg => [1, 1, 1, 1], 816 bg => undef,
856 border_bg => [1, 1, 1, 1],
857 border => 0.8,
858 @_ 817 @_,
859 ); 818 )
860
861 $self
862} 819}
863 820
864sub _draw { 821sub _draw {
865 my ($self) = @_; 822 my ($self) = @_;
866 823
867 my ($w, $h) = ($self->{w}, $self->{h}); 824 if ($self->{bg}) {
825 my ($w, $h) = @$self{qw(w h)};
868 826
869 glEnable GL_BLEND; 827 glEnable GL_BLEND;
870 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 828 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
871 glEnable GL_TEXTURE_2D; 829 glColor @{ $self->{bg} };
872 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
873 830
874# glBegin GL_QUADS; 831 glBegin GL_QUADS;
875# glColor 0, 0, 0, 0;
876# glVertex 0 , 0; 832 glVertex 0 , 0;
877# glVertex 0 , $h; 833 glVertex 0 , $h;
878# glVertex $w, $h; 834 glVertex $w, $h;
879# glVertex $w, 0; 835 glVertex $w, 0;
880# glEnd; 836 glEnd;
881 837
882
883 $self->child->draw;
884 glDisable GL_BLEND; 838 glDisable GL_BLEND;
885 glDisable GL_TEXTURE_2D; 839 }
840
841 $self->SUPER::_draw;
886} 842}
887 843
888############################################################################# 844#############################################################################
889 845
890package CFClient::UI::FancyFrame; 846package CFClient::UI::FancyFrame;
904 860
905 my $self = $class->SUPER::new ( 861 my $self = $class->SUPER::new (
906 bg => [1, 1, 1, 1], 862 bg => [1, 1, 1, 1],
907 border_bg => [1, 1, 1, 1], 863 border_bg => [1, 1, 1, 1],
908 border => 0.6, 864 border => 0.6,
865 toplevel => 1,
909 can_events => 1, 866 can_events => 1,
910 @_ 867 @_
911 ); 868 );
912 869
913 $self->{title} &&= new CFClient::UI::Label 870 $self->{title} &&= new CFClient::UI::Label
1006 my ($self) = @_; 963 my ($self) = @_;
1007 964
1008 my ($w, $h ) = ($self->{w}, $self->{h}); 965 my ($w, $h ) = ($self->{w}, $self->{h});
1009 my ($cw, $ch) = ($self->child->{w}, $self->child->{h}); 966 my ($cw, $ch) = ($self->child->{w}, $self->child->{h});
1010 967
1011 glEnable GL_BLEND;
1012 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1013 glEnable GL_TEXTURE_2D; 968 glEnable GL_TEXTURE_2D;
1014 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 969 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
1015 970
1016 my $border = $self->border; 971 my $border = $self->border;
1017 972
1018 glColor @{ $self->{border_bg} }; 973 glColor @{ $self->{border_bg} };
1019 $tex[1]->draw_quad (0, 0, $w, $border); 974 $tex[1]->draw_quad_alpha (0, 0, $w, $border);
1020 $tex[3]->draw_quad (0, $border, $border, $ch); 975 $tex[3]->draw_quad_alpha (0, $border, $border, $ch);
1021 $tex[2]->draw_quad ($w - $border, $border, $border, $ch); 976 $tex[2]->draw_quad_alpha ($w - $border, $border, $border, $ch);
1022 $tex[4]->draw_quad (0, $h - $border, $w, $border); 977 $tex[4]->draw_quad_alpha (0, $h - $border, $w, $border);
1023 978
1024 if (@{$self->{bg}} < 4 || $self->{bg}[3]) { 979 if (@{$self->{bg}} < 4 || $self->{bg}[3]) {
1025 my $bg = $tex[0]; 980 my $bg = $tex[0];
1026 981
1027 # TODO: repeat texture not scale 982 # TODO: repeat texture not scale
1031 glColor @{ $self->{bg} }; 986 glColor @{ $self->{bg} };
1032 987
1033 $bg->{s} = $rep_x; 988 $bg->{s} = $rep_x;
1034 $bg->{t} = $rep_y; 989 $bg->{t} = $rep_y;
1035 $bg->{wrap_mode} = 1; 990 $bg->{wrap_mode} = 1;
1036 $bg->draw_quad ($border, $border, $cw, $ch); 991 $bg->draw_quad_alpha ($border, $border, $cw, $ch);
992 }
1037 993
1038 glDisable GL_TEXTURE_2D; 994 glDisable GL_TEXTURE_2D;
1039 glDisable GL_BLEND;
1040 }
1041 995
1042 $self->{title}->draw if $self->{title}; 996 $self->{title}->draw if $self->{title};
1043 997
1044 $self->child->draw; 998 $self->child->draw;
1045} 999}
1272} 1226}
1273 1227
1274sub size_allocate { 1228sub size_allocate {
1275 my ($self, $w, $h) = @_; 1229 my ($self, $w, $h) = @_;
1276 1230
1231 Carp::confess "negative size" if $w < 0 || $h < 0;#d#
1232
1277 my $children = $self->{children}; 1233 my $children = $self->{children};
1278 1234
1279 my @h = map $_->{req_h}, @$children; 1235 my @h = map $_->{req_h}, @$children;
1280 1236
1281 my $req_h = List::Util::sum @h; 1237 my $req_h = List::Util::sum @h;
1320 my ($class, %arg) = @_; 1276 my ($class, %arg) = @_;
1321 1277
1322 my $self = $class->SUPER::new ( 1278 my $self = $class->SUPER::new (
1323 fg => [1, 1, 1], 1279 fg => [1, 1, 1],
1324 #font => default_font 1280 #font => default_font
1281 #text => initial text
1282 #markup => initial narkup
1283 layout => (new CFClient::Layout),
1325 fontsize => 1, 1284 fontsize => 1,
1326 text => "",
1327 align => -1, 1285 align => -1,
1328 valign => -1, 1286 valign => -1,
1329 padding => 2, 1287 padding => 2,
1330 layout => new CFClient::Layout,
1331 can_events => 0, 1288 can_events => 0,
1332 %arg 1289 %arg
1333 ); 1290 );
1334 1291
1335 if (exists $self->{template}) { 1292 if (exists $self->{template}) {
1336 my $layout = new CFClient::Layout; 1293 my $layout = new CFClient::Layout;
1337 $layout->set_text (delete $self->{template}); 1294 $layout->set_text (delete $self->{template});
1338 $self->{template} = $layout; 1295 $self->{template} = $layout;
1339 } 1296 }
1340 1297
1341 $self->set_text (delete $self->{text}) if exists $self->{text}; 1298 if (exists $self->{markup}) {
1342 $self->set_markup (delete $self->{markup}) if exists $self->{markup}; 1299 $self->set_markup (delete $self->{markup});
1300 } else {
1301 $self->set_text (delete $self->{text});
1302 }
1343 1303
1344 $self 1304 $self
1345} 1305}
1346 1306
1347sub escape { 1307sub escape {
1365 my ($self, $text) = @_; 1325 my ($self, $text) = @_;
1366 1326
1367 return if $self->{text} eq "T$text"; 1327 return if $self->{text} eq "T$text";
1368 $self->{text} = "T$text"; 1328 $self->{text} = "T$text";
1369 1329
1330 $self->{layout} = new CFClient::Layout if $self->{layout}->is_rgba;
1370 $self->{layout}->set_text ($text); 1331 $self->{layout}->set_text ($text);
1371 1332
1372 delete $self->{texture};
1373 $self->update; 1333 $self->update;
1374 $self->check_size; 1334 $self->check_size;
1375} 1335}
1376 1336
1377sub set_markup { 1337sub set_markup {
1378 my ($self, $markup) = @_; 1338 my ($self, $markup) = @_;
1379 1339
1380 return if $self->{text} eq "M$markup"; 1340 return if $self->{text} eq "M$markup";
1381 $self->{text} = "M$markup"; 1341 $self->{text} = "M$markup";
1382 1342
1343 my $rgba = $markup =~ /span.*(?:foreground|background)/;
1344
1345 $self->{layout} = new CFClient::Layout $rgba if $self->{layout}->is_rgba != $rgba;
1383 $self->{layout}->set_markup ($markup); 1346 $self->{layout}->set_markup ($markup);
1384 1347
1385 delete $self->{texture};
1386 $self->update; 1348 $self->update;
1387 $self->check_size; 1349 $self->check_size;
1388} 1350}
1389 1351
1390sub size_request { 1352sub size_request {
1430 1392
1431sub _draw { 1393sub _draw {
1432 my ($self) = @_; 1394 my ($self) = @_;
1433 1395
1434 my $tex = $self->{texture} ||= do { 1396 my $tex = $self->{texture} ||= do {
1397 $self->{layout}->set_foreground (@{$self->{fg}});
1435 $self->{layout}->set_font ($self->{font}) if $self->{font}; 1398 $self->{layout}->set_font ($self->{font}) if $self->{font};
1436 $self->{layout}->set_width ($self->{w}); 1399 $self->{layout}->set_width ($self->{w});
1437 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize} * $::FONTSIZE); 1400 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize} * $::FONTSIZE);
1401
1438 new_from_layout CFClient::Texture $self->{layout} 1402 my $tex = new_from_layout CFClient::Texture $self->{layout};
1403
1404 $self->{ox} = int $self->{align} < 0 ? $self->{padding}
1405 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
1406 : ($self->{w} - $tex->{w}) * 0.5;
1407
1408 $self->{oy} = int $self->{valign} < 0 ? $self->{padding}
1409 : $self->{valign} > 0 ? $self->{h} - $tex->{h} - $self->{padding}
1410 : ($self->{h} - $tex->{h}) * 0.5;
1411
1412 $tex
1439 }; 1413 };
1440 1414
1441 glEnable GL_BLEND;
1442 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1443 glEnable GL_TEXTURE_2D; 1415 glEnable GL_TEXTURE_2D;
1444 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1416 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1445 1417
1418 if ($tex->{format} == GL_ALPHA) {
1446 glColor @{$self->{fg}}; 1419 glColor @{$self->{fg}};
1447
1448 $self->{ox} = int (
1449 $self->{align} < 0 ? $self->{padding}
1450 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
1451 : ($self->{w} - $tex->{w}) * 0.5
1452 );
1453
1454 $self->{oy} = int (
1455 $self->{valign} < 0 ? $self->{padding}
1456 : $self->{valign} > 0 ? $self->{h} - $tex->{h} - $self->{padding}
1457 : ($self->{h} - $tex->{h}) * 0.5
1458 );
1459
1460 $tex->draw_quad ($self->{ox}, $self->{oy}); 1420 $tex->draw_quad_alpha ($self->{ox}, $self->{oy});
1421 } else {
1422 $tex->draw_quad_alpha_premultiplied ($self->{ox}, $self->{oy});
1423 }
1461 1424
1462 glDisable GL_TEXTURE_2D; 1425 glDisable GL_TEXTURE_2D;
1463 glDisable GL_BLEND;
1464} 1426}
1465 1427
1466############################################################################# 1428#############################################################################
1467 1429
1468package CFClient::UI::EntryBase; 1430package CFClient::UI::EntryBase;
1503 $self->{layout}->set_text ("$text "); 1465 $self->{layout}->set_text ("$text ");
1504 1466
1505 $self->emit (changed => $self->{text}); 1467 $self->emit (changed => $self->{text});
1506} 1468}
1507 1469
1470sub set_text {
1471 my ($self, $text) = @_;
1472
1473 $self->{cursor} = length $text;
1474 $self->_set_text ($text);
1475 $self->check_size;
1476 $self->update;
1477}
1478
1508sub get_text { 1479sub get_text {
1509 $_[0]{text} 1480 $_[0]{text}
1510} 1481}
1511 1482
1512sub size_request { 1483sub size_request {
1519 1490
1520sub size_allocate { 1491sub size_allocate {
1521 my ($self, $w, $h) = @_; 1492 my ($self, $w, $h) = @_;
1522 1493
1523 $self->_set_text (delete $self->{text});#d# don't check for == inside _set_text 1494 $self->_set_text (delete $self->{text});#d# don't check for == inside _set_text
1524}
1525
1526sub set_text {
1527 my ($self, $text) = @_;
1528
1529 $self->{cursor} = length $text;
1530 $self->_set_text ($text);
1531 $self->update;
1532} 1495}
1533 1496
1534sub key_down { 1497sub key_down {
1535 my ($self, $ev) = @_; 1498 my ($self, $ev) = @_;
1536 1499
1538 my $sym = $ev->{sym}; 1501 my $sym = $ev->{sym};
1539 my $uni = $ev->{unicode}; 1502 my $uni = $ev->{unicode};
1540 1503
1541 my $text = $self->get_text; 1504 my $text = $self->get_text;
1542 1505
1543 if ($sym == 8) { 1506 if ($uni == 8) {
1544 substr $text, --$self->{cursor}, 1, "" if $self->{cursor}; 1507 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
1545 } elsif ($sym == 127) { 1508 } elsif ($uni == 127) {
1546 substr $text, $self->{cursor}, 1, ""; 1509 substr $text, $self->{cursor}, 1, "";
1547 } elsif ($sym == CFClient::SDLK_LEFT) { 1510 } elsif ($sym == CFClient::SDLK_LEFT) {
1548 --$self->{cursor} if $self->{cursor}; 1511 --$self->{cursor} if $self->{cursor};
1549 } elsif ($sym == CFClient::SDLK_RIGHT) { 1512 } elsif ($sym == CFClient::SDLK_RIGHT) {
1550 ++$self->{cursor} if $self->{cursor} < length $self->{text}; 1513 ++$self->{cursor} if $self->{cursor} < length $self->{text};
1551 } elsif ($sym == CFClient::SDLK_HOME) { 1514 } elsif ($sym == CFClient::SDLK_HOME) {
1552 $self->{cursor} = 0; 1515 $self->{cursor} = 0;
1553 } elsif ($sym == CFClient::SDLK_END) { 1516 } elsif ($sym == CFClient::SDLK_END) {
1554 $self->{cursor} = length $text; 1517 $self->{cursor} = length $text;
1555 } elsif ($sym == 27) { 1518 } elsif ($uni == 27) {
1556 $self->emit ('escape'); 1519 $self->emit ('escape');
1557 } elsif ($uni) { 1520 } elsif ($uni) {
1558 substr $text, $self->{cursor}++, 0, chr $uni; 1521 substr $text, $self->{cursor}++, 0, chr $uni;
1559 } 1522 }
1560 1523
1724 1687
1725 if ($GRAB == $self) { 1688 if ($GRAB == $self) {
1726 $self->{fg} = $self->{active_fg}; 1689 $self->{fg} = $self->{active_fg};
1727 } 1690 }
1728 1691
1729 glEnable GL_BLEND;
1730 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1731 glEnable GL_TEXTURE_2D; 1692 glEnable GL_TEXTURE_2D;
1732 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1693 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1733 glColor 0, 0, 0, 1; 1694 glColor 0, 0, 0, 1;
1734 1695
1735 $tex[0]->draw_quad (0, 0, $self->{w}, $self->{h}); 1696 $tex[0]->draw_quad_alpha (0, 0, $self->{w}, $self->{h});
1736 1697
1737 glDisable GL_TEXTURE_2D; 1698 glDisable GL_TEXTURE_2D;
1738 glDisable GL_BLEND;
1739 1699
1740 $self->SUPER::_draw; 1700 $self->SUPER::_draw;
1741} 1701}
1742 1702
1743############################################################################# 1703#############################################################################
1790 1750
1791 my $s = (List::Util::min @$self{qw(w h)}) - $self->{padding} * 2; 1751 my $s = (List::Util::min @$self{qw(w h)}) - $self->{padding} * 2;
1792 1752
1793 glColor @{ $FOCUS == $self ? $self->{active_fg} : $self->{fg} }; 1753 glColor @{ $FOCUS == $self ? $self->{active_fg} : $self->{fg} };
1794 1754
1795 glEnable GL_BLEND; 1755 my $tex = $self->{state} ? $tex[1] : $tex[0];
1756
1796 glEnable GL_TEXTURE_2D; 1757 glEnable GL_TEXTURE_2D;
1797 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1798
1799 my $tex = $self->{state} ? $tex[1] : $tex[0];
1800
1801 $tex->draw_quad (0, 0, $s, $s); 1758 $tex->draw_quad_alpha (0, 0, $s, $s);
1802
1803 glDisable GL_TEXTURE_2D; 1759 glDisable GL_TEXTURE_2D;
1804 glDisable GL_BLEND;
1805} 1760}
1806 1761
1807############################################################################# 1762#############################################################################
1808 1763
1809package CFClient::UI::Image; 1764package CFClient::UI::Image;
1852 glTranslate 0, -$self->{w}, 0; 1807 glTranslate 0, -$self->{w}, 0;
1853 1808
1854 ($w, $h) = ($h, $w); 1809 ($w, $h) = ($h, $w);
1855 } 1810 }
1856 1811
1857 glEnable GL_BLEND;
1858 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1859 glEnable GL_TEXTURE_2D; 1812 glEnable GL_TEXTURE_2D;
1860 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1813 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1861 1814
1862 $tex->draw_quad (0, 0, $w, $h); 1815 $tex->draw_quad_alpha (0, 0, $w, $h);
1863 1816
1864 glDisable GL_BLEND;
1865 glDisable GL_TEXTURE_2D; 1817 glDisable GL_TEXTURE_2D;
1866} 1818}
1867 1819
1868############################################################################# 1820#############################################################################
1869 1821
2161 $page ||= 2; 2113 $page ||= 2;
2162 2114
2163 my $knob_a = $inner_pad_px + ($value - $page * 0.5); 2115 my $knob_a = $inner_pad_px + ($value - $page * 0.5);
2164 my $knob_b = $inner_pad_px + ($value + $page * 0.5); 2116 my $knob_b = $inner_pad_px + ($value + $page * 0.5);
2165 2117
2166 glEnable GL_BLEND;
2167 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2168 glEnable GL_TEXTURE_2D; 2118 glEnable GL_TEXTURE_2D;
2169 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2119 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2170 2120
2171 # draw background 2121 # draw background
2172 $tex[1]->draw_quad (0, 0, $w, $h); 2122 $tex[1]->draw_quad_alpha (0, 0, $w, $h);
2173 2123
2174 # draw handle 2124 # draw handle
2175 $tex[0]->draw_quad ($knob_a, 0, $knob_b - $knob_a, $h); 2125 $tex[0]->draw_quad_alpha ($knob_a, 0, $knob_b - $knob_a, $h);
2176 2126
2177 glDisable GL_BLEND;
2178 glDisable GL_TEXTURE_2D; 2127 glDisable GL_TEXTURE_2D;
2179} 2128}
2180 2129
2181############################################################################# 2130#############################################################################
2182 2131
2193 fontsize => 1, 2142 fontsize => 1,
2194 can_events => 0, 2143 can_events => 0,
2195 #font => default_font 2144 #font => default_font
2196 @_, 2145 @_,
2197 2146
2198 layout => (new CFClient::Layout), 2147 layout => (new CFClient::Layout 1),
2199 par => [], 2148 par => [],
2200 height => 0, 2149 height => 0,
2201 children => [ 2150 children => [
2202 (new CFClient::UI::Empty expand => 1), 2151 (new CFClient::UI::Empty expand => 1),
2203 (new CFClient::UI::Slider vertical => 1), 2152 (new CFClient::UI::Slider vertical => 1),
2221 2170
2222 my $layout = $self->{layout}; 2171 my $layout = $self->{layout};
2223 2172
2224 $layout->set_height ($self->{fontsize} * $::FONTSIZE); 2173 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
2225 $layout->set_width ($self->{children}[0]{w}); 2174 $layout->set_width ($self->{children}[0]{w});
2226 $layout->set_text ($text); 2175 $layout->set_markup ($text);
2227 2176
2228 ($layout->size)[1] 2177 ($layout->size)[1]
2229} 2178}
2230 2179
2231sub reflow { 2180sub reflow {
2269 2218
2270 return unless $self->{h} > 0; 2219 return unless $self->{h} > 0;
2271 2220
2272 delete $self->{texture}; 2221 delete $self->{texture};
2273 2222
2274 $ROOT->on_refresh ($self, sub { 2223 $ROOT->on_post_alloc ($self, sub {
2275 if (delete $self->{need_reflow}) { 2224 if (delete $self->{need_reflow}) {
2276 my $height = 0; 2225 my $height = 0;
2277 2226
2278 $height += $_->[0] = $self->text_height ($_->[2]) 2227 $height += $_->[0] = $self->text_height ($_->[2])
2279 for @{$self->{par}}; 2228 for @{$self->{par}};
2287 2236
2288 $self->{texture} ||= new_from_opengl CFClient::Texture $self->{children}[0]{w}, $self->{children}[0]{h}, sub { 2237 $self->{texture} ||= new_from_opengl CFClient::Texture $self->{children}[0]{w}, $self->{children}[0]{h}, sub {
2289 glClearColor 0, 0, 0, 0; 2238 glClearColor 0, 0, 0, 0;
2290 glClear GL_COLOR_BUFFER_BIT; 2239 glClear GL_COLOR_BUFFER_BIT;
2291 2240
2292 glEnable GL_BLEND;
2293 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2294 glEnable GL_TEXTURE_2D; 2241 glEnable GL_TEXTURE_2D;
2295 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2242 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2296 2243
2297 my $top = int $self->{children}[1]{range}[0]; 2244 my $top = int $self->{children}[1]{range}[0];
2298 2245
2307 2254
2308 for my $par (@{$self->{par}}) { 2255 for my $par (@{$self->{par}}) {
2309 my $h = $par->[0]; 2256 my $h = $par->[0];
2310 2257
2311 if ($y0 < $y + $h && $y < $y1) { 2258 if ($y0 < $y + $h && $y < $y1) {
2259 $layout->set_foreground (@{ $par->[1] });
2312 $layout->set_text ($par->[2]); 2260 $layout->set_markup ($par->[2]);
2313 2261
2314 glColor @{ $par->[1] };
2315 my ($W, $H) = $layout->size; 2262 my ($W, $H) = $layout->size;
2316 CFClient::Texture->new_from_layout ($layout)->draw_quad (0, $y - $y0); 2263 CFClient::Texture->new_from_layout ($layout)->draw_quad_alpha_premultiplied (0, $y - $y0);
2317 } 2264 }
2318 2265
2319 $y += $h; 2266 $y += $h;
2320 } 2267 }
2321 2268
2322 glDisable GL_TEXTURE_2D; 2269 glDisable GL_TEXTURE_2D;
2323 glDisable GL_BLEND;
2324 }; 2270 };
2325 }); 2271 });
2326} 2272}
2327 2273
2328sub _draw { 2274sub _draw {
2329 my ($self) = @_; 2275 my ($self) = @_;
2330 2276
2331 glEnable GL_BLEND;
2332 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
2333 glEnable GL_TEXTURE_2D; 2277 glEnable GL_TEXTURE_2D;
2334 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2278 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2335 glColor 1, 1, 1, 1; 2279 glColor 1, 1, 1, 1;
2336 $self->{texture}->draw_quad (0, 0, $self->{children}[0]{w}, $self->{children}[0]{h}); 2280 $self->{texture}->draw_quad_alpha_premultiplied (0, 0, $self->{children}[0]{w}, $self->{children}[0]{h});
2337 glDisable GL_TEXTURE_2D; 2281 glDisable GL_TEXTURE_2D;
2338 glDisable GL_BLEND;
2339 2282
2340 $self->{children}[1]->draw; 2283 $self->{children}[1]->draw;
2341 2284
2342} 2285}
2343 2286
2437 @_, 2380 @_,
2438 can_events => 0, 2381 can_events => 0,
2439 ) 2382 )
2440} 2383}
2441 2384
2442sub set_markup { 2385sub set_tooltip_from {
2443 my ($self, $text) = @_; 2386 my ($self, $widget) = @_;
2444 2387
2445 $self->{label} ||= new CFClient::UI::Label fontsize => 0.8, fg => [0, 0, 0]; 2388 $self->add (new CFClient::UI::Label
2446 $self->{label}->set_markup ($text); 2389 markup => $widget->{tooltip},
2447 $self->add ($self->{label}); 2390 max_w => ($widget->{tooltip_width} || 0.25) * $::WIDTH,
2391 fontsize => 0.8,
2392 fg => [0, 0, 0, 1],
2393 font => ($widget->{tooltip_font} || $::FONT_PROP),
2394 );
2448} 2395}
2449 2396
2450sub size_request { 2397sub size_request {
2451 my ($self) = @_; 2398 my ($self) = @_;
2452
2453 $self->child->set_max_size ($::WIDTH * 0.3);
2454 2399
2455 my ($w, $h) = @{$self->child}{qw(req_w req_h)}; 2400 my ($w, $h) = @{$self->child}{qw(req_w req_h)};
2456 2401
2457 ($w + 4, $h + 4) 2402 ($w + 4, $h + 4)
2458} 2403}
2464} 2409}
2465 2410
2466sub _draw { 2411sub _draw {
2467 my ($self) = @_; 2412 my ($self) = @_;
2468 2413
2469 glPushMatrix;
2470 glTranslate 0.375, 0.375; 2414 glTranslate 0.375, 0.375;
2471 2415
2472 my ($w, $h) = @$self{qw(w h)}; 2416 my ($w, $h) = @$self{qw(w h)};
2473 2417
2474 glColor 1, 0.8, 0.4; 2418 glColor 1, 0.8, 0.4;
2485 glVertex 0 , $h; 2429 glVertex 0 , $h;
2486 glVertex $w, $h; 2430 glVertex $w, $h;
2487 glVertex $w, 0; 2431 glVertex $w, 0;
2488 glEnd; 2432 glEnd;
2489 2433
2490 glPopMatrix; 2434 glTranslate 2 - 0.375, 2 - 0.375;
2491
2492 glTranslate 2, 2;
2493 $self->SUPER::_draw; 2435 $self->SUPER::_draw;
2494} 2436}
2495 2437
2496############################################################################# 2438#############################################################################
2497 2439
2520 return unless $::CONN;#d# manage and cache textures differently 2462 return unless $::CONN;#d# manage and cache textures differently
2521 my $tex = $::CONN->{texture}[$::CONN->{faceid}[$self->{face}]]; 2463 my $tex = $::CONN->{texture}[$::CONN->{faceid}[$self->{face}]];
2522 2464
2523 # TODO animation 2465 # TODO animation
2524 if ($tex) { 2466 if ($tex) {
2525 glEnable GL_BLEND;
2526 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2527 glEnable GL_TEXTURE_2D; 2467 glEnable GL_TEXTURE_2D;
2528 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2468 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2529 glColor 1, 1, 1, 1; 2469 glColor 1, 1, 1, 1;
2530 $tex->draw_quad (0, 0, $self->{w}, $self->{h}); 2470 $tex->draw_quad_alpha (0, 0, $self->{w}, $self->{h});
2531 glDisable GL_TEXTURE_2D; 2471 glDisable GL_TEXTURE_2D;
2532 glDisable GL_BLEND;
2533 } 2472 }
2534} 2473}
2535 2474
2536############################################################################# 2475#############################################################################
2537 2476
2542sub new { 2481sub new {
2543 my $class = shift; 2482 my $class = shift;
2544 2483
2545 my %args = @_; 2484 my %args = @_;
2546 2485
2547 my $item = $args{item}; 2486 my $item = delete $args{item};
2548 2487
2549 my $desc = $item->{nrof} < 2 2488 my $desc = $item->{nrof} < 2
2550 ? $item->{name} 2489 ? $item->{name}
2551 : "$item->{nrof} $item->{name_pl}"; 2490 : "$item->{nrof} $item->{name_pl}";
2552 2491
2581 2520
2582 1 2521 1
2583 }, 2522 },
2584 %args 2523 %args
2585 ); 2524 );
2525
2586 $self->add(new CFClient::UI::Face 2526 $self->add (new CFClient::UI::Face
2587 can_events => 0, 2527 can_events => 0,
2588 face => $item->{face}, 2528 face => $item->{face},
2589 anim => $item->{anim}, 2529 anim => $item->{anim},
2590 animspeed => $item->{animspeed}); 2530 animspeed => $item->{animspeed},
2531 );
2532
2591 $self->add(new CFClient::UI::Label 2533 $self->add (new CFClient::UI::Label
2592 can_events => 0, 2534 can_events => 0,
2593 text => $desc); 2535 text => $desc,
2536 );
2594 2537
2595 $self 2538 $self
2596} 2539}
2597 2540
2598############################################################################# 2541#############################################################################
2616 my ($self, $items) = @_; 2559 my ($self, $items) = @_;
2617 2560
2618 $self->{scrolled}->clear; 2561 $self->{scrolled}->clear;
2619 return unless $items; 2562 return unless $items;
2620 2563
2621 my @items = sort { $a->{type} <=> $b->{type} } @$items; 2564 my @items = sort {
2565 ($a->{type} <=> $b->{type})
2566 or ($a->{name} cmp $b->{name})
2567 } @$items;
2622 2568
2623 $self->{real_items} = \@items; 2569 $self->{real_items} = \@items;
2624 2570
2625 for my $item (@items) { 2571 for my $item (@items) {
2626 my $desc = $item->{nrof} < 2 2572 my $desc = $item->{nrof} < 2
2627 ? $item->{name} 2573 ? $item->{name}
2628 : "$item->{nrof} $item->{name_pl}"; 2574 : "$item->{nrof} $item->{name_pl}";
2629 2575
2630 $self->{scrolled}->add (new CFClient::UI::InventoryItem item => $item); 2576 $item = $item->{widget} ||= new CFClient::UI::InventoryItem item => $item;
2631 } 2577 }
2578
2579 $self->{scrolled}->add (@items);
2632 2580
2633# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page]; 2581# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page];
2634} 2582}
2635 2583
2636sub size_request { 2584sub size_request {
2710 } 2658 }
2711} 2659}
2712 2660
2713############################################################################# 2661#############################################################################
2714 2662
2663package CFClient::UI::Statusbox;
2664
2665our @ISA = CFClient::UI::VBox::;
2666
2667sub reorder {
2668 my ($self) = @_;
2669 my $NOW = time;
2670
2671 while (my ($k, $v) = each %{ $self->{item} }) {
2672 delete $self->{item}{$k} if $v->{timeout} < $NOW;
2673 }
2674
2675 my @widgets;
2676
2677 my @items = sort {
2678 $a->{pri} <=> $b->{pri}
2679 or $b->{id} <=> $a->{id}
2680 } values %{ $self->{item} };
2681
2682 my $count = 10 + 1;
2683 for my $item (@items) {
2684 last unless --$count;
2685
2686 push @widgets, $item->{label} ||= do {
2687 # TODO: doesn't handle markup well (read as: at all)
2688 my $short = $item->{count} > 1
2689 ? "<b>$item->{count} ×</b> $item->{text}"
2690 : $item->{text};
2691
2692 for ($short) {
2693 s/^\s+//;
2694 s/\s+/ /g;
2695 my $len = int 40 / $item->{fontsize};
2696 substr $_, $len, length, "…" if $len < length;
2697 }
2698
2699 new CFClient::UI::Label
2700 markup => $short,
2701 tooltip => $item->{tooltip},
2702 tooltip_font => $::FONT_PROP,
2703 tooltip_width => 0.67,
2704 fontsize => $item->{fontsize},
2705 fg => $item->{fg},
2706 can_events => 1,
2707 can_hover => 1
2708 };
2709 }
2710
2711 $self->clear;
2712 $self->SUPER::add (reverse @widgets);
2713}
2714
2715sub add {
2716 my ($self, $text, %arg) = @_;
2717
2718 $text =~ s/^\s+//;
2719 $text =~ s/\s+$//;
2720
2721 my $timeout = time + ((delete $arg{timeout}) || 60);
2722
2723 my $group = exists $arg{group} ? $arg{group} : ++$self->{id};
2724
2725 if (my $item = $self->{item}{$group}) {
2726 if ($item->{text} eq $text) {
2727 $item->{count}++;
2728 } else {
2729 $item->{count} = 1;
2730 $item->{text} = $item->{tooltip} = $text;
2731 }
2732 $item->{id} = ++$self->{id};
2733 $item->{timeout} = $timeout;
2734 delete $item->{label};
2735 } else {
2736 $self->{item}{$group} = {
2737 id => ++$self->{id},
2738 text => $text,
2739 timeout => $timeout,
2740 tooltip => $text,
2741 fontsize => 0.8,
2742 fg => [0.8, 0.8, 0.8, 0.8],
2743 pri => 0,
2744 count => 1,
2745 %arg,
2746 };
2747 }
2748
2749 $self->reorder;
2750}
2751
2752#############################################################################
2753
2715package CFClient::UI::Root; 2754package CFClient::UI::Root;
2716 2755
2717our @ISA = CFClient::UI::Container::; 2756our @ISA = CFClient::UI::Container::;
2718 2757
2719use CFClient::OpenGL; 2758use CFClient::OpenGL;
2720 2759
2760sub new {
2761 my $class = shift;
2762
2763 $class->SUPER::new (
2764 @_,
2765 )
2766}
2767
2768sub configure {
2769 my ($self, $x, $y, $w, $h) = @_;
2770
2771 $self->{w} = $w;
2772 $self->{h} = $h;
2773}
2774
2721sub check_size { 2775sub check_size {
2722 my ($self) = @_; 2776 my ($self) = @_;
2723 2777
2724 $self->configure (0, 0, $self->{w}, $self->{h}); 2778 $self->size_allocate ($self->{w}, $self->{h})
2779 if $self->{w};
2725} 2780}
2726 2781
2727sub size_request { 2782sub size_request {
2728 my ($self) = @_; 2783 my ($self) = @_;
2729 2784
2731} 2786}
2732 2787
2733sub size_allocate { 2788sub size_allocate {
2734 my ($self, $w, $h) = @_; 2789 my ($self, $w, $h) = @_;
2735 2790
2736 my $old_w = $self->{old_w}; 2791 my $old_w = $self->{old_w}; $self->{old_w} = $w;
2737 my $old_h = $self->{old_h}; 2792 my $old_h = $self->{old_h}; $self->{old_h} = $h;
2738 2793
2739 if ($old_w && $old_h) { 2794 CFClient::UI::rescale_widgets $w / $old_w, $h / $old_h
2740 for my $child ($self->children) { 2795 if $old_w && $old_h && ($old_w != $w || $old_h != $h);
2741 $child->{x} = int 0.5 + $child->{x} * $w / $old_w;
2742 $child->{w} = int 0.5 + $child->{w} * $w / $old_w;
2743 $child->{req_w} = int 0.5 + $child->{req_w} * $w / $old_w if exists $child->{req_w};
2744 $child->{user_w} = int 0.5 + $child->{user_w} * $w / $old_w if exists $child->{user_w};
2745 $child->{y} = int 0.5 + $child->{y} * $h / $old_h;
2746 $child->{h} = int 0.5 + $child->{h} * $h / $old_h;
2747 $child->{req_h} = int 0.5 + $child->{req_h} * $h / $old_h if exists $child->{req_h};
2748 $child->{user_h} = int 0.5 + $child->{user_h} * $h / $old_h if exists $child->{user_h};
2749 }
2750 }
2751
2752 $self->{old_w} = $w;
2753 $self->{old_h} = $h;
2754}
2755
2756sub configure {
2757 my ($self, $x, $y, $w, $h) = @_;
2758
2759 $self->SUPER::configure ($x, $y, $w, $h);
2760 2796
2761 for my $child ($self->children) { 2797 for my $child ($self->children) {
2762 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)}; 2798 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
2763 2799
2800 $X = $child->{req_x} > 0 ? $child->{req_x} : $w - $W - $child->{req_x} + 1
2801 if exists $child->{req_x};
2802
2803 $Y = $child->{req_y} > 0 ? $child->{req_y} : $h - $H - $child->{req_y} + 1
2804 if exists $child->{req_y};
2805
2764 $X = List::Util::max 0, List::Util::min $w - $W, $X; 2806 $X = List::Util::max 0, List::Util::min $w - $W, int $X + 0.5;
2765 $Y = List::Util::max 0, List::Util::min $h - $H, $Y; 2807 $Y = List::Util::max 0, List::Util::min $h - $H, int $Y + 0.5;
2808
2766 $child->configure ($X, $Y, $W, $H); 2809 $child->configure ($X, $Y, $W, $H);
2767 } 2810 }
2768} 2811}
2769 2812
2770sub _topleft { 2813sub coord2local {
2771 my ($self, $x, $y) = @_; 2814 my ($self, $x, $y) = @_;
2772 2815
2773 ($x, $y) 2816 ($x, $y)
2774} 2817}
2775 2818
2819sub coord2global {
2820 my ($self, $x, $y) = @_;
2821
2822 ($x, $y)
2823}
2824
2776sub update { 2825sub update {
2777 my ($self) = @_; 2826 my ($self) = @_;
2778 2827
2779 $self->check_size; 2828 $self->check_size;
2780 ::refresh (); 2829 $::WANT_REFRESH++;
2781} 2830}
2782 2831
2783sub add { 2832sub add {
2784 my ($self, $child) = @_; 2833 my ($self, @children) = @_;
2785 2834
2835 for my $child (@children) {
2836 $child->{toplevel} = 1;
2837
2786 # integerize window positions 2838 # integerise window positions
2787 $child->{x} = int $child->{x}; 2839 $child->{x} = int $child->{x};
2788 $child->{y} = int $child->{y}; 2840 $child->{y} = int $child->{y};
2841 }
2789 2842
2790 $self->SUPER::add ($child); 2843 $self->SUPER::add (@children);
2791} 2844}
2792 2845
2793sub on_refresh { 2846sub on_refresh {
2794 my ($self, $id, $cb) = @_; 2847 my ($self, $id, $cb) = @_;
2795 2848
2796 $self->{refresh_hook}{$id} = $cb; 2849 $self->{refresh_hook}{$id} = $cb;
2797} 2850}
2798 2851
2852sub on_post_alloc {
2853 my ($self, $id, $cb) = @_;
2854
2855 $self->{post_alloc_hook}{$id} = $cb;
2856}
2857
2799sub draw { 2858sub draw {
2800 my ($self) = @_; 2859 my ($self) = @_;
2801 2860
2802 while (my $rcb = delete $self->{refresh_hook}) { 2861 while ($self->{refresh_hook}) {
2803 $_->() for values %$rcb; 2862 $_->()
2863 for values %{delete $self->{refresh_hook}};
2864 }
2865
2866 if ($self->{check_size}) {
2867 my @queue = ([], []);
2868
2869 for (;;) {
2870 if ($self->{check_size}) {
2871 # heuristic: check containers last
2872 push @{ $queue[ ! ! $_->isa ("CFClient::UI::Container") ] }, $_
2873 for values %{delete $self->{check_size}}
2874 }
2875
2876 my $widget = (pop @{ $queue[0] }) || (pop @{ $queue[1] }) || last;
2877
2878 my ($w, $h) = $widget->{user_w} && $widget->{user_h}
2879 ? @$widget{qw(user_w user_h)}
2880 : $widget->size_request;
2881
2882 if (delete $widget->{force_alloc}
2883 or $w != $widget->{req_w} or $h != $widget->{req_h}) {
2884 Carp::confess "$widget: size_request is negative" if $w < 0 || $h < 0;#d#
2885
2886 $widget->{req_w} = $w;
2887 $widget->{req_h} = $h;
2888
2889 $self->{size_alloc}{$widget} = [$widget, $widget->{w} || $w, $widget->{h} || $h];
2890
2891 $widget->{parent}->check_size
2892 if $widget->{parent};
2893 }
2894 }
2895 }
2896
2897 while ($self->{size_alloc}) {
2898 for (values %{delete $self->{size_alloc}}) {
2899 my ($widget, $w, $h) = @$_;
2900
2901 $w = 0 if $w < 0;
2902 $h = 0 if $h < 0;
2903
2904 $widget->{w} = $w;
2905 $widget->{h} = $h;
2906 $widget->size_allocate ($w, $h);
2907 $widget->emit (size_allocate => $w, $h);
2908 }
2909 }
2910
2911 while ($self->{post_alloc_hook}) {
2912 $_->()
2913 for values %{delete $self->{post_alloc_hook}};
2804 } 2914 }
2805 2915
2806 glViewport 0, 0, $::WIDTH, $::HEIGHT; 2916 glViewport 0, 0, $::WIDTH, $::HEIGHT;
2807 glClearColor +($::CFG->{fow_intensity}) x 3, 1; 2917 glClearColor +($::CFG->{fow_intensity}) x 3, 1;
2808 glClear GL_COLOR_BUFFER_BIT; 2918 glClear GL_COLOR_BUFFER_BIT;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines