-
Notifications
You must be signed in to change notification settings - Fork 3
/
phoon.c
574 lines (537 loc) · 21.6 KB
/
phoon.c
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
/* phoon - show the phase of the moon
**
** ver date who remarks
** --- ------- --- -------------------------------------------------------------
** 03A 01apr95 JP Updated to use date_parse.
** 02A 07jun88 JP Changed the phase calculation to use code from John Walker's
** "moontool", increasing accuracy tremendously.
** Got rid of SINFORCOS, since Apple has probably fixed A/UX
** by now.
** 01I 03feb88 JP Added 32 lines.
** 01H 14jan88 JP Added 22 lines.
** 01G 05dec87 JP Added random sabotage to generate Hubert.
** Defeated text stuff for moons 28 or larger.
** 01F 13oct87 JP Added pumpkin19 in October. Added hubert29.
** 01E 14may87 JP Added #ifdef SINFORCOS to handle broken A/UX library.
** 01D 02apr87 JP Added 21 lines.
** 01C 26jan87 JP Added backgrounds for 29 and 18 lines.
** 01B 28dec86 JP Added -l flag, and backgrounds for 19 and 24 lines.
** 01A 08nov86 JP Translated from the ratfor version of 12nov85, which itself
** was translated from the Pascal version of 05apr79.
**
** Copyright (C) 1986,1987,1988,1995 by Jef Poskanzer <[email protected]>.
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
** 1. Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** 2. Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
**
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
** SUCH DAMAGE.
*/
#include <stdio.h>
#include <math.h>
#include <time.h>
#include <string.h>
#include "date_parse.h"
#include "astro.h"
/* Global defines and declarations. */
#define SECSPERMINUTE 60
#define SECSPERHOUR (60 * SECSPERMINUTE)
#define SECSPERDAY (24 * SECSPERHOUR)
#define PI 3.1415926535897932384626433
#define DEFAULTNUMLINES 23
#define QUARTERLITLEN 16
#define QUARTERLITLENPLUSONE 17
/* If you change the aspect ratio, the canned backgrounds won't work. */
#define ASPECTRATIO 0.5
static void
putseconds( long secs )
{
long days, hours, minutes;
days = secs / SECSPERDAY;
secs = secs - days * SECSPERDAY;
hours = secs / SECSPERHOUR;
secs = secs - hours * SECSPERHOUR;
minutes = secs / SECSPERMINUTE;
secs = secs - minutes * SECSPERMINUTE;
printf( "%ld %2ld:%02ld:%02ld", days, hours, minutes, secs );
}
static void
putmoon( time_t t, int numlines, char* atfiller )
{
static char background18[18][37] = {
" .----------. ",
" .--' o . `--. ",
" .'@ @@@@@@ O . . `. ",
" .'@@ @@@@@@@@ @@@@ . `. ",
" .' . @@@@@@@@ @@@@@@ . `. ",
" / @@ o @@@@@@. @@@@ O @\\ ",
" |@@@@ @@@@@@ @@| ",
" / @@@@@ `.-. . @@@@@@@@ . @@\\",
" | @@@@ --`-' . o @@@@@@@ |",
" |@ @@ @@@@@@ @@@ |",
" \\ @@ @ . () @@ @@@@@ /",
" | @ @@@ @@@ @@@ | ",
" \\ . @@ @\\ . . @@ o / ",
" `. @@@@ _\\ / . o .' ",
" `. @@ ()--- .' ",
" `. / | . o .' ",
" `--./ . .--' ",
" `----------' "};
static char background19[19][39] = {
" .----------. ",
" .--' o . `--. ",
" .-'@ @@@@@@ O . . `-. ",
" .' @@ @@@@@@@@ @@@@ . `. ",
" / . @@@@@@@@ @@@@@@ . \\ ",
" /@@ o @@@@@@. @@@@ O @\\ ",
" /@@@@ @@@@@@ @@@\\ ",
" . @@@@@ `.-./ . @@@@@@@@ . @@ .",
" | @@@@ --`-' . @@@@@@@ |",
" |@ @@ ` o @@@@@@ @@@@ |",
" | @@ o @@ @@@@@@ |",
" ` . @ @@ () @@@ @@@@ '",
" \\ @@ @@@@ . @@ . o / ",
" \\ @@@@ @@\\ . o / ",
" \\ . @@ _\\ / . .-. / ",
" `. . ()--- `-' .' ",
" `-. ./ | . o .-' ",
" `--./ . .--' ",
" `----------' "};
static char pumpkin19[19][39] = {
" @@@@@@@@@@@@ ",
" @@@@@@@@@@@@@@@@@@@@ ",
" @@@@@@@@@@@@@@@@@@@@@@@@@@ ",
" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
" @@@@ @@@@@@@@ @@@@ ",
" @@@@@@ @@@@@@@@@@ @@@@@@ ",
" @@@@@@@@ @@@@@@@@@@@@ @@@@@@@@ ",
" @@@@@@@@@@ @@@@@@ @@@@@@ @@@@@@@@@@",
" @@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@",
" @@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@",
" @@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@",
" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
" @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
" @@@@@ @@ @@@@@ ",
" @@@@@@ @@@@@@ ",
" @@@@@@@@ @@@@@@@@ ",
" @@@@@@@@@ @@@@@@@@@ ",
" @@@@@@@@@@@@@@@@@@@@ ",
" @@@@@@@@@@@@ "};
static char background21[21][43] = {
" .----------. ",
" .---' O . . `---. ",
" .-'@ @@@@@@ . @@@@@ `-. ",
" .'@@ @@@@@@@@@ @@@@@@@ . `. ",
" / o @@@@@@@@@ @@@@@@@ . \\ ",
" /@ o @@@@@@@@@. @@@@@@@ O \\ ",
" /@@@ . @@@@@@o @@@@@@@@@@ @@\\ ",
" /@@@@@ . @@@@@@@@@@@@@ o @@@\\ ",
" .@@@@@ O `.-./ . @@@@@@@@@@@@ @@ .",
" | @@@@ --`-' o @@@@@@@@ @@@@ |",
" |@ @@@ ` o . @@ . @@@@@@@ |",
" | @@ @ .-. @@@ @@@@@@@ |",
" ` . @ @@@ `-' . @@@@ @@@@ o '",
" \\ @@ @@@@@ . @@ . / ",
" \\ @@@@ @\\@@ / . O . o . / ",
" \\o @@ \\ \\ / . . / ",
" \\ . .\\.-.___ . . .-. / ",
" `. `-' `-'.' ",
" `-. o / | o O . .-' ",
" `---. . . .---' ",
" `----------' "};
static char background22[22][45] = {
" .------------. ",
" .--' o . . `--. ",
" .-' . O . . `-. ",
" .'@ @@@@@@@ . @@@@@ `. ",
" .'@@@ @@@@@@@@@@@ @@@@@@@ . `. ",
" / o @@@@@@@@@@@ @@@@@@@ . \\ ",
" /@@ o @@@@@@@@@@@. @@@@@@@ O \\ ",
" /@@@@ . @@@@@@@o @@@@@@@@@@ @@@\\ ",
" |@@@@@ . @@@@@@@@@@@@ @@@@| ",
" /@@@@@ O `.-./ . @@@@@@@@@@@ @@ \\",
" | @@@@ --`-' o . @@@@@@@ @@@@ |",
" |@ @@@ @@ @ ` o .-. @@ . @@@@@@ |",
" \\ @@@ `-' . @@@ @@@@@@ /",
" | . @ @@ @@@@@ . @@@@ @@@ o | ",
" \\ @@@@ @\\@@ / . O @@ . . / ",
" \\ o @@ \\ \\ / . . o / ",
" \\ . .\\.-.___ . . . .-. / ",
" `. `-' `-' .' ",
" `. o / | o O . .' ",
" `-. / . . .-' ",
" `--. . .--' ",
" `------------' "};
static char background23[23][47] = {
" .------------. ",
" .--' o . . `--. ",
" .-' . O . . `-. ",
" .-'@ @@@@@@@ . @@@@@ `-. ",
" /@@@ @@@@@@@@@@@ @@@@@@@ . \\ ",
" ./ o @@@@@@@@@@@ @@@@@@@ . \\. ",
" /@@ o @@@@@@@@@@@. @@@@@@@ O \\ ",
" /@@@@ . @@@@@@@o @@@@@@@@@@ @@@ \\ ",
" |@@@@@ . @@@@@@@@@@@@@ o @@@@| ",
" /@@@@@ O `.-./ . @@@@@@@@@@@@ @@ \\",
" | @@@@ --`-' o @@@@@@@@ @@@@ |",
" |@ @@@ ` o . @@ . @@@@@@@ |",
" | @@ @ .-. @@@ @@@@@@@ |",
" \\ . @ @@@ `-' . @@@@ @@@@ o /",
" | @@ @@@@@ . @@ . | ",
" \\ @@@@ @\\@@ / . O . o . / ",
" \\ o @@ \\ \\ / . . / ",
" `\\ . .\\.-.___ . . .-. /' ",
" \\ `-' `-' / ",
" `-. o / | o O . .-' ",
" `-. / . . .-' ",
" `--. . .--' ",
" `------------' "};
static char background24[24][49] = {
" .------------. ",
" .---' o . . `---. ",
" .-' . O . . `-. ",
" .'@ @@@@@@@ . @@@@@ `. ",
" .'@@ @@@@@@@@@@@ @@@@@@@ . `. ",
" / o @@@@@@@@@@@ @@@@@@@ . \\ ",
" /@ o @@@@@@@@@@@. @@@@@@@ O \\ ",
" /@@@ . @@@@@@@o @@@@@@@@@@ @@@ \\ ",
" /@@@@@ . @@@@@@@@@@@@@ o @@@@ \\ ",
" |@@@@ O `.-./ . @@@@@@@@@@@@ @@ | ",
" / @@@@ --`-' o @@@@@@@@ @@@@ \\",
" |@ @@@ @ ` . @@ @@@@@@@ |",
" | @ o @ @@@@@@@ |",
" \\ @@ .-. @@@ @@@@ o /",
" | . @ @@@ `-' . @@@@ | ",
" \\ @@ @@@@@ . @@ . / ",
" \\ @@@@ @\\@@ / . O . o . / ",
" \\ o @@ \\ \\ / . . / ",
" \\ . .\\.-.___ . . .-. / ",
" `. `-' `-' .' ",
" `. o / | o O . .' ",
" `-. / . . .-' ",
" `---. . .---' ",
" `------------' "};
static char background29[29][59] = {
" .--------------. ",
" .---' o . `---. ",
" .-' . O . . `-. ",
" .-' @@@@@@ . `-. ",
" .'@@ @@@@@@@@@@@ @@@@@@@ . `. ",
" .'@@@ @@@@@@@@@@@@@@ @@@@@@@@@ `. ",
" /@@@ o @@@@@@@@@@@@@@ @@@@@@@@@ O \\ ",
" / @@@@@@@@@@@@@@ @ @@@@@@@@@ @@ . \\ ",
" /@ o @@@@@@@@@@@ . @@ @@@@@@@@@@@ @@ \\ ",
" /@@@ . @@@@@@ o @ @@@@@@@@@@@@@ o @@@@ \\ ",
" /@@@@@ @ . @@@@@@@@@@@@@@ @@@@@ \\ ",
" |@@@@@ O `.-./ . . @@@@@@@@@@@@@ @@@ | ",
" / @@@@@ --`-' o @@@@@@@@@@@ @@@ . \\",
" |@ @@@@ . @ @ ` @ @@ . @@@@@@ |",
" | @@ o @@ . @@@@@@ |",
" | . @ @ @ o @@ o @@@@@@. |",
" \\ @ @ @ .-. @@@@ @@@ /",
" | @ @ @ `-' . @@@@ . . | ",
" \\ . o @ @@@@ . @@ . . / ",
" \\ @@@ @@@@@@ . o / ",
" \\ @@@@@ @@\\@@ / O . / ",
" \\ o @@@ \\ \\ / __ . . .--. / ",
" \\ . . \\.-.--- `--' / ",
" `. `-' . .' ",
" `. o / | ` O . .' ",
" `-. / | o .-' ",
" `-. . . .-' ",
" `---. . .---' ",
" `--------------' "};
static char hubert29[29][59] = {
" .--------------. ",
" .---' o . `---. ",
" .-' . O . . `-. ",
" .-' @@@@@@ . `-. ",
" .'@@ @@@@@@@@@@@ @@@@@@@ . `. ",
" .'@@@ @@@@@ ___====-_ _-====___ @ `. ",
" /@@@ o _--~~~#####// \\\\#####~~~--_ O \\ ",
" / _-~##########// ( ) \\\\##########~-_ . \\ ",
" /@ o -############// :\\^^/: \\\\############- @@ \\ ",
" /@@@ _~############// (@::@) \\\\############~_ @@ \\ ",
" /@@@ ~#############(( \\\\// ))#############~ @@ \\ ",
" |@@ -###############\\\\ (oo) //###############- @ | ",
" / @ -#################\\\\ / \"\" \\ //#################- . \\",
" |@ -###################\\\\/ \\//###################- |",
" | _#/:##########/\\######( /\\ )######/\\##########:\\#_ |",
" | :/ :#/\\#/\\#/\\/ \\#/\\##\\ : : /##/\\#/ \\/\\#/\\#/\\#: \\: |",
" \\ \" :/ V V \" V \\#\\: : : :/#/ V \" V V \\: \" /",
" | @ \" \" \" \" / : : : : \\ \" \" \" \" | ",
" \\ . o @ @@@@ ( : : : : ) @@ . . / ",
" \\ @@@ @@@@ __\\ : : : : /__ o / ",
" \\ @@@@@ @@\\@(vvv(VVV)(VVV)vvv) . / ",
" \\ o @@@ \\ \\ / __ . . .--. / ",
" \\ . . \\.-.--- `--' / ",
" `. `-' . .' ",
" `. o / | ` O . .' ",
" `-. / | o .-' ",
" `-. . . .-' ",
" `---. . .---' ",
" `--------------' "};
static char background32[32][65] = {
" .--------------. ",
" .----' o . `----. ",
" .-' . O . . `-. ",
" .-' @@@@@@ . `-. ",
" .'@ @@@@@@@@@@@ @@@@@@@@ . `. ",
" .'@@ @@@@@@@@@@@@@@ @@@@@@@@@@ `. ",
" .'@@@ o @@@@@@@@@@@@@@ @@@@@@@@@@ o `. ",
" /@@@ @@@@@@@@@@@@@@ @ @@@@@@@@@@ @@ . \\ ",
" / @@@@@@@@@@@ . @@ @@@@@@@@@@@@ @@ \\ ",
" /@ o . @@@@@@ o @ @@@@@@@@@@@@@@ o @@@@ \\ ",
" /@@@ . @@@@@@@@@@@@@@@ @@@@@ \\ ",
" /@@@@@ @ . @@@@@@@@@@@@@@ @@@ \\ ",
" |@@@@@ o `.-./ . @@@@@@@@@@@@ @@@ . | ",
" / @@@@@ __`-' o @@ . @@@@@@ \\",
" |@ @@@@ . @ ` @ @@ . @@@@@@ |",
" | @@ @ o @@@ o @@@@@@. |",
" | @ @@@@@ @@@ |",
" | . . @ @ @ o @@@@@ . . |",
" \\ @ .-. . @@@ . . /",
" | @ @ @ @ `-' . / ",
" \\ . @ @ . o / ",
" \\ o @@@@ . . / ",
" \\ @@@ @@@@@@ . o / ",
" \\ @@@@@ @@\\@@ / o . / ",
" \\ o @@@ \\ \\ / ___ . . .--. / ",
" `. . \\.-.--- `--' .' ",
" `. `-' . .' ",
" `. o / | O . .' ",
" `-. / | o .-' ",
" `-. . . .-' ",
" `----. . .----' ",
" `--------------' "};
static char qlits[4][16] = {
"New Moon + ",
"First Quarter +",
"Full Moon + ",
"Last Quarter + ",
};
static char nqlits[4][16] = {
"New Moon - ",
"First Quarter -",
"Full Moon - ",
"Last Quarter - ",
};
struct tm* tmP;
double jd, pctphase, angphase, cphase, aom, cdist, cangdia, csund, csuang;
double phases[2], which[2];
long clocknow;
int atflrlen, atflridx, numcols, lin, col, midlin;
double mcap, yrad, xrad, y, xright, xleft;
int colright, colleft;
char c;
/* Find the length of the atfiller string. */
atflrlen = strlen( atfiller );
/* Figure out the phase. */
jd = unix_to_julian( t );
pctphase = phase( jd, &cphase, &aom, &cdist, &cangdia, &csund, &csuang );
angphase = pctphase * 2.0 * PI;
mcap = -cos( angphase );
/* Get now for use as a random number. */
(void) time( &clocknow );
/* Randomly cheat and generate Hubert. */
if ( clocknow % 13 == 3 && cphase > 0.8 )
{
numlines = 29;
clocknow = 3;
}
/* Figure out how big the moon is. */
yrad = numlines / 2.0;
xrad = yrad / ASPECTRATIO;
numcols = xrad * 2;
/* Figure out some other random stuff. */
midlin = numlines / 2;
phasehunt2( jd, phases, which );
/* Now output the moon, a slice at a time. */
atflridx = 0;
for ( lin = 0; lin < numlines; lin = lin + 1 )
{
/* Compute the edges of this slice. */
y = lin + 0.5 - yrad;
xright = xrad * sqrt( 1.0 - ( y * y ) / ( yrad * yrad ) );
xleft = -xright;
if ( angphase >= 0.0 && angphase < PI )
xleft = mcap * xleft;
else
xright = mcap * xright;
colleft = (int) (xrad + 0.5) + (int) (xleft + 0.5);
colright = (int) (xrad + 0.5) + (int) (xright + 0.5);
/* Now output the slice. */
for ( col = 0; col < colleft; ++col )
putchar( ' ' );
for ( ; col <= colright; ++col )
{
switch ( numlines )
{
case 18:
c = background18[lin][col];
break;
case 19:
tmP = localtime( &t );
if ( tmP->tm_mon == 9 &&
clocknow % ( 33 - tmP->tm_mday ) == 1 )
c = pumpkin19[lin][col];
else
c = background19[lin][col];
break;
case 21:
c = background21[lin][col];
break;
case 22:
c = background22[lin][col];
break;
case 23:
c = background23[lin][col];
break;
case 24:
c = background24[lin][col];
break;
case 29:
if ( clocknow % 23 == 3 )
c = hubert29[lin][col];
else
c = background29[lin][col];
break;
case 32:
c = background32[lin][col];
break;
default:
c = '@';
}
if ( c != '@' )
putchar( c );
else
{
putchar( atfiller[atflridx] );
atflridx = ( atflridx + 1 ) % atflrlen;
}
}
#ifdef notdef
for ( ; col <= numcols; ++col )
putchar( ' ' );
#endif /* notdef */
if ( numlines <= 27 )
{
/* Output the end-of-line information, if any. */
if ( lin == midlin - 2 )
{
fputs( "\t ", stdout );
fputs( qlits[(int) (which[0] * 4.0 + 0.001)], stdout );
}
else if ( lin == midlin - 1)
{
fputs( "\t ", stdout );
putseconds( (int) ( ( jd - phases[0] ) * SECSPERDAY ) );
}
else if ( lin == midlin )
{
fputs( "\t ", stdout );
fputs( nqlits[(int) (which[1] * 4.0 + 0.001)], stdout );
}
else if ( lin == midlin + 1 )
{
fputs( "\t ", stdout );
putseconds( (int) ( ( phases[1] - jd ) * SECSPERDAY ) );
}
}
putchar( '\n' );
}
}
/* Main program. */
int
main( int argc, char** argv )
{
time_t t;
char buf[100];
int numlines, argn;
char* usage = "usage: %s [-l <lines>] [<date/time>]\n";
/* Parge args. */
argn = 1;
/* Check for -l flag. */
numlines = DEFAULTNUMLINES;
if ( argc - argn >= 1 )
{
if ( argv[argn][0] == '-' )
{
if ( argv[argn][1] != 'l' || argv[argn][2] != '\0' )
{
fprintf( stderr, usage, argv[0] );
exit( 1 );
}
else
{
if ( argc - argn < 2 )
{
fprintf( stderr, usage, argv[0] );
exit( 1 );
}
if ( sscanf( argv[argn + 1], "%d", &numlines ) != 1 )
{
fprintf( stderr, usage, argv[0] );
exit( 1 );
}
argn += 2;
}
}
}
/* Figure out what date and time to use. */
if ( argc - argn == 0 )
{
/* No arguments present - use the current date and time. */
t = time( (time_t) 0 );
}
else if ( argc - argn == 1 || argc - argn == 2 || argc - argn == 3 )
{
/* One, two, or three args - use them. */
strcpy( buf, argv[argn] );
if ( argc - argn > 1 )
{
strcat( buf, " " );
strcat( buf, argv[argn + 1] );
if ( argc - argn > 2 )
{
strcat( buf, " " );
strcat( buf, argv[argn + 2] );
}
}
t = date_parse( buf );
if ( t <= 0 )
{
fprintf( stderr, "illegal date/time: %s\n", buf );
exit( 1 );
}
}
else
{
/* Too many args! */
fprintf( stderr, usage, argv[0] );
exit( 1 );
}
/* Pseudo-randomly decide what the moon is made of, and print it. */
if ( t % 17 == 3 )
putmoon( t, numlines, "GREENCHEESE" );
else
putmoon( t, numlines, "@" );
/* All done. */
exit( 0 );
}