]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/util.py
Reduce the operations in hex_repl for a small performance boost.
[xonotic/xonstat.git] / xonstat / util.py
1 import re
2 from colorsys import rgb_to_hls, hls_to_rgb
3 from cgi import escape as html_escape
4 from datetime import datetime
5
6 # Map of special chars to ascii from Darkplace's console.c.
7 _qfont_table = [
8  '\0', '#',  '#',  '#',  '#',  '.',  '#',  '#',
9  '#',  '\t', '\n', '#',  ' ',  '\r', '.',  '.',
10  '[',  ']',  '0',  '1',  '2',  '3',  '4',  '5',
11  '6',  '7',  '8',  '9',  '.',  '<',  '=',  '>',
12  ' ',  '!',  '"',  '#',  '$',  '%',  '&',  '\'',
13  '(',  ')',  '*',  '+',  ',',  '-',  '.',  '/',
14  '0',  '1',  '2',  '3',  '4',  '5',  '6',  '7',
15  '8',  '9',  ':',  ';',  '<',  '=',  '>',  '?',
16  '@',  'A',  'B',  'C',  'D',  'E',  'F',  'G',
17  'H',  'I',  'J',  'K',  'L',  'M',  'N',  'O',
18  'P',  'Q',  'R',  'S',  'T',  'U',  'V',  'W',
19  'X',  'Y',  'Z',  '[',  '\\', ']',  '^',  '_',
20  '`',  'a',  'b',  'c',  'd',  'e',  'f',  'g',
21  'h',  'i',  'j',  'k',  'l',  'm',  'n',  'o',
22  'p',  'q',  'r',  's',  't',  'u',  'v',  'w',
23  'x',  'y',  'z',  '{',  '|',  '}',  '~',  '<',
24  
25  '<',  '=',  '>',  '#',  '#',  '.',  '#',  '#',
26  '#',  '#',  ' ',  '#',  ' ',  '>',  '.',  '.',
27  '[',  ']',  '0',  '1',  '2',  '3',  '4',  '5',
28  '6',  '7',  '8',  '9',  '.',  '<',  '=',  '>',
29  ' ',  '!',  '"',  '#',  '$',  '%',  '&',  '\'',
30  '(',  ')',  '*',  '+',  ',',  '-',  '.',  '/',
31  '0',  '1',  '2',  '3',  '4',  '5',  '6',  '7',
32  '8',  '9',  ':',  ';',  '<',  '=',  '>',  '?',
33  '@',  'A',  'B',  'C',  'D',  'E',  'F',  'G',
34  'H',  'I',  'J',  'K',  'L',  'M',  'N',  'O',
35  'P',  'Q',  'R',  'S',  'T',  'U',  'V',  'W',
36  'X',  'Y',  'Z',  '[',  '\\', ']',  '^',  '_',
37  '`',  'a',  'b',  'c',  'd',  'e',  'f',  'g',
38  'h',  'i',  'j',  'k',  'l',  'm',  'n',  'o',
39  'p',  'q',  'r',  's',  't',  'u',  'v',  'w',
40  'x',  'y',  'z',  '{',  '|',  '}',  '~',  '<'
41 ]
42
43 # Hex-colored spans for decimal color codes ^0 - ^9
44 _dec_spans = [
45  "<span style='color:#333333'>",
46  "<span style='color:#FF0000'>",
47  "<span style='color:#33FF00'>",
48  "<span style='color:#FFFF00'>",
49  "<span style='color:#3366FF'>",
50  "<span style='color:#33FFFF'>",
51  "<span style='color:#FF3366'>",
52  "<span style='color:#FFFFFF'>",
53  "<span style='color:#999999'>",
54  "<span style='color:#666666'>"
55 ]
56
57 # Color code patterns
58 _all_colors = re.compile(r'\^(\d|x[\dA-Fa-f]{3})')
59 _dec_colors = re.compile(r'\^(\d)')
60 _hex_colors = re.compile(r'\^x([\dA-Fa-f])([\dA-Fa-f])([\dA-Fa-f])')
61
62 # On a light scale of 0 (black) to 1.0 (white)
63 _contrast_threshold = 0.5
64
65
66 def qfont_decode(qstr=''):
67     """ Convert the qfont characters in a string to ascii.
68     """
69     if qstr == None:
70         qstr = ''
71     chars = []
72     for c in qstr:
73         if u'\ue000' <= c <= u'\ue0ff':
74             c = _qfont_table[ord(c) - 0xe000]
75         chars.append(c)
76     return ''.join(chars)
77
78
79 def strip_colors(qstr=''):
80     if qstr == None:
81         qstr = ''
82     return _all_colors.sub('', qstr)
83     
84     
85 def hex_repl(match):
86     """Convert Darkplaces hex color codes to CSS rgb.
87     Brighten colors with HSL light value less than 50%"""
88
89     # Extend hex char to 8 bits and to 0.0-1.0 scale
90     r = int(match.group(0) * 2, 16) / 255.0
91     g = int(match.group(1) * 2, 16) / 255.0
92     b = int(match.group(2) * 2, 16) / 255.0
93
94     # Check if color is too dark
95     hue, light, satur = rgb_to_hls(r, g, b)
96     if light < _contrast_threshold:
97         light = _contrast_threshold
98         r, g, b = hls_to_rgb(hue, light, satur)
99
100     # Convert back to 0-255 scale for css
101     return '<span style="color:rgb(%d,%d,%d)">' % (255 * r, 255 * g, 255 * b)
102
103
104
105 def html_colors(qstr=''):
106     qstr = html_escape(qfont_decode(qstr).replace('^^', '^'))
107     html = _dec_colors.sub(lambda match: _dec_spans[int(match.group(1))], qstr)
108     html = _hex_colors.sub(hex_repl, html)
109     return html + "</span>" * len(_all_colors.findall(qstr))
110
111
112 def page_url(page):
113     return current_route_url(request, page=page, _query=request.GET)
114
115
116 def pretty_date(time=False):
117     """
118     Get a datetime object or a int() Epoch timestamp and return a
119     pretty string like 'an hour ago', 'Yesterday', '3 months ago',
120     'just now', etc
121     """
122     now = datetime.now()
123     if type(time) is int:
124         diff = now - datetime.fromtimestamp(time)
125     elif isinstance(time,datetime):
126         diff = now - time 
127     elif not time:
128         diff = now - now
129     second_diff = diff.seconds
130     day_diff = diff.days
131
132     if day_diff < 0:
133         return ''
134
135     if day_diff == 0:
136         if second_diff < 10:
137             return "just now"
138         if second_diff < 60:
139             return str(second_diff) + " seconds ago"
140         if second_diff < 120:
141             return  "a minute ago"
142         if second_diff < 3600:
143             return str( second_diff / 60 ) + " minutes ago"
144         if second_diff < 7200:
145             return "an hour ago"
146         if second_diff < 86400:
147             return str( second_diff / 3600 ) + " hours ago"
148     if day_diff == 1:
149         return "Yesterday"
150     if day_diff < 7:
151         return str(day_diff) + " days ago"
152     if day_diff < 31:
153         if day_diff/7 == 1:
154             return "a week ago"
155         else:
156             return str(day_diff/7) + " weeks ago"
157     if day_diff < 365:
158         if day_diff/30 == 1:
159             return "a month ago"
160         else:
161             return str(day_diff/30) + " months ago"
162     else:
163         if day_diff/365 == 1:
164             return "a year ago"
165         else:
166             return str(day_diff/365) + " years ago"