summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-02-16 01:23:02 +0100
committerMattias Andrée <maandree@operamail.com>2014-02-16 01:23:02 +0100
commit1f2ba6aec9e510c81fab32328137a21092882e0a (patch)
tree4972b676f921a170bcbf1c71184d8ffae73fba31 /src
parentm (diff)
downloadblueshift-1f2ba6aec9e510c81fab32328137a21092882e0a.tar.gz
blueshift-1f2ba6aec9e510c81fab32328137a21092882e0a.tar.bz2
blueshift-1f2ba6aec9e510c81fab32328137a21092882e0a.tar.xz
use periodically
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rwxr-xr-xsrc/__main__.py64
1 files changed, 58 insertions, 6 deletions
diff --git a/src/__main__.py b/src/__main__.py
index 39373ff..881b3c1 100755
--- a/src/__main__.py
+++ b/src/__main__.py
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
+import time
import datetime
from colour import *
@@ -24,7 +25,7 @@ from monitor import *
## Set globals variables
global DATADIR, i_size, o_size, r_curve, g_curve, b_curve, clip_result
-global periodically, wait_period, monitor_controller
+global periodically, wait_period, monitor_controller, running
def periodically(year, month, day, hour, minute, second, weekday, fade):
@@ -94,12 +95,27 @@ monitor_controller = lambda : randr()
fadein_time = 10
'''
-:float The number of seconds used to fade in on start
+:float? The number of seconds used to fade in on start, `None` for no fading
'''
fadeout_time = 10
'''
-:float The number of seconds used to fade out on exit
+:float? The number of seconds used to fade out on exit, `None` for no fading
+'''
+
+fadein_steps = 100
+'''
+:int The number of steps in the fade in phase, if any
+'''
+
+fadeout_steps = 100
+'''
+:int The number of steps in the fade out phase, if any
+'''
+
+running = True
+'''
+:bool `True` while to program has not received a terminate signal
'''
@@ -124,7 +140,43 @@ for file in ('$XDG_CONFIG_HOME/%/%rc', '$HOME/.config/%/%rc', '$HOME/.%rc', '/et
exec(code, globals)
break
-## Get the current time
-now = datetime.datetime.now() # .year, .month, .day, .hour, .minute, .second
-weekday = now.isocalendar()[2]
+
+## Run periodically if configured to
+if periodically is not None:
+ def p(t, fade = None):
+ wd = t.isocalendar()[2]
+ periodically(t.year, t.month, t.day, t.hour, t.minute, t.second, wd, fade)
+
+ ## Fade in
+ early_exit = False
+ ftime = 0
+ if fadein_time is not None:
+ dtime = fadein_time / fadein_steps
+ while running:
+ ftime += dtime
+ if ftime > 1:
+ break
+ p(datetime.datetime.now(), ftime)
+
+ ## Run periodically
+ if not early_exit:
+ while running:
+ p(datetime.datetime.now(), None)
+ if running:
+ time.sleep(wait_period)
+
+ ## Fade out
+ if fadeout_time is not None:
+ dtime = fadeout_time / fadeout_steps
+ if early_exit:
+ ftime = 1
+ while True:
+ ftime -= dtime
+ if ftime <= 0:
+ break
+ p(datetime.datetime.now(), -ftime)
+
+ ## Reset
+ start_over()
+ monitor_controller()