-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
executable file
·200 lines (142 loc) · 5.19 KB
/
main.py
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
#!/usr/bin/python3
# coding=utf-8
import i18n
from Music import Music
import os
import readline
import sys
# Translation function declaration
_ = i18n.language.gettext
def write_log(title, date, musiclist):
log_file = open('log', 'w')
log_file.write(_("Title") + ":\t" + title + "\n")
log_file.write(_("Date") + ":\t" + date + "\n")
log_file.write("-----\n")
log_file.write("1. " + _("File") + ":\t" + musiclist[0][1] + "\n")
log_file.write("1 " + _("Subtitle") + ":\t" + musiclist[0][0] + "\n")
for i in range(1, len(musiclist)):
log_file.write("-----\n")
log_file.write("{}. ".format(i+1) + _("File") + ":\t" + musiclist[i][1] + "\n")
log_file.write("{}. ".format(i+1) + _("Subtitle") + ":\t" + musiclist[i][0] + "\n")
log_file.close()
# ---------------------
# --- Get user Info ---
# ---------------------
document_title = ""
document_date = ""
music_list = []
if len(sys.argv) == 1: # In case user does not set a log file
# Sets console tab autocompletion in source/ folder
current_dir = os.getcwd()
os.chdir("source/")
readline.set_completer_delims(' \t\n;')
readline.parse_and_bind("tab: complete")
document_title = input(_("Select a file title: "))
document_date = input(_("Select a file date: "))
i = 1
music_list = []
print(_("---- (press enter when finnished) ----"))
while True:
music_file = input(str(i) + _(": Enter music file: "))
if not music_file:
break
elif not os.path.isfile(music_file):
print(_("The entered file does not exist."))
continue
subtitle = input(str(i) + _(": Enter music subtitle: "))
music_list += [[subtitle, music_file]]
print("----")
i += 1
# Changes cosole location back to root
os.chdir(current_dir)
write_log(document_title, document_date, music_list)
else: #In case user sets a log file in arguments
log_file = open(sys.argv[1], 'r')
document_title = log_file.readline().split(":")[1].strip()
document_date = log_file.readline().split(":")[1].strip()
while log_file.readline():
music_file = log_file.readline().split(":")[1].strip()
subtitle = log_file.readline().split(":")[1].strip()
if not os.path.isfile('source/'+music_file):
print(music_file + ": " + _("The entered file does not exist."))
sys.exit()
music_list += [[subtitle, music_file]]
log_file.close()
# -----------------
# --- User Info ---
# -----------------
# document_title = "Domingo V"
# document_date = "18-Jan-2015"
# Format: [[subtitle, filename]]
# music_list = [["Entrada", 'caminhos para a vida'],
# ["Ato Penitencial", 'senhor tem piedade 1'],
# ["Aleluia", 'Aleluia 5'],
# ["Apresentacao dos Dons", 'estrela polar'],
# ["Santo", 'santo 6'],
# ["Pai Nosso", ''],
# ["Cordeiro de Deus", 'cordeiro de deus 2'],
# ["Comunhao", 'como o pai me amou'],
# ["Acao de Gracas", 'quero louvar-te'],
# ["Final", 'faz o que deus espera de ti']]
# -----------------------
# --- LaTeX Constants ---
# -----------------------
tex_inic = """\\documentclass[11pt]{article}
\\usepackage[cm]{fullpage}
\\usepackage[utf8]{inputenc}
\\usepackage[%s]{songs}
\\noversenumbers
\\obeyspaces
\\setlength\\baselineadj{-\\baselineskip}
\\renewcommand{\\chorusfont}{\\bfseries}
\\begin{document}
\\songsection{%s}
\\begin{songs}{}\n\n"""
tex_fim = """\\end{songs}
\\end{document}"""
presentation_inic = """\\documentclass[11pt, aspectratio=169]{beamer}
\\usepackage[utf8]{inputenc}
\\setbeamertemplate{navigation symbols}{} %% remove navigation symbols
\\setbeamercolor{background canvas}{bg=black}
\\setbeamercolor{normal text}{bg=yellow,fg=white}
\\setbeamercolor{title}{fg=white}
%%\\setbeamercolor{frametitle}{fg=white}
\\usepackage[scaled=1.9]{helvet}
\\renewcommand\\familydefault{\\sfdefault}
\\setbeamersize{text margin left=8pt,text margin right=8pt} %% Margins
\\renewcommand{\\baselinestretch}{2.5} %% Line spacing
\\renewcommand{\\seriesdefault}{\\bfdefault} %% Bold
\\title{%s}
\\subtitle{%s}
\\date{} %% optional
\\begin{document}
\\begin{frame}
\\titlepage
\\end{frame}
\\centering
\\obeylines
"""
presentation_fim = '\\end{document}'
# --------------------------
# --- Script starts here ---
# --------------------------
if not os.path.exists("result"):
os.makedirs("result")
lyrics_file = open('result/lyrics.tex', 'w')
chords_file = open('result/chords.tex', 'w')
presentation_file = open('result/presentation.tex', 'w')
lyrics_file.write(tex_inic % ('lyric', document_title))
chords_file.write(tex_inic % ('chorded', document_title))
presentation_file.write(presentation_inic % (document_title, document_date))
for music_item in music_list:
subtitle = music_item[0]
music_file = music_item[1]
if not music_file == '':
current_music = Music(music_file, subtitle)
current_music.write_tex(chords_file, lyrics_file)
current_music.write_presentation(presentation_file)
lyrics_file.write(tex_fim)
chords_file.write(tex_fim)
presentation_file.write(presentation_fim)
lyrics_file.close()
chords_file.close()