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.208 by root, Mon May 15 22:52:17 2006 UTC vs.
Revision 1.212 by elmex, Wed May 17 14:55:14 2006 UTC

280sub set_max_size { 280sub set_max_size {
281 my ($self, $w, $h) = @_; 281 my ($self, $w, $h) = @_;
282 282
283 delete $self->{max_w}; $self->{max_w} = $w if $w; 283 delete $self->{max_w}; $self->{max_w} = $w if $w;
284 delete $self->{max_h}; $self->{max_h} = $h if $h; 284 delete $self->{max_h}; $self->{max_h} = $h if $h;
285}
286
287sub set_tooltip {
288 my ($self, $tooltip) = @_;
289
290 $self->{tooltip} = $tooltip;
291
292 if ($CFClient::UI::TOOLTIP->{owner} == $self) {
293 delete $CFClient::UI::TOOLTIP->{owner};
294 CFClient::UI::check_tooltip;
295 }
285} 296}
286 297
287# translate global coordinates to local coordinate system 298# translate global coordinates to local coordinate system
288sub coord2local { 299sub coord2local {
289 my ($self, $x, $y) = @_; 300 my ($self, $x, $y) = @_;
455 my $class = shift; 466 my $class = shift;
456 467
457 # range [value, low, high, page] 468 # range [value, low, high, page]
458 469
459 $class->SUPER::new ( 470 $class->SUPER::new (
460 bg => [0, 0, 0, 0.2], 471 #bg => [0, 0, 0, 0.2],
461 active_bg => [1, 1, 1, 0.5], 472 #active_bg => [1, 1, 1, 0.5],
462 @_ 473 @_
463 ) 474 )
464} 475}
465 476
466sub _draw { 477sub _draw {
467 my ($self) = @_; 478 my ($self) = @_;
468 479
480 my $color = $FOCUS == $self && $self->{active_bg}
481 ? $self->{active_bg}
482 : $self->{bg};
483
484 if ($color && (@$color < 4 || $color->[3])) {
469 my ($w, $h) = @$self{qw(w h)}; 485 my ($w, $h) = @$self{qw(w h)};
470 486
471 glEnable GL_BLEND; 487 glEnable GL_BLEND;
472 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 488 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
473 glColor @{ $FOCUS == $self ? $self->{active_bg} : $self->{bg} }; 489 glColor @$color;
474 490
475 glBegin GL_QUADS; 491 glBegin GL_QUADS;
476 glVertex 0 , 0; 492 glVertex 0 , 0;
477 glVertex 0 , $h; 493 glVertex 0 , $h;
478 glVertex $w, $h; 494 glVertex $w, $h;
479 glVertex $w, 0; 495 glVertex $w, 0;
480 glEnd; 496 glEnd;
481 497
482 glDisable GL_BLEND; 498 glDisable GL_BLEND;
499 }
483} 500}
484 501
485############################################################################# 502#############################################################################
486 503
487package CFClient::UI::Empty; 504package CFClient::UI::Empty;
1266 1283
1267############################################################################# 1284#############################################################################
1268 1285
1269package CFClient::UI::Label; 1286package CFClient::UI::Label;
1270 1287
1271our @ISA = CFClient::UI::Base::; 1288our @ISA = CFClient::UI::DrawBG::;
1272 1289
1273use CFClient::OpenGL; 1290use CFClient::OpenGL;
1274 1291
1275sub new { 1292sub new {
1276 my ($class, %arg) = @_; 1293 my ($class, %arg) = @_;
1277 1294
1278 my $self = $class->SUPER::new ( 1295 my $self = $class->SUPER::new (
1279 fg => [1, 1, 1], 1296 fg => [1, 1, 1],
1297 #bg => none
1298 #active_bg => none
1280 #font => default_font 1299 #font => default_font
1281 #text => initial text 1300 #text => initial text
1282 #markup => initial narkup 1301 #markup => initial narkup
1283 layout => (new CFClient::Layout), 1302 layout => (new CFClient::Layout),
1284 fontsize => 1, 1303 fontsize => 1,
1302 } 1321 }
1303 1322
1304 $self 1323 $self
1305} 1324}
1306 1325
1307sub escape { 1326sub escape($) {
1308 local $_ = $_[1]; 1327 local $_ = $_[0];
1309 1328
1310 s/&/&amp;/g; 1329 s/&/&amp;/g;
1311 s/>/&gt;/g; 1330 s/>/&gt;/g;
1312 s/</&lt;/g; 1331 s/</&lt;/g;
1313 1332
1314 $_[1] 1333 $_
1315} 1334}
1316 1335
1317sub update { 1336sub update {
1318 my ($self) = @_; 1337 my ($self) = @_;
1319 1338
1390 $self->check_size; 1409 $self->check_size;
1391} 1410}
1392 1411
1393sub _draw { 1412sub _draw {
1394 my ($self) = @_; 1413 my ($self) = @_;
1414
1415 $self->SUPER::_draw; # draw background, if applicable
1395 1416
1396 my $tex = $self->{texture} ||= do { 1417 my $tex = $self->{texture} ||= do {
1397 $self->{layout}->set_foreground (@{$self->{fg}}); 1418 $self->{layout}->set_foreground (@{$self->{fg}});
1398 $self->{layout}->set_font ($self->{font}) if $self->{font}; 1419 $self->{layout}->set_font ($self->{font}) if $self->{font};
1399 $self->{layout}->set_width ($self->{w}); 1420 $self->{layout}->set_width ($self->{w});
1660 my $class = shift; 1681 my $class = shift;
1661 1682
1662 $class->SUPER::new ( 1683 $class->SUPER::new (
1663 padding => 4, 1684 padding => 4,
1664 fg => [1, 1, 1], 1685 fg => [1, 1, 1],
1665 bg => [1, 1, 1, 0.2],
1666 active_fg => [0, 0, 1], 1686 active_fg => [0, 0, 1],
1667 can_hover => 1, 1687 can_hover => 1,
1668 align => 0, 1688 align => 0,
1669 valign => 0, 1689 valign => 0,
1670 can_events => 1, 1690 can_events => 1,
1718 1738
1719 $class->SUPER::new ( 1739 $class->SUPER::new (
1720 padding => 2, 1740 padding => 2,
1721 fg => [1, 1, 1], 1741 fg => [1, 1, 1],
1722 active_fg => [1, 1, 0], 1742 active_fg => [1, 1, 0],
1743 bg => [0, 0, 0, 0.2],
1744 active_bg => [1, 1, 1, 0.5],
1723 state => 0, 1745 state => 0,
1724 can_hover => 1, 1746 can_hover => 1,
1725 @_ 1747 @_
1726 ) 1748 )
1727} 1749}
2019 # TODO: req_w/h are wrong with vertical 2041 # TODO: req_w/h are wrong with vertical
2020 # TODO: calculations are off 2042 # TODO: calculations are off
2021 my $self = $class->SUPER::new ( 2043 my $self = $class->SUPER::new (
2022 fg => [1, 1, 1], 2044 fg => [1, 1, 1],
2023 active_fg => [0, 0, 0], 2045 active_fg => [0, 0, 0],
2046 bg => [0, 0, 0, 0.2],
2047 active_bg => [1, 1, 1, 0.5],
2024 range => [0, 0, 100, 10], 2048 range => [0, 0, 100, 10],
2025 req_w => $::WIDTH / 80, 2049 req_w => $::WIDTH / 80,
2026 req_h => $::WIDTH / 80, 2050 req_h => $::WIDTH / 80,
2027 vertical => 0, 2051 vertical => 0,
2028 can_hover => 1, 2052 can_hover => 1,
2494 2518
2495package CFClient::UI::InventoryItem; 2519package CFClient::UI::InventoryItem;
2496 2520
2497our @ISA = CFClient::UI::HBox::; 2521our @ISA = CFClient::UI::HBox::;
2498 2522
2499sub new { 2523sub _item_to_desc {
2500 my $class = shift; 2524 my ($item) = @_;
2501 2525
2502 my %args = @_; 2526 my $desc =
2503
2504 my $item = delete $args{item};
2505
2506 my $desc = $item->{nrof} < 2 2527 $item->{nrof} < 2
2507 ? $item->{name} 2528 ? $item->{name}
2508 : "$item->{nrof} $item->{name_pl}"; 2529 : "$item->{nrof} $item->{name_pl}";
2509 2530
2510 $item->{flags} & Crossfire::Protocol::F_OPEN 2531 $item->{flags} & Crossfire::Protocol::F_OPEN
2511 and $desc .= " (open)"; 2532 and $desc .= " (open)";
2512 $item->{flags} & Crossfire::Protocol::F_APPLIED 2533 $item->{flags} & Crossfire::Protocol::F_APPLIED
2513 and $desc .= " (applied)"; 2534 and $desc .= " (applied)";
2520 $item->{flags} & Crossfire::Protocol::F_DAMNED 2541 $item->{flags} & Crossfire::Protocol::F_DAMNED
2521 and $desc .= " (damned)"; 2542 and $desc .= " (damned)";
2522 $item->{flags} & Crossfire::Protocol::F_LOCKED 2543 $item->{flags} & Crossfire::Protocol::F_LOCKED
2523 and $desc .= " *"; 2544 and $desc .= " *";
2524 2545
2546 $desc
2547}
2548
2549sub new {
2550 my $class = shift;
2551
2552 my %args = @_;
2553
2554 my $item = delete $args{item};
2555
2556 my $desc = _item_to_desc ($item);
2557
2525 my $self = $class->SUPER::new ( 2558 my $self = $class->SUPER::new (
2526 can_hover => 1, 2559 can_hover => 1,
2527 can_events => 1, 2560 can_events => 1,
2528 tooltip => (CFClient::UI::Label->escape ($desc) 2561 tooltip => ((CFClient::UI::Label::escape $desc)
2529 . "\n<small>leftclick - pick up\nmiddle click - apply\nrightclick - menu</small>"), 2562 . "\n<small>leftclick - pick up\nmiddle click - apply\nrightclick - menu</small>"),
2530 connect_button_down => sub { 2563 connect_button_down => sub {
2531 my ($self, $ev, $x, $y) = @_; 2564 my ($self, $ev, $x, $y) = @_;
2532 2565
2533 # todo: maybe put examine on 1? but should just be a tooltip :( 2566 # todo: maybe put examine on 1? but should just be a tooltip :(
2534 if ($ev->{button} == 1) { 2567 if ($ev->{button} == 1) {
2568 my $targ = $::CONN->{player}{tag};
2569
2570 if ($item->{container} == $::CONN->{player}{tag}) {
2571 $targ = $main::OPENCONT;
2572 }
2573
2535 $::CONN->send ("move $::CONN->{player}{tag} $item->{tag} 0"); 2574 $::CONN->send ("move $targ $item->{tag} 0");
2536 } elsif ($ev->{button} == 2) { 2575 } elsif ($ev->{button} == 2) {
2537 $::CONN->send ("apply $item->{tag}"); 2576 $::CONN->send ("apply $item->{tag}");
2538 } elsif ($ev->{button} == 3) { 2577 } elsif ($ev->{button} == 3) {
2539 my @menu_items = ( 2578 my @menu_items = (
2540 ["examine", sub { $::CONN->send ("examine $item->{tag}") }], 2579 ["examine", sub { $::CONN->send ("examine $item->{tag}") }],
2541 ["mark", sub { $::CONN->send ("mark $item->{tag}") }], 2580 ["mark", sub { $::CONN->send ("mark $item->{tag}") }],
2542 ["apply", sub { $::CONN->send ("apply $item->{tag}") }], 2581 ["apply", sub { $::CONN->send ("apply $item->{tag}") }],
2543 ["drop", sub { $::CONN->send ("move $main::OPENCONT $item->{tag} 0") }], 2582 ["drop", sub { $::CONN->send ("move $main::OPENCONT $item->{tag} 0") }],
2544 [ 2583 [
2545 $item->{flags} & Crossfire::Protocol::F_LOCKED ? "lock" : "unlock", 2584 $item->{flags} & Crossfire::Protocol::F_LOCKED ? "lock" : "unlock",
2546 sub { $::CONN->send ("lock ". () ."$item->{tag}") }, 2585 sub { $::CONN->send ("lock $item->{tag}") },
2547 ], 2586 ],
2548 ); 2587 );
2549 2588
2550 CFClient::UI::Menu->new (items => \@menu_items)->popup ($ev); 2589 CFClient::UI::Menu->new (items => \@menu_items)->popup ($ev);
2551 } 2590 }
2552 2591
2553 1 2592 1
2554 }, 2593 },
2555 %args 2594 %args
2556 ); 2595 );
2596
2557 2597
2558 $self->add (new CFClient::UI::Face 2598 $self->add (new CFClient::UI::Face
2559 can_events => 0, 2599 can_events => 0,
2560 face => $item->{face}, 2600 face => $item->{face},
2561 anim => $item->{anim}, 2601 anim => $item->{anim},
2562 animspeed => $item->{animspeed}, 2602 animspeed => $item->{animspeed},
2563 ); 2603 );
2564 2604
2565 $self->add (new CFClient::UI::Label 2605 $self->add ($self->{name_lbl} = new CFClient::UI::Label can_events => 0);
2566 can_events => 0, 2606
2567 text => $desc, 2607 $self->{item} = $item;
2568 ); 2608
2609 $self->update_item;
2569 2610
2570 $self 2611 $self
2612}
2613
2614sub update_item {
2615 my ($self) = @_;
2616
2617 my $desc = _item_to_desc ($self->{item});
2618
2619 $self->{name_lbl}->set_text ($desc);
2571} 2620}
2572 2621
2573############################################################################# 2622#############################################################################
2574 2623
2575package CFClient::UI::Inventory; 2624package CFClient::UI::Inventory;
2599 } @$items; 2648 } @$items;
2600 2649
2601 $self->{real_items} = \@items; 2650 $self->{real_items} = \@items;
2602 2651
2603 for my $item (@items) { 2652 for my $item (@items) {
2604 my $desc = $item->{nrof} < 2
2605 ? $item->{name}
2606 : "$item->{nrof} $item->{name_pl}";
2607
2608 $item = $item->{widget} ||= new CFClient::UI::InventoryItem item => $item; 2653 $item = $item->{widget} ||= new CFClient::UI::InventoryItem item => $item;
2654 $item->update_item ();
2609 } 2655 }
2610 2656
2611 $self->{scrolled}->add (@items); 2657 $self->{scrolled}->add (@items);
2612 2658
2613# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page]; 2659# $range->{range} = [$self->{pos}, 0, $self->{max_pos}, $page];
2694 2740
2695package CFClient::UI::Statusbox; 2741package CFClient::UI::Statusbox;
2696 2742
2697our @ISA = CFClient::UI::VBox::; 2743our @ISA = CFClient::UI::VBox::;
2698 2744
2745sub new {
2746 my $class = shift;
2747
2748 $class->SUPER::new (
2749 fontsize => 0.8,
2750 @_,
2751 )
2752}
2753
2699sub reorder { 2754sub reorder {
2700 my ($self) = @_; 2755 my ($self) = @_;
2701 my $NOW = time; 2756 my $NOW = time;
2702 2757
2703 while (my ($k, $v) = each %{ $self->{item} }) { 2758 while (my ($k, $v) = each %{ $self->{item} }) {
2719 # TODO: doesn't handle markup well (read as: at all) 2774 # TODO: doesn't handle markup well (read as: at all)
2720 my $short = $item->{count} > 1 2775 my $short = $item->{count} > 1
2721 ? "<b>$item->{count} ×</b> $item->{text}" 2776 ? "<b>$item->{count} ×</b> $item->{text}"
2722 : $item->{text}; 2777 : $item->{text};
2723 2778
2779 my $fontsize = $item->{fontsize} || $self->{fontsize};
2780
2724 for ($short) { 2781 for ($short) {
2725 s/^\s+//; 2782 s/^\s+//;
2726 s/\s+/ /g; 2783 s/\s+/ /g;
2727 my $len = int 40 / $item->{fontsize}; 2784 my $len = int 40 / $fontsize;
2728 substr $_, $len, length, "…" if $len < length; 2785 substr $_, $len, length, "…" if $len < length;
2729 } 2786 }
2730 2787
2731 new CFClient::UI::Label 2788 new CFClient::UI::Label
2732 markup => $short, 2789 markup => $short,
2733 tooltip => $item->{tooltip}, 2790 tooltip => $item->{tooltip},
2734 tooltip_font => $::FONT_PROP, 2791 tooltip_font => $::FONT_PROP,
2735 tooltip_width => 0.67, 2792 tooltip_width => 0.67,
2736 fontsize => $item->{fontsize}, 2793 fontsize => $fontsize,
2737 fg => $item->{fg}, 2794 fg => $item->{fg},
2738 can_events => 1, 2795 can_events => 1,
2739 can_hover => 1 2796 can_hover => 1
2740 }; 2797 };
2741 } 2798 }
2768 $self->{item}{$group} = { 2825 $self->{item}{$group} = {
2769 id => ++$self->{id}, 2826 id => ++$self->{id},
2770 text => $text, 2827 text => $text,
2771 timeout => $timeout, 2828 timeout => $timeout,
2772 tooltip => $text, 2829 tooltip => $text,
2773 fontsize => 0.8,
2774 fg => [0.8, 0.8, 0.8, 0.8], 2830 fg => [0.8, 0.8, 0.8, 0.8],
2775 pri => 0, 2831 pri => 0,
2776 count => 1, 2832 count => 1,
2777 %arg, 2833 %arg,
2778 }; 2834 };

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines