Calculadora de fecha de reinos olvidados

18

En un esfuerzo por nivelar el campo de juego entre los idiomas con bibliotecas de fechas incorporadas y las que no tienen, trabajemos con un calendario ficticio. Los Reinos Olvidados son una ( ¿la? ) Configuración de campaña para Dungeons & Dragons. Por supuesto, cada uno tiene su propio calendario.

El calendario de harptos

Convenientemente, un año en Forgotten Realms también tiene 365 días. Además, el calendario también tiene 12 meses. Sin embargo, aquí es donde se pone interesante. Cada mes dura exactamente 30 días. Los 5 días restantes son días festivos que caen entre los meses. Estos son los meses y días festivos en orden (con días festivos sangrados):

1   Deepwinter
        Midwinter
2   The Claw of Winter
3   The Claw of the Sunsets
4   The Claw of the Storms
        Greengrass
5   The Melting
6   The Time of Flowers
7   Summertide
        Midsummer
        [Shieldmeet]
8   Highsun
9   The Fading
        Highharvestide
10  Leaffall
11  The Rotting
        The Feast of the Moon
12  The Drawing Down

Tenga en cuenta que he insertado un sexto día festivo entre paréntesis. Este es el día bisiesto que solo ocurre cada cuatro años (sí, eso es todo, no hay travesuras adicionales con los siglos).

Nota al margen sobre los nombres de los meses: cada mes tiene un nombre formal y uno común. Los anteriores son los nombres comunes. Los elegí porque creo que permiten una compresión más interesante.

Hay varias numeraciones de los años, pero la más extendida es Dalereckoning , abreviada a DR . (Además, cada año tiene uno o más nombres , pero no nos vamos a molestar con eso).

Los componentes de una fecha deben estar separados por una coma y un espacio. Con todo, una fecha válida podría verse así:

4, The Melting, 1491 DR

o

Shieldmeet, 1464 DR

Tenga en cuenta que no hay un número de día para las vacaciones. (Supongo 4th of The Meltingque sería mejor para los días de los meses, pero no quiero arrastrar números ordinales a esto).

Nota al pie: Se me ocurrió esto cuando xnor se quejó de que cada desafío de fecha necesita el cálculo del año bisiesto. He fallado en eliminarlo por completo, pero al menos es solo un módulo en este calendario.

El reto

Dada una fecha válida del Calendario de Harptos, así como un número entero D, muestra la fecha Ddías después. Tenga en cuenta que Dpuede ser negativo, en cuyo caso debe devolver la fecha Ddías antes.

Puede escribir un programa o función, tomando la entrada a través de STDIN (o la alternativa más cercana), argumento de línea de comando o argumento de función y generando el resultado a través de STDOUT (o la alternativa más cercana), el valor de retorno de la función o el parámetro de función (out).

Puede suponer que el año es positivo y menos de 2000.

Aplican reglas estándar de .

Casos de prueba

La primera docena de casos de prueba deberían probar todos los casos límite que rodean las vacaciones y los años bisiestos. El siguiente conjunto es para probar que abarca varios años de trabajo y todos los meses y días festivos se han implementado. La segunda mitad son todos los mismos casos de prueba nuevamente pero con compensaciones negativas.

"30, Summertide, 1491 DR" 1                 => "Midsummer, 1491 DR"
"30, Summertide, 1491 DR" 2                 => "1, Highsun, 1491 DR"
"Midsummer, 1491 DR" 1                      => "1, Highsun, 1491 DR"
"30, Summertide, 1492 DR" 1                 => "Midsummer, 1492 DR"
"30, Summertide, 1492 DR" 2                 => "Shieldmeet, 1492 DR"
"30, Summertide, 1492 DR" 3                 => "1, Highsun, 1492 DR"
"Midsummer, 1492 DR" 1                      => "Shieldmeet, 1492 DR"
"Midsummer, 1492 DR" 2                      => "1, Highsun, 1492 DR"
"Shieldmeet, 1492 DR" 1                     => "1, Highsun, 1492 DR"
"1, Highsun, 1490 DR" 365                   => "1, Highsun, 1491 DR"
"1, Highsun, 1491 DR" 365                   => "Shieldmeet, 1492 DR"
"Shieldmeet, 1492 DR" 365                   => "Midsummer, 1493 DR"
"Midsummer, 1493 DR" 365                    => "Midsummer, 1494 DR"
"Shieldmeet, 1500 DR" 365                   => "Midsummer, 1501 DR"

"14, Deepwinter, 654 DR" 5069               => "The Feast of the Moon, 667 DR"
"Midwinter, 17 DR" 7897                     => "15, The Fading, 38 DR"
"3, The Claw of Winter, 1000 DR" 813        => "25, The Claw of the Storms, 1002 DR"
"Greengrass, 5 DR" 26246                    => "9, The Claw of the Sunsets, 77 DR"
"30, The Melting, 321 DR" 394               => "29, The Time of Flowers, 322 DR"
"17, The Time of Flowers, 867 DR" 13579     => "20, Highsun, 904 DR"
"Highharvestide, 1814 DR" 456               => "30, The Drawing Down, 1815 DR"
"23, The Rotting, 1814 DR" 3616             => "16, Leaffall, 1824 DR"
"1, Deepwinter, 1 DR" 730499                => "30, The Drawing Down, 2000 DR"

"Midsummer, 1491 DR" -1                     => "30, Summertide, 1491 DR"
"1, Highsun, 1491 DR" -2                    => "30, Summertide, 1491 DR"
"1, Highsun, 1491 DR" -1                    => "Midsummer, 1491 DR"
"Midsummer, 1492 DR" -1                     => "30, Summertide, 1492 DR"
"Shieldmeet, 1492 DR" -2                    => "30, Summertide, 1492 DR"
"1, Highsun, 1492 DR" -3                    => "30, Summertide, 1492 DR"
"Shieldmeet, 1492 DR" -1                    => "Midsummer, 1492 DR"
"1, Highsun, 1492 DR" -2                    => "Midsummer, 1492 DR"
"1, Highsun, 1492 DR" -1                    => "Shieldmeet, 1492 DR"
"1, Highsun, 1491 DR" -365                  => "1, Highsun, 1490 DR"
"Shieldmeet, 1492 DR" -365                  => "1, Highsun, 1491 DR"
"Midsummer, 1493 DR" -365                   => "Shieldmeet, 1492 DR"
"Midsummer, 1494 DR" -365                   => "Midsummer, 1493 DR"
"Midsummer, 1501 DR" -365                   => "Shieldmeet, 1500 DR"

"The Feast of the Moon, 667 DR" -5069       => "14, Deepwinter, 654 DR"
"15, The Fading, 38 DR" -7897               => "Midwinter, 17 DR"
"25, The Claw of the Storms, 1002 DR" -813  => "3, The Claw of Winter, 1000 DR"
"9, The Claw of the Sunsets, 77 DR" -26246  => "Greengrass, 5 DR"
"29, The Time of Flowers, 322 DR" -394      => "30, The Melting, 321 DR"
"20, Highsun, 904 DR" -13579                => "17, The Time of Flowers, 867 DR"
"30, The Drawing Down, 1815 DR" -456        => "Highharvestide, 1814 DR"
"16, Leaffall, 1824 DR" -3616               => "23, The Rotting, 1814 DR"
"30, The Drawing Down, 2000 DR" -730499     => "1, Deepwinter, 1 DR"
Martin Ender
fuente
1
DragonLance es otra configuración importante de campaña de D&D. No recuerdo mucho sobre su calendario, excepto por sus tres lunas, cuyas órbitas se explicaron en detalle en algún libro de referencia.
CJ Dennis

Respuestas:

5

Ruby, 543 523 521 498 511 509 bytes

Para alentar más respuestas a esta pregunta, voy a publicar una versión Ruby de mi respuesta de Python, ya que pensé que sería más corta. Esta respuesta es más corta pero no mucho. ¿ Puedes hacerlo mejor?

Editar: Gracias a Martin Büttner y su sugerencia aquí .

Editar: Golfé la lista de "número de días en un mes" considerablemente abajo.

Editar: Si bien jugar al golf por la forma en que manejé d[10]=r%4<1?1:0a d[10]=0**(r%4)un byte, me di cuenta de que había introducido un error mientras golf abajo d, el número de la lista de días, por lo que tuvo del Escudo 30 días por accidente. Y así, el recuento de bytes ha vuelto a subir. También editaré la respuesta de Python para corregir este error allí.

Editar: Olvidé que las funciones no necesitan ser nombradas en esta pregunta.

->s,n{x=s[0..-4].split(", ");x=x[2]?x:[1,*x];t=(["Deepwinter,Midwinter","Winter","Sunsets","the Storms,Greengrass,The Melting,The Time of Flowers,Summertide,Midsummer,Shieldmeet,Highsun,The Fading,Highharvestide,Leaffall,The Rotting,The Feast of the Moon,The Drawing Down"]*',The Claw of ').split(?,);p,q,r=x[0].to_i+n,t.index(x[1]),x[2].to_i;d=[30,1,30,30]*4+[1,30];d[10]=0**(r%4);(a=p<1?1:-1;q=(q-a)%18;p+=a*d[a<0?q-1:q];r-=a*0**q;d[10]=0**(r%4))until(1..d[q])===p;z=d[q]<2?[t[q],r]:[p,t[q],r];z*", "+" DR"}

Sin golf:

def h(s,n)
  x=s[0..-4].split(", ")
  x=x[2]?x:[1,*x]
  t=["Deepwinter,Midwinter","Winter","Sunsets","the Storms,Greengrass,The Melting,The Time of Flowers,Summertide,Midsummer,Shieldmeet,Highsun,The Fading,Highharvestide,Leaffall,The Rotting,The Feast of the Moon,The Drawing Down"]
  t=t*',The Claw of '           # turns the above array into a string with "Claw"s inserted
  t=t.split(?,)                 # then splits that string back up again by ","
  p=x[0].to_i+n
  q=t.index(x[1])
  r=x[2].to_i
  d=[30,1,30,30]*4+[1,30]
  d[10]=0**(r%4)
  until(1..d[q])===p
    a=p<1?1:-1
    q=(q-a)%18
    p+=a*d[a<0?q-1:q]
    r-=a*0**q
    d[10]=0**(r%4)
  end
  z=d[q]<2?[t[q],r]:[p,t[q],r]  # putting z=[t[q],r] on another line saved me no bytes
  z*", "+" DR"
end
Sherlock9
fuente
5

Python 3, 712 652 636 567 563 552 550 548 529 540 bytes

Por fin, encontré tiempo para escribir una respuesta a esta excelente pregunta. Todavía no es muy interesante (la lista de nombres de meses y la cantidad de días es particularmente notoria en este caso , y el hecho de que el manejo negativo Drequiere un ciclo while separado ), pero al menos es una respuesta.

Editar: arreglando un error

def h(s,n):
 x=s[:-3].split(", ");x=[1]*(len(x)<3)+x;t="Deepwinter,Midwinter,The Claw of Winter,The Claw of the Sunsets,The Claw of the Storms,Greengrass,The Melting,The Time of Flowers,Summertide,Midsummer,Shieldmeet,Highsun,The Fading,Highharvestide,Leaffall,The Rotting,The Feast of the Moon,The Drawing Down".split(",");p,q,r=int(x[0])+n,t.index(x[1]),int(x[2]);d=[30,1,30,30]*4+[1,30];d[10]=r%4<1
 while p>d[q]or p<1:a=[-1,1][p<1];q=(q-a)%18;p+=a*d[q-(a<0)];r-=a*0**q;d[10]=r%4<1
 return', '.join([str(p)]*(d[q]>2)+[t[q],str(r)])+" DR"

Sin golf:

def harptos(date, num):
    t = "Deepwinter,Midwinter,The Claw of Winter,The Claw of the Sunsets,The Claw of the Storms,Greengrass,The Melting,The Time of Flowers,Summertide,Midsummer,Shieldmeet,Highsun,The Fading,Highharvestide,Leaffall,The Rotting,The Feast of the Moon,The Drawing Down"
    t = t.split(",")        # split up the names of the months
    x = date[:-3]           # removes " DR"
    x = x.split(", ")
    if len(x) < 3:
        x = [1] + x         # if we have two items (holiday), append a "day of the month"
    p = int(x[0]) + num     # initialize the "date" by adding num to it
    q = t.index(x[1])
    r = int(x[2])
    d=[30,1,30,30]*4+[1,30] # all the month lengths
    d[10] = r%4 < 1         # leap year toggle
    while p > d[q]:         # while the "date" > the number of days in the current month
        p -= d[q]           # decrement by number of days in current month
        q = (q+1)%18        # increment month
        r += 0**q           # increment year if the incremented month == the first month
        d[10] = r%4 < 1     # leap year toggle
    while p < 1:            # while the "date" is negative
        q = (q-1)%18        # decrement month first
        p += d[q]           # add the number of days in the decremented month
        r -= 0**q            # decrement year if the decremented month == the first month
        d[10] = r%4 < 1     # leap year toggle
    m = [t[q],str(r)]       # start the result array
    if d[q] > 2:
        m = [str(p)] + m    # if the month is NOT a holiday, add the day
    return ", ".join(m) + " DR"
Sherlock9
fuente