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.185 by root, Mon May 8 17:23:08 2006 UTC vs.
Revision 1.197 by root, Fri May 12 01:47:04 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
23 24
24 my $tip = $widget->{tooltip}; 25 my $tip = $widget->{tooltip};
25 26
26 $tip = $tip->($widget) if CODE:: eq ref $tip; 27 $tip = $tip->($widget) if CODE:: eq ref $tip;
27 28
28 $TOOLTIP->set_markup ($widget->{tooltip}); 29 $TOOLTIP->set_tooltip_from ($widget);
29
30 $TOOLTIP->show; 30 $TOOLTIP->show;
31 31
32 my ($x, $y) = $widget->coord2global ($widget->{w}, 0); 32 my ($x, $y) = $widget->coord2global ($widget->{w}, 0);
33 33
34 if ($x + $TOOLTIP->{w} > $::WIDTH) { 34 if ($x + $TOOLTIP->{w} > $::WIDTH) {
35 ($x, $y) = $widget->coord2global (-$TOOLTIP->{w}, 0); 35 ($x, $y) = $widget->coord2global (-$TOOLTIP->{w}, 0);
36 } 36 }
37 37
38 $TOOLTIP->move ($x, $y); 38 $TOOLTIP->move ($x, $y);
39 $TOOLTIP->check_size;
40 $TOOLTIP->update;
39 } 41 }
40 42
41 return; 43 return;
42 } 44 }
43 } 45 }
232 $self->{y} = $y; 234 $self->{y} = $y;
233 $self->update; 235 $self->update;
234 } 236 }
235 237
236 if ($self->{w} != $w || $self->{h} != $h) { 238 if ($self->{w} != $w || $self->{h} != $h) {
237 $self->{w} = $w; 239 $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 } 240 }
244} 241}
245 242
246sub size_allocate { 243sub size_allocate {
247 # nothing to be done 244 # nothing to be done
255 my ($self) = @_; 252 my ($self) = @_;
256 253
257 $_->reconfigure 254 $_->reconfigure
258 for $self->children; 255 for $self->children;
259 256
260 $_->check_size; 257 $self->check_size;
258 $CFClient::UI::ROOT->{size_alloc}{$self} = [$self, $self->{w}, $self->{h}];
259 $self->update;
261} 260}
262 261
263sub set_max_size { 262sub set_max_size {
264 my ($self, $w, $h) = @_; 263 my ($self, $w, $h) = @_;
265 264
266 delete $self->{max_w}; $self->{max_w} = $w if $w; 265 delete $self->{max_w}; $self->{max_w} = $w if $w;
267 delete $self->{max_h}; $self->{max_h} = $h if $h; 266 delete $self->{max_h}; $self->{max_h} = $h if $h;
268}
269
270# return top left coordinates
271sub _topleft {
272 my ($self, $x, $y) = @_;
273
274 $self->{parent}
275 or Carp::confess "no parent widget in _topleft\n";#d#
276
277 $self->{parent}->_topleft ($x + $self->{x}, $y + $self->{y});
278} 267}
279 268
280# translate global coordinates to local coordinate system 269# translate global coordinates to local coordinate system
281sub coord2local { 270sub coord2local {
282 my ($self, $x, $y) = @_; 271 my ($self, $x, $y) = @_;
283 272
284 my ($X, $Y) = $self->_topleft; 273 $self->{parent}->coord2local ($x - $self->{x}, $y - $self->{y})
285 ($x - $X, $y - $Y)
286} 274}
287 275
288# translate local coordinates to global coordinate system 276# translate local coordinates to global coordinate system
289sub coord2global { 277sub coord2global {
290 my ($self, $x, $y) = @_; 278 my ($self, $x, $y) = @_;
291 279
292 my ($X, $Y) = $self->_topleft; 280 $self->{parent}->coord2global ($x + $self->{x}, $y + $self->{y})
293 ($x + $X, $y + $Y)
294} 281}
295 282
296sub focus_in { 283sub focus_in {
297 my ($self) = @_; 284 my ($self) = @_;
298 285
396 383
397sub set_parent { 384sub set_parent {
398 my ($self, $parent) = @_; 385 my ($self, $parent) = @_;
399 386
400 Scalar::Util::weaken ($self->{parent} = $parent); 387 Scalar::Util::weaken ($self->{parent} = $parent);
388
389 $self->check_size
390 unless exists $self->{req_w};
401} 391}
402 392
403sub check_size { 393sub check_size {
404 my ($self) = @_; 394 my ($self, $forced) = @_;
405 395
406 $self->{parent} 396 $self->{force_alloc} = 1 if $forced;
407 or return 1; 397 $CFClient::UI::ROOT->{check_size}{$self} = $self;
408
409 my ($w, $h) = $self->{user_w} && $self->{user_h}
410 ? @$self{qw(user_w user_h)}
411 : $self->size_request;
412
413 if ($w != $self->{req_w} || $h != $self->{req_h}) {
414 $self->{req_w} = $w;
415 $self->{req_h} = $h;
416
417 $self->{parent}->check_size
418 or $self->size_allocate (
419 (List::Util::max $self->{w}, $w),
420 (List::Util::max $self->{h}, $h),
421 );
422
423 1
424 } else {
425 0
426 }
427} 398}
428 399
429sub update { 400sub update {
430 my ($self) = @_; 401 my ($self) = @_;
431 402
528 499
529 $self 500 $self
530} 501}
531 502
532sub add { 503sub add {
533 my ($self, $child) = @_; 504 my ($self, @widgets) = @_;
534 505
535 $child->set_parent ($self); 506 $_->set_parent ($self)
507 for @widgets;
536 508
537 use sort 'stable'; 509 use sort 'stable';
538 510
539 $self->{children} = [ 511 $self->{children} = [
540 sort { $a->{z} <=> $b->{z} } 512 sort { $a->{z} <=> $b->{z} }
541 @{$self->{children}}, $child 513 @{$self->{children}}, @widgets
542 ]; 514 ];
543 515
544 $child->check_size; 516 $self->check_size (1);
545 $self->update; 517 $self->update;
546} 518}
547 519
548sub children { 520sub children {
549 @{ $_[0]{children} } 521 @{ $_[0]{children} }
697 my ($w, $h) = ($self->w, $self->h); 669 my ($w, $h) = ($self->w, $self->h);
698 670
699 my $tex = $self->{texture} 671 my $tex = $self->{texture}
700 or return; 672 or return;
701 673
702 glEnable GL_BLEND;
703 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
704 glEnable GL_TEXTURE_2D; 674 glEnable GL_TEXTURE_2D;
705 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 675 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
706 glColor 0, 0, 0, 1; 676 glColor 0, 0, 0, 1;
707 677
708 $tex->draw_quad (0, 0, $w, $h); 678 $tex->draw_quad_alpha_premultiplied (0, 0, $w, $h);
709 679
710 glDisable GL_BLEND;
711 glDisable GL_TEXTURE_2D; 680 glDisable GL_TEXTURE_2D;
712} 681}
713 682
714############################################################################# 683#############################################################################
715 684
739 $self->{view_y} = int $y; 708 $self->{view_y} = int $y;
740 709
741 $self->update; 710 $self->update;
742} 711}
743 712
744# hmm, this does not work for topleft of $self... but we should not aks for that 713# hmm, this does not work for topleft of $self... but we should not ask for that
745sub _topleft { 714sub coord2local {
746 my ($self, $x, $y) = @_; 715 my ($self, $x, $y) = @_;
747 716
748 $self->SUPER::_topleft ($x - $self->{view_x}, $y - $self->{view_y}) 717 $self->SUPER::coord2local ($x + $self->{view_x}, $y + $self->{view_y})
718}
719
720sub coord2global {
721 my ($self, $x, $y) = @_;
722
723 $x = List::Util::min $self->{w}, $x - $self->{view_x};
724 $y = List::Util::min $self->{h}, $y - $self->{view_y};
725
726 $self->SUPER::coord2global ($x, $y)
749} 727}
750 728
751sub find_widget { 729sub find_widget {
752 my ($self, $x, $y) = @_; 730 my ($self, $x, $y) = @_;
753 731
809 787
810our @ISA = CFClient::UI::Bin::; 788our @ISA = CFClient::UI::Bin::;
811 789
812use CFClient::OpenGL; 790use CFClient::OpenGL;
813 791
814sub new {
815 my $class = shift;
816
817 my $self = $class->SUPER::new (
818 bg => [1, 1, 1, 1],
819 border_bg => [1, 1, 1, 1],
820 border => 0.8,
821 @_
822 );
823
824 $self
825}
826
827sub _draw {
828 my ($self) = @_;
829
830 my ($w, $h) = ($self->{w}, $self->{h});
831
832 glEnable GL_BLEND;
833 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
834 glEnable GL_TEXTURE_2D;
835 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
836
837# glBegin GL_QUADS;
838# glColor 0, 0, 0, 0;
839# glVertex 0 , 0;
840# glVertex 0 , $h;
841# glVertex $w, $h;
842# glVertex $w, 0;
843# glEnd;
844
845
846 $self->child->draw;
847 glDisable GL_BLEND;
848 glDisable GL_TEXTURE_2D;
849}
850
851############################################################################# 792#############################################################################
852 793
853package CFClient::UI::FancyFrame; 794package CFClient::UI::FancyFrame;
854 795
855our @ISA = CFClient::UI::Bin::; 796our @ISA = CFClient::UI::Bin::;
969 my ($self) = @_; 910 my ($self) = @_;
970 911
971 my ($w, $h ) = ($self->{w}, $self->{h}); 912 my ($w, $h ) = ($self->{w}, $self->{h});
972 my ($cw, $ch) = ($self->child->{w}, $self->child->{h}); 913 my ($cw, $ch) = ($self->child->{w}, $self->child->{h});
973 914
974 glEnable GL_BLEND;
975 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
976 glEnable GL_TEXTURE_2D; 915 glEnable GL_TEXTURE_2D;
977 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 916 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
978 917
979 my $border = $self->border; 918 my $border = $self->border;
980 919
981 glColor @{ $self->{border_bg} }; 920 glColor @{ $self->{border_bg} };
982 $tex[1]->draw_quad (0, 0, $w, $border); 921 $tex[1]->draw_quad_alpha (0, 0, $w, $border);
983 $tex[3]->draw_quad (0, $border, $border, $ch); 922 $tex[3]->draw_quad_alpha (0, $border, $border, $ch);
984 $tex[2]->draw_quad ($w - $border, $border, $border, $ch); 923 $tex[2]->draw_quad_alpha ($w - $border, $border, $border, $ch);
985 $tex[4]->draw_quad (0, $h - $border, $w, $border); 924 $tex[4]->draw_quad_alpha (0, $h - $border, $w, $border);
986 925
987 if (@{$self->{bg}} < 4 || $self->{bg}[3]) { 926 if (@{$self->{bg}} < 4 || $self->{bg}[3]) {
988 my $bg = $tex[0]; 927 my $bg = $tex[0];
989 928
990 # TODO: repeat texture not scale 929 # TODO: repeat texture not scale
994 glColor @{ $self->{bg} }; 933 glColor @{ $self->{bg} };
995 934
996 $bg->{s} = $rep_x; 935 $bg->{s} = $rep_x;
997 $bg->{t} = $rep_y; 936 $bg->{t} = $rep_y;
998 $bg->{wrap_mode} = 1; 937 $bg->{wrap_mode} = 1;
999 $bg->draw_quad ($border, $border, $cw, $ch); 938 $bg->draw_quad_alpha ($border, $border, $cw, $ch);
939 }
1000 940
1001 glDisable GL_TEXTURE_2D; 941 glDisable GL_TEXTURE_2D;
1002 glDisable GL_BLEND;
1003 }
1004 942
1005 $self->{title}->draw if $self->{title}; 943 $self->{title}->draw if $self->{title};
1006 944
1007 $self->child->draw; 945 $self->child->draw;
1008} 946}
1235} 1173}
1236 1174
1237sub size_allocate { 1175sub size_allocate {
1238 my ($self, $w, $h) = @_; 1176 my ($self, $w, $h) = @_;
1239 1177
1178 Carp::confess "negative size" if $w < 0 || $h < 0;#d#
1179
1240 my $children = $self->{children}; 1180 my $children = $self->{children};
1241 1181
1242 my @h = map $_->{req_h}, @$children; 1182 my @h = map $_->{req_h}, @$children;
1243 1183
1244 my $req_h = List::Util::sum @h; 1184 my $req_h = List::Util::sum @h;
1283 my ($class, %arg) = @_; 1223 my ($class, %arg) = @_;
1284 1224
1285 my $self = $class->SUPER::new ( 1225 my $self = $class->SUPER::new (
1286 fg => [1, 1, 1], 1226 fg => [1, 1, 1],
1287 #font => default_font 1227 #font => default_font
1228 #text => initial text
1229 #markup => initial narkup
1230 layout => (new CFClient::Layout),
1288 fontsize => 1, 1231 fontsize => 1,
1289 text => "",
1290 align => -1, 1232 align => -1,
1291 valign => -1, 1233 valign => -1,
1292 padding => 2, 1234 padding => 2,
1293 layout => new CFClient::Layout,
1294 can_events => 0, 1235 can_events => 0,
1295 %arg 1236 %arg
1296 ); 1237 );
1297 1238
1298 if (exists $self->{template}) { 1239 if (exists $self->{template}) {
1299 my $layout = new CFClient::Layout; 1240 my $layout = new CFClient::Layout;
1300 $layout->set_text (delete $self->{template}); 1241 $layout->set_text (delete $self->{template});
1301 $self->{template} = $layout; 1242 $self->{template} = $layout;
1302 } 1243 }
1303 1244
1304 $self->set_text (delete $self->{text}) if exists $self->{text}; 1245 if (exists $self->{markup}) {
1305 $self->set_markup (delete $self->{markup}) if exists $self->{markup}; 1246 $self->set_markup (delete $self->{markup});
1247 } else {
1248 $self->set_text (delete $self->{text});
1249 }
1306 1250
1307 $self 1251 $self
1308} 1252}
1309 1253
1310sub escape { 1254sub escape {
1322 1266
1323 delete $self->{texture}; 1267 delete $self->{texture};
1324 $self->SUPER::update; 1268 $self->SUPER::update;
1325} 1269}
1326 1270
1327sub reconfigure {
1328 my ($self) = @_;
1329
1330 delete $self->{texture};
1331}
1332
1333sub set_text { 1271sub set_text {
1334 my ($self, $text) = @_; 1272 my ($self, $text) = @_;
1335 1273
1336 return if $self->{text} eq "T$text"; 1274 return if $self->{text} eq "T$text";
1337 $self->{text} = "T$text"; 1275 $self->{text} = "T$text";
1338 1276
1277 $self->{layout} = new CFClient::Layout if $self->{layout}->is_rgba;
1339 $self->{layout}->set_text ($text); 1278 $self->{layout}->set_text ($text);
1340 1279
1341 delete $self->{texture};
1342 $self->update; 1280 $self->update;
1343 $self->check_size; 1281 $self->check_size;
1344} 1282}
1345 1283
1346sub set_markup { 1284sub set_markup {
1347 my ($self, $markup) = @_; 1285 my ($self, $markup) = @_;
1348 1286
1349 return if $self->{text} eq "M$markup"; 1287 return if $self->{text} eq "M$markup";
1350 $self->{text} = "M$markup"; 1288 $self->{text} = "M$markup";
1351 1289
1290 my $rgba = $markup =~ /span.*(?:foreground|background)/;
1291
1292 $self->{layout} = new CFClient::Layout $rgba if $self->{layout}->is_rgba != $rgba;
1352 $self->{layout}->set_markup ($markup); 1293 $self->{layout}->set_markup ($markup);
1353 1294
1354 delete $self->{texture};
1355 $self->update; 1295 $self->update;
1356 $self->check_size; 1296 $self->check_size;
1357} 1297}
1358 1298
1359sub size_request { 1299sub size_request {
1390sub set_fontsize { 1330sub set_fontsize {
1391 my ($self, $fontsize) = @_; 1331 my ($self, $fontsize) = @_;
1392 1332
1393 $self->{fontsize} = $fontsize; 1333 $self->{fontsize} = $fontsize;
1394 delete $self->{texture}; 1334 delete $self->{texture};
1335
1336 $self->update;
1395 $self->check_size; 1337 $self->check_size;
1396 $self->update;
1397} 1338}
1398 1339
1399sub _draw { 1340sub _draw {
1400 my ($self) = @_; 1341 my ($self) = @_;
1401 1342
1402 my $tex = $self->{texture} ||= do { 1343 my $tex = $self->{texture} ||= do {
1344 $self->{layout}->set_foreground (@{$self->{fg}});
1403 $self->{layout}->set_font ($self->{font}) if $self->{font}; 1345 $self->{layout}->set_font ($self->{font}) if $self->{font};
1404 $self->{layout}->set_width ($self->{w}); 1346 $self->{layout}->set_width ($self->{w});
1405 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize} * $::FONTSIZE); 1347 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize} * $::FONTSIZE);
1348
1406 new_from_layout CFClient::Texture $self->{layout} 1349 my $tex = new_from_layout CFClient::Texture $self->{layout};
1350
1351 $self->{ox} = int $self->{align} < 0 ? $self->{padding}
1352 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
1353 : ($self->{w} - $tex->{w}) * 0.5;
1354
1355 $self->{oy} = int $self->{valign} < 0 ? $self->{padding}
1356 : $self->{valign} > 0 ? $self->{h} - $tex->{h} - $self->{padding}
1357 : ($self->{h} - $tex->{h}) * 0.5;
1358
1359 $tex
1407 }; 1360 };
1408 1361
1409 glEnable GL_BLEND;
1410 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1411 glEnable GL_TEXTURE_2D; 1362 glEnable GL_TEXTURE_2D;
1412 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1363 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1413 1364
1365 if ($tex->{format} == GL_ALPHA) {
1414 glColor @{$self->{fg}}; 1366 glColor @{$self->{fg}};
1415
1416 $self->{ox} = int (
1417 $self->{align} < 0 ? $self->{padding}
1418 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
1419 : ($self->{w} - $tex->{w}) * 0.5
1420 );
1421
1422 $self->{oy} = int (
1423 $self->{valign} < 0 ? $self->{padding}
1424 : $self->{valign} > 0 ? $self->{h} - $tex->{h} - $self->{padding}
1425 : ($self->{h} - $tex->{h}) * 0.5
1426 );
1427
1428 $tex->draw_quad ($self->{ox}, $self->{oy}); 1367 $tex->draw_quad_alpha ($self->{ox}, $self->{oy});
1368 } else {
1369 $tex->draw_quad_alpha_premultiplied ($self->{ox}, $self->{oy});
1370 }
1429 1371
1430 glDisable GL_TEXTURE_2D; 1372 glDisable GL_TEXTURE_2D;
1431 glDisable GL_BLEND;
1432} 1373}
1433 1374
1434############################################################################# 1375#############################################################################
1435 1376
1436package CFClient::UI::EntryBase; 1377package CFClient::UI::EntryBase;
1471 $self->{layout}->set_text ("$text "); 1412 $self->{layout}->set_text ("$text ");
1472 1413
1473 $self->emit (changed => $self->{text}); 1414 $self->emit (changed => $self->{text});
1474} 1415}
1475 1416
1417sub set_text {
1418 my ($self, $text) = @_;
1419
1420 $self->{cursor} = length $text;
1421 $self->_set_text ($text);
1422 $self->check_size;
1423 $self->update;
1424}
1425
1476sub get_text { 1426sub get_text {
1477 $_[0]{text} 1427 $_[0]{text}
1478} 1428}
1479 1429
1480sub size_request { 1430sub size_request {
1487 1437
1488sub size_allocate { 1438sub size_allocate {
1489 my ($self, $w, $h) = @_; 1439 my ($self, $w, $h) = @_;
1490 1440
1491 $self->_set_text (delete $self->{text});#d# don't check for == inside _set_text 1441 $self->_set_text (delete $self->{text});#d# don't check for == inside _set_text
1492}
1493
1494sub set_text {
1495 my ($self, $text) = @_;
1496
1497 $self->{cursor} = length $text;
1498 $self->_set_text ($text);
1499 $self->update;
1500} 1442}
1501 1443
1502sub key_down { 1444sub key_down {
1503 my ($self, $ev) = @_; 1445 my ($self, $ev) = @_;
1504 1446
1692 1634
1693 if ($GRAB == $self) { 1635 if ($GRAB == $self) {
1694 $self->{fg} = $self->{active_fg}; 1636 $self->{fg} = $self->{active_fg};
1695 } 1637 }
1696 1638
1697 glEnable GL_BLEND;
1698 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1699 glEnable GL_TEXTURE_2D; 1639 glEnable GL_TEXTURE_2D;
1700 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1640 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1701 glColor 0, 0, 0, 1; 1641 glColor 0, 0, 0, 1;
1702 1642
1703 $tex[0]->draw_quad (0, 0, $self->{w}, $self->{h}); 1643 $tex[0]->draw_quad_alpha (0, 0, $self->{w}, $self->{h});
1704 1644
1705 glDisable GL_TEXTURE_2D; 1645 glDisable GL_TEXTURE_2D;
1706 glDisable GL_BLEND;
1707 1646
1708 $self->SUPER::_draw; 1647 $self->SUPER::_draw;
1709} 1648}
1710 1649
1711############################################################################# 1650#############################################################################
1758 1697
1759 my $s = (List::Util::min @$self{qw(w h)}) - $self->{padding} * 2; 1698 my $s = (List::Util::min @$self{qw(w h)}) - $self->{padding} * 2;
1760 1699
1761 glColor @{ $FOCUS == $self ? $self->{active_fg} : $self->{fg} }; 1700 glColor @{ $FOCUS == $self ? $self->{active_fg} : $self->{fg} };
1762 1701
1763 glEnable GL_BLEND; 1702 my $tex = $self->{state} ? $tex[1] : $tex[0];
1703
1764 glEnable GL_TEXTURE_2D; 1704 glEnable GL_TEXTURE_2D;
1765 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1766
1767 my $tex = $self->{state} ? $tex[1] : $tex[0];
1768
1769 $tex->draw_quad (0, 0, $s, $s); 1705 $tex->draw_quad_alpha (0, 0, $s, $s);
1770
1771 glDisable GL_TEXTURE_2D; 1706 glDisable GL_TEXTURE_2D;
1772 glDisable GL_BLEND;
1773} 1707}
1774 1708
1775############################################################################# 1709#############################################################################
1776 1710
1777package CFClient::UI::Image; 1711package CFClient::UI::Image;
1820 glTranslate 0, -$self->{w}, 0; 1754 glTranslate 0, -$self->{w}, 0;
1821 1755
1822 ($w, $h) = ($h, $w); 1756 ($w, $h) = ($h, $w);
1823 } 1757 }
1824 1758
1825 glEnable GL_BLEND;
1826 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1827 glEnable GL_TEXTURE_2D; 1759 glEnable GL_TEXTURE_2D;
1828 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1760 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1829 1761
1830 $tex->draw_quad (0, 0, $w, $h); 1762 $tex->draw_quad_alpha (0, 0, $w, $h);
1831 1763
1832 glDisable GL_BLEND;
1833 glDisable GL_TEXTURE_2D; 1764 glDisable GL_TEXTURE_2D;
1834} 1765}
1835 1766
1836############################################################################# 1767#############################################################################
1837 1768
2129 $page ||= 2; 2060 $page ||= 2;
2130 2061
2131 my $knob_a = $inner_pad_px + ($value - $page * 0.5); 2062 my $knob_a = $inner_pad_px + ($value - $page * 0.5);
2132 my $knob_b = $inner_pad_px + ($value + $page * 0.5); 2063 my $knob_b = $inner_pad_px + ($value + $page * 0.5);
2133 2064
2134 glEnable GL_BLEND;
2135 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2136 glEnable GL_TEXTURE_2D; 2065 glEnable GL_TEXTURE_2D;
2137 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2066 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2138 2067
2139 # draw background 2068 # draw background
2140 $tex[1]->draw_quad (0, 0, $w, $h); 2069 $tex[1]->draw_quad_alpha (0, 0, $w, $h);
2141 2070
2142 # draw handle 2071 # draw handle
2143 $tex[0]->draw_quad ($knob_a, 0, $knob_b - $knob_a, $h); 2072 $tex[0]->draw_quad_alpha ($knob_a, 0, $knob_b - $knob_a, $h);
2144 2073
2145 glDisable GL_BLEND;
2146 glDisable GL_TEXTURE_2D; 2074 glDisable GL_TEXTURE_2D;
2147} 2075}
2148 2076
2149############################################################################# 2077#############################################################################
2150 2078
2161 fontsize => 1, 2089 fontsize => 1,
2162 can_events => 0, 2090 can_events => 0,
2163 #font => default_font 2091 #font => default_font
2164 @_, 2092 @_,
2165 2093
2166 layout => (new CFClient::Layout), 2094 layout => (new CFClient::Layout 1),
2167 par => [], 2095 par => [],
2168 height => 0, 2096 height => 0,
2169 children => [ 2097 children => [
2170 (new CFClient::UI::Empty expand => 1), 2098 (new CFClient::UI::Empty expand => 1),
2171 (new CFClient::UI::Slider vertical => 1), 2099 (new CFClient::UI::Slider vertical => 1),
2189 2117
2190 my $layout = $self->{layout}; 2118 my $layout = $self->{layout};
2191 2119
2192 $layout->set_height ($self->{fontsize} * $::FONTSIZE); 2120 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
2193 $layout->set_width ($self->{children}[0]{w}); 2121 $layout->set_width ($self->{children}[0]{w});
2194 $layout->set_text ($text); 2122 $layout->set_markup ($text);
2195 2123
2196 ($layout->size)[1] 2124 ($layout->size)[1]
2197} 2125}
2198 2126
2199sub reflow { 2127sub reflow {
2255 2183
2256 $self->{texture} ||= new_from_opengl CFClient::Texture $self->{children}[0]{w}, $self->{children}[0]{h}, sub { 2184 $self->{texture} ||= new_from_opengl CFClient::Texture $self->{children}[0]{w}, $self->{children}[0]{h}, sub {
2257 glClearColor 0, 0, 0, 0; 2185 glClearColor 0, 0, 0, 0;
2258 glClear GL_COLOR_BUFFER_BIT; 2186 glClear GL_COLOR_BUFFER_BIT;
2259 2187
2260 glEnable GL_BLEND;
2261 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2262 glEnable GL_TEXTURE_2D; 2188 glEnable GL_TEXTURE_2D;
2263 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2189 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2264 2190
2265 my $top = int $self->{children}[1]{range}[0]; 2191 my $top = int $self->{children}[1]{range}[0];
2266 2192
2275 2201
2276 for my $par (@{$self->{par}}) { 2202 for my $par (@{$self->{par}}) {
2277 my $h = $par->[0]; 2203 my $h = $par->[0];
2278 2204
2279 if ($y0 < $y + $h && $y < $y1) { 2205 if ($y0 < $y + $h && $y < $y1) {
2206 $layout->set_foreground (@{ $par->[1] });
2280 $layout->set_text ($par->[2]); 2207 $layout->set_markup ($par->[2]);
2281 2208
2282 glColor @{ $par->[1] };
2283 my ($W, $H) = $layout->size; 2209 my ($W, $H) = $layout->size;
2284 CFClient::Texture->new_from_layout ($layout)->draw_quad (0, $y - $y0); 2210 CFClient::Texture->new_from_layout ($layout)->draw_quad_alpha_premultiplied (0, $y - $y0);
2285 } 2211 }
2286 2212
2287 $y += $h; 2213 $y += $h;
2288 } 2214 }
2289 2215
2290 glDisable GL_TEXTURE_2D; 2216 glDisable GL_TEXTURE_2D;
2291 glDisable GL_BLEND;
2292 }; 2217 };
2293 }); 2218 });
2294} 2219}
2295 2220
2296sub _draw { 2221sub _draw {
2297 my ($self) = @_; 2222 my ($self) = @_;
2298 2223
2299 glEnable GL_BLEND;
2300 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
2301 glEnable GL_TEXTURE_2D; 2224 glEnable GL_TEXTURE_2D;
2302 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2225 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2303 glColor 1, 1, 1, 1; 2226 glColor 1, 1, 1, 1;
2304 $self->{texture}->draw_quad (0, 0, $self->{children}[0]{w}, $self->{children}[0]{h}); 2227 $self->{texture}->draw_quad_alpha_premultiplied (0, 0, $self->{children}[0]{w}, $self->{children}[0]{h});
2305 glDisable GL_TEXTURE_2D; 2228 glDisable GL_TEXTURE_2D;
2306 glDisable GL_BLEND;
2307 2229
2308 $self->{children}[1]->draw; 2230 $self->{children}[1]->draw;
2309 2231
2310} 2232}
2311 2233
2405 @_, 2327 @_,
2406 can_events => 0, 2328 can_events => 0,
2407 ) 2329 )
2408} 2330}
2409 2331
2410sub set_markup { 2332sub set_tooltip_from {
2411 my ($self, $text) = @_; 2333 my ($self, $widget) = @_;
2412 2334
2413 $self->{label} ||= new CFClient::UI::Label fontsize => 0.8, fg => [0, 0, 0]; 2335 $self->add (new CFClient::UI::Label
2414 $self->{label}->set_markup ($text); 2336 markup => $widget->{tooltip},
2415 $self->add ($self->{label}); 2337 max_w => ($widget->{tooltip_width} || 0.25) * $::WIDTH,
2338 fontsize => 0.8,
2339 fg => [0, 0, 0, 1],
2340 font => ($widget->{tooltip_font} || $::FONT_PROP),
2341 );
2416} 2342}
2417 2343
2418sub size_request { 2344sub size_request {
2419 my ($self) = @_; 2345 my ($self) = @_;
2420
2421 $self->child->set_max_size ($::WIDTH * 0.3);
2422 2346
2423 my ($w, $h) = @{$self->child}{qw(req_w req_h)}; 2347 my ($w, $h) = @{$self->child}{qw(req_w req_h)};
2424 2348
2425 ($w + 4, $h + 4) 2349 ($w + 4, $h + 4)
2426} 2350}
2432} 2356}
2433 2357
2434sub _draw { 2358sub _draw {
2435 my ($self) = @_; 2359 my ($self) = @_;
2436 2360
2437 glPushMatrix;
2438 glTranslate 0.375, 0.375; 2361 glTranslate 0.375, 0.375;
2439 2362
2440 my ($w, $h) = @$self{qw(w h)}; 2363 my ($w, $h) = @$self{qw(w h)};
2441 2364
2442 glColor 1, 0.8, 0.4; 2365 glColor 1, 0.8, 0.4;
2453 glVertex 0 , $h; 2376 glVertex 0 , $h;
2454 glVertex $w, $h; 2377 glVertex $w, $h;
2455 glVertex $w, 0; 2378 glVertex $w, 0;
2456 glEnd; 2379 glEnd;
2457 2380
2458 glPopMatrix; 2381 glTranslate 2 - 0.375, 2 - 0.375;
2459
2460 glTranslate 2, 2;
2461 $self->SUPER::_draw; 2382 $self->SUPER::_draw;
2462} 2383}
2463 2384
2464############################################################################# 2385#############################################################################
2465 2386
2488 return unless $::CONN;#d# manage and cache textures differently 2409 return unless $::CONN;#d# manage and cache textures differently
2489 my $tex = $::CONN->{texture}[$::CONN->{faceid}[$self->{face}]]; 2410 my $tex = $::CONN->{texture}[$::CONN->{faceid}[$self->{face}]];
2490 2411
2491 # TODO animation 2412 # TODO animation
2492 if ($tex) { 2413 if ($tex) {
2493 glEnable GL_BLEND;
2494 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2495 glEnable GL_TEXTURE_2D; 2414 glEnable GL_TEXTURE_2D;
2496 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2415 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2497 glColor 1, 1, 1, 1; 2416 glColor 1, 1, 1, 1;
2498 $tex->draw_quad (0, 0, $self->{w}, $self->{h}); 2417 $tex->draw_quad_alpha (0, 0, $self->{w}, $self->{h});
2499 glDisable GL_TEXTURE_2D; 2418 glDisable GL_TEXTURE_2D;
2500 glDisable GL_BLEND;
2501 } 2419 }
2502} 2420}
2503 2421
2504############################################################################# 2422#############################################################################
2505 2423
2506package CFClient::UI::Menu; 2424package CFClient::UI::InventoryItem;
2507 2425
2508our @ISA = CFClient::UI::FancyFrame::; 2426our @ISA = CFClient::UI::HBox::;
2509
2510use CFClient::OpenGL;
2511 2427
2512sub new { 2428sub new {
2513 my $class = shift; 2429 my $class = shift;
2514 2430
2515 my $self = $class->SUPER::new (
2516 items => [],
2517 z => 100,
2518 @_,
2519 );
2520
2521 $self->add ($self->{vbox} = new CFClient::UI::VBox);
2522
2523 for my $item (@{ $self->{items} }) {
2524 my ($widget, $cb) = @$item;
2525
2526 # handle various types of items, only text for now
2527 if (!ref $widget) {
2528 $widget = new CFClient::UI::Label
2529 can_hover => 1,
2530 can_events => 1,
2531 text => $widget;
2532 }
2533
2534 $self->{item}{$widget} = $item;
2535
2536 $self->{vbox}->add ($widget);
2537 }
2538
2539 $self
2540}
2541
2542# popup given the event (must be a mouse button down event currently)
2543sub popup {
2544 my ($self, $ev) = @_;
2545
2546 $self->emit ("popdown");
2547
2548 # maybe save $GRAB? must be careful about events...
2549 $GRAB = $self;
2550 $self->{button} = $ev->{button};
2551
2552 $self->show;
2553 $self->move ($ev->{x} - $self->{w} * 0.5, $ev->{y} - $self->{h} * 0.5);
2554}
2555
2556sub mouse_motion {
2557 my ($self, $ev, $x, $y) = @_;
2558
2559 # TODO: should use vbox->find_widget or so
2560 $HOVER = $ROOT->find_widget ($ev->{x}, $ev->{y});
2561 $self->{hover} = $self->{item}{$HOVER};
2562}
2563
2564sub button_up {
2565 my ($self, $ev, $x, $y) = @_;
2566
2567 if ($ev->{button} == $self->{button}) {
2568 undef $GRAB;
2569 $self->hide;
2570
2571 $self->emit ("popdown");
2572 $self->{hover}[1]->() if $self->{hover};
2573 }
2574}
2575
2576#############################################################################
2577
2578package CFClient::UI::Root;
2579
2580our @ISA = CFClient::UI::Container::;
2581
2582use CFClient::OpenGL;
2583
2584sub check_size {
2585 my ($self) = @_;
2586
2587 $self->configure (0, 0, $::WIDTH, $::HEIGHT);
2588}
2589
2590sub size_request {
2591 ($::WIDTH, $::HEIGHT)
2592}
2593
2594sub configure {
2595 my ($self, $x, $y, $w, $h) = @_;
2596
2597 $self->SUPER::configure ($x, $y, $w, $h);
2598
2599 for my $child (@{$self->{children}}) {
2600 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
2601
2602 $X = List::Util::max 0, List::Util::min $w - $W, $X;
2603 $Y = List::Util::max 0, List::Util::min $h - $H, $Y;
2604 $child->configure ($X, $Y, $W,$H);
2605 }
2606}
2607
2608sub _topleft {
2609 my ($self, $x, $y) = @_;
2610
2611 ($x, $y)
2612}
2613
2614sub update {
2615 my ($self) = @_;
2616
2617 $self->check_size;
2618 ::refresh ();
2619}
2620
2621sub add {
2622 my ($self, $child) = @_;
2623
2624 # integerize window positions
2625 $child->{x} = int $child->{x};
2626 $child->{y} = int $child->{y};
2627
2628 $self->SUPER::add ($child);
2629}
2630
2631sub on_refresh {
2632 my ($self, $id, $cb) = @_;
2633
2634 $self->{refresh_hook}{$id} = $cb;
2635}
2636
2637sub draw {
2638 my ($self) = @_;
2639
2640 while (my $rcb = delete $self->{refresh_hook}) {
2641 $_->() for values %$rcb;
2642 }
2643
2644 glViewport 0, 0, $::WIDTH, $::HEIGHT;
2645 glClearColor +($::CFG->{fow_intensity}) x 3, 1;
2646 glClear GL_COLOR_BUFFER_BIT;
2647
2648 glMatrixMode GL_PROJECTION;
2649 glLoadIdentity;
2650 glOrtho 0, $::WIDTH, $::HEIGHT, 0, -10000 , 10000;
2651 glMatrixMode GL_MODELVIEW;
2652 glLoadIdentity;
2653
2654 $self->_draw;
2655}
2656
2657#############################################################################
2658
2659package CFClient::UI::InventoryItem;
2660
2661our @ISA = CFClient::UI::HBox::;
2662
2663sub new {
2664 my $class = shift;
2665
2666 my %args = @_; 2431 my %args = @_;
2667 2432
2668 my $item = $args{item}; 2433 my $item = delete $args{item};
2669 2434
2670 my $desc = $item->{nrof} < 2 2435 my $desc = $item->{nrof} < 2
2671 ? $item->{name} 2436 ? $item->{name}
2672 : "$item->{nrof} $item->{name_pl}"; 2437 : "$item->{nrof} $item->{name_pl}";
2673 2438
2702 2467
2703 1 2468 1
2704 }, 2469 },
2705 %args 2470 %args
2706 ); 2471 );
2472
2707 $self->add(new CFClient::UI::Face 2473 $self->add (new CFClient::UI::Face
2708 can_events => 0, 2474 can_events => 0,
2709 face => $item->{face}, 2475 face => $item->{face},
2710 anim => $item->{anim}, 2476 anim => $item->{anim},
2711 animspeed => $item->{animspeed}); 2477 animspeed => $item->{animspeed},
2478 );
2479
2712 $self->add(new CFClient::UI::Label 2480 $self->add (new CFClient::UI::Label
2713 can_events => 0, 2481 can_events => 0,
2714 text => $desc); 2482 text => $desc,
2483 );
2715 2484
2716 $self 2485 $self
2717} 2486}
2718 2487
2719############################################################################# 2488#############################################################################
2746 for my $item (@items) { 2515 for my $item (@items) {
2747 my $desc = $item->{nrof} < 2 2516 my $desc = $item->{nrof} < 2
2748 ? $item->{name} 2517 ? $item->{name}
2749 : "$item->{nrof} $item->{name_pl}"; 2518 : "$item->{nrof} $item->{name_pl}";
2750 2519
2751 $self->{scrolled}->add (new CFClient::UI::InventoryItem item => $item); 2520 $self->{scrolled}->add ($item->{widget} ||= new CFClient::UI::InventoryItem item => $item);
2752 } 2521 }
2753 2522
2754# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page]; 2523# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page];
2755} 2524}
2756 2525
2757sub size_request { 2526sub size_request {
2758 my ($self) = @_; 2527 my ($self) = @_;
2759 ($self->{req_w}, $self->{req_h}); 2528 ($self->{req_w}, $self->{req_h});
2529}
2530
2531#############################################################################
2532
2533package CFClient::UI::Menu;
2534
2535our @ISA = CFClient::UI::FancyFrame::;
2536
2537use CFClient::OpenGL;
2538
2539sub new {
2540 my $class = shift;
2541
2542 my $self = $class->SUPER::new (
2543 items => [],
2544 z => 100,
2545 @_,
2546 );
2547
2548 $self->add ($self->{vbox} = new CFClient::UI::VBox);
2549
2550 for my $item (@{ $self->{items} }) {
2551 my ($widget, $cb) = @$item;
2552
2553 # handle various types of items, only text for now
2554 if (!ref $widget) {
2555 $widget = new CFClient::UI::Label
2556 can_hover => 1,
2557 can_events => 1,
2558 text => $widget;
2559 }
2560
2561 $self->{item}{$widget} = $item;
2562
2563 $self->{vbox}->add ($widget);
2564 }
2565
2566 $self
2567}
2568
2569# popup given the event (must be a mouse button down event currently)
2570sub popup {
2571 my ($self, $ev) = @_;
2572
2573 $self->emit ("popdown");
2574
2575 # maybe save $GRAB? must be careful about events...
2576 $GRAB = $self;
2577 $self->{button} = $ev->{button};
2578
2579 $self->show;
2580 $self->move ($ev->{x} - $self->{w} * 0.5, $ev->{y} - $self->{h} * 0.5);
2581}
2582
2583sub mouse_motion {
2584 my ($self, $ev, $x, $y) = @_;
2585
2586 # TODO: should use vbox->find_widget or so
2587 $HOVER = $ROOT->find_widget ($ev->{x}, $ev->{y});
2588 $self->{hover} = $self->{item}{$HOVER};
2589}
2590
2591sub button_up {
2592 my ($self, $ev, $x, $y) = @_;
2593
2594 if ($ev->{button} == $self->{button}) {
2595 undef $GRAB;
2596 $self->hide;
2597
2598 $self->emit ("popdown");
2599 $self->{hover}[1]->() if $self->{hover};
2600 }
2601}
2602
2603#############################################################################
2604
2605package CFClient::UI::Statusbox;
2606
2607our @ISA = CFClient::UI::VBox::;
2608
2609sub reorder {
2610 my ($self) = @_;
2611 my $NOW = time;
2612
2613 while (my ($k, $v) = each %{ $self->{item} }) {
2614 delete $self->{item}{$k} if $v->{timeout} < $NOW;
2615 }
2616
2617 my @widgets;
2618
2619 my @items = sort {
2620 $a->{pri} <=> $b->{pri}
2621 or $b->{id} <=> $a->{id}
2622 } values %{ $self->{item} };
2623
2624 my $count = 10 + 1;
2625 for my $item (@items) {
2626 last unless --$count;
2627
2628 push @widgets, $item->{label} ||= do {
2629 # TODO: doesn't handle markup well (read as: at all)
2630 my $short = $item->{count} > 1
2631 ? "<b>$item->{count} ×</b> $item->{text}"
2632 : $item->{text};
2633
2634 for ($short) {
2635 s/^\s+//;
2636 s/\012.*/…/s;
2637 my $len = int 30 / $item->{fontsize};
2638 substr $_, $len, length, "…" if $len < length;
2639 }
2640
2641 new CFClient::UI::Label
2642 markup => $short,
2643 tooltip => $item->{tooltip},
2644 tooltip_font => $::FONT_PROP,
2645 tooltip_width => 0.67,
2646 fontsize => $item->{fontsize},
2647 color => $item->{color},
2648 can_events => 1,
2649 can_hover => 1
2650 };
2651 }
2652
2653 $self->clear;
2654 $self->SUPER::add (reverse @widgets);
2655}
2656
2657sub add {
2658 my ($self, $text, %arg) = @_;
2659
2660 my $timeout = time + ((delete $arg{timeout}) || 60);
2661
2662 my $group = exists $arg{group} ? $arg{group} : ++$self->{id};
2663
2664 if (my $item = $self->{item}{$group}) {
2665 if ($item->{text} eq $text) {
2666 $item->{count}++;
2667 } else {
2668 $item->{count} = 1;
2669 $item->{text} = $item->{tooltip} = $text;
2670 }
2671 $item->{timeout} = $timeout;
2672 delete $item->{label};
2673 } else {
2674 $self->{item}{$group} = {
2675 id => ++$self->{id},
2676 text => $text,
2677 timeout => $timeout,
2678 tooltip => $text,
2679 fontsize => 0.8,
2680 color => [0.8, 0.8, 0.8, 0.8],
2681 pri => 0,
2682 count => 1,
2683 %arg,
2684 };
2685 }
2686
2687 $self->reorder;
2688}
2689
2690#############################################################################
2691
2692package CFClient::UI::Root;
2693
2694our @ISA = CFClient::UI::Container::;
2695
2696use CFClient::OpenGL;
2697
2698sub new {
2699 my $class = shift;
2700
2701 $class->SUPER::new (
2702 @_,
2703 )
2704}
2705
2706sub configure {
2707 my ($self, $x, $y, $w, $h) = @_;
2708
2709 $self->{w} = $w;
2710 $self->{h} = $h;
2711}
2712
2713sub check_size {
2714 my ($self) = @_;
2715
2716 $self->size_allocate ($self->{w}, $self->{h})
2717 if $self->{w};
2718}
2719
2720sub size_request {
2721 my ($self) = @_;
2722
2723 ($self->{w}, $self->{h})
2724}
2725
2726sub size_allocate {
2727 my ($self, $w, $h) = @_;
2728
2729 my $old_w = $self->{old_w};
2730 my $old_h = $self->{old_h};
2731
2732 if ($old_w && $old_h) {
2733 for my $child ($self->children) {
2734 $child->{x} = int 0.5 + $child->{x} * $w / $old_w;
2735 $child->{w} = int 0.5 + $child->{w} * $w / $old_w;
2736 $child->{req_w} = int 0.5 + $child->{req_w} * $w / $old_w if exists $child->{req_w};
2737 $child->{user_w} = int 0.5 + $child->{user_w} * $w / $old_w if exists $child->{user_w};
2738 $child->{y} = int 0.5 + $child->{y} * $h / $old_h;
2739 $child->{h} = int 0.5 + $child->{h} * $h / $old_h;
2740 $child->{req_h} = int 0.5 + $child->{req_h} * $h / $old_h if exists $child->{req_h};
2741 $child->{user_h} = int 0.5 + $child->{user_h} * $h / $old_h if exists $child->{user_h};
2742 }
2743 }
2744
2745 for my $child ($self->children) {
2746 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
2747
2748 $X = List::Util::max 0, List::Util::min $w - $W, $X;
2749 $Y = List::Util::max 0, List::Util::min $h - $H, $Y;
2750 $child->configure ($X, $Y, $W, $H);
2751 }
2752
2753 $self->{old_w} = $w;
2754 $self->{old_h} = $h;
2755}
2756
2757sub coord2local {
2758 my ($self, $x, $y) = @_;
2759
2760 ($x, $y)
2761}
2762
2763sub coord2global {
2764 my ($self, $x, $y) = @_;
2765
2766 ($x, $y)
2767}
2768
2769sub update {
2770 my ($self) = @_;
2771
2772 $self->check_size;
2773 $::WANT_REFRESH++;
2774}
2775
2776sub add {
2777 my ($self, $child) = @_;
2778
2779 # integerise window positions
2780 $child->{x} = int $child->{x};
2781 $child->{y} = int $child->{y};
2782
2783 $self->SUPER::add ($child);
2784}
2785
2786sub on_refresh {
2787 my ($self, $id, $cb) = @_;
2788
2789 $self->{refresh_hook}{$id} = $cb;
2790}
2791
2792sub draw {
2793 my ($self) = @_;
2794
2795 if ($self->{check_size}) {
2796 my @queue = ([], []);
2797
2798 for (;;) {
2799 if ($self->{check_size}) {
2800 # heuristic: check containers last
2801 push @{ $queue[ ! ! $_->isa ("CFClient::UI::Container") ] }, $_
2802 for values %{delete $self->{check_size}}
2803 }
2804
2805 my $widget = (pop @{ $queue[0] }) || (pop @{ $queue[1] }) || last;
2806
2807 my ($w, $h) = $widget->{user_w} && $widget->{user_h}
2808 ? @$widget{qw(user_w user_h)}
2809 : $widget->size_request;
2810
2811 if (delete $widget->{force_alloc}
2812 or $w != $widget->{req_w} or $h != $widget->{req_h}) {
2813 Carp::confess "$widget: size_request is negative" if $w < 0 || $h < 0;#d#
2814
2815 $widget->{req_w} = $w;
2816 $widget->{req_h} = $h;
2817
2818 $self->{size_alloc}{$widget} = [$widget, $widget->{w} || $w, $widget->{h} || $h];
2819
2820 $widget->{parent}->check_size
2821 if $widget->{parent};
2822 }
2823 }
2824 }
2825
2826 while ($self->{size_alloc}) {
2827 for (values %{delete $self->{size_alloc}}) {
2828 my ($widget, $w, $h) = @$_;
2829
2830 $w = 0 if $w < 0;
2831 $h = 0 if $h < 0;
2832
2833 $widget->{w} = $w;
2834 $widget->{h} = $h;
2835 $widget->size_allocate ($w, $h);
2836 $widget->emit (size_allocate => $w, $h);
2837 }
2838 }
2839
2840 while ($self->{refresh_hook}) {
2841 $_->()
2842 for values %{delete $self->{refresh_hook}};
2843 }
2844
2845 glViewport 0, 0, $::WIDTH, $::HEIGHT;
2846 glClearColor +($::CFG->{fow_intensity}) x 3, 1;
2847 glClear GL_COLOR_BUFFER_BIT;
2848
2849 glMatrixMode GL_PROJECTION;
2850 glLoadIdentity;
2851 glOrtho 0, $::WIDTH, $::HEIGHT, 0, -10000 , 10000;
2852 glMatrixMode GL_MODELVIEW;
2853 glLoadIdentity;
2854
2855 $self->_draw;
2760} 2856}
2761 2857
2762############################################################################# 2858#############################################################################
2763 2859
2764package CFClient::UI; 2860package CFClient::UI;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines