calendrier.py

Created by antarctus

Created on February 26, 2022

3.5 KB

Calendrier sur la calculette !
Vous pouvez facilement rajouter des dates dedans, suivez simplement les instructions écrits après des dièses dans le script.
Pour ce qui veulent plus de personnalisation, remontez dans le haut du script, vous pouvez changer les couleurs du programme de manière très simple !


from kandinsky import *
from ion import *
from time import *

BG=(255,)*3#(50,)*3     #(255,)*3
C1=(0,)*3#(255,)*3   #(0,)*3
C2=(255,100,0)#(255,0,255)#(255,100,0)

drawed=False

mounth_names=[None,"Janvier","Fe"+chr(769)+"vrier","Mars","Avril","Mai","Juin","Juillet","Aou"+chr(770)+"t","Septembre","Octobre","Novembre","De"+chr(769)+"cembre"]

def get_week_day(day,mounth,years):
  c=(14-mounth)//12
  a=years-c
  m=mounth+12*c-2
  j=[6,0,1,2,3,4,5][(day+a+a//4-a//100+a//400+(31*m)//12)%7]
  return j


def get_mounth_lenght(mounth,years):
  return [None,31,28+(years%4==0 and years%400!=0),31,30,31,30,31,31,30,31,30,31][mounth]

def draw_day(day,mounth,years,selected=False):
  global drawed
  if drawed and selected:
    fill_rect(0,195,320,27,BG)
    drawed=False
  important=False
  for event in events:
    l_event=event[1].split("/")
    if (l_event[0] in [str(day),"{:0>2}".format(str(day)),"**"]) and (l_event[1] in [str(mounth),"{:0>2}".format(str(mounth)),"**"]) and (l_event[2] in [str(years),"****"]):
      important=True
      if selected:
        draw_string(event[0],20,198,C2,BG)
        drawed=True
  wd=get_week_day(day,mounth,years)
  x=43+wd*33
  y=65+(day-wd-2)//7*25
  if selected:
    fill_rect(x,y,30,25,C2)
    fill_rect(x+2,y+2,26,21,BG)
  else:
    fill_rect(x,y,30,25,BG)
  if important:
    draw_string("{:0>2}".format(day),x+5,y+3,C2,BG)
  else:
    draw_string("{:0>2}".format(day),x+5,y+3,C1,BG)


def draw_mounth(mounth,years,selected=0):
  fill_rect(0,0,320,222,BG)
  draw_string("{:^20}".format(mounth_names[mounth]+" "+str(years)),60,0,C1,BG)
  for i in range(8):
    fill_rect(40+i*33,20,3,175,C1)
  for i in range(7):
    draw_string(["Lu","Ma","Me","Je","Ve","Sa","Di"][i],48+i*33,23,(200,)*3,BG)
  for i in range(get_mounth_lenght(mounth,years)):
    draw_day(i+1,mounth,years,(i+1)==selected)


def start():
  selected=1
  mounth,years=1,2022
  draw_mounth(mounth,years,selected)
  while not keydown(KEY_EXE):
    while not (keydown(KEY_RIGHT) or keydown(KEY_LEFT) or keydown(KEY_UP) or keydown(KEY_DOWN) or keydown(KEY_EXE)):
      pass
    if keydown(KEY_UP):
      draw_day(selected,mounth,years,False)
      selected-=7
    elif keydown(KEY_DOWN):
      draw_day(selected,mounth,years,False)
      selected+=7
    if keydown(KEY_LEFT):
      draw_day(selected,mounth,years,False)
      selected-=1
    elif keydown(KEY_RIGHT):
      draw_day(selected,mounth,years,False)
      selected+=1
    if selected>get_mounth_lenght(mounth,years):
      selected%=get_mounth_lenght(mounth,years)
      mounth+=1
      if mounth>12:
        mounth=1
        years+=1
      draw_mounth(mounth,years,selected)
    if selected<1:
      mounth-=1
      if mounth<1:
        mounth=12
        years-=1
      selected=(selected-1)%get_mounth_lenght(mounth,years)+1
      draw_mounth(mounth,years,selected)
    draw_day(selected,mounth,years,True)
    sleep(0.1)

#Pour les interresses, les "+chr(xxx)+"
#permette d'avoir des accents.
#"e"+chr(768) => accent aigu
#"e"+chr(769) => accent grave
#+770 => accent circonflexe
#776 => tremas

# == Vous pouvez changer les  ==
# == couleurs au tout debut ! ==

events=[
("Pre"+chr(769)+"sidentielle 2022","24/4/2022"),
("Nouvelle anne"+chr(769)+"e","1/1/****"),
("Fe"+chr(770)+"te du travail","1/5/****"),
("Paix 1945","5/5/****"),
("Jour des morts","1/11/****"),
("Armistice","11/11/****"),
("Noe"+chr(776)+"l","25/12/****"),
#Ajouter votre propre date !
#("Nom","jj/mm/aaaa"),
#Ne pas oublier les guillemets et la virgule.
#Mettez ** ou ***** pour avoir dans tout les cas !

]
start()