Module:Today/GA: Difference between revisions

From TSP Encyclopedia
Jump to navigation Jump to search
No edit summary
No edit summary
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
------ IMPERIAL GALACTYAN CALENDAR ------
------ IMPERIAL GALACTYAN CALENDAR ------


local M = {}
local CustomCalendar = {}


-- Define the number of months and days in each month
-- Define month names and days per month
local numMonths = 10
local monthNames = {
    "Month 1", "Month 2", "Month 3", "Month 4", "Month 5",
    "Month 6", "Month 7", "Month 8", "Month 9", "Month 10"
}
local daysPerMonth = 59
local daysPerMonth = 59


-- Function to convert Gregorian date to 10-month calendar date
-- Define days in each Gregorian month
function M.convertTo10MonthCalendar(year, month, day)
local daysInMonth = {
    -- Perform calculations here to convert the date
    31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
     local totalDays = (year - 1) * 365 + math.floor((year - 1) / 4) + day
}
     local monthIndex = math.floor((totalDays - 1) / daysPerMonth) + 1
 
     local dayInMonth = (totalDays - 1) % daysPerMonth + 1
-- Function to convert Gregorian date to custom calendar date
function CustomCalendar.convertToCustomCalendar(frame)
     local gregorianYear = tonumber(frame.args[1])
     local gregorianMonth = tonumber(frame.args[2])
     local gregorianDay = tonumber(frame.args[3])
 
    -- Validate input
    if not gregorianYear or not gregorianMonth or not gregorianDay then
        return "Invalid input"
    end
      
      
     return monthIndex, dayInMonth
     -- Conversion logic
end
   
 
     -- Calculate total days passed in Gregorian calendar
-- Function to convert 10-month calendar date back to Gregorian date
     local totalDays = (gregorianYear - 1) * 365 + math.floor((gregorianYear - 1) / 4) -- Basic leap year handling
function M.convertToGregorianCalendar(monthIndex, dayInMonth)
     -- Perform calculations here to convert the date
     local totalDays = (monthIndex - 1) * daysPerMonth + dayInMonth
    local year = math.floor(totalDays / 365) + 1
    local remainingDays = totalDays % 365
      
      
     local leapYear = (year % 4 == 0)
     -- Add days of the months that have passed
     if remainingDays > 59 and not leapYear then
     for i = 1, gregorianMonth - 1 do
         remainingDays = remainingDays + 1
         totalDays = totalDays + daysInMonth[i]
     end
     end
      
      
     local month = math.ceil(remainingDays / 30)
    -- Add remaining days of the current month
     local day = remainingDays % 30
    totalDays = totalDays + gregorianDay
     if day == 0 then
   
        day = 30
    -- Calculate custom calendar year and month
    end
     local customYear = math.floor(totalDays / (10 * daysPerMonth)) + 4749
     local customMonth = math.floor((totalDays - 1) % daysPerMonth) + 1
      
    local customMonthName = monthNames[customMonth]
      
      
     return year, month, day
     return customMonth .. customMonthName .. "\n" .. customYear
end
end


-- Export the functions
return CustomCalendar
return M

Latest revision as of 20:38, 11 August 2023

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

------ IMPERIAL GALACTYAN CALENDAR ------

local CustomCalendar = {}

-- Define month names and days per month
local monthNames = {
    "Month 1", "Month 2", "Month 3", "Month 4", "Month 5",
    "Month 6", "Month 7", "Month 8", "Month 9", "Month 10"
}
local daysPerMonth = 59

-- Define days in each Gregorian month
local daysInMonth = {
    31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
}

-- Function to convert Gregorian date to custom calendar date
function CustomCalendar.convertToCustomCalendar(frame)
    local gregorianYear = tonumber(frame.args[1])
    local gregorianMonth = tonumber(frame.args[2])
    local gregorianDay = tonumber(frame.args[3])

    -- Validate input
    if not gregorianYear or not gregorianMonth or not gregorianDay then
        return "Invalid input"
    end
    
    -- Conversion logic
    
    -- Calculate total days passed in Gregorian calendar
    local totalDays = (gregorianYear - 1) * 365 + math.floor((gregorianYear - 1) / 4)  -- Basic leap year handling
    
    -- Add days of the months that have passed
    for i = 1, gregorianMonth - 1 do
        totalDays = totalDays + daysInMonth[i]
    end
    
    -- Add remaining days of the current month
    totalDays = totalDays + gregorianDay
    
    -- Calculate custom calendar year and month
    local customYear = math.floor(totalDays / (10 * daysPerMonth)) + 4749
    local customMonth = math.floor((totalDays - 1) % daysPerMonth) + 1
    
    local customMonthName = monthNames[customMonth]
    
    return customMonth .. customMonthName .. "\n" .. customYear
end

return CustomCalendar