Module:BassaridianCalendar

From MicrasWiki
Revision as of 03:13, 11 December 2024 by NewZimiaGov (talk | contribs)
Jump to navigationJump to search

Documentation for this module may be created at Module:BassaridianCalendar/doc

local p = {}

function p.getCurrentDate()
    -- Constants
    local startDate = os.time({year = 1999, month = 8, day = 6}) -- August 6, 1999
    local secondsInDay = 24 * 60 * 60 -- Number of seconds in a day
    local daysPerYear = 183

    -- Current date
    local currentDate = os.time()
    local totalDaysElapsed = math.floor((currentDate - startDate) / secondsInDay)

    -- Calculate PSSC year and day
    local yearFraction = totalDaysElapsed / daysPerYear
    local psscYear = math.floor(yearFraction)
    local dayOfYear = math.floor((yearFraction - psscYear) * daysPerYear) + 1

    -- Determine month, day within the month, and zodiac
    local month, dayInMonth, zodiac
    if dayOfYear <= 61 then
        month = "Atosiel"
        dayInMonth = dayOfYear
        if dayInMonth <= 12 then
            zodiac = "Atosien"
        elseif dayInMonth <= 24 then
            zodiac = "Eosena"
        elseif dayInMonth <= 36 then
            zodiac = "Micrasha"
        elseif dayInMonth <= 48 then
            zodiac = "Pyreska"
        else
            zodiac = "Indomin"
        end
    elseif dayOfYear <= 122 then
        month = "Thalassiel"
        dayInMonth = dayOfYear - 61
        if dayInMonth <= 12 then
            zodiac = "Chrysen"
        elseif dayInMonth <= 24 then
            zodiac = "Thalassian"
        elseif dayInMonth <= 36 then
            zodiac = "Nephelia"
        elseif dayInMonth <= 48 then
            zodiac = "Glinaeus"
        else
            zodiac = "Noctien"
        end
    else
        month = "Opsitheiel"
        dayInMonth = dayOfYear - 122
        if dayInMonth <= 12 then
            zodiac = "Opsithia"
        elseif dayInMonth <= 24 then
            zodiac = "Stygian"
        elseif dayInMonth <= 36 then
            zodiac = "Faunian"
        elseif dayInMonth <= 48 then
            zodiac = "Silenian"
        else
            zodiac = "Catosien"
        end
    end

    -- Proverb lists for each zodiac
    local proverbs = {
        Atosien = {"The light of truth burns brightest in darkness.", "Seek clarity, and you will find purpose."},
        Eosena = {"Every dawn brings new beginnings.", "Hope rises with the sun."},
        Micrasha = {"Balance is the key to wisdom.", "The wise walk the middle path."},
        Pyreska = {"Passion ignites the soul.", "Creativity is the fire of life."},
        Indomin = {"Strength lies in adaptability.", "Resilience shapes destiny."},
        Chrysen = {"Wealth is a tool, not a treasure.", "Prosperity grows from ambition."},
        Thalassian = {"The sea whispers secrets to those who listen.", "Embrace the tides of change."},
        Nephelia = {"Dreams are the seeds of reality.", "Imagination knows no bounds."},
        Glinaeus = {"Cycles are the heartbeat of life.", "Renewal comes with time."},
        Noctien = {"The night reveals what the day conceals.", "Truth lies in the shadows."},
        Opsithia = {"Abundance flows from the earth's bounty.", "Harvest with gratitude."},
        Stygian = {"Transitions are the essence of existence.", "Embrace the flow of change."},
        Faunian = {"Harmony nurtures growth.", "Nature is the great teacher."},
        Silenian = {"Celebrate life's joys.", "Revelry renews the spirit."},
        Catosien = {"Order builds lasting legacies.", "Discipline is the foundation of greatness."}
    }

    -- Select the daily proverb
    local zodiacProverbs = proverbs[zodiac]
    local daySeed = (totalDaysElapsed % #zodiacProverbs) + 1
    local dailyProverb = zodiacProverbs[daySeed]

    -- Event lookup table
    local events = {
        ["Atosiel,6"] = "Bayram al-Nur (Festival of Light)",
        ["Atosiel,18"] = "Chag Or Hadash (Festival of New Light)",
        ["Atosiel,30"] = "Symposion Eirinis (Symposium of Harmony)",
        ["Atosiel,43"] = "Alev Günü (Day of Flame)",
        ["Atosiel,55"] = "Tikkun Tzel (Repair of Shadows)",
        ["Thalassiel,67"] = "Panegyris Chrysou (Golden Gathering)",
        ["Thalassiel,80"] = "Mehtap Dalgası (Moonlit Tide)",
        ["Thalassiel,92"] = "Oneiro Foteino (Dream of Illumination)",
        ["Thalassiel,105"] = "Erev Galgal (Eve of Cycles)",
        ["Thalassiel,115"] = "Leilat al-Kamar (Night of the Moon)",
        ["Opsitheiel,128"] = "Chag Tvuah (Festival of Harvest)",
        ["Opsitheiel,140"] = "Anagenesis Eirmos (Procession of Rebirth)",
        ["Opsitheiel,150"] = "Panagia Therizis (Holy Day of the Reaper)",
        ["Opsitheiel,165"] = "Karnavali Thysias (Carnival of Celebration)",
        ["Opsitheiel,175"] = "Sefar Yashar (Straight Path Celebration)"
    }

    -- Find the event for the current day
    local eventKey = month .. "," .. dayInMonth
    local event = events[eventKey] or "No significant events today."

    -- Return the formatted date with a daily proverb
    return dayOfYear .. ", " .. month .. " (" .. zodiac .. "), " .. psscYear .. " PSSC – " .. event .. " – Proverb: " .. dailyProverb
end

return p