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
|
/**
* @brief jsonly.js contains the functions that are only called in js,
* not translated from server-side code.
*/
$('#transp').change( do_transpose );
var lastTransp = parseInt($('#transp').val());
function do_transpose()
{
var transp = parseInt($('#transp').val());
var neww = transp;
$(".tabs").each(function(){
// Since we only store text that is displayed, transpose relative to
// previous transposition.
// Requires the class to be "tabs chordXX";
var old = parseInt($(this).attr('class').substring(10));
if ( isNaN(old) )
{
old = $(this).attr('class').substring(10);
neww = transpadd(old, transp - lastTransp);
}
$(this).text( zj_transpose2( $(this).text(), transp - lastTransp ) );
$(this).removeClass("chord"+old);
$(this).addClass("chord"+neww);
});
$(".btn[data-key]").each(function(){
console.log($(this));
var oldKey = $(this).attr('data-key');
var newKey = transpadd(oldKey, transp - lastTransp);
if ( typeof newKey !== 'undefined' )
{
$(this).removeClass('btn-'+oldKey);
$(this).addClass('btn-'+newKey);
$(this).attr('data-key', newKey);
$(this).text( $(this).attr('data-words') + newKey );
}
var tt = parseInt($(this).attr('href').match(/transp=(.+)/)[1]);
tt = ( transp - lastTransp + 24 + tt)%12;
var newhref = $(this).attr('href').match(/(.*?&transp=).+/)[1] + tt;
$(this).attr('href', newhref);
})
lastTransp = transp;
}
$(".tabs").click(function(e) {
s = window.getSelection();
var range = s.getRangeAt(0);
var node = s.anchorNode;
while (range.toString().indexOf(' ') != 0 ) {
if (range.startOffset == 0)
break;
range.setStart(node, (range.startOffset - 1));
}
range.setStart(node, Math.max(0,range.startOffset));
while (range.toString().lastIndexOf(' ') != range.toString().length - 1
|| range.toString().length <= 1 )
{
range.setEnd(node, range.endOffset+1);
if ( range.endOffset == node.length)
break;
}
//range.setEnd(Math.min(range.endOffset+1,node.length);
var str = range.toString().trim();
if( str != "" )
show_tab(str);
});
function show_tab( chord )
{
var canvas = $("#guitarregion")[0];
var context = canvas.getContext('2d');
context.clearRect(0, 0, canvas.width, canvas.height);
var canvas = $("#ukuleleregion")[0];
var context = canvas.getContext('2d');
context.clearRect(0, 0, canvas.width, canvas.height);
getChordFrets(chord);
}
function getChordFrets(chord)
{
$("#messages").html("");
chord = chord.replace("(", "");
chord = chord.replace(")", "");
chord = chord.replace("sus", "s");
chord = chord.replace("s4", "s");
chord = chord.replace("s", "sus");
chord = chord.replace("7sus", "sus7");
chord = chord.replace("mj7", "maj7");
var chordd = chord;
chordd = chordd.replace("Db", "C#");
chordd = chordd.replace("Eb", "D#");
chordd = chordd.replace("Gb", "F#");
chordd = chordd.replace("Ab", "G#");
chordd = chordd.replace("Bb", "A#");
try{
guitarTab = chordsDict[chordd][0];
ChordCharter.drawChord( "guitarregion", 30, 25, chord, guitarTab );
}
catch(target){
$("#messages").prepend("No guitar tab for '" + chord + "'");
}
try{
ukuleleTab = ukulelechordsDict[chordd][0];
ChordCharter.drawChord( "ukuleleregion", 30, 25, chord, ukuleleTab );
}
catch(target){
$("#messages").prepend("No ukulele tab for '" + chord + "'");
}
}
|