// QLOCKTWO JavaScript Core // after the official QlockTwo at http://qlocktwo.com/ // Script written by Markus Birth var qlockTwo = { 'availLangs': [], 'languageObj': null, 'updateTime': function( once ) { if ( this.languageObj == null ) return false; var now = new Date(); var sentence = this.languageObj.makeSentence( now ); var m4 = now.getMinutes() % 5; this.highlight( sentence ); this.paintDots( m4 ); this.setTitle( sentence, m4 ); if ( !once ) setTimeout( 'qlockTwo.updateTime();', (61-now.getSeconds())*1000 ); return true; }, 'setTitle': function( text, m4 ) { // convert case var properText = text.toLowerCase().replace(/[^\s]+/g, function(s) { return s.charAt(0).toUpperCase() + s.substr(1); }); switch ( m4 ) { case 0: properText += ' ○'; break; case 1: properText += ' ◔'; break; case 2: properText += ' ◑'; break; case 3: properText += ' ◕'; break; case 4: properText += ' ●'; break; default: break; } document.title = properText; $('title').text( properText ); }, /** * @param {String} sentence */ 'highlight': function( sentence ) { var xLINES = this.languageObj.lines; var words = sentence.split(' '); var seekline = 0; var seekcol = 0; for (var i=0; i= 0 ) { var html = $('#line'+j).html(); // TODO: For words with different possible locations (es:"Y" or fr:"ET") find place nearest to another word html = html.replace( word, ''+word+''); $('#line'+j).html(html); seekline = j; seekcol = k+word.length+1; break; } } } }, 'paintDots': function( num ) { for (var i=1; i<=4; i++) { if (i <= num) { $('#dot'+i).html(''); } else { $('#dot'+i).html('●'); } } }, 'drawClock': function( parentDiv ) { $( parentDiv ).html( '' ); $( parentDiv ).append( '
').addClass('off'); for (var i in this.languageObj.lines) { $( parentDiv + ' #matrix' ).append( '
' + this.languageObj.lines[i] + '
'); } }, 'setLanguage': function( langObj ) { this.languageObj = langObj; } };