Files
@ d9e61d97c578
Branch filter:
Location: light9/light9/Submaster.py
d9e61d97c578
11.2 KiB
text/x-python
final checkpoint for 2011
Ignore-this: 9fef28eee9129ea16ee38dd98e6dcb4a
Ignore-this: 9fef28eee9129ea16ee38dd98e6dcb4a
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | from __future__ import division
import os, logging
from rdflib.Graph import Graph
from rdflib import RDFS, Literal, BNode
from light9.namespaces import L9, XSD
from light9.TLUtility import dict_scale, dict_max
from light9 import Patch, showconfig
try:
import dispatch.dispatcher as dispatcher
except ImportError:
from louie import dispatcher
log = logging.getLogger()
class Submaster:
"Contain a dictionary of levels, but you didn't need to know that"
def __init__(self,
name=None,
graph=None, sub=None,
leveldict=None, temporary=False):
"""sub is the URI for this submaster, graph is a graph where
we can learn about the sub. If graph is not provided, we look
in a file named name.
name is the filename where we can load a graph about this URI
(see showconfig.subFile)
passing name alone makes a new empty sub
temporary means the sub won't get saved or loaded
pass:
name, temporary=True - no rdf involved
sub, filename - read sub URI from graph at filename
name - new sub
sub - n
name, sub - new
"""
if name is sub is leveldict is None:
raise TypeError("more args are needed")
if sub is not None and name is None:
name = graph.label(sub)
if graph is not None:
# old code was passing leveldict as second positional arg
assert isinstance(graph, Graph)
self.name = name
self.uri = sub
self.graph = graph
self.temporary = temporary
if leveldict:
self.levels = leveldict
else:
self.levels = {}
self.reload(quiet=True, graph=graph)
if not self.temporary:
dispatcher.connect(self.reload, 'reload all subs')
log.debug("%s initial levels %s", self.name, self.levels)
def reload(self, quiet=False, graph=None):
if self.temporary:
return
try:
oldlevels = self.levels.copy()
self.levels.clear()
patchGraph = showconfig.getGraph()
if 1 or graph is None:
# need to read the sub graph to build the levels, not
# use the main one! The sub graphs will eventually
# just be part of the one and only shared graph
graph = Graph()
if not self.name:
# anon sub, maybe for a chase
pass
else:
inFile = showconfig.subFile(self.name)
log.info("reading %s", inFile)
graph.parse(inFile, format="n3")
self.uri = L9['sub/%s' % self.name]
for lev in graph.objects(self.uri, L9['lightLevel']):
chan = graph.value(lev, L9['channel'])
val = graph.value(lev, L9['level'])
name = patchGraph.label(chan)
if not name:
log.error("sub %r has channel %r with no name- leaving out that channel" % (self.name, chan))
continue
self.levels[name] = float(val)
if (not quiet) and (oldlevels != self.levels):
log.info("sub %s changed" % self.name)
except IOError, e:
log.error("Can't read file for sub: %r (%s)" % (self.name, e))
def save(self):
if self.temporary:
log.info("not saving temporary sub named %s",self.name)
return
graph = Graph()
subUri = L9['sub/%s' % self.name]
graph.add((subUri, RDFS.label, Literal(self.name)))
for chan in self.levels.keys():
try:
chanUri = Patch.get_channel_uri(chan)
except KeyError:
log.error("saving dmx channels with no :Channel node is not supported yet. Give channel %s a URI for it to be saved. Omitting this channel from the sub." % chan)
continue
lev = BNode()
graph.add((subUri, L9['lightLevel'], lev))
graph.add((lev, L9['channel'], chanUri))
graph.add((lev, L9['level'],
Literal(self.levels[chan], datatype=XSD['decimal'])))
graph.serialize(showconfig.subFile(self.name), format="nt")
def set_level(self, channelname, level, save=True):
self.levels[Patch.resolve_name(channelname)] = level
if save:
self.save()
def set_all_levels(self, leveldict):
self.levels.clear()
for k, v in leveldict.items():
self.set_level(k, v, save=0)
self.save()
def get_levels(self):
return self.levels
def no_nonzero(self):
return (not self.levels.values()) or not (max(self.levels.values()) > 0)
def __mul__(self, scalar):
return Submaster("%s*%s" % (self.name, scalar),
leveldict=dict_scale(self.levels, scalar),
temporary=True)
__rmul__ = __mul__
def max(self, *othersubs):
return sub_maxes(self, *othersubs)
def __add__(self, other):
return self.max(other)
def __repr__(self):
items = self.levels.items()
items.sort()
levels = ' '.join(["%s:%.2f" % item for item in items])
return "<'%s': [%s]>" % (self.name, levels)
def get_dmx_list(self):
leveldict = self.get_levels() # gets levels of sub contents
levels = []
for k, v in leveldict.items():
if v == 0:
continue
try:
dmxchan = Patch.get_dmx_channel(k) - 1
except ValueError:
log.error("error trying to compute dmx levels for submaster %s" % self.name)
raise
if dmxchan >= len(levels):
levels.extend([0] * (dmxchan - len(levels) + 1))
levels[dmxchan] = max(v, levels[dmxchan])
return levels
def normalize_patch_names(self):
"""Use only the primary patch names."""
# possibly busted -- don't use unless you know what you're doing
self.set_all_levels(self.levels.copy())
def get_normalized_copy(self):
"""Get a copy of this sumbaster that only uses the primary patch
names. The levels will be the same."""
newsub = Submaster("%s (normalized)" % self.name, temporary=1)
newsub.set_all_levels(self.levels)
return newsub
def crossfade(self, othersub, amount):
"""Returns a new sub that is a crossfade between this sub and
another submaster.
NOTE: You should only crossfade between normalized submasters."""
otherlevels = othersub.get_levels()
keys_set = {}
for k in self.levels.keys() + otherlevels.keys():
keys_set[k] = 1
all_keys = keys_set.keys()
xfaded_sub = Submaster("xfade", temporary=1)
for k in all_keys:
xfaded_sub.set_level(k,
linear_fade(self.levels.get(k, 0),
otherlevels.get(k, 0),
amount))
return xfaded_sub
def __cmp__(self, other):
"""Compare by sub repr (name, hopefully)"""
return cmp(repr(self), repr(other))
def __hash__(self):
raise NotImplementedError
return hash(repr(self))
def linear_fade(start, end, amount):
"""Fades between two floats by an amount. amount is a float between
0 and 1. If amount is 0, it will return the start value. If it is 1,
the end value will be returned."""
level = start + (amount * (end - start))
return level
def sub_maxes(*subs):
nonzero_subs = [s for s in subs if not s.no_nonzero()]
name = "max(%s)" % ", ".join([repr(s) for s in nonzero_subs])
return Submaster(name,
leveldict=dict_max(*[sub.levels for sub in nonzero_subs]),
temporary=1)
def combine_subdict(subdict, name=None, permanent=False):
"""A subdict is { Submaster objects : levels }. We combine all
submasters first by multiplying the submasters by their corresponding
levels and then max()ing them together. Returns a new Submaster
object. You can give it a better name than the computed one that it
will get or make it permanent if you'd like it to be saved to disk.
Serves 8."""
scaledsubs = [sub * level for sub, level in subdict.items()]
maxes = sub_maxes(*scaledsubs)
if name:
maxes.name = name
if permanent:
maxes.temporary = False
return maxes
class Submasters:
"Collection o' Submaster objects"
def __init__(self, graph):
self.submasters = {}
files = os.listdir(showconfig.subsDir())
for filename in files:
# we don't want these files
if filename.startswith('.') or filename.endswith('~') or \
filename.startswith('CVS'):
continue
self.submasters[filename] = Submaster(filename, graph=graph)
log.info("loaded subs %s", self.submasters)
def get_all_subs(self):
"All Submaster objects"
l = self.submasters.items()
l.sort()
l = [x[1] for x in l]
songs = []
notsongs = []
for s in l:
if s.name.startswith('song'):
songs.append(s)
else:
notsongs.append(s)
combined = notsongs + songs
return combined
def get_all_sub_names(self):
return [s.name for s in self.get_all_subs()]
def get_sub_by_name(self, name):
"Makes a new sub if there isn't one."
if name in self.submasters:
return self.submasters[name]
return Submaster(name)
__getitem__ = get_sub_by_name
def fullsub(*chans):
"""Make a submaster with chans at full."""
return Submaster('%r' % chans,
leveldict=dict([(c, 1.0) for c in chans]), temporary=True)
# a global instance of Submasters, created on demand
_submasters = None
def get_global_submasters():
"""Get (and make on demand) the global instance of Submasters"""
global _submasters
if _submasters is None:
_submasters = Submasters()
return _submasters
def get_sub_by_name(name, submasters=None):
"""name is a channel or sub nama, submasters is a Submasters object.
If you leave submasters empty, it will use the global instance of
Submasters."""
if not submasters:
submasters = get_global_submasters()
if name in submasters.get_all_sub_names():
return submasters.get_sub_by_name(name)
try:
val = int(name)
s = Submaster("#%d" % val, leveldict={val : 1.0}, temporary=True)
return s
except ValueError:
pass
try:
subnum = Patch.get_dmx_channel(name)
s = Submaster("'%s'" % name, leveldict={subnum : 1.0}, temporary=True)
return s
except ValueError:
pass
# make an error sub
return Submaster('%s' % name)
if __name__ == "__main__":
Patch.reload_data()
s = Submasters()
print s.get_all_subs()
if 0: # turn this on to normalize all subs
for sub in s.get_all_subs():
print "before", sub
sub.normalize_patch_names()
sub.save()
print "after", sub
|