-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
219 lines (170 loc) · 7.21 KB
/
main.js
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
"use strict";
function sanitize(s) {
return (String(s)
.replaceAll('&', '&')
.replaceAll('<', '<')
.replaceAll('>', '>')
.replaceAll('"', '"')
.replaceAll("'", '''));
}
$(document).ready(async function() {
// Some globals to store state...
let appData = {};
ToneArduinoConv.loadTemplate();
// Enable tabbing in text area
$(document).on("keydown", ".codetext", function(e) {
var keyCode = e.keyCode || e.which;
let tabInsert = " ";
let tabLength = 4;
let tabInsertRemove = /[ ]{0,4}$/g;
let tabBlockRemove = /^[ ]{0,4}/gm;
if(keyCode == 9) {
e.preventDefault();
let start = this.selectionStart;
let end = this.selectionEnd;
let currentVal = $(this).val();
if(currentVal.slice(start, end).includes("\n")) {
let newStart = currentVal.slice(0, start).lastIndexOf("\n") + 1;
let changedText = null;
let subEnd = (currentVal[end - 1] == "\n")? end - 1: end;
if(e.shiftKey) {
changedText = currentVal.slice(newStart, subEnd).replaceAll(tabBlockRemove, "");
}
else {
changedText = currentVal.slice(newStart, subEnd).replaceAll(/^/gm, tabInsert)
}
$(this).val(currentVal.slice(0, newStart) + changedText + currentVal.slice(subEnd));
this.selectionStart = newStart;
this.selectionEnd = newStart + changedText.length + (end - subEnd);
updateHighlight(null);
}
else {
let newVal = null;
let shift = null;
if(e.shiftKey) {
newVal = currentVal.slice(0, start).replace(tabInsertRemove, "") + currentVal.slice(start);
shift = newVal.length - currentVal.length;
let gap = -shift;
if(gap < tabLength) {
let tabExtraRem = new RegExp("^[ ]{0," + (tabLength - gap) + "}", "gm");
newVal = newVal.slice(0, start - gap) + newVal.slice(start - gap, end - gap).replace(tabExtraRem, "") + newVal.slice(end - gap);
}
}
else {
newVal = currentVal.slice(0, start) + tabInsert + currentVal.slice(start);
shift = newVal.length - currentVal.length;
}
$(this).val(newVal);
this.selectionStart = start + shift;
this.selectionEnd = end + (newVal.length - currentVal.length);
updateHighlight(null);
}
}
});
function fixScroll() {
let tbox = $("#codetext")[0];
let codebox = $("#codehighlight")[0];
codebox.scrollTop = tbox.scrollTop;
codebox.scrollLeft = tbox.scrollLeft;
}
function addLineNums(txt) {
let finalTxt = [];
let txtLst = txt.split("\n");
let spacesNeeded = Math.floor(Math.log10(txtLst.length)) + 2
for(let i = 0; i < txtLst.length; i++) {
finalTxt.push("<span class='line-number'>" + ((i + 1) + " ").padStart(spacesNeeded, " ") + "</span>" + txtLst[i]);
}
return [finalTxt.join("\n"), spacesNeeded];
}
function updateHighlight(e) {
let code = $("#codetext").val();
if(code == "") {
$(".codetextholder").css("left", "0");
$("#codehighlight").html("Write your music code here!");
return;
}
let tokens = tokenize(code, true); // Lazy Eval...
let newText = [];
let lastSplit = 0;
for(let [type, text, line, offset] of tokens) {
if(type == null) continue;
type = type.replaceAll(":", "-");
newText.push(sanitize(code.slice(lastSplit, offset)));
newText.push("<span class='code-" + sanitize(type) + "'>" + sanitize(text) + "</span>");
lastSplit = offset + text.length;
}
newText.push(sanitize(code.slice(lastSplit)));
fixScroll();
newText = newText.join("");
let [finalTxt, spacing] = addLineNums(newText);
$(".codetextholder").css("left", spacing + "ch");
if(newText.length > 0 && finalTxt[finalTxt.length - 1] == "\n") finalTxt += " ";
$("#codehighlight").html(finalTxt);
}
// Hookup syntax highlighting...
$("#codetext").on("input", updateHighlight);
$("#codetext").on("scroll", function(e) {
fixScroll();
});
$("#build").click(function(e) {
if(appData.player != null) appData.player.disconect();
let code = $("#codetext").val();
$("#outputconsole").html("");
try {
appData.music = runMusicLang(code);
} catch(exp) {
$("#outputconsole").html(sanitize(exp));
return;
}
try {
let secsPerTick = getSecondsPerTick(appData.music);
let arduinoGen = new ToneArduinoConv(appData.music.tracks, secsPerTick);
$("#outputconsole").html(sanitize(arduinoGen.getCode()));
appData.player = new TonePlayerController(
$("#play"),
$("#stop"),
$("#play-slider"),
new TonePlayer(appData.music.tracks, secsPerTick),
(p, o) => {
let icon = (a) => ((a)? "fa-pause": "fa-play");
$("#playicon").removeClass(icon(!p)).addClass(icon(p));
}
);
appData.player.connect();
} catch(e) {
console.log("Warning: " + e);
}
});
// Download support...
$("#download").on("click", function(e) {
function downloadFile(filename, data) {
let aElem = $("<a>")
aElem.css("display", "none");
aElem.attr("download", filename);
aElem.attr("href", "data:text/plain;charset=utf-8," + encodeURIComponent(data));
$("body").append(aElem);
aElem[0].click();
aElem.remove();
}
downloadFile("MusicFile.txt", $("#codetext").val());
});
$("#upload").on("click", function(e) {
$("#fileselect")[0].click();
});
$("#fileselect").on("change", async function(e) {
let fileObj = $("#fileselect")[0];
if(fileObj.files.length > 0) {
let file = fileObj.files[0];
try {
let text = await file.text();
$("#codetext").val(text);
updateHighlight(null);
} catch(e) {
$("#outputconsole").html(sanitize(e));
}
}
fileObj.value = null;
});
// Disable selection on noselect elements.
$(".noselect").on("selectstart", false);
});