home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / System / calendar.pyc (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2005-11-09  |  8.9 KB  |  276 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Calendar printing functions
  5.  
  6. Note when comparing these calendars to the ones printed by cal(1): By
  7. default, these calendars have Monday as the first day of the week, and
  8. Sunday as the last (the European convention). Use setfirstweekday() to
  9. set the first day of the week (0=Monday, 6=Sunday).'''
  10. import datetime
  11. __all__ = [
  12.     'error',
  13.     'setfirstweekday',
  14.     'firstweekday',
  15.     'isleap',
  16.     'leapdays',
  17.     'weekday',
  18.     'monthrange',
  19.     'monthcalendar',
  20.     'prmonth',
  21.     'month',
  22.     'prcal',
  23.     'calendar',
  24.     'timegm',
  25.     'month_name',
  26.     'month_abbr',
  27.     'day_name',
  28.     'day_abbr']
  29. error = ValueError
  30. January = 1
  31. February = 2
  32. mdays = [
  33.     0,
  34.     31,
  35.     28,
  36.     31,
  37.     30,
  38.     31,
  39.     30,
  40.     31,
  41.     31,
  42.     30,
  43.     31,
  44.     30,
  45.     31]
  46.  
  47. class _localized_month:
  48.     _months = [ datetime.date(2001, i + 1, 1).strftime for i in range(12) ]
  49.     _months.insert(0, (lambda x: ''))
  50.     
  51.     def __init__(self, format):
  52.         self.format = format
  53.  
  54.     
  55.     def __getitem__(self, i):
  56.         funcs = self._months[i]
  57.  
  58.     
  59.     def __len__(self):
  60.         return 13
  61.  
  62.  
  63.  
  64. class _localized_day:
  65.     _days = [ datetime.date(2001, 1, i + 1).strftime for i in range(7) ]
  66.     
  67.     def __init__(self, format):
  68.         self.format = format
  69.  
  70.     
  71.     def __getitem__(self, i):
  72.         funcs = self._days[i]
  73.  
  74.     
  75.     def __len__(self):
  76.         return 7
  77.  
  78.  
  79. day_name = _localized_day('%A')
  80. day_abbr = _localized_day('%a')
  81. month_name = _localized_month('%B')
  82. month_abbr = _localized_month('%b')
  83. (MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY) = range(7)
  84. _firstweekday = 0
  85.  
  86. def firstweekday():
  87.     return _firstweekday
  88.  
  89.  
  90. def setfirstweekday(weekday):
  91.     '''Set weekday (Monday=0, Sunday=6) to start each week.'''
  92.     global _firstweekday
  93.     if weekday <= weekday:
  94.         pass
  95.     elif not weekday <= SUNDAY:
  96.         raise ValueError, 'bad weekday number; must be 0 (Monday) to 6 (Sunday)'
  97.     
  98.     _firstweekday = weekday
  99.  
  100.  
  101. def isleap(year):
  102.     '''Return 1 for leap years, 0 for non-leap years.'''
  103.     if not year % 4 == 0 and year % 100 != 0:
  104.         pass
  105.     return year % 400 == 0
  106.  
  107.  
  108. def leapdays(y1, y2):
  109.     '''Return number of leap years in range [y1, y2).
  110.        Assume y1 <= y2.'''
  111.     y1 -= 1
  112.     y2 -= 1
  113.     return (y2 // 4 - y1 // 4 - y2 // 100 - y1 // 100) + (y2 // 400 - y1 // 400)
  114.  
  115.  
  116. def weekday(year, month, day):
  117.     '''Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12),
  118.        day (1-31).'''
  119.     return datetime.date(year, month, day).weekday()
  120.  
  121.  
  122. def monthrange(year, month):
  123.     '''Return weekday (0-6 ~ Mon-Sun) and number of days (28-31) for
  124.        year, month.'''
  125.     if month <= month:
  126.         pass
  127.     elif not month <= 12:
  128.         raise ValueError, 'bad month number'
  129.     
  130.     day1 = weekday(year, month, 1)
  131.     if month == February:
  132.         pass
  133.     ndays = mdays[month] + isleap(year)
  134.     return (day1, ndays)
  135.  
  136.  
  137. def monthcalendar(year, month):
  138.     """Return a matrix representing a month's calendar.
  139.        Each row represents a week; days outside this month are zero."""
  140.     (day1, ndays) = monthrange(year, month)
  141.     rows = []
  142.     r7 = range(7)
  143.     day = ((_firstweekday - day1) + 6) % 7 - 5
  144.     while day <= ndays:
  145.         row = [
  146.             0,
  147.             0,
  148.             0,
  149.             0,
  150.             0,
  151.             0,
  152.             0]
  153.         for i in r7:
  154.             if day <= day:
  155.                 pass
  156.             elif day <= ndays:
  157.                 row[i] = day
  158.             
  159.             day = day + 1
  160.         
  161.         rows.append(row)
  162.         continue
  163.         1
  164.     return rows
  165.  
  166.  
  167. def prweek(theweek, width):
  168.     '''Print a single week (no newline).'''
  169.     print week(theweek, width),
  170.  
  171.  
  172. def week(theweek, width):
  173.     '''Returns a single week in a string (no newline).'''
  174.     days = []
  175.     for day in theweek:
  176.         if day == 0:
  177.             s = ''
  178.         else:
  179.             s = '%2i' % day
  180.         days.append(s.center(width))
  181.     
  182.     return ' '.join(days)
  183.  
  184.  
  185. def weekheader(width):
  186.     '''Return a header for a week.'''
  187.     if width >= 9:
  188.         names = day_name
  189.     else:
  190.         names = day_abbr
  191.     days = []
  192.     for i in range(_firstweekday, _firstweekday + 7):
  193.         days.append(names[i % 7][:width].center(width))
  194.     
  195.     return ' '.join(days)
  196.  
  197.  
  198. def prmonth(theyear, themonth, w = 0, l = 0):
  199.     """Print a month's calendar."""
  200.     print month(theyear, themonth, w, l),
  201.  
  202.  
  203. def month(theyear, themonth, w = 0, l = 0):
  204.     """Return a month's calendar string (multi-line)."""
  205.     w = max(2, w)
  206.     l = max(1, l)
  207.     s = ('%s %r' % (month_name[themonth], theyear)).center(7 * (w + 1) - 1).rstrip() + '\n' * l + weekheader(w).rstrip() + '\n' * l
  208.     for aweek in monthcalendar(theyear, themonth):
  209.         s = s + week(aweek, w).rstrip() + '\n' * l
  210.     
  211.     return s[:-l] + '\n'
  212.  
  213. _colwidth = 7 * 3 - 1
  214. _spacing = 6
  215.  
  216. def format3c(a, b, c, colwidth = _colwidth, spacing = _spacing):
  217.     '''Prints 3-column formatting for year calendars'''
  218.     print format3cstring(a, b, c, colwidth, spacing)
  219.  
  220.  
  221. def format3cstring(a, b, c, colwidth = _colwidth, spacing = _spacing):
  222.     '''Returns a string formatted from 3 strings, centered within 3 columns.'''
  223.     return a.center(colwidth) + ' ' * spacing + b.center(colwidth) + ' ' * spacing + c.center(colwidth)
  224.  
  225.  
  226. def prcal(year, w = 0, l = 0, c = _spacing):
  227.     """Print a year's calendar."""
  228.     print calendar(year, w, l, c),
  229.  
  230.  
  231. def calendar(year, w = 0, l = 0, c = _spacing):
  232.     """Returns a year's calendar as a multi-line string."""
  233.     w = max(2, w)
  234.     l = max(1, l)
  235.     c = max(2, c)
  236.     colwidth = (w + 1) * 7 - 1
  237.     s = repr(year).center(colwidth * 3 + c * 2).rstrip() + '\n' * l
  238.     header = weekheader(w)
  239.     header = format3cstring(header, header, header, colwidth, c).rstrip()
  240.     for q in range(January, January + 12, 3):
  241.         s = s + '\n' * l + format3cstring(month_name[q], month_name[q + 1], month_name[q + 2], colwidth, c).rstrip() + '\n' * l + header + '\n' * l
  242.         data = []
  243.         height = 0
  244.         for amonth in range(q, q + 3):
  245.             cal = monthcalendar(year, amonth)
  246.             if len(cal) > height:
  247.                 height = len(cal)
  248.             
  249.             data.append(cal)
  250.         
  251.         for i in range(height):
  252.             weeks = []
  253.             for cal in data:
  254.                 if i >= len(cal):
  255.                     weeks.append('')
  256.                     continue
  257.                 weeks.append(week(cal[i], w))
  258.             
  259.             s = s + format3cstring(weeks[0], weeks[1], weeks[2], colwidth, c).rstrip() + '\n' * l
  260.         
  261.     
  262.     return s[:-l] + '\n'
  263.  
  264. EPOCH = 1970
  265. _EPOCH_ORD = datetime.date(EPOCH, 1, 1).toordinal()
  266.  
  267. def timegm(tuple):
  268.     '''Unrelated but handy function to calculate Unix timestamp from GMT.'''
  269.     (year, month, day, hour, minute, second) = tuple[:6]
  270.     days = (datetime.date(year, month, 1).toordinal() - _EPOCH_ORD) + day - 1
  271.     hours = days * 24 + hour
  272.     minutes = hours * 60 + minute
  273.     seconds = minutes * 60 + second
  274.     return seconds
  275.  
  276.