* contrib/hbnf/scancode.prg
* contrib/hbnf/vidmode.prg
* contrib/hbnf/miltime.prg
* contrib/hbnf/savearr.prg
* contrib/hbnf/dispmsg.prg
* contrib/hbnf/mouse1.prg
* contrib/hbnf/settime.prg
* contrib/hbnf/page.prg
* contrib/hbnf/pegs.prg
* contrib/hbnf/min2dhm.prg
* contrib/hbnf/dosver.prg
* contrib/hbnf/metaph.prg
* contrib/hbnf/woy.prg
* contrib/hbnf/setdate.prg
* contrib/hbnf/linked.prg
* contrib/hbnf/aredit.prg
* contrib/hbnf/xbox.prg
* contrib/hbnf/ftround.prg
* contrib/hbnf/dectobin.prg
* contrib/hbnf/aemaxlen.prg
* contrib/hbnf/nwlstat.prg
* contrib/hbnf/tempfile.prg
* contrib/hbnf/scregion.prg
* contrib/hbnf/mouse2.prg
* contrib/hbnf/pickday.prg
* contrib/hbnf/datecnfg.prg
* contrib/hbnf/easter.prg
* contrib/hbnf/aeminlen.prg
* contrib/hbnf/pchr.prg
* contrib/hbnf/tbwhile.prg
* contrib/hbnf/calendar.prg
* contrib/hbnf/elapsed.prg
* contrib/hbnf/aading.prg
* examples/hbvpdf/hbvpdf.prg
* examples/hbvpdf/hbvpdft.prg
* examples/gtwvw/tests/prog1.prg
* examples/gtwvw/tests/prog2.prg
* examples/gtwvw/tests/wvwtest9.prg
* examples/gtwvw/tests/ebtest7.prg
* examples/gtwvw/tests/prog0.prg
! eliminated most (if not all) ' = ' operators
some minor compatibility notes added to NF
(NF being buggy by behaving inconsistently
due to _SET_EXACT setting)
97 lines
2.3 KiB
Plaintext
97 lines
2.3 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* File......: easter.prg
|
|
* Author....: Paul Tucker
|
|
* Email.....: <ptucker@sympatico.ca>
|
|
*
|
|
* While I can say that I wrote the program, the algorithm is from Donald
|
|
* Knuth's The Art of Computer Programming, Section 1.3.2. So, the source
|
|
* code is an original work by Paul Tucker and is placed in the public
|
|
* domain
|
|
*
|
|
* Modification history:
|
|
* ---------------------
|
|
*
|
|
* Rev 1.2 15 Aug 1991 23:05:28 GLENN
|
|
* Forest Belt proofread/edited/cleaned up doc
|
|
*
|
|
* Rev 1.1 14 Jun 1991 19:51:42 GLENN
|
|
* Minor edit to file header
|
|
*
|
|
* Rev 1.0 01 Apr 1991 01:01:16 GLENN
|
|
* Nanforum Toolkit
|
|
*
|
|
*/
|
|
|
|
FUNCTION FT_EASTER (nYear)
|
|
local nGold, nCent, nCorx, nCorz, nSunday, nEpact, nMoon,;
|
|
nMonth := 0, nDay := 0
|
|
|
|
IF VALTYPE (nYear) == "C"
|
|
nYear := VAL(nYear)
|
|
ENDIF
|
|
|
|
IF VALTYPE (nYear) == "D"
|
|
nYear := YEAR(nYear)
|
|
ENDIF
|
|
|
|
IF VALTYPE (nYear) == "N"
|
|
IF nYear > 1582
|
|
|
|
* <<nGold>> is Golden number of the year in the 19 year Metonic cycle
|
|
nGold := nYear % 19 + 1
|
|
|
|
* <<nCent>> is Century
|
|
nCent := INT (nYear / 100) + 1
|
|
|
|
* Corrections:
|
|
* <<nCorx>> is the no. of years in which leap-year was dropped in order
|
|
* to keep step with the sun
|
|
nCorx := INT ((3 * nCent) / 4 - 12)
|
|
|
|
* <<nCorz>> is a special correction to synchronize Easter with the moon's
|
|
* orbit.
|
|
nCorz := INT ((8 * nCent + 5) / 25 - 5)
|
|
|
|
* <<nSunday>> Find Sunday
|
|
nSunday := INT ((5 * nYear) / 4 - nCorx - 10)
|
|
|
|
* Set Epact <<nEpact>> (specifies occurance of a full moon)
|
|
nEpact := INT ((11 * nGold + 20 + nCorz - nCorx) % 30)
|
|
|
|
IF nEpact < 0
|
|
nEpact += 30
|
|
ENDIF
|
|
|
|
IF ((nEpact == 25) .AND. (nGold > 11)) .OR. (nEpact == 24)
|
|
++nEpact
|
|
ENDIF
|
|
|
|
* Find full moon - the <<nMoon>>th of MARCH is a "calendar" full moon
|
|
nMoon := 44 - nEpact
|
|
|
|
IF nMoon < 21
|
|
nMoon += 30
|
|
ENDIF
|
|
|
|
* Advance to Sunday
|
|
nMoon := INT (nMoon + 7 - ((nSunday + nMoon) % 7))
|
|
|
|
* Get Month and Day
|
|
IF nMoon > 31
|
|
nMonth := 4
|
|
nDay := nMoon - 31
|
|
ELSE
|
|
nMonth := 3
|
|
nDay := nMoon
|
|
ENDIF
|
|
ENDIF
|
|
ELSE
|
|
nYear := 0
|
|
ENDIF
|
|
|
|
RETURN StoD( Str( nYear,4) + PadL( nMonth, 2, "0" ) + PadL( Int( nDay ), 2, "0" ) )
|