1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
|
#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>#
# Chart::Composite #
# #
# written by david bonner #
# dbonner@cs.bu.edu #
# #
# maintained by Chart Group #
# Chart@wettzell.ifag.de #
# #
# theft is treason, citizen #
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<#
package Chart::Composite;
use Chart::Base;
use GD;
use Carp;
use strict;
@Chart::Composite::ISA = qw(Chart::Base);
$Chart::Composite::VERSION = 1.00;
my $DEBUG = 0;
#>>>>>>>>>>>>>>>>>>>>>>>>>>#
# public methods go here #
#<<<<<<<<<<<<<<<<<<<<<<<<<<#
## have to override set, so we can pass the options to the
## sub-objects later
sub set {
my $self = shift;
my %opts = @_;
# basic error checking on the options, just warn 'em
unless ($#_ % 2) {
carp "Whoops, some option to be set didn't have a value.\n",
"You might want to look at that.\n";
}
# store the options they gave us
unless ($self->{'opts'}) {
$self->{'opts'} = {};
}
# now set 'em
for (keys %opts) {
$self->{$_} = $opts{$_};
$self->{'opts'}{$_} = $opts{$_};
}
# now return
return;
}
## get the information to turn the chart into an imagemap
## had to override it to reassemble the @data array correctly
sub imagemap_dump {
my $self = shift;
my $ref = [];
my ($i, $j);
# croak if they didn't ask me to remember the data, or if they're asking
# for the data before I generate it
unless (($self->{'imagemap'} =~ /^true$/i) && $self->{'imagemap_data'}) {
croak "You need to set the imagemap option to true, and then call the png method, before you can get the imagemap data";
}
# make a copy for them, and reorder it
for $i (0..$#{$self->{'sub0'}->{'imagemap_data'}}) {
for $j (0..$#{$self->{'sub0'}->{'imagemap_data'}->[$i]}) {
$ref->[$self->{'composite_info'}->[0][1][$i]][$j] =
[ @{ $self->{'sub0'}->{'imagemap_data'}->[$i][$j] } ];
}
}
for $i (0..$#{$self->{'sub1'}->{'imagemap_data'}}) {
for $j (0..$#{$self->{'sub1'}->{'imagemap_data'}->[$i]}) {
$ref->[$self->{'composite_info'}->[1][1][$i]][$j] =
[ @{ $self->{'sub1'}->{'imagemap_data'}->[$i][$j] } ];
}
}
# return their copy
return $ref;
}
#>>>>>>>>>>>>>>>>>>>>>>>>>>>#
# private methods go here #
#<<<<<<<<<<<<<<<<<<<<<<<<<<<#
## make sure the data isn't really weird
## and collect some basic info about it
sub _check_data {
my $self = shift;
my $length = 0;
# first things first, make sure we got the composite_info
unless (($self->{'composite_info'}) && ($#{$self->{'composite_info'}} == 1)) {
croak "Chart::Composite needs to be told what kind of components to use";
}
# make sure we don't end up dividing by zero if they ask for
# just one y_tick
if ($self->{'y_ticks'} == 1) {
$self->{'y_ticks'} = 2;
carp "The number of y_ticks displayed must be at least 2";
}
# remember the number of datasets
$self->{'num_datasets'} = $#{$self->{'dataref'}};
# remember the number of points in the largest dataset
$self->{'num_datapoints'} = 0;
for (0..$self->{'num_datasets'}) {
if (scalar(@{$self->{'dataref'}[$_]}) > $self->{'num_datapoints'}) {
$self->{'num_datapoints'} = scalar(@{$self->{'dataref'}[$_]});
}
}
# find the longest x-tick label, and remember how long it is
for (@{$self->{'dataref'}[0]}) {
if (length ($_) > $length) {
$length = length ($_);
}
}
$self->{'x_tick_label_length'} = $length;
# now split the data into sub-objects
$self->_split_data;
return;
}
## create sub-objects for each type, store the appropriate
## data sets in each one, and stick the correct values into
## them (ie. 'gd_obj');
sub _split_data {
my $self = shift;
my @types = ($self->{'composite_info'}[0][0],$self->{'composite_info'}[1][0]);
my ($ref, $i, $j);
## Already checked for number of components in _check_data, above.
# # we can only do two at a time
# if ($self->{'composite_info'}[2]) {
# croak "Sorry, Chart::Composite can only do two chart types at a time";
# }
# load the individual modules
require "Chart/".$types[0].".pm";
require "Chart/".$types[1].".pm";
# create the sub-objects
$self->{'sub_0'} = ("Chart::".$types[0])->new();
$self->{'sub_1'} = ("Chart::".$types[1])->new();
# set the options (set the min_val, max_val, and y_ticks
# options intelligently so that the sub-objects don't get
# confused)
$self->{'sub_0'}->set (%{$self->{'opts'}});
$self->{'sub_1'}->set (%{$self->{'opts'}});
if (defined ($self->{'opts'}{'min_val1'})) {
$self->{'sub_0'}->set ('min_val' => $self->{'opts'}{'min_val1'});
}
if (defined ($self->{'opts'}{'max_val1'})) {
$self->{'sub_0'}->set ('max_val' => $self->{'opts'}{'max_val1'});
}
if (defined ($self->{'opts'}{'min_val2'})) {
$self->{'sub_1'}->set ('min_val' => $self->{'opts'}{'min_val2'});
}
if (defined ($self->{'opts'}{'max_val2'})) {
$self->{'sub_1'}->set ('max_val' => $self->{'opts'}{'max_val2'});
}
if ($self->{'opts'}{'y_ticks1'}) {
$self->{'sub_0'}->set ('y_ticks' => $self->{'opts'}{'y_ticks1'});
}
if ($self->{'opts'}{'y_ticks2'}) {
$self->{'sub_1'}->set ('y_ticks' => $self->{'opts'}{'y_ticks2'});
}
# replace the gd_obj fields
$self->{'sub_0'}->{'gd_obj'} = $self->{'gd_obj'};
$self->{'sub_1'}->{'gd_obj'} = $self->{'gd_obj'};
# let the sub-objects know they're sub-objects
$self->{'sub_0'}->{'component'} = 'true';
$self->{'sub_1'}->{'component'} = 'true';
# give each sub-object its data
$self->{'component_datasets'} = [];
for $i (0..1) {
$ref = [];
$self->{'component_datasets'}[$i] = $self->{'composite_info'}[$i][1];
push @{$ref}, $self->{'dataref'}[0];
for $j (@{$self->{'composite_info'}[$i][1]}) {
$self->_color_role_to_index('dataset'.($j-1)); # allocate color index
push @{$ref}, $self->{'dataref'}[$j];
}
$self->{'sub_'.$i}->_copy_data ($ref);
}
# and let them check it
$self->{'sub_0'}->_check_data;
$self->{'sub_1'}->_check_data;
# realign the y-axes if they want
if ($self->{'same_y_axes'} =~ /^true$/i) {
if ($self->{'sub_0'}{'min_val'} < $self->{'sub_1'}{'min_val'}) {
$self->{'sub_1'}{'min_val'} = $self->{'sub_0'}{'min_val'};
}
else {
$self->{'sub_0'}{'min_val'} = $self->{'sub_1'}{'min_val'};
}
if ($self->{'sub_0'}{'max_val'} > $self->{'sub_1'}{'max_val'}) {
$self->{'sub_1'}{'max_val'} = $self->{'sub_0'}{'max_val'};
}
else {
$self->{'sub_0'}{'max_val'} = $self->{'sub_1'}{'max_val'};
}
$self->{'sub_0'}->_check_data;
$self->{'sub_1'}->_check_data;
}
# find out how big the y-tick labels will be from sub_0 and sub_1
$self->{'y_tick_label_length1'} = $self->{'sub_0'}->{'y_tick_label_length'};
$self->{'y_tick_label_length2'} = $self->{'sub_1'}->{'y_tick_label_length'};
# now return
return;
}
sub _draw_legend {
my $self = shift;
my ($length);
# check to see if they have as many labels as datasets,
# warn them if not
if (($#{$self->{'legend_labels'}} >= 0) &&
((scalar(@{$self->{'legend_labels'}})) != $self->{'num_datasets'})) {
carp "The number of legend labels and datasets doesn\'t match";
}
# init a field to store the length of the longest legend label
unless ($self->{'max_legend_label'}) {
$self->{'max_legend_label'} = 0;
}
# fill in the legend labels, find the longest one
for (1..$self->{'num_datasets'}) {
unless ($self->{'legend_labels'}[$_-1]) {
$self->{'legend_labels'}[$_-1] = "Dataset $_";
}
$length = length($self->{'legend_labels'}[$_-1]);
if ($length > $self->{'max_legend_label'}) {
$self->{'max_legend_label'} = $length;
}
}
# different legend types
if ($self->{'legend'} eq 'bottom') {
$self->_draw_bottom_legend;
}
elsif ($self->{'legend'} eq 'right') {
$self->_draw_right_legend;
}
elsif ($self->{'legend'} eq 'left') {
$self->_draw_left_legend;
}
elsif ($self->{'legend'} eq 'top') {
$self->_draw_top_legend;
} elsif ($self->{'legend'} eq 'none') {
$self->_draw_none_legend;
} else {
carp "I can't put a legend there\n";
}
# and return
return 1;
}
## put the legend on the top of the data plot
sub _draw_top_legend {
my $self = shift;
my @labels = @{$self->{'legend_labels'}};
my ($x1, $y1, $x2, $y2, $empty_width, $max_label_width, $cols, $rows, $color);
my ($col_width, $row_height, $i, $j, $r, $c, $index, $x, $y, $sub, $w, $h);
my $font = $self->{'legend_font'};
my (%colors, @datasets);
# copy the current boundaries into the sub-objects
$self->_sub_update;
## Make datasetI numbers match indexes of @{ $self->{'dataref'} }[1.....].
# # modify the dataset color table entries to avoid duplicating
# # dataset colors (this limits the number of possible data sets
# # for each component to 8)
# for (0..7) {
# $self->{'sub_1'}{'color_table'}{'dataset'.$_}
# = $self->{'color_table'}{'dataset'.($_+8)};
# }
# modify the dataset color table entries to avoid duplicating
# dataset colors.
my ($n0, $n1) = map { scalar @{ $self->{'composite_info'}[$_][1] } } 0..1;
for (0..$n1-1) {
$self->{'sub_1'}{'color_table'}{'dataset'.$_}
= $self->{'color_table'}{'dataset'.($_+$n0)};
}
# make sure we use the right colors for the legend
@datasets = @{$self->{'composite_info'}[0][1]};
$i = 0;
for (0..$#datasets) {
$colors{$datasets[$_]-1} = $self->{'color_table'}{'dataset'.($i)};
$i++;
}
@datasets = @{$self->{'composite_info'}[1][1]};
$i = 0;
for (0..$#datasets) {
$colors{$datasets[$_]-1} = $self->{'color_table'}{'dataset'.($i+$n0)};
$i++;
}
# make sure we're using a real font
unless ((ref ($font)) eq 'GD::Font') {
croak "The subtitle font you specified isn\'t a GD Font object";
}
# get the size of the font
($h, $w) = ($font->height, $font->width);
# get some base x coordinates
$x1 = $self->{'curr_x_min'} + $self->{'graph_border'}
+ $self->{'y_tick_label_length1'} * $self->{'tick_label_font'}->width
+ $self->{'tick_len'} + (3 * $self->{'text_space'});
$x2 = $self->{'curr_x_max'} - $self->{'graph_border'}
- $self->{'y_tick_label_length2'} * $self->{'tick_label_font'}->width
- $self->{'tick_len'} - (3 * $self->{'text_space'});
if ($self->{'y_label'}) {
$x1 += $self->{'label_font'}->height + 2 * $self->{'text_space'};
}
if ($self->{'y_label2'}) {
$x2 -= $self->{'label_font'}->height + 2 * $self->{'text_space'};
}
# figure out how wide the widest label is, then figure out how many
# columns we can fit into the allotted space
$empty_width = $x2 - $x1 - (2 * $self->{'legend_space'});
$max_label_width = $self->{'max_legend_label'}
* $self->{'legend_font'}->width + 4 * $self->{'text_space'}
+ $self->{'legend_example_size'};
$cols = int ($empty_width / $max_label_width);
unless ($cols) {
$cols = 1;
}
$col_width = $empty_width / $cols;
# figure out how many rows we need and how tall they are
$rows = int ($self->{'num_datasets'} / $cols);
unless (($self->{'num_datasets'} % $cols) == 0) {
$rows++;
}
unless ($rows) {
$rows = 1;
}
$row_height = $h + $self->{'text_space'};
# box the legend off
$y1 = $self->{'curr_y_min'};
$y2 = $self->{'curr_y_min'} + $self->{'text_space'}
+ ($rows * $row_height) + (2 * $self->{'legend_space'});
$self->{'gd_obj'}->rectangle($x1, $y1, $x2, $y2,
$self->_color_role_to_index('misc'));
# leave some space inside the legend
$x1 += $self->{'legend_space'} + $self->{'text_space'};
$x2 -= $self->{'legend_space'};
$y1 += $self->{'legend_space'} + $self->{'text_space'};
$y2 -= $self->{'legend_space'} + $self->{'text_space'};
# draw in the actual legend
$r = 0; # current row
$c = 0; # current column
for $i (0..1) {
for $j (0..$#{$self->{'component_datasets'}[$i]}) {
# get the color
$color = $self->{'sub_'.$i}->{'color_table'}{'dataset'.$j};
$index = $self->{'component_datasets'}[$i][$j] - 1; # index in label list
# find the x-y coordinates for the beginning of the example line
$x = $x1 + ($col_width * $c);
$y = $y1 + ($row_height * $r) + $h/2;
# draw the example line
$self->{'gd_obj'}->line ($x, $y,
$x + $self->{'legend_example_size'}, $y,
$color);
# find the x-y coordinates for the beginning of the label
$x += $self->{'legend_example_size'} + 2 * $self->{'text_space'};
$y -= $h/2;
# now draw the label
$self->{'gd_obj'}->string($font, $x, $y,
$labels[$index], $color);
# keep track of which row/column we're using
$r = ($r + 1) % $rows;
if ($r == 0) {
$c++;
}
}
}
# mark of the space used
$self->{'curr_y_min'} += ($rows * $row_height)
+ $self->{'text_space'}
+ 2 * $self->{'legend_space'};
return;
}
## put the legend on the right of the chart
sub _draw_right_legend {
my $self = shift;
my @labels = @{$self->{'legend_labels'}};
my ($x1, $x2, $x3, $y1, $y2, $width, $color, $misccolor, $w, $h);
my $font = $self->{'legend_font'};
my (%colors, @datasets, $i);
# copy the current boundaries and colors into the sub-objects
$self->_sub_update;
# # modify the dataset color table entries to avoid duplicating
# # dataset colors (this limits the number of possible data sets
# # for each component to 8)
# for (0..7) {
# $self->{'sub_1'}{'color_table'}{'dataset'.$_}
# = $self->{'color_table'}{'dataset'.($_+8)};
# }
# modify the dataset color table entries to avoid duplicating
# dataset colors.
my ($n0, $n1) = map { scalar @{ $self->{'composite_info'}[$_][1] } } 0..1;
for (0..$n1-1) {
$self->{'sub_1'}{'color_table'}{'dataset'.$_}
= $self->{'color_table'}{'dataset'.($_+$n0)};
}
# make sure we use the right colors for the legend
@datasets = @{$self->{'composite_info'}[0][1]};
$i = 0;
for (0..$#datasets) {
$colors{$datasets[$_]-1} = $self->{'color_table'}{'dataset'.($i)};
$i++;
}
@datasets = @{$self->{'composite_info'}[1][1]};
$i = 0;
for (0..$#datasets) {
$colors{$datasets[$_]-1} = $self->{'color_table'}{'dataset'.($i+$n0)};
$i++;
}
# make sure we're using a real font
unless ((ref ($font)) eq 'GD::Font') {
croak "The subtitle font you specified isn\'t a GD Font object";
}
# get the size of the font
($h, $w) = ($font->height, $font->width);
# get the miscellaneous color
$misccolor = $self->_color_role_to_index('misc');
# find out how wide the largest label is
$width = (2 * $self->{'text_space'})
+ ($self->{'max_legend_label'} * $w)
+ $self->{'legend_example_size'}
+ (2 * $self->{'legend_space'});
# box the thing off
$x1 = $self->{'curr_x_max'} - $width;
$x2 = $self->{'curr_x_max'};
$y1 = $self->{'curr_y_min'} + $self->{'graph_border'} ;
$y2 = $self->{'curr_y_min'} + $self->{'graph_border'} + $self->{'text_space'}
+ ($self->{'num_datasets'} * ($h + $self->{'text_space'}))
+ (2 * $self->{'legend_space'});
$self->{'gd_obj'}->rectangle ($x1, $y1, $x2, $y2, $misccolor);
# leave that nice space inside the legend box
$x1 += $self->{'legend_space'};
$y1 += $self->{'legend_space'} + $self->{'text_space'};
# now draw the actual legend
for (0..$#labels) {
# get the color
$color = $colors{$_};
# find the x-y coords
$x2 = $x1;
$x3 = $x2 + $self->{'legend_example_size'};
$y2 = $y1 + ($_ * ($self->{'text_space'} + $h)) + $h/2;
# do the line first
$self->{'gd_obj'}->line ($x2, $y2, $x3, $y2, $color);
# now the label
$x2 = $x3 + (2 * $self->{'text_space'});
$y2 -= $h/2;
$self->{'gd_obj'}->string ($font, $x2, $y2, $labels[$_], $color);
}
# mark off the used space
$self->{'curr_x_max'} -= $width;
# and return
return;
}
## draw the legend at the left of the data plot
sub _draw_left_legend {
my $self = shift;
my @labels = @{$self->{'legend_labels'}};
my ($x1, $x2, $x3, $y1, $y2, $width, $color, $misccolor, $w, $h);
my $font = $self->{'legend_font'};
my (%colors, @datasets, $i);
# copy the current boundaries and colors into the sub-objects
$self->_sub_update;
# # modify the dataset color table entries to avoid duplicating
# # dataset colors (this limits the number of possible data sets
# # for each component to 8)
# for (0..7) {
# $self->{'sub_1'}{'color_table'}{'dataset'.$_}
# = $self->{'color_table'}{'dataset'.($_+8)};
# }
# modify the dataset color table entries to avoid duplicating
# dataset colors.
my ($n0, $n1) = map { scalar @{ $self->{'composite_info'}[$_][1] } } 0..1;
for (0..$n1-1) {
$self->{'sub_1'}{'color_table'}{'dataset'.$_}
= $self->{'color_table'}{'dataset'.($_+$n0)};
}
# make sure we use the right colors for the legend
@datasets = @{$self->{'composite_info'}[0][1]};
$i = 0;
for (0..$#datasets) {
$colors{$datasets[$_]-1} = $self->{'color_table'}{'dataset'.($i)};
$i++;
}
@datasets = @{$self->{'composite_info'}[1][1]};
$i = 0;
for (0..$#datasets) {
$colors{$datasets[$_]-1} = $self->{'color_table'}{'dataset'.($i+$n0)};
$i++;
}
# make sure we're using a real font
unless ((ref ($font)) eq 'GD::Font') {
croak "The subtitle font you specified isn\'t a GD Font object";
}
# get the size of the font
($h, $w) = ($font->height, $font->width);
# get the miscellaneous color
$misccolor = $self->_color_role_to_index('misc');
# find out how wide the largest label is
$width = (2 * $self->{'text_space'})
+ ($self->{'max_legend_label'} * $w)
+ $self->{'legend_example_size'}
+ (2 * $self->{'legend_space'});
# get some base x-y coordinates
$x1 = $self->{'curr_x_min'};
$x2 = $self->{'curr_x_min'} + $width;
$y1 = $self->{'curr_y_min'} + $self->{'graph_border'} ;
$y2 = $self->{'curr_y_min'} + $self->{'graph_border'} + $self->{'text_space'
}
+ ($self->{'num_datasets'} * ($h + $self->{'text_space'}))
+ (2 * $self->{'legend_space'});
# box the legend off
$self->{'gd_obj'}->rectangle ($x1, $y1, $x2, $y2, $misccolor);
# leave that nice space inside the legend box
$x1 += $self->{'legend_space'};
$y1 += $self->{'legend_space'} + $self->{'text_space'};
# now draw the actual legend
for (0..$#labels) {
# get the color
$color = $colors{$_};
# find the x-y coords
$x2 = $x1;
$x3 = $x2 + $self->{'legend_example_size'};
$y2 = $y1 + ($_ * ($self->{'text_space'} + $h)) + $h/2;
# do the line first
$self->{'gd_obj'}->line ($x2, $y2, $x3, $y2, $color);
# now the label
$x2 = $x3 + (2 * $self->{'text_space'});
$y2 -= $h/2;
$self->{'gd_obj'}->string ($font, $x2, $y2, $labels[$_], $color);
}
# mark off the used space
$self->{'curr_x_min'} += $width;
# and return
return 1;
}
## draw the legend on the bottom of the data plot
sub _draw_bottom_legend {
my $self = shift;
my @labels = @{$self->{'legend_labels'}};
my ($x1, $y1, $x2, $y2, $empty_width, $max_label_width, $cols, $rows, $color);
my ($col_width, $row_height, $i, $j, $r, $c, $index, $x, $y, $sub, $w, $h);
my $font = $self->{'legend_font'};
my (%colors, @datasets);
# copy the current boundaries and colors into the sub-objects
$self->_sub_update;
# # modify the dataset color table entries to avoid duplicating
# # dataset colors (this limits the number of possible data sets
# # for each component to 8)
# for (0..7) {
# $self->{'sub_1'}{'color_table'}{'dataset'.$_}
# = $self->{'color_table'}{'dataset'.($_+8)};
# }
# modify the dataset color table entries to avoid duplicating
# dataset colors.
my ($n0, $n1) = map { scalar @{ $self->{'composite_info'}[$_][1] } } 0..1;
for (0..$n1-1) {
$self->{'sub_1'}{'color_table'}{'dataset'.$_}
= $self->{'color_table'}{'dataset'.($_+$n0)};
}
@datasets = @{$self->{'composite_info'}[0][1]};
$i = 0;
for (0..$#datasets) {
$colors{$datasets[$_]-1} = $self->{'color_table'}{'dataset'.($i)};
$i++;
}
@datasets = @{$self->{'composite_info'}[1][1]};
$i = 0;
for (0..$#datasets) {
$colors{$datasets[$_]-1} = $self->{'color_table'}{'dataset'.($i+$n0)};
$i++;
}
# make sure we're using a real font
unless ((ref ($font)) eq 'GD::Font') {
croak "The subtitle font you specified isn\'t a GD Font object";
}
# get the size of the font
($h, $w) = ($font->height, $font->width);
# figure out how many columns we can fit
$x1 = $self->{'curr_x_min'} + $self->{'graph_border'}
+ $self->{'y_tick_label_length1'} * $self->{'tick_label_font'}->width
+ $self->{'tick_len'} + (3 * $self->{'text_space'});
$x2 = $self->{'curr_x_max'} - $self->{'graph_border'}
- $self->{'y_tick_label_length2'} * $self->{'tick_label_font'}->width
- $self->{'tick_len'} - (3 * $self->{'text_space'});
if ($self->{'y_label'}) {
$x1 += $self->{'label_font'}->height + 2 * $self->{'text_space'};
}
if ($self->{'y_label2'}) {
$x2 -= $self->{'label_font'}->height + 2 * $self->{'text_space'};
}
$empty_width = $x2 - $x1 - (2 * $self->{'legend_space'});
$max_label_width = $self->{'max_legend_label'}
* $self->{'legend_font'}->width + 4 * $self->{'text_space'}
+ $self->{'legend_example_size'};
$cols = int ($empty_width / $max_label_width);
unless ($cols) {
$cols = 1;
}
$col_width = $empty_width / $cols;
# figure out how many rows we need
$rows = int ($self->{'num_datasets'} / $cols);
unless (($self->{'num_datasets'} % $cols) == 0) {
$rows++;
}
unless ($rows) {
$rows = 1;
}
$row_height = $h + $self->{'text_space'};
# box it off
$y1 = $self->{'curr_y_max'} - $self->{'text_space'}
- ($rows * $row_height) - (2 * $self->{'legend_space'});
$y2 = $self->{'curr_y_max'};
$self->{'gd_obj'}->rectangle($x1, $y1, $x2, $y2,
$self->_color_role_to_index('misc'));
$x1 += $self->{'legend_space'} + $self->{'text_space'};
$x2 -= $self->{'legend_space'};
$y1 += $self->{'legend_space'} + $self->{'text_space'};
$y2 -= $self->{'legend_space'} + $self->{'text_space'};
# draw in the actual legend
$r = 0;
$c = 0;
for $i (0..1) {
for $j (0..$#{$self->{'component_datasets'}[$i]}) {
$color = $self->{'sub_'.$i}->{'color_table'}{'dataset'.$j};
$index = $self->{'component_datasets'}[$i][$j] - 1;
$x = $x1 + ($col_width * $c);
$y = $y1 + ($row_height * $r) + $h/2;
$self->{'gd_obj'}->line ($x, $y,
$x + $self->{'legend_example_size'}, $y,
$color);
$x += $self->{'legend_example_size'} + 2 * $self->{'text_space'};
$y -= $h/2;
$self->{'gd_obj'}->string($font, $x, $y,
$labels[$index], $color);
# keep track of which row/column we're using
$r = ($r + 1) % $rows;
if ($r == 0) {
$c++;
}
}
}
# mark of the space used
$self->{'curr_y_max'} -= ($rows * $row_height)
+ $self->{'text_space'}
+ 2 * $self->{'legend_space'};
return;
}
# no legend to draw.. just update the color tables for subs
sub _draw_none_legend {
my $self = shift;
$self->_sub_update();
# for (0..7) {
# $self->{'sub_1'}{'color_table'}{'dataset'.$_}
# = $self->{'color_table'}{'dataset'.($_+8)};
# }
# modify the dataset color table entries to avoid duplicating
# dataset colors.
my ($n0, $n1) = map { scalar @{ $self->{'composite_info'}[$_][1] } } 0..1;
for (0..$n1-1) {
$self->{'sub_1'}{'color_table'}{'dataset'.$_}
= $self->{'color_table'}{'dataset'.($_+$n0)};
}
}
## draw the ticks and tick labels
sub _draw_ticks {
my $self = shift;
# draw the x ticks
$self->_draw_x_ticks;
# update the boundaries in the sub-objects
$self->_boundary_update ($self, $self->{'sub_0'});
$self->_boundary_update ($self, $self->{'sub_1'});
# now the y ticks
$self->_draw_y_ticks;
# then return
return;
}
## draw the x-ticks and their labels
sub _draw_x_ticks {
my $self = shift;
my $data = $self->{'dataref'};
my $font = $self->{'tick_label_font'};
my $textcolor = $self->_color_role_to_index('text');
my $misccolor = $self->_color_role_to_index('misc');
my ($h, $w);
my ($x1, $x2, $y1, $y2);
my ($width, $delta);
my ($stag);
$self->{'grid_data'}->{'x'} = [];
# make sure we got a real font
unless ((ref $font) eq 'GD::Font') {
croak "The tick label font you specified isn\'t a GD Font object";
}
# get the height and width of the font
($h, $w) = ($font->height, $font->width);
# allow for the amount of space the y-ticks will push the
# axes over to the right and to the left
## _draw_y_ticks allows 3 * text_space, not 2 * ; this caused mismatch between
## the ticks (and grid lines) and the data.
# $x1 = $self->{'curr_x_min'} + ($w * $self->{'y_tick_label_length1'})
# + (2 * $self->{'text_space'}) + $self->{'tick_len'};
# $x2 = $self->{'curr_x_max'} - ($w * $self->{'y_tick_label_length2'})
# - (2 * $self->{'text_space'}) - $self->{'tick_len'};
$x1 = $self->{'curr_x_min'} + ($w * $self->{'y_tick_label_length1'})
+ (3 * $self->{'text_space'}) + $self->{'tick_len'};
$x2 = $self->{'curr_x_max'} - ($w * $self->{'y_tick_label_length2'})
- (3 * $self->{'text_space'}) - $self->{'tick_len'};
$y1 = $self->{'curr_y_max'} - $h - $self->{'text_space'};
# get the delta value, figure out how to draw the labels
$width = $x2 - $x1;
$delta = $width / $self->{'num_datapoints'};
if ($delta <= ($self->{'x_tick_label_length'} * $w)) {
unless ($self->{'x_ticks'} =~ /^vertical$/i) {
$self->{'x_ticks'} = 'staggered';
}
}
# now draw the labels
if ($self->{'x_ticks'} =~ /^normal$/i) { # normal ticks
if ($self->{'skip_x_ticks'}) {
for (0..int(($self->{'num_datapoints'}-1)/$self->{'skip_x_ticks'})) {
$x2 = $x1 + ($delta/2) + ($delta*($_*$self->{'skip_x_ticks'}))
- ($w*length($data->[0][$_* $self->{'skip_x_ticks'}])) / 2;
$self->{'gd_obj'}->string($font, $x2, $y1,
$data->[0][$_*$self->{'skip_x_ticks'}],
$textcolor);
}
}
elsif ($self->{'custom_x_ticks'}) {
for (@{$self->{'custom_x_ticks'}}) {
$x2 = $x1 + ($delta/2) + ($delta*$_) - ($w*length($data->[0][$_])) / 2;
$self->{'gd_obj'}->string($font, $x2, $y1, $data->[0][$_], $textcolor);
}
}
else {
for (0..$self->{'num_datapoints'}-1) {
$x2 = $x1 + ($delta/2) + ($delta*$_) - ($w*length($data->[0][$_])) / 2;
$self->{'gd_obj'}->string($font, $x2, $y1, $data->[0][$_], $textcolor);
}
}
}
elsif ($self->{'x_ticks'} =~ /^staggered$/i) { # staggered ticks
if ($self->{'skip_x_ticks'}) {
$stag = 0;
for (0..int(($self->{'num_datapoints'}-1)/$self->{'skip_x_ticks'})) {
$x2 = $x1 + ($delta/2) + ($delta*($_*$self->{'skip_x_ticks'}))
- ($w*length($data->[0][$_*$self->{'skip_x_ticks'}])) / 2;
if (($stag % 2) == 1) {
$y1 -= $self->{'text_space'} + $h;
}
$self->{'gd_obj'}->string($font, $x2, $y1,
$data->[0][$_*$self->{'skip_x_ticks'}],
$textcolor);
if (($stag % 2) == 1) {
$y1 += $self->{'text_space'} + $h;
}
$stag++;
}
}
elsif ($self->{'custom_x_ticks'}) {
$stag = 0;
for (sort (@{$self->{'custom_x_ticks'}})) {
$x2 = $x1 + ($delta/2) + ($delta*$_) - ($w*length($data->[0][$_])) / 2;
if (($stag % 2) == 1) {
$y1 -= $self->{'text_space'} + $h;
}
$self->{'gd_obj'}->string($font, $x2, $y1, $data->[0][$_], $textcolor);
if (($stag % 2) == 1) {
$y1 += $self->{'text_space'} + $h;
}
$stag++;
}
}
else {
for (0..$self->{'num_datapoints'}-1) {
$x2 = $x1 + ($delta/2) + ($delta*$_) - ($w*length($data->[0][$_])) / 2;
if (($_ % 2) == 1) {
$y1 -= $self->{'text_space'} + $h;
}
$self->{'gd_obj'}->string($font, $x2, $y1, $data->[0][$_], $textcolor);
if (($_ % 2) == 1) {
$y1 += $self->{'text_space'} + $h;
}
}
}
}
elsif ($self->{'x_ticks'} =~ /^vertical$/i) { # vertical ticks
$y1 = $self->{'curr_y_max'} - $self->{'text_space'};
if ($self->{'skip_x_ticks'}) {
for (0..int(($self->{'num_datapoints'}-1)/$self->{'skip_x_ticks'})) {
$x2 = $x1 + ($delta/2) + ($delta*($_*$self->{'skip_x_ticks'})) - $h/2;
$y2 = $y1 - (($self->{'x_tick_label_length'}
- length($data->[0][$_*$self->{'skip_x_ticks'}])) * $w);
$self->{'gd_obj'}->stringUp($font, $x2, $y2,
$data->[0][$_*$self->{'skip_x_ticks'}],
$textcolor);
}
}
elsif ($self->{'custom_x_ticks'}) {
for (@{$self->{'custom_x_ticks'}}) {
$x2 = $x1 + ($delta/2) + ($delta*$_) - $h/2;
$y2 = $y1 - (($self->{'x_tick_label_length'} - length($data->[0][$_]))
* $w);
$self->{'gd_obj'}->stringUp($font, $x2, $y2,
$data->[0][$_], $textcolor);
}
}
else {
for (0..$self->{'num_datapoints'}-1) {
$x2 = $x1 + ($delta/2) + ($delta*$_) - $h/2;
$y2 = $y1 - (($self->{'x_tick_label_length'} - length($data->[0][$_]))
* $w);
$self->{'gd_obj'}->stringUp($font, $x2, $y2,
$data->[0][$_], $textcolor);
}
}
}
else { # error time
carp "I don't understand the type of x-ticks you specified";
}
# update the current y-max value
if ($self->{'x_ticks'} =~ /^normal$/i) {
$self->{'curr_y_max'} -= $h + (2 * $self->{'text_space'});
}
elsif ($self->{'x_ticks'} =~ /^staggered$/i) {
$self->{'curr_y_max'} -= (2 * $h) + (3 * $self->{'text_space'});
}
elsif ($self->{'x_ticks'} =~ /^vertical$/i) {
$self->{'curr_y_max'} -= ($w * $self->{'x_tick_label_length'})
+ (2 * $self->{'text_space'});
}
# now plot the ticks
$y1 = $self->{'curr_y_max'};
$y2 = $self->{'curr_y_max'} - $self->{'tick_len'};
if ($self->{'skip_x_ticks'}) {
for (0..int(($self->{'num_datapoints'}-1)/$self->{'skip_x_ticks'})) {
$x2 = $x1 + ($delta/2) + ($delta*($_*$self->{'skip_x_ticks'}));
$self->{'gd_obj'}->line($x2, $y1, $x2, $y2, $misccolor);
if ($self->{'grid_lines'} =~ /^true$/i
or $self->{'x_grid_lines'} =~ /^true$/i) {
$self->{'grid_data'}->{'x'}->[$_] = $x2;
}
}
}
elsif ($self->{'custom_x_ticks'}) {
for (@{$self->{'custom_x_ticks'}}) {
$x2 = $x1 + ($delta/2) + ($delta*$_);
$self->{'gd_obj'}->line($x2, $y1, $x2, $y2, $misccolor);
if ($self->{'grid_lines'} =~ /^true$/i
or $self->{'x_grid_lines'} =~ /^true$/i) {
$self->{'grid_data'}->{'x'}->[$_] = $x2;
}
}
}
else {
for (0..$self->{'num_datapoints'}-1) {
$x2 = $x1 + ($delta/2) + ($delta*$_);
$self->{'gd_obj'}->line($x2, $y1, $x2, $y2, $misccolor);
if ($self->{'grid_lines'} =~ /^true$/i
or $self->{'x_grid_lines'} =~ /^true$/i) {
$self->{'grid_data'}->{'x'}->[$_] = $x2;
}
}
}
# update the current y-max value
$self->{'curr_y_max'} -= $self->{'tick_len'};
# and return
return;
}
## draw the y-ticks and their labels
sub _draw_y_ticks {
my $self = shift;
# let the first guy do his
$self->{'sub_0'}->_draw_y_ticks ('left');
# and update the other two objects
$self->_boundary_update ($self->{'sub_0'}, $self);
$self->_boundary_update ($self->{'sub_0'}, $self->{'sub_1'});
# now draw the other ones
$self->{'sub_1'}->_draw_y_ticks ('right');
# and update the other two objects
$self->_boundary_update ($self->{'sub_1'}, $self);
$self->_boundary_update ($self->{'sub_1'}, $self->{'sub_0'});
# then return
return;
}
## finally get around to plotting the data
sub _draw_data {
my $self = shift;
# do a grey background if they want it
if ($self->{'grey_background'} =~ /^true$/i) {
$self->_grey_background;
$self->{'sub_0'}->{'grey_background'} = 'false';
$self->{'sub_1'}->{'grey_background'} = 'false';
}
# draw grid again if necessary (if grey background ruined it..)
unless ($self->{grey_background} !~ /^true$/i) {
$self->_draw_grid_lines if ($self->{grid_lines} =~ /^true$/i);
$self->_draw_x_grid_lines if ($self->{x_grid_lines} =~ /^true$/i);
$self->_draw_y_grid_lines if ($self->{y_grid_lines} =~ /^true$/i);
$self->_draw_y2_grid_lines if ($self->{y2_grid_lines} =~ /^true$/i);
}
# do a final bounds update
$self->_boundary_update ($self, $self->{'sub_0'});
$self->_boundary_update ($self, $self->{'sub_1'});
# now let the component modules go to work
$self->{'sub_0'}->_draw_data;
$self->{'sub_1'}->_draw_data;
return;
}
## update all the necessary information in the sub-objects
sub _sub_update {
my $self = shift;
my $sub0 = $self->{'sub_0'};
my $sub1 = $self->{'sub_1'};
# update the boundaries
$self->_boundary_update ($self, $sub0);
$self->_boundary_update ($self, $sub1);
# copy the color tables
$sub0->{'color_table'} = { %{$self->{'color_table'}} };
$sub1->{'color_table'} = { %{$self->{'color_table'}} };
# now return
return;
}
## copy the current gd_obj boundaries from one object to another
sub _boundary_update {
my $self = shift;
my $from = shift;
my $to = shift;
$to->{'curr_x_min'} = $from->{'curr_x_min'};
$to->{'curr_x_max'} = $from->{'curr_x_max'};
$to->{'curr_y_min'} = $from->{'curr_y_min'};
$to->{'curr_y_max'} = $from->{'curr_y_max'};
return;
}
sub _draw_y_grid_lines {
my ($self) = shift;
$self->{'sub_0'}->_draw_y_grid_lines();
return;
}
sub _draw_y2_grid_lines {
my ($self) = shift;
$self->{'sub_1'}->_draw_y2_grid_lines();
return;
}
## be a good module and return 1
1;
|