X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/afeb92b07428059fd3a1022aefa64a1aeba68152..46f3ffd7fdde386f41020171b5733e55a8e64a85:/src/app/globals.py diff --git a/src/app/globals.py b/src/app/globals.py deleted file mode 100755 index ef51d78..0000000 --- a/src/app/globals.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -""" -constantes globales partagées par plusieurs modules. - -$Id$ -$URL$ -""" -from colorsys import hls_to_rgb -from math import floor - -BACKGROUND_LAYER = 0 -FOREGROUND_LAYER = 1 -CURSOR_LAYER = 2 -PLAYING_MODES = {'EASY':0 - ,'NORMAL':1 - ,'ADVANCED':2 - ,'EXPERT':3} - -def hls_to_rgba_8bits(h, l, s, a=1) : - #convert to rgb ranging from 0 to 255 - rgba = [floor(255 * i) for i in hls_to_rgb(h, l, s) + (a,)] - return tuple(rgba) -