X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=main.coffee;h=0f11b9e2afd4faebd8f82297865c2aedb42ba79d;hb=59ce729a6e40837f20c48923b85420f8531250ec;hp=12fb70da826a2dd7cc7fb1da9b1d4b6d8d48c8a5;hpb=6f6384594cea325b2b141576af1fd683a9adadb4;p=hexbog.git diff --git a/main.coffee b/main.coffee index 12fb70d..0f11b9e 100644 --- a/main.coffee +++ b/main.coffee @@ -344,12 +344,13 @@ activate_selection = -> unless is_word word log "Not on word list: \"#{word}\"" return - score += Math.round(Math.pow(1.7, word.length)) + word_score = Math.round(Math.pow(1.7, word.length)) + score += word_score $score_display.html score - log "blipped: #{word}" + log "blipped \"#{word}\" for #{word_score} points" blip_selection() look_up_definition word - $('#definition').click() if cur_tab is 'instructions' + $('#definition').click() show_definition = (word, type, definition, language) -> @@ -576,6 +577,14 @@ init_tabs = -> for t in ['instructions', 'definition', 'logtab', 'restart'] init_tab t +init_keybinding = -> + $(window).keydown (e) -> + switch e.keyCode + when 32, 10, 13 + activate_selection() + when 27 + unselect_all() + $log = undefined init_log = -> $log = $('#log') @@ -587,6 +596,7 @@ init_game = -> init_log() if $(window).height() >= 440 $('#centerer').css('margin-top', '25px') + init_keybinding() init_tabs() init_board() init_html_board()