Created
June 13, 2014 03:46
-
-
Save connerbrooks/d6160ddd4ca8b94a9ace to your computer and use it in GitHub Desktop.
[wearscript] pebble spanish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html style="width:100%; height:100%; overflow:hidden"> | |
<head> | |
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> | |
</head> | |
<body style="width:100%; height:100%; overflow:hidden; margin:0"> | |
<script> | |
// Fisher-Yates shuffling algorithm (http://stackoverflow.com/questions/2450954/how-to-randomize-shuffle-a-javascript-array) | |
function shuffle(array) { | |
var currentIndex = array.length | |
, temporaryValue | |
, randomIndex | |
; | |
// While there remain elements to shuffle... | |
while (0 !== currentIndex) { | |
// Pick a remaining element... | |
randomIndex = Math.floor(Math.random() * currentIndex); | |
currentIndex -= 1; | |
// And swap it with the current element. | |
temporaryValue = array[currentIndex]; | |
array[currentIndex] = array[randomIndex]; | |
array[randomIndex] = temporaryValue; | |
} | |
return array; | |
} | |
// The real Kimono+Pebble+Wearscript stuff | |
function main() { | |
if (WS.scriptVersion(1)) return; | |
var choices = ["a", "b", "c"]; | |
var answer = "b"; | |
var question = "abc"; | |
var currentChoiceIndex = 0; | |
// Display the given choice | |
function displayChoice(index) { | |
WS.pebbleSetTitle(question+"?"); | |
WS.pebbleSetSubtitle(( index + 1 ) + ". " + choices[ index ] , true); | |
}; | |
// Iterate over the choices using +1, -1 | |
function nextChoice(iter) { | |
nextChoiceIndex = (currentChoiceIndex + iter) | |
% 3; | |
displayChoice(currentChoiceIndex); | |
}; | |
// Checks whether selection was correct, displays result | |
function selectChoice() { | |
if (answer == choices[currentChoiceIndex]) { | |
WS.pebbleSetTitle("Correct!"); | |
} else { | |
WS.pebbleSetTitle("Wrong!"); | |
} | |
WS.pebbleSetSubtitle(question + " means " + answer); | |
}; | |
// Sets up and displays new question | |
function displayQuestion(q, qanswer, choice1, choice2) { | |
question = q; | |
choices = shuffle([choice1, choice2, qanswer]); | |
answer = qanswer; | |
displayChoice(0); | |
WS.pebbleVibe(2); | |
} | |
// Button press handler | |
WS.gestureCallback('onPebbleSingleClick', function(button) { | |
switch (button) { | |
case "DOWN": | |
nextChoice(1); | |
break; | |
case "UP": | |
nextChoice(-1); | |
break; | |
case "SELECT": | |
selectChoice(); | |
break; | |
default: | |
WS.log("invalid choice"); | |
break; | |
} | |
}); | |
// Spanish specific logic | |
var questionbank = []; | |
function loadSpanishQuestion() { | |
var temp = questionbank[Math.floor(Math.random()*questionbank.length)]; | |
var c1 = questionbank[Math.floor(Math.random()*questionbank.length)]; | |
var c2 = questionbank[Math.floor(Math.random()*questionbank.length)]; | |
displayQuestion(temp.spanish, temp.english, c1, c2); | |
} | |
function kimonoCallback(data) { | |
console.log(data); | |
questionbank = data.results.words; | |
setInterval(function(){ loadSpanishQuestion(); }, 1000*60*15); | |
} | |
// WS.pebbleSetSubtitle("hshhjg"); | |
$.ajax({ | |
url :"http://www.kimonolabs.com/api/2haum126?apikey=989877be85a3ca05477428c8b41d4fbe&callback=kimonoCallback", | |
crossDomain:true, | |
dataType :"jsonp" | |
}); | |
} | |
window.onload = main; | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"name":"Example"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment