make the sotmeu14-module a project, callable from a centralized make.py
This commit is contained in:
parent
4e2facd917
commit
60885f42bd
2 changed files with 220 additions and 179 deletions
|
@ -21,13 +21,18 @@ from threading import Thread, Lock
|
||||||
import subprocess
|
import subprocess
|
||||||
from Queue import Queue
|
from Queue import Queue
|
||||||
|
|
||||||
# URL to Schedule-XML
|
# Project-Name
|
||||||
scheduleUrl = 'http://sotm-eu.org/export.xml'
|
if len(sys.argv) < 2:
|
||||||
|
print "you must specify a project-name as first argument, eg. './make.py sotmeu14'"
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
# For (really) too long titles
|
projectname = sys.argv[1]
|
||||||
titlemap = {
|
try:
|
||||||
#708: "Neue WEB-Anwendungen des LGRB Baden-Württemberg im Überblick"
|
sys.path.append(projectname)
|
||||||
}
|
project = __import__(projectname)
|
||||||
|
except ImportError:
|
||||||
|
print "you must specify a project-name as first argument, eg. './make.py sotmeu14'. The supplied value '{0}' seems not to be a valid project (there is no '{0}/__init__.py').".format(projectname);
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
# Frames per second. Increasing this renders more frames, the avconf-statements would still need modifications
|
# Frames per second. Increasing this renders more frames, the avconf-statements would still need modifications
|
||||||
fps = 25
|
fps = 25
|
||||||
|
@ -43,20 +48,6 @@ offline = ('--offline' in sys.argv)
|
||||||
reload(sys)
|
reload(sys)
|
||||||
sys.setdefaultencoding('utf-8')
|
sys.setdefaultencoding('utf-8')
|
||||||
|
|
||||||
# t: current time, b: begInnIng value, c: change In value, d: duration
|
|
||||||
# copied from jqueryui
|
|
||||||
def easeOutCubic(t, b, c, d):
|
|
||||||
t=float(t)/d-1
|
|
||||||
return c*((t)*t*t + 1) + b
|
|
||||||
|
|
||||||
def easeInCubic(t, b, c, d):
|
|
||||||
t=float(t)/d
|
|
||||||
return c*(t)*t*t + b;
|
|
||||||
|
|
||||||
def easeOutQuad(t, b, c, d):
|
|
||||||
t=float(t)/d
|
|
||||||
return -c *(t)*(t-2) + b;
|
|
||||||
|
|
||||||
# try to create all folders needed and skip, they already exist
|
# try to create all folders needed and skip, they already exist
|
||||||
def ensurePathExists(path):
|
def ensurePathExists(path):
|
||||||
try:
|
try:
|
||||||
|
@ -70,111 +61,10 @@ def ensureFilesRemoved(pattern):
|
||||||
for f in glob.glob(pattern):
|
for f in glob.glob(pattern):
|
||||||
os.unlink(f)
|
os.unlink(f)
|
||||||
|
|
||||||
def abspannFrames():
|
|
||||||
# 9 Sekunden
|
|
||||||
|
|
||||||
# 3 Sekunden Fadein Logo
|
|
||||||
frames = int(3*fps)
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
|
||||||
('box', 'style', 'opacity', 0)
|
|
||||||
)
|
|
||||||
|
|
||||||
# 3 Sekunde Fadein Box
|
|
||||||
frames = 3*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('logo', 'style', 'opacity', 1),
|
|
||||||
('box', 'style', 'opacity', "%.4f" % easeOutQuad(i, 0, 1, frames)),
|
|
||||||
('box', 'attr', 'transform', 'translate(0,%.4f)' % easeOutQuad(i, 94, -94, frames) )
|
|
||||||
#('box', 'attr', 'transform', 'translate(%.4f,0)' % easeOutQuad(i, 960, -960, frames) )
|
|
||||||
)
|
|
||||||
|
|
||||||
# 3 Sekunden stehen bleiben
|
|
||||||
frames = 3*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('logo', 'style', 'opacity', 1),
|
|
||||||
('box', 'style', 'opacity', 1)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def vorspannFrames():
|
|
||||||
# 7 Sekunden
|
|
||||||
|
|
||||||
# 0.5 Sekunden stehen bleiben
|
|
||||||
frames = int(math.ceil(0.5*fps))
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('logo', 'style', 'opacity', 0),
|
|
||||||
('box', 'style', 'opacity', 0)
|
|
||||||
)
|
|
||||||
|
|
||||||
# 1.5 Sekunden Fadein Logo
|
|
||||||
frames = int(math.ceil(1.5*fps))
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
|
||||||
('box', 'style', 'opacity', 0)
|
|
||||||
)
|
|
||||||
|
|
||||||
# 3 Sekunde Fadein Box
|
|
||||||
frames = 3*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('logo', 'style', 'opacity', 1),
|
|
||||||
('box', 'style', 'opacity', "%.4f" % easeOutQuad(i, 0, 1, frames)),
|
|
||||||
('box', 'attr', 'transform', 'translate(0,%.4f)' % easeOutQuad(i, 198, -198, frames) )
|
|
||||||
#('box', 'attr', 'transform', 'translate(%.4f,0)' % easeOutQuad(i, 960, -960, frames) )
|
|
||||||
)
|
|
||||||
|
|
||||||
# 3 Sekunden stehen bleiben
|
|
||||||
frames = 3*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
yield (
|
|
||||||
('logo', 'style', 'opacity', 1),
|
|
||||||
('box', 'style', 'opacity', 1)
|
|
||||||
)
|
|
||||||
|
|
||||||
def pauseFrames():
|
|
||||||
# 12 Sekunden
|
|
||||||
|
|
||||||
texts = {
|
|
||||||
'text1': "0.0",
|
|
||||||
'text2': "0.0",
|
|
||||||
'text3': "0.0"
|
|
||||||
}
|
|
||||||
|
|
||||||
for name in texts.keys():
|
|
||||||
# 2 Sekunden einfaden
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
texts[name] = "%.4f" % easeOutQuad(i, 0, 1, frames)
|
|
||||||
|
|
||||||
yield (
|
|
||||||
('text1', 'style', 'opacity', texts['text1']),
|
|
||||||
('text2', 'style', 'opacity', texts['text2']),
|
|
||||||
('text3', 'style', 'opacity', texts['text3'])
|
|
||||||
)
|
|
||||||
|
|
||||||
# 2 Sekunden ausfaden
|
|
||||||
frames = 2*fps
|
|
||||||
for i in range(0, frames):
|
|
||||||
texts[name] = "%.4f" % easeOutQuad(i, 1, -1, frames)
|
|
||||||
|
|
||||||
yield (
|
|
||||||
('text1', 'style', 'opacity', texts['text1']),
|
|
||||||
('text2', 'style', 'opacity', texts['text2']),
|
|
||||||
('text3', 'style', 'opacity', texts['text3'])
|
|
||||||
)
|
|
||||||
|
|
||||||
texts[name] = "0.0"
|
|
||||||
|
|
||||||
cssutils.ser.prefs.lineSeparator = ' '
|
cssutils.ser.prefs.lineSeparator = ' '
|
||||||
cssutils.log.setLevel(logging.ERROR)
|
cssutils.log.setLevel(logging.ERROR)
|
||||||
|
|
||||||
def render(infile, outfile, sequence, parameters={}, workdir='artwork'):
|
def render(infile, outfile, sequence, parameters={}, workdir=os.path.join(projectname, 'artwork')):
|
||||||
# in debug mode we have no thread-worker which prints its progress
|
# in debug mode we have no thread-worker which prints its progress
|
||||||
if debug:
|
if debug:
|
||||||
print "generating {0} from {1}".format(outfile, infile)
|
print "generating {0} from {1}".format(outfile, infile)
|
||||||
|
@ -264,7 +154,7 @@ def events():
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# download the schedule
|
# download the schedule
|
||||||
response = urllib2.urlopen(scheduleUrl)
|
response = urllib2.urlopen(project.scheduleUrl)
|
||||||
|
|
||||||
# read xml-source
|
# read xml-source
|
||||||
xml = response.read()
|
xml = response.read()
|
||||||
|
@ -284,36 +174,47 @@ def events():
|
||||||
personnames.append(person.text)
|
personnames.append(person.text)
|
||||||
|
|
||||||
# yield a tupel with the event-id, event-title and person-names
|
# yield a tupel with the event-id, event-title and person-names
|
||||||
yield ( int(event.get('id')), event.find('title').text, event.find('subtitle').text or '', ', '.join(personnames) )
|
yield {
|
||||||
|
'id': int(event.get('id')),
|
||||||
|
'title': project.titlemap[id] if id in project.titlemap else event.find('title').text,
|
||||||
|
'subtitle': event.find('subtitle').text or '',
|
||||||
|
'persons': personnames,
|
||||||
|
'personnames': ', '.join(personnames)
|
||||||
|
}
|
||||||
|
|
||||||
|
# expose helper-methods method to project
|
||||||
|
project.events = events
|
||||||
|
project.render = render
|
||||||
|
|
||||||
|
project.fps = fps
|
||||||
|
|
||||||
|
# t: current time, b: begInnIng value, c: change In value, d: duration
|
||||||
|
# copied from jqueryui
|
||||||
|
def easeOutCubic(t, b, c, d):
|
||||||
|
t=float(t)/d-1
|
||||||
|
return c*((t)*t*t + 1) + b
|
||||||
|
|
||||||
|
def easeInCubic(t, b, c, d):
|
||||||
|
t=float(t)/d
|
||||||
|
return c*(t)*t*t + b;
|
||||||
|
|
||||||
|
def easeOutQuad(t, b, c, d):
|
||||||
|
t=float(t)/d
|
||||||
|
return -c *(t)*(t-2) + b;
|
||||||
|
|
||||||
|
# expose easings to project
|
||||||
|
project.easeOutCubic = easeOutCubic
|
||||||
|
project.easeInCubic = easeInCubic
|
||||||
|
project.easeOutQuad = easeOutQuad
|
||||||
|
|
||||||
# debug-mode selected by --debug switch
|
# debug-mode selected by --debug switch
|
||||||
if debug:
|
if debug:
|
||||||
print "!!! DEBUG MODE !!!"
|
print "!!! DEBUG MODE !!!"
|
||||||
|
|
||||||
render(
|
# call into project which calls render as needed
|
||||||
'vorspann.svg',
|
project.debug()
|
||||||
'../intro.dv',
|
|
||||||
vorspannFrames,
|
|
||||||
{
|
|
||||||
'$id': 667,
|
|
||||||
'$title': 'OpenJUMP - Überblick, Neuigkeiten, Zusammenarbeit/Schnittstellen mit proprietärer Software',
|
|
||||||
'$subtitle': 'Even more news about OpenJUMP',
|
|
||||||
'$personnames': 'Matthias S.'
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
render(
|
|
||||||
'abspann.svg',
|
|
||||||
'../outro.dv',
|
|
||||||
abspannFrames
|
|
||||||
)
|
|
||||||
|
|
||||||
render('pause.svg',
|
|
||||||
'../pause.dv',
|
|
||||||
pauseFrames
|
|
||||||
)
|
|
||||||
|
|
||||||
|
# exit early
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
|
@ -321,37 +222,8 @@ if debug:
|
||||||
# threaded task queue
|
# threaded task queue
|
||||||
tasks = Queue()
|
tasks = Queue()
|
||||||
|
|
||||||
# iterate over all events extracted from the schedule xml-export
|
# call into project which generates the tasks
|
||||||
for (id, title, subtitle, personnames) in events():
|
project.tasks(tasks)
|
||||||
if id in titlemap:
|
|
||||||
title = titlemap[id]
|
|
||||||
|
|
||||||
# generate a task description and put them into the queue
|
|
||||||
tasks.put((
|
|
||||||
'vorspann.svg',
|
|
||||||
str(id)+".dv",
|
|
||||||
vorspannFrames,
|
|
||||||
{
|
|
||||||
'$id': id,
|
|
||||||
'$title': title,
|
|
||||||
'$subtitle': subtitle,
|
|
||||||
'$personnames': personnames
|
|
||||||
}
|
|
||||||
))
|
|
||||||
|
|
||||||
# place a task for the outro into the queue
|
|
||||||
tasks.put((
|
|
||||||
'abspann.svg',
|
|
||||||
'outro.dv',
|
|
||||||
abspannFrames
|
|
||||||
))
|
|
||||||
|
|
||||||
# place the pause-sequence into the queue
|
|
||||||
tasks.put((
|
|
||||||
'pause.svg',
|
|
||||||
'pause.dv',
|
|
||||||
pauseFrames
|
|
||||||
))
|
|
||||||
|
|
||||||
# one working thread per cpu
|
# one working thread per cpu
|
||||||
num_worker_threads = multiprocessing.cpu_count()
|
num_worker_threads = multiprocessing.cpu_count()
|
||||||
|
@ -382,13 +254,13 @@ def worker():
|
||||||
workdir = os.path.join(tempdir, 'artwork')
|
workdir = os.path.join(tempdir, 'artwork')
|
||||||
|
|
||||||
# save the current working dir as output-dir
|
# save the current working dir as output-dir
|
||||||
outdir = os.getcwd()
|
outdir = os.path.join(os.getcwd(), projectname)
|
||||||
|
|
||||||
# print a message that we're about to initialize our environment
|
# print a message that we're about to initialize our environment
|
||||||
tprint("initializing worker in {0}, writing result to {1}".format(tempdir, outdir))
|
tprint("initializing worker in {0}, writing result to {1}".format(tempdir, outdir))
|
||||||
|
|
||||||
# copy the artwork-dir into the tempdir
|
# copy the artwork-dir into the tempdir
|
||||||
shutil.copytree('artwork', workdir)
|
shutil.copytree(os.path.join(projectname, 'artwork'), workdir)
|
||||||
|
|
||||||
# loop until all tasks are done (when the thread fetches a sentinal from the queue)
|
# loop until all tasks are done (when the thread fetches a sentinal from the queue)
|
||||||
while True:
|
while True:
|
169
sotmeu14/__init__.py
Normal file
169
sotmeu14/__init__.py
Normal file
|
@ -0,0 +1,169 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: UTF-8 -*-
|
||||||
|
|
||||||
|
import math
|
||||||
|
|
||||||
|
# URL to Schedule-XML
|
||||||
|
scheduleUrl = 'http://sotm-eu.org/export.xml'
|
||||||
|
|
||||||
|
# For (really) too long titles
|
||||||
|
titlemap = {
|
||||||
|
#708: "Neue WEB-Anwendungen des LGRB Baden-Württemberg im Überblick"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def abspannFrames():
|
||||||
|
# 9 Sekunden
|
||||||
|
|
||||||
|
# 3 Sekunden Fadein Logo
|
||||||
|
frames = int(3*fps)
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||||
|
('box', 'style', 'opacity', 0)
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3 Sekunde Fadein Box
|
||||||
|
frames = 3*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('logo', 'style', 'opacity', 1),
|
||||||
|
('box', 'style', 'opacity', "%.4f" % easeOutQuad(i, 0, 1, frames)),
|
||||||
|
('box', 'attr', 'transform', 'translate(0,%.4f)' % easeOutQuad(i, 94, -94, frames) )
|
||||||
|
#('box', 'attr', 'transform', 'translate(%.4f,0)' % easeOutQuad(i, 960, -960, frames) )
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3 Sekunden stehen bleiben
|
||||||
|
frames = 3*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('logo', 'style', 'opacity', 1),
|
||||||
|
('box', 'style', 'opacity', 1)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def vorspannFrames():
|
||||||
|
# 7 Sekunden
|
||||||
|
|
||||||
|
# 0.5 Sekunden stehen bleiben
|
||||||
|
frames = int(math.ceil(0.5*fps))
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('logo', 'style', 'opacity', 0),
|
||||||
|
('box', 'style', 'opacity', 0)
|
||||||
|
)
|
||||||
|
|
||||||
|
# 1.5 Sekunden Fadein Logo
|
||||||
|
frames = int(math.ceil(1.5*fps))
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||||
|
('box', 'style', 'opacity', 0)
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3 Sekunde Fadein Box
|
||||||
|
frames = 3*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('logo', 'style', 'opacity', 1),
|
||||||
|
('box', 'style', 'opacity', "%.4f" % easeOutQuad(i, 0, 1, frames)),
|
||||||
|
('box', 'attr', 'transform', 'translate(0,%.4f)' % easeOutQuad(i, 198, -198, frames) )
|
||||||
|
#('box', 'attr', 'transform', 'translate(%.4f,0)' % easeOutQuad(i, 960, -960, frames) )
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3 Sekunden stehen bleiben
|
||||||
|
frames = 3*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('logo', 'style', 'opacity', 1),
|
||||||
|
('box', 'style', 'opacity', 1)
|
||||||
|
)
|
||||||
|
|
||||||
|
def pauseFrames():
|
||||||
|
# 12 Sekunden
|
||||||
|
|
||||||
|
texts = {
|
||||||
|
'text1': "0.0",
|
||||||
|
'text2': "0.0",
|
||||||
|
'text3': "0.0"
|
||||||
|
}
|
||||||
|
|
||||||
|
for name in texts.keys():
|
||||||
|
# 2 Sekunden einfaden
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
texts[name] = "%.4f" % easeOutQuad(i, 0, 1, frames)
|
||||||
|
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', texts['text1']),
|
||||||
|
('text2', 'style', 'opacity', texts['text2']),
|
||||||
|
('text3', 'style', 'opacity', texts['text3'])
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2 Sekunden ausfaden
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
texts[name] = "%.4f" % easeOutQuad(i, 1, -1, frames)
|
||||||
|
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', texts['text1']),
|
||||||
|
('text2', 'style', 'opacity', texts['text2']),
|
||||||
|
('text3', 'style', 'opacity', texts['text3'])
|
||||||
|
)
|
||||||
|
|
||||||
|
texts[name] = "0.0"
|
||||||
|
|
||||||
|
def debug():
|
||||||
|
render(
|
||||||
|
'vorspann.svg',
|
||||||
|
'../intro.dv',
|
||||||
|
vorspannFrames,
|
||||||
|
{
|
||||||
|
'$id': 667,
|
||||||
|
'$title': 'OpenJUMP - Überblick, Neuigkeiten, Zusammenarbeit/Schnittstellen mit proprietärer Software',
|
||||||
|
'$subtitle': 'Even more news about OpenJUMP',
|
||||||
|
'$personnames': 'Matthias S.'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
render(
|
||||||
|
'abspann.svg',
|
||||||
|
'../outro.dv',
|
||||||
|
abspannFrames
|
||||||
|
)
|
||||||
|
|
||||||
|
render('pause.svg',
|
||||||
|
'../pause.dv',
|
||||||
|
pauseFrames
|
||||||
|
)
|
||||||
|
|
||||||
|
def tasks(queue):
|
||||||
|
# iterate over all events extracted from the schedule xml-export
|
||||||
|
for event in events():
|
||||||
|
|
||||||
|
# generate a task description and put them into the queue
|
||||||
|
queue.put((
|
||||||
|
'vorspann.svg',
|
||||||
|
str(event['id'])+".dv",
|
||||||
|
vorspannFrames,
|
||||||
|
{
|
||||||
|
'$id': event['id'],
|
||||||
|
'$title': event['title'],
|
||||||
|
'$subtitle': event['subtitle'],
|
||||||
|
'$personnames': event['personnames']
|
||||||
|
}
|
||||||
|
))
|
||||||
|
|
||||||
|
# place a task for the outro into the queue
|
||||||
|
queue.put((
|
||||||
|
'abspann.svg',
|
||||||
|
'outro.dv',
|
||||||
|
abspannFrames
|
||||||
|
))
|
||||||
|
|
||||||
|
# place the pause-sequence into the queue
|
||||||
|
queue.put((
|
||||||
|
'pause.svg',
|
||||||
|
'pause.dv',
|
||||||
|
pauseFrames
|
||||||
|
))
|
Loading…
Add table
Reference in a new issue