summaryrefslogtreecommitdiff
path: root/graphics/pstricks/contrib/pedigree/pedigree-perl/Pedigree/PersonNode.pm
blob: bd98dda06b3d4f421b128b0a6386990da1042c24 (plain)
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
=pod

=head1 NAME

Pedigree::PersonNode - a person in a pedigree

=head1 SYNOPSIS

use Pedigree::PersonNode;

$node = new Pedigree::PersonNode(I<%params>);

$Id = $node->MotherId();
$Id = $node->FatherId();

$isProband = $node->isProband();

$sex = $node->Sex();

$DoB = $node->DoB();

$DoD = $node->DoD();

$cond = $node->Condition();

$GenName = $node->GetGenName();

$node->SetGenName(I<$name>);

$node->DrawNode(I<$xidst>, I<$ydist>, I<$belowtextfont>, I<$abovetextfont>, 
I<@fieldsfornode>);

$node->PrintLegend(I<$land>, I<@fields>);

=head1 DESCRIPTION

This package contains data about a person.

=cut

####################################################################
# Define the package                                               #
####################################################################

package Pedigree::PersonNode;
use Pedigree;
use strict;
our @ISA=('Pedigree::Node');

####################################################################
#    new                                                           #
####################################################################

=pod

=over 4

=item B<new>(I<%params>);

Construct a new node from the given parameters.  

=cut

sub new {
    my ($class,%params)=@_;
    my $self=$class->SUPER::new(%params);

    if (!ref($self)) {
	return 0;
    }

    #
    # Only Person Nodes are numbered in pedigrees
    #

    $self->{'Numbered'}=1;

    #
    # Now Twins...
    # 

    if (exists $self->{'Twins'}) {
	my $Id=$self->{'Id'};
	my $string = $self->{'Twins'};
	$string =~ s/^\s*//;
	$string =~ s/\s*$//;
	my @twinIds=($Id, split (/[\s,;]+/, $string));
	if ($main::DEBUG) {
	    print STDERR "Found twins: ", join(', ',@twinIds), "\n";
	}
	my $found=0;
	for (my $i=0; $i<scalar @{$self->{'twin_sets'}}; $i++) {
	    if (exists $self->{'twin_sets'}->[$i]->{'KidIds'}->{$Id}) {
		$found=1;
		foreach my $kidId (@twinIds) {
		    $self->{'twin_sets'}->[$i]->{'KidIds'}->{$kidId}=1;
		}
		if ($main::DEBUG) {
		    print STDERR "Added to twin set number $i\n";
		}
		last;  # twin_set
	    }
	}              
	if (!$found) { # Add twin set
	    my $set;
	    $set->{'Type'} = $self->{'Type'};
	    foreach my $kidId (@twinIds) {
		$set->{'KidIds'}->{$kidId}=1;
	    }
	    push @{$self->{'twin_sets'}}, $set;
	    if ($main::DEBUG) {
		print STDERR "Started a new twin set number ",
		scalar(@{$self->{'twin_sets'}})-1, "\n";
	    }
	}
    }

    return $self;

}


####################################################################
#    MotherId                                                      #
####################################################################

=pod

=item B<MotherId>();

Return Mother Id.

=cut

sub MotherId {
    my $self=shift;
    return $self->{'Mother'};
}

####################################################################
#    FatherId                                                      #
####################################################################

=pod

=item B<FatherId>();

Return Father Id.

=cut

sub FatherId {
    my $self=shift;
    return $self->{'Father'};
}


####################################################################
#    isProband                                                     #
####################################################################

=pod

=item B<isProband>();

Return 1 if the pesron is a Proband and zero otherwise

=cut

sub isProband {
    my $self=shift;
    if ($self->{Proband} == 1) {
	return 1;
    } else {
	return 0;
    }
}

####################################################################
#    Sex                                                           #
####################################################################

=pod

=item B<Sex>();

Get the sex of the node

=cut

sub Sex {
    my $self = shift;
    return $self->{'Sex'};
}

####################################################################
#    DoB                                                           #
####################################################################

=pod

=item B<DoB>();

Get the DoB of the node

=cut

sub DoB {
    my $self = shift;
    return $self->{'DoB'};
}

####################################################################
#    DoB                                                           #
####################################################################

=pod

=item B<DoD>();

Get the DoB of the node

=cut

sub DoD {
    my $self = shift;
    return $self->{'DoD'};
}

####################################################################
#    Condition                                                     #
####################################################################

=pod

=item B<Condition>();

Returns node conditon.

=cut

sub Condition {
    my $self=shift;
    return $self->{'Condition'};
}


####################################################################
#    GetGenName                                                    #
####################################################################

=pod

=item B<GetGenName>();

Find the generation name for the node

=cut

sub GetGenName {
    my $self = shift;
    return $self->{'GenName'};
}


####################################################################
#    SetGenName                                                    #
####################################################################

=pod

=item B<SetGenName>(I<$name>);

Set the generation name of the node

=cut

sub SetGenName {
    my ($self, $name) = @_;
    $self->{'GenName'} = $name;
    return 0;
}


####################################################################
#    DrawNode                                                      #
####################################################################

=pod

=item B<DrawNode>(I<$xdist>, I<$ydist>, I<$belowtextfont>, I<$abovetextfont>,
I<@fieldsfornode>);

Output the command to draw this node.  The parameters are
distances between the nodes (in cm) and fields for abovetext.

=cut

sub DrawNode {
    my $self=shift;
    my ($xdist, $ydist, $belowtextfont, $abovetextfont, @fieldsfornode) = @_;
    my $result = '\rput('.($xdist*$self->GetAbsX()).", ".
	($ydist*$self->GetAbsY()).'){\pstPerson[';
    my @opts=($self->Sex(), $self->Condition(),
	      'belowtext={'."$belowtextfont ".$self->GetGenName().'}');
    if (length($self->DoD())>0) {
	push @opts, 'deceased';
    }
    if ($self->isProband()) {
	push @opts, 'proband';
    }
    if (scalar @fieldsfornode) {
	my @abovetext;
	foreach my $field (@fieldsfornode) {
	    push @abovetext, $self->{$field};
	}
	push @opts,'abovetext={'."$abovetextfont ".join('; ',@abovetext).'}';
    }
    $result .= join(', ',@opts);
    $result .= ']{'.$self->Id()."}}\n";
    return $result;
}

####################################################################
#    PrintLegend                                                   #
####################################################################

=pod

=item B<PrintLegend>(I<$lang>, I<@fields>);

Print the legend for the given node, including I<@fields> in the given
language I<$lang>.

=cut

sub PrintLegend {
    my ($self, $lang, @fields) = @_;
    my $result = '\item['.$self->GetGenName().'] ';
    my @desc;
    foreach my $field (@fields) {
	if (exists $self->{$field}) {
	    my $res = $lang->PrintField($field, $self->{$field});
	    if (length($res)>0) {
		push @desc, $res;
	    }
	}
    }
    $result .= join ("; ",@desc);
    $result .= ".\n";
    #
    # We print only the nodes, for which there is an information
    #
    if (scalar @desc) {
	return $result;
    }
    return;
}



####################################################################
#    THE END                                                       #
####################################################################


=pod

=back

=head1 ENVIRONMENT

The calling program should define B<$main::DEBUG> and set it to 0
or 1.


=head1 SEE ALSO

pedigree(1), Pedigree(3)

=head1  AUTHOR

Boris Veytsman, Leila Akhmadeeva, 2006, 2007



=cut

1;