File: drep2.ll

package info (click to toggle)
lifelines 3.0.61-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 12,564 kB
  • ctags: 6,721
  • sloc: ansic: 59,805; xml: 8,960; sh: 4,306; makefile: 861; yacc: 601; perl: 170; sed: 16
file content (231 lines) | stat: -rwxr-xr-x 6,206 bytes parent folder | download | duplicates (7)
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
/*
 * @progname       drep2.ll
 * @version        2.1
 * @author         Robert Simms
 * @category       
 * @output         Text
 * @description

   Produces an indented report on an individual's families and all
   descendant families.  Details on individuals include NOTE lines, once.
   Line wrapping is done with indention maintained.

   At the beginning of main() is provided the means to easily change
   page width, tab size, and left margin.

   Written by: Robert Simms, 16 Feb 2000
               rsimms@math.clemson.edu, http://www.math.clemson.edu/~rsimms
   This is based on indiv3.ll, also by Robert Simms.

   Version 2.1:  30 May 2001, fixed the concatenation of multiple notes
                 so that two spaces are inserted before every note after
                 the first.  Thanks to M.W. Poirier for pointing this out.
   ______________
   TODO: Clean up trailing spaces in output.

*/

global(page_width)
global(tab_size)
global(left_margin)
global(gen)
global(genlim)
global(iparent)
global(ichild)

proc main() {
   set(page_width, 72)
   set(tab_size, 3)
   set(left_margin, 1)

   getindi(person)
   getintmsg (genlim, "Maximum number of generations")
   report(person, genlim)

   /* NOTE: this footer may need modifying if the page_width is changed */
   concat(" ______________________________ This report was produced on ",
      stddate(gettoday()), " _______", nl())
}

func report(person, genlim) {
	list(toPrint)
	list(toScan)
	set(gen, 1)
	set(iparent, 1)
        set(ichild, 2)
	enqueue(toPrint, person)
	while( and( le(gen,genlim), gt(length(toPrint), 0) ) ) {
		">> Generation " d(gen) nl()
		while(i1, dequeue(toPrint)) {
			nl() doFams(i1) nl()
			enqueue(toScan, i1)
		}
		while(i1, dequeue(toScan)) {
			families(i1, fp, sp, fn) {
				children(fp, i_x, n_x) {
					if(gt(nfamilies(i_x), 0)) {
						enqueue(toPrint, i_x)
					}
				}
			}
		}
		set(gen, add(gen, 1))
		if(gt(length(toPrint), 0)) {
			nl()
		}
	}
}

func doFams(indi) {
   set(x, 0)
   set(skip, left_margin)
   set(x, outfam(indi, skip, x))
}

func outfam(indi, skip, x) {
   set(x, outpers(indi, skip, x, 1, 1))
   if(gt(nfamilies(indi), 0)) {
      set(skip, add(skip, tab_size))
      families(indi, fam, sp, num) {
         set(x, 0)
         set(x, outline(concat("Family #", d(num)), skip, x))
         if(date(marriage(fam))) {
            set(s, concat(", ", date(marriage(fam))))
         }
         if(nestr("", place(marriage(fam)))) {
            set(s, concat(s, ", ", place(marriage(fam))))
         }
         set(x, outline(s, skip, x))
         set(x, 0)
         set(skip, add(skip, tab_size))
         set(x, outpers(sp, skip, x, 1, 0))
         if(gt(nchildren(fam), 0)) {
            set(x, outline("Children", skip, x))
            set(x, 0)
            set(skip, add(skip, tab_size))
            children(fam, child, no) {
               set(x, outpers(child, skip, x, or(not(nfamilies(child)),eq(gen,genlim)), 0 ))
            }
            set(skip, sub(skip, tab_size))
         }
         set(skip, sub(skip, tab_size))
      }
   }
   return(x)
}

func outpers(indi, skip, x, note_flag, parent) {
   if(indi) {
      print(name(indi), nl())
      set(x, 0)
      if(note_flag) {
         if(parent) {
            set(s, concat(d(iparent), ". ", name(indi)))
            set(iparent, add(iparent, 1))
         } else {
            set(s, name(indi))
         }
      } else {
         if(and(lt(gen,genlim), gt(nfamilies(indi), 0))) {
            set(s, concat(name(indi), " <",d(ichild),">" ))
            set(ichild, add(ichild, 1))
         } else {
            set(s, name(indi))
         }
      }
      set(x, outline(s, skip, x))
      set(skip, add(skip, tab_size))
      set(s, "")
      if(birth(indi)) {
         set(s, concat(", b. ", long(birth(indi))))
      }
      if(death(indi)) {
         set(s, concat(s, ", d. ", long(death(indi))))
      }
      if(burial(indi)) {
         set(s, concat(s, ", buried at ", place(burial(indi))))
      }
      set(s, concat(s, ". "))
      set(x, outline(s, skip, x))
      if(note_flag) {
         set(s, "")
         set(note_separator, "")
         fornotes(inode(indi), note) {
            set(s, concat(s, note_separator, note))
            set(note_separator, "  ")
         }
         set(x, outtxt(s, skip, x))
         set(skip, sub(skip, tab_size))
      }
   } else {
      print("_____ _____", nl())
      set(x, 0)
      set(x, outline("_____ _____", skip, x))
   }
   set(x, 0)
   return(x)
}

func outtxt(txt, skip, x) {
   set(cr, index(txt, nl(), 1))
   while(ne(cr, 0)) {
      set(txt, save(txt))
      set(txt2, concat(substring(txt, 1, sub(cr, 1)), " "))
      set(x, outline(txt2, skip, x))
      set(txt, substring(txt, add(cr, 1), strlen(txt)))
      set(cr, index(txt, nl(), 1))
   }
   if(gt(strlen(txt), 0)) {
      set(x, outline(txt, skip, x))
   }
   return(x)
}

func outline(text, skip, x) {
   if(eq(x, 0)) {
      col(add(skip, 1))
      set(x, skip)
   }
   set(max, sub(page_width, x))
   if(gt(strlen(text), max)) {
      set(space, breakpoint(text, max))
      if(eq(space, 0)) {
         if(eq(x, skip)) {
            set(text, strsave(text))
            substring(text, 1, sub(max, 1)) "-"
            set(x, 0)
            set(text, substring(text, max, strlen(text)))
            set(x, outline(text, skip, x))
         } else {
            set(x, 0)
            set(x, outline(text, skip, x))
         }
      } else {              /* space gt 0 */
         set(text, strsave(text))
         substring(text, 1, sub(space, 1))
         set(x, 0)
         set(text, strsave(substring(text, add(space, 1), strlen(text))))
         while(eqstr(" ", substring(text, 1, 1))) { /* strip leading spaces */
            set(text, strsave(substring(text, 2, strlen(text))))
         }
         set(x, outline(text, skip, x))
      }
   } else {
      text
      set(x, add(x, strlen(text)))
   }
   return(x)
}

func breakpoint(text, max) {
   set(space, 0)
   set(occ, 1)
   set(next, index(text, " ", occ))
   incr(occ)
   while ( and(le(next, add(max, 1)), ne (next, 0))) {
      set(space, next)
      set(next, index(text, " ", occ))
      incr(occ)
   }
   return(space)
}