-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcal.dpr
526 lines (491 loc) · 15.9 KB
/
cal.dpr
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
{ }
{ File: cal.dpr }
{ Function: Prints simple calendar. }
{ Language: Delphi 2009 }
{ Author: Rudy Velthuis }
{ Copyright: (c) 2008 Rudy Velthuis }
{ }
{ Note: The Console unit can be downloaded from }
{ http://rvelthuis.de/zips/console.zip }
{ }
{ CAL - Print out month calendar }
{ }
{ Synopsis }
{ }
{ cal [-13msyeh?] [[month] year] }
{ }
{ The CAL utility displays a simple calendar. }
{ The options are as follows: }
{ }
{ -1 Print one month only (default). }
{ }
{ -3 Print the previous month, the current month, and the }
{ next month all on one row. }
{ }
{ -m Print a calendar where Monday is the first day of the }
{ week, as opposed to Sunday. }
{ }
{ -s Print a calendar where Sunday is the first day of the }
{ week (default). }
{ }
{ -y Display a calendar for the current year. }
{ }
{ -e Use English month and day names. }
{ }
{ -h, -? Display this help. }
{ }
{ A single parameter specifies the year (1 - 9999) to be displayed; }
{ note the year must be fully specified: "cal 89" will not display }
{ a calendar for 1989. Two parameters denote the month and year; }
{ the month is a number between 1 and 12. }
{ }
{ A year starts on Jan 1. }
{ }
{ License and disclaimer: }
{ }
{ Redistribution and use in source and binary forms, with or without }
{ modification, are permitted provided that the following conditions are }
{ met: }
{ }
{ * Redistributions of source code must retain the above copyright }
{ notice, this list of conditions and the following disclaimer. }
{ * 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. }
{ * Neither the name of Rudy Velthuis nor the names of any contributors }
{ of this software may be used to endorse or promote products derived }
{ from this software without specific prior written permission. }
{ }
{ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER 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 COPYRIGHT }
{ OWNER 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. }
{ }
program cal;
{$APPTYPE CONSOLE}
uses
System.SysUtils,
System.DateUtils,
Winapi.Windows;
var
Month: Integer = High(Word);
Year: Integer = High(Word);
CurrentDay: Word;
CurrentMonth: Word;
CurrentYear: Word;
ThreeMonths: Boolean = False;
MondayFirst: Boolean = False;
FullYear: Boolean = False;
English: Boolean = False;
ShowToday: Boolean = False;
var
// Both arrays initialized to English names.
MonthNames: array[Low(FormatSettings.LongMonthNames)..High(FormatSettings.LongMonthNames)] of string = (
'January', 'February', 'March', 'April', 'May', 'June',
'July', 'August', 'September', 'October', 'November', 'December');
DayNames: array[Low(FormatSettings.ShortDayNames)..High(FormatSettings.ShortDayNames)] of string = (
'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa');
resourcestring
HelpText =
'CAL - Print out month calendar'#13#10 +
#13#10 +
'Synopsis'#13#10 +
#13#10 +
' cal [-13msyeh?] [[month] year]'#13#10 +
#13#10 +
'The CAL utility displays a simple calendar.'#13#10 +
'The options are as follows:'#13#10 +
#13#10 +
' -1 Print one month only (default).'#13#10 +
#13#10 +
' -3 Print the previous month, the current month, and the next month'#13#10 +
' on one row.'#13#10 +
#13#10 +
' -m Print a calendar where Monday is the first day of the week, as'#13#10 +
' opposed to Sunday.'#13#10 +
#13#10 +
' -s Print a calendar where Sunday is the first day of the week (default).'#13#10 +
#13#10 +
' -y Display a calendar for the current year.'#13#10 +
#13#10 +
' -e Use English month and day names.'#13#10 +
#13#10 +
' -h, -? Display this help.'#13#10 +
#13#10 +
' A single parameter specifies the year (1 - 9999) to be displayed; note'#13#10 +
' the year must be fully specified: "cal 89" will not display a calendar'#13#10 +
' for 1989 or 2089. Two parameters denote the month and year; the month is'#13#10 +
' a number between 1 and 12.'#13#10 +
#13#10 +
' A year starts on Jan 1.';
// Halts with error number.
procedure Error;
begin
Halt(2);
end;
// Gets Oem version of string.
function OemString(const S: string): AnsiString;
var
Ansi: AnsiString;
AnsiBuffer: array[0..255] of AnsiChar;
begin
Ansi := AnsiString(S);
if AnsiToOem(PAnsiChar(Ansi), AnsiBuffer) then
Result := AnsiBuffer
else
Result := Ansi;
end;
// Prints help text.
procedure Help;
begin
Writeln(HelpText);
end;
// Decodes command line parameters.
procedure DecodeParams;
var
I: Integer;
Param: string;
CurrentDate: TDateTime;
Nums: array[1..2] of Integer;
NumIndex: Integer;
// Decodes parameter that starts with digit.
procedure DecodeNumber(const AParam: string);
var
Num: Integer;
begin
if TryStrToInt(AParam, Num) then
begin
Inc(NumIndex);
if NumIndex > 2 then
NumIndex := 2;
Nums[NumIndex] := Num;
end
else
Error;
end;
// Decodes parameter that starts with - or ?.
procedure DecodeOption(const AParam: string);
begin
if Length(AParam) > 1 then
begin
case AParam[2] of
'H', 'h', '?': // help
begin
Help;
Halt(1);
end;
'1':
begin
ThreeMonths := False; // default
FullYear := False;
end;
'3':
begin
ThreeMonths := True;
FullYear := False;
end;
's', 'S':
MondayFirst := False; // default
'm', 'M':
MondayFirst := True;
'e', 'E':
English := True;
'y', 'Y':
begin
FullYear := True;
ThreeMonths := False;
end;
end;
end
else
begin
Help;
Halt(1);
end;
end;
begin
CurrentDate := Now;
DecodeDate(CurrentDate, CurrentYear, CurrentMonth, CurrentDay);
NumIndex := 0;
for I := 1 to ParamCount do
begin
Param := ParamStr(I);
case Param[1] of
'-', '/':
DecodeOption(Param);
'0'..'9':
DecodeNumber(Param);
end;
end;
case NumIndex of
0:
begin
Month := CurrentMonth;
Year := CurrentYear;
end;
1:
begin
FullYear := True;
ThreeMonths := False;
Month := 1;
Year := Nums[1];
end;
2:
begin
Month := Nums[1];
Year := Nums[2];
end;
else
Month := CurrentMonth;
Year := CurrentYear;
end;
if Month > 12 then
Month := CurrentMonth;
if Year > 9999 then
Year := 9999;
if not FullYear then
ShowToday := True;
end;
// Increments month. Ensures that after December follows January of next year.
procedure IncMonth(var AMonth, AYear: Integer);
begin
Inc(AMonth);
if (AMonth > 12) then
begin
AMonth := 1;
Inc(AYear);
end;
end;
// Decrements month. Ensures that before January comes December of previous year.
procedure DecMonth(var AMonth, AYear: Integer);
begin
Dec(AMonth);
if (AMonth = 0) then
begin
AMonth := 12;
Dec(AYear);
end;
end;
// Prints name of month (and year, depending on options) centered above month.
procedure PrintMonthName(AMonth, AYear: Integer);
var
Name: AnsiString;
Left, Right: Integer;
begin
Name := OemString(MonthNames[AMonth]);
if FullYear then
begin
Right := 20 - Length(Name);
Left := Right - Right div 2;
Right := Right - Left;
end
else
begin
Right := 19 - Length(Name) - Length(IntToStr(Year));
Left := Right div 2;
Right := Right - Left;
end;
Write('': Left, Name);
if not FullYear then
Write(' ', AYear);
Write('': Right);
end;
// Prints one or more month names (and years) in one line, depending on options.
procedure PrintMonthNames(AMonth, AYear: Integer);
var
M: Integer;
N: Integer;
begin
if ThreeMonths or FullYear then
N := 3
else
N := 1;
for M := 1 to N do
begin
PrintMonthName(AMonth, AYear);
if M <> N then
begin
Write(' ');
IncMonth(AMonth, AYear);
end;
end;
Writeln;
end;
// Prints one Su-Sa strip (or Mo-Su, depending on options).
procedure PrintDayStrip;
var
D: Integer;
begin
if MondayFirst then
begin
for D := 2 to 7 do
Write(DayNames[D], ' ');
Write(DayNames[1], ' ');
end
else
for D := 1 to 7 do
Write(DayNames[D], ' ');
end;
// Prints one or more day strips, depending on options.
procedure PrintDayStrips(Month, Year: Integer);
var
M, N: Integer;
begin
if ThreeMonths or FullYear then
N := 3
else
N := 1;
for M := 1 to N do
begin
PrintDayStrip;
if M <> N then
Write(' ');
end;
Writeln;
end;
// Finds weekday of first day of month.
function WeekDayOfFirst(Month, Year: Word): Integer;
var
D: TDateTime;
begin
D := EncodeDate(Year, Month, 1);
Result := DayOfTheWeek(D);
end;
// Swaps fore- and background colors on screen
procedure ReverseColor;
var
Info: TConsoleScreenBufferInfo;
begin
if GetConsoleScreenBufferInfo(TTextRec(Output).Handle, Info) then
begin
SetConsoleTextAttribute(TTextRec(Output).Handle,
((Info.wAttributes and $0F) shl 4) or ((Info.wAttributes and $F0) shr 4));
end;
end;
// Prints one of more monthly calendars, depending on options.
procedure PrintMonths(NumMonths, AMonth, AYear: Integer);
var
M, D: Integer;
CurDay: array[1..3] of Integer;
LastDay: array[1..3] of Integer;
Finished: array[1..3] of Boolean;
AllFinished: Boolean;
StartMonth, StartYear: Integer;
begin
PrintMonthNames(AMonth, AYear);
PrintDayStrips(AMonth, AYear);
StartMonth := AMonth;
StartYear := AYear;
for M := 1 to NumMonths do
begin
CurDay[M] := 1 - WeekDayOfFirst(AMonth, AYear);
if MondayFirst then
CurDay[M] := CurDay[M] + 1;
// Avoid empty line.
if CurDay[M] = -6 then
CurDay[M] := 1;
LastDay[M] := DaysInAMonth(AYear, AMonth);
Finished[M] := False;
IncMonth(AMonth, AYear);
end;
repeat
AMonth := StartMonth;
AYear := StartYear;
for M := 1 to NumMonths do
begin
for D := 1 to 7 do
begin
// Highlight today
if (CurDay[M] = CurrentDay) and
(AMonth = CurrentMonth) and
(AYear = CurrentYear) then
begin
ReverseColor;
Write(CurDay[M]: 2);
ReverseColor;
end
else if (CurDay[M] > 0) and (CurDay[M] <= LastDay[M]) then
Write(CurDay[M]: 2)
else
Write(' ');
if D <> 7 then
Write(' ');
Inc(CurDay[M]);
end;
if CurDay[M] > LastDay[M] then
Finished[M] := True;
if M <> NumMonths then
Write(' ');
IncMonth(AMonth, AYear);
end;
Writeln;
AllFinished := True;
for M := 1 to NumMonths do
AllFinished := AllFinished and Finished[M];
until AllFinished;
end;
// Uses local names, if required (default).
procedure HandleNames;
var
I: Integer;
begin
if not English then
begin
// Copy localized names to our arrays.
for I := Low(FormatSettings.LongMonthNames) to High(FormatSettings.LongMonthNames) do
MonthNames[I] := FormatSettings.LongMonthNames[I];
for I := Low(FormatSettings.ShortDayNames) to High(FormatSettings.ShortDayNames) do
DayNames[I] := FormatSettings.ShortDayNames[I];
end;
end;
// Prints calendar depending on options.
procedure PrintCalendar;
var
Q: Integer;
Margin: Integer;
begin
HandleNames;
if ThreeMonths then
begin
// Print previous month, month and next month.
DecMonth(Month, Year);
PrintMonths(3, Month, Year);
end
else if FullYear then
begin
// Center year at top
Margin := 66 - Length(IntToStr(Year));
Writeln('': Margin div 2, Year);
Writeln;
// Print 4 rows of 3 months each
Month := 1;
for Q := 1 to 4 do
begin
PrintMonths(3, Month, Year);
if Q <> 4 then
begin
Writeln;
Inc(Month, 3);
end;
end;
end
else
// Print one month
PrintMonths(1, Month, Year);
end;
begin
try
DecodeParams;
PrintCalendar;
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.