2015-08-21 01:05:14 +02:00
|
|
|
#!/usr/bin/python3.4
|
|
|
|
|
|
|
|
## Generate pdf form lilypond file
|
|
|
|
## by using standard command
|
|
|
|
##
|
|
|
|
## Most of programming was done by Sven Axelsson, http://svenax.net/
|
|
|
|
|
|
|
|
import codecs, os
|
|
|
|
from argparse import ArgumentParser
|
|
|
|
|
|
|
|
class MakeDrum:
|
|
|
|
LILYPOND = 'lilypond'
|
|
|
|
VERSION = '0.7'
|
|
|
|
TMP_DIR = './tmp'
|
|
|
|
TMP_PREFIX = 'tmp_'
|
2015-10-16 23:25:22 +02:00
|
|
|
MASTER_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
RUN_DIR = os.path.abspath(os.curdir)
|
2015-08-21 01:05:14 +02:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
# Gather options and create the template file
|
|
|
|
usage = __file__
|
|
|
|
parser = ArgumentParser(usage)
|
|
|
|
|
|
|
|
parser.add_argument('--version',
|
|
|
|
action='store_true', dest='show_version', default=False,
|
|
|
|
help='show makeDrum version and exit')
|
|
|
|
parser.add_argument('--lilyversion',
|
|
|
|
action='store_true', dest='show_lilyversion', default=False,
|
|
|
|
help='show Lilypond version and exit')
|
|
|
|
|
2015-10-16 23:25:22 +02:00
|
|
|
parser.add_argument('-x', '--drumfile',
|
2015-11-05 01:46:10 +01:00
|
|
|
dest='lilydrum', default='lilydrum.ly',
|
2015-10-16 23:25:22 +02:00
|
|
|
help='Use the specified file for drums')
|
|
|
|
parser.add_argument('-c', '--pipefile',
|
|
|
|
dest='lilypipe', default='bagpipe.ly',
|
|
|
|
help='Use the specified file for pipes')
|
|
|
|
|
2015-08-21 01:05:14 +02:00
|
|
|
parser.add_argument('-p', '--paper-size',
|
|
|
|
dest='papersize', default='a4',
|
|
|
|
help='Paper size. Default: A4')
|
|
|
|
parser.add_argument('-o', '--orientation',
|
|
|
|
dest='orientation', default='landscape',
|
|
|
|
help='Paper orientation. Default: landscape')
|
|
|
|
parser.add_argument('-s', '--staff-size',
|
2015-10-16 23:25:22 +02:00
|
|
|
dest='staffsize', default='20',
|
2015-08-21 01:05:14 +02:00
|
|
|
help='Staff size. Default: 16pt.')
|
|
|
|
parser.add_argument('-f', '--format',
|
|
|
|
dest='format', default=None,
|
|
|
|
help='Use header format file "header_{format}". Default: "header_default"')
|
|
|
|
parser.add_argument('-w', '--view-spacing',
|
|
|
|
action='store_true', dest='view_spacing', default=False,
|
|
|
|
help='Turn on "Paper.annotatespacing".')
|
|
|
|
|
|
|
|
parser.add_argument('--no-log',
|
|
|
|
action='store_false', dest='log', default=True,
|
|
|
|
help='Do not generate log files.')
|
|
|
|
parser.add_argument('--no-cleanup',
|
|
|
|
action='store_false', dest='clean', default=True,
|
|
|
|
help='Leave all temporary files in place')
|
2015-10-16 23:25:22 +02:00
|
|
|
parser.add_argument('-d', '--out_dir',
|
|
|
|
dest='out_dir', default='pdf',
|
|
|
|
help='Output dir, for lilypond. If it doesn\'t exist, try to create it')
|
2015-08-21 01:05:14 +02:00
|
|
|
parser.add_argument('music_file',
|
|
|
|
default='', nargs='+',
|
|
|
|
help='file to process')
|
|
|
|
parser.add_argument('-@', '--list_file',
|
|
|
|
dest='list_file', default='',
|
|
|
|
help='list of files to process')
|
|
|
|
|
|
|
|
self.args = parser.parse_args()
|
|
|
|
|
|
|
|
if self.args.show_version:
|
|
|
|
print(__name__, ' ', self.VERSION)
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.args.show_lilyversion:
|
|
|
|
print(os.system(self.LILYPOND+' --version'))
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.args.view_spacing:
|
|
|
|
self.args.view_spacing = "##t"
|
|
|
|
else:
|
|
|
|
self.args.view_spacing = "##f"
|
|
|
|
|
|
|
|
# Input files
|
|
|
|
if self.args.list_file != '':
|
|
|
|
self.args.music_file.append(open(self.args.list_file, 'r').readlines())
|
|
|
|
close(self.args.list_file)
|
|
|
|
|
|
|
|
# Clean up of files
|
|
|
|
self.remove_tmp_dir = self.args.clean
|
|
|
|
|
|
|
|
if not os.path.exists(os.path.join(os.path.curdir, self.TMP_DIR)):
|
|
|
|
try: os.makedirs(os.path.join(os.path.curdir, self.TMP_DIR))
|
|
|
|
except:
|
|
|
|
print('Seems like no temporary directory can be created')
|
|
|
|
return
|
2015-10-16 23:25:22 +02:00
|
|
|
if not os.path.exists(os.path.join(os.path.curdir, self.args.out_dir)):
|
|
|
|
try: os.makedirs(os.path.join(os.path.curdir, self.args.out_dir))
|
|
|
|
except:
|
|
|
|
print('Seems like no output directory can be created')
|
|
|
|
return
|
2015-08-21 01:05:14 +02:00
|
|
|
|
2015-10-16 23:25:22 +02:00
|
|
|
os.chdir(self.MASTER_DIR)
|
2015-08-21 01:05:14 +02:00
|
|
|
for file_path in self.args.music_file:
|
2015-10-16 23:25:22 +02:00
|
|
|
self.processit(self.TMP_DIR, os.path.join(self.RUN_DIR, file_path))
|
2015-08-21 01:05:14 +02:00
|
|
|
|
|
|
|
#if not
|
|
|
|
#os.rmdir(self.TMP_DIR)
|
|
|
|
|
2015-10-16 23:25:22 +02:00
|
|
|
os.chdir(self.RUN_DIR)
|
|
|
|
|
2015-08-21 01:05:14 +02:00
|
|
|
def processit(self, tmp_dir, file):
|
|
|
|
if self.args.log:
|
2015-11-05 01:39:52 +01:00
|
|
|
logfile = os.path.join(self.TMP_DIR, os.path.relpath(file).replace(".ly", '').replace('/', '-')+'.log')
|
2015-08-21 01:05:14 +02:00
|
|
|
log = ' > '+logfile+' 2>&1'
|
|
|
|
else:
|
|
|
|
log = ''
|
|
|
|
|
|
|
|
if self.args.format is None:
|
|
|
|
if file.endswith(".book"):
|
|
|
|
header_format = "header_book"
|
|
|
|
else:
|
|
|
|
header_format = "header_default"
|
|
|
|
|
|
|
|
tmp_file = self.maketemplate(tmp_dir, file, header_format)
|
|
|
|
|
|
|
|
print ('Compiling ', file, end=' ', flush=True)
|
2015-10-16 23:25:22 +02:00
|
|
|
if not self.args.log:
|
|
|
|
print()
|
2015-08-21 01:05:14 +02:00
|
|
|
|
2015-11-05 01:39:52 +01:00
|
|
|
lilyout = os.path.join(os.path.curdir, self.args.out_dir, os.path.basename(tmp_file).replace(self.TMP_PREFIX, '').replace(".ly", ''))
|
2015-10-16 23:25:22 +02:00
|
|
|
lilycmd = self.LILYPOND+' --pdf --output='+lilyout+' '+tmp_file+log
|
2015-08-21 01:05:14 +02:00
|
|
|
|
|
|
|
if os.system(lilycmd) != 0:
|
|
|
|
self.remove_tmp_dir = False
|
|
|
|
print ('[Error]')
|
2015-10-16 23:25:22 +02:00
|
|
|
if self.args.log:
|
|
|
|
print (' ! Did not compile, please see the log at ', logfile)
|
2015-08-21 01:05:14 +02:00
|
|
|
else :
|
|
|
|
print ('[OK]')
|
2015-10-16 23:25:22 +02:00
|
|
|
|
|
|
|
if self.args.clean:
|
|
|
|
#remove files
|
|
|
|
if self.args.log:
|
|
|
|
os.remove(logfile)
|
|
|
|
os.remove(tmp_file)
|
2015-08-21 01:05:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
def maketemplate(self, tmp_dir, file, header_format):
|
2015-10-16 23:25:22 +02:00
|
|
|
lily_includes = ''
|
|
|
|
include_drum_file = False
|
|
|
|
include_pipe_file = False
|
|
|
|
# find out whether drum, pipes, or full score
|
|
|
|
for ext in ['.full', '.side', '.tenor', '.bass', '.drum', '.snare']:
|
|
|
|
if ext in file:
|
|
|
|
include_drum_file = True
|
|
|
|
|
|
|
|
for ext in ['.full', '.pipes']:
|
|
|
|
if ext in file:
|
|
|
|
include_pipe_file = True
|
|
|
|
|
|
|
|
if include_drum_file:
|
|
|
|
lily_includes = lily_includes + u"""
|
|
|
|
\\include \""""+self.args.lilydrum+"""\"
|
|
|
|
"""
|
|
|
|
if include_pipe_file:
|
|
|
|
lily_includes = lily_includes + u"""
|
|
|
|
\\include \""""+self.args.lilypipe+"""\"
|
|
|
|
"""
|
|
|
|
|
2015-08-21 01:05:14 +02:00
|
|
|
# set up a tmp file with template and file combined
|
2015-10-16 23:25:22 +02:00
|
|
|
tmp_file = os.path.join(tmp_dir, self.TMP_PREFIX + os.path.relpath(file).replace('/', '-'))
|
2015-08-21 01:05:14 +02:00
|
|
|
|
|
|
|
out_file = codecs.open(tmp_file, 'w+', 'utf8')
|
|
|
|
out_file.write(u'\ufeff')
|
|
|
|
|
|
|
|
out_file.write(u"""
|
|
|
|
% Generated from """+file+""" by """+__file__+"""
|
|
|
|
|
|
|
|
\\version "2.18.0"
|
|
|
|
|
|
|
|
#(ly:set-option 'point-and-click #f)
|
|
|
|
|
|
|
|
#(set-global-staff-size """+self.args.staffsize+""")
|
|
|
|
#(set-default-paper-size \""""+self.args.papersize+"""\" '"""+self.args.orientation+""")
|
|
|
|
|
2015-10-16 23:25:22 +02:00
|
|
|
"""+ lily_includes +"""
|
2015-11-05 01:39:52 +01:00
|
|
|
|
|
|
|
\\include \""""+header_format+""".ily"
|
2015-08-21 01:05:14 +02:00
|
|
|
|
|
|
|
% The tune to generate.
|
|
|
|
""")
|
|
|
|
|
|
|
|
# Read lily file into tmp file
|
|
|
|
music = codecs.open(file, 'r', 'utf8').read()
|
|
|
|
if music.startswith(u'\ufeff'): music = music[1:]
|
|
|
|
music = music.split(u'\n')
|
|
|
|
printit = 1
|
|
|
|
for line in music:
|
2015-11-05 01:39:52 +01:00
|
|
|
if line.startswith(u'\\include "lilydrum.ly"'): continue
|
2015-08-21 01:05:14 +02:00
|
|
|
if printit:
|
|
|
|
out_file.write(line.replace('\r', '')+'\n')
|
|
|
|
out_file.close()
|
|
|
|
|
|
|
|
# Return tmp_file_path
|
|
|
|
return tmp_file
|
|
|
|
|
|
|
|
|
2015-10-16 23:25:22 +02:00
|
|
|
MakeDrum();
|