summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-03-04 18:58:39 +0100
committerMattias Andrée <maandree@operamail.com>2014-03-04 18:58:39 +0100
commitc5d72e955868a22305fcab2b680f24cf86b5ad21 (patch)
tree2f433223226fbff74860cc5e2ba246b3bc31d63e
parentadd example: stored-settings (diff)
downloadblueshift-1.7.tar.gz
blueshift-1.7.tar.bz2
blueshift-1.7.tar.xz
small example transitioning from current settings1.7
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--Makefile2
-rw-r--r--TODO4
-rw-r--r--examples/current-settings62
3 files changed, 63 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f8a943c..a164e7d 100644
--- a/Makefile
+++ b/Makefile
@@ -65,7 +65,7 @@ PYFILES = __main__.py colour.py curve.py monitor.py solar.py icc.py adhoc.py
CBINDINGS = $(foreach B,$(SERVER_BINDINGS),blueshift_$(B).so)
# Configuration script example files
EXAMPLES = comprehensive sleepmode crtc-detection crtc-searching logarithmic \
- xmobar xpybar stored-settings
+ xmobar xpybar stored-settings current-settings
# Build rules
diff --git a/TODO b/TODO
index 742cc66..1596f2a 100644
--- a/TODO
+++ b/TODO
@@ -1,7 +1,3 @@
-High priority:
- Do all transitions form current settings and include that in fade time calculation,
- unless we have stored settings handled by the configuration script that are correct
-
Medium priority:
Finish support for EDID
diff --git a/examples/current-settings b/examples/current-settings
new file mode 100644
index 0000000..8c8afe8
--- /dev/null
+++ b/examples/current-settings
@@ -0,0 +1,62 @@
+# -*- python -*-
+
+# This example demonstrates how the currents settings
+# can be read and transitioned from.
+
+
+uses_adhoc_opts = True
+'''
+:bool `True` if the configuration script parses the ad-hoc settings
+'''
+
+
+# Get --temperature from Blueshift ad-hoc settigns
+temperature_to = int(parser.opts['--temperature'][0])
+
+
+# Get current colour curves
+randr_get(0)()
+r_, g_, b_ = r_curve[:], g_curve[:], b_curve[:]
+start_over()
+
+
+# Calculate divergence
+temperature(temperature_to, lambda t : divide_by_maximum(cmf_10deg(t)))
+f = lambda xy : abs(xy[0] - xy[1])
+divergence = max([max(map(f, zip(x, y))) for x, y in curves(r_, g_, b_)])
+
+
+# Get the end state colour curves
+r, g, b = r_curve[:], g_curve[:], b_curve[:]
+
+
+# Calculate transition time
+fadein_time = divergence * 5
+fadein_steps = fadein_time * 10
+
+# Function for setting the colour temperature
+def adjust(alpha):
+ f = lambda on : on[0] * (1 - alpha) + on[1] * alpha
+ ccc = curves((r_, r), (g_, g), (b_, b))
+ ccc = [(out, list(map(f, zip(old, new)))) for out, (old, new) in ccc]
+ for out, curve in ccc:
+ out[:] = curve
+ randr(0)
+
+# Perform transition
+if divergence and not panicgate:
+ signal.signal(signal.SIGTERM, signal_SIGTERM)
+ dtime = fadein_time / fadein_steps
+ df = 1 / fadein_steps
+ trans = 0
+ while running:
+ try:
+ trans += df
+ if trans > 1:
+ break
+ adjust(trans)
+ time.sleep(dtime)
+ except KeyboardInterrupt:
+ running = False
+adjust(1)
+