Module:BassaridianCalendar

From MicrasWiki
Revision as of 03:15, 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.",
            "Light is the pathfinder to wisdom.",
            "The sun rises, igniting the soul."
        },
        Eosena = {
            "Every dawn brings new beginnings.",
            "Hope rises with the sun.",
            "Embrace renewal with every sunrise.",
            "Dawn whispers the secrets of tomorrow."
        },
        -- Similar proverb lists for each zodiac
        Micrasha = {"Balance guides us to harmony.", "Justice shines in the balanced mind."},
        Pyreska = {"Creativity burns like fire.", "Passion is a flame within us."},
        Indomin = {"Strength is in adaptability.", "Duality balances existence."},
        Chrysen = {"Ambition shapes the world.", "Wealth fuels the courageous."},
        Thalassian = {"The tides carry wisdom.", "The ocean whispers mysteries."},
        Nephelia = {"Dreams sculpt reality.", "Imagination bridges the infinite."},
        Glinaeus = {"Cycles renew life.", "Time heals and restores."},
        Noctien = {"In darkness lies discovery.", "Shadows reveal the hidden."},
        Opsithia = {"Abundance springs from the soil.", "Harvest is the earth's gift."},
        Stygian = {"Transformation is life's truth.", "Rebirth comes with courage."},
        Faunian = {"Nature nurtures the soul.", "Harmony grows in balance."},
        Silenian = {"Revelry renews the spirit.", "Celebration is life's pulse."},
        Catosien = {"Order shapes greatness.", "Discipline builds legacies."}
    }

    -- Proverb rotation
    local zodiacProverbs = proverbs[zodiac]
    local daySeed = ((totalDaysElapsed - 1) % #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