X-Git-Url: https://jasonwoof.com/gitweb/?p=hexbog.git;a=blobdiff_plain;f=main.coffee;h=7daeab54a6959b286437143e11b199ec96de85a9;hp=be83ff239aa0dd00c88f276a2eedfeec3ed1ace8;hb=a737e0df6dcb2123857f2d54f6cec06dbb855dc5;hpb=fcffbb0075df91b4b460e184a6324a26b367762b diff --git a/main.coffee b/main.coffee index be83ff2..7daeab5 100644 --- a/main.coffee +++ b/main.coffee @@ -306,7 +306,7 @@ update_selection_display = -> else last = '' $little_tip.html "Click the #{last}\"#{word.substr(word.length - 1)}\" for #{score_for word} points" - $big_tip.html "#{word}" + $big_tip.html "#{word}" $big_tip.addClass('good') else $big_tip.html word @@ -332,9 +332,13 @@ unselect_tile = -> update_selection_display() _unselect_tile = -> - html_tile = selected.pop().dom - html_tile.removeClass 'selected_word' - html_tile.removeClass 'selected' + tile = selected.pop() + dom = tile.dom + if tile.connector? + tile.connector.remove() + delete tile.connector + dom.removeClass 'selected_word' + dom.removeClass 'selected' unselect_all = -> while selected.length @@ -544,7 +548,11 @@ blip_selection = -> force = effects.force.last() if force > 0 for tile in area.up - tile.new_hp = tile.hp + force + if tile.new_hp + # for overlap of board and [n]neigbors + tile.new_hp += force + else + tile.new_hp = tile.hp + force for s in spaces s.tile.new_hp ?= s.tile.hp - 1 if s.tile.new_hp < 0 @@ -618,18 +626,57 @@ activate_selection = -> show_definition = (word, type, definition, language) -> - html = "" + html = "" html += "#{word.substr(0, 1).toUpperCase() + word.substr(1)}, #{type}" if language isnt 'English' html += " (#{language})" html += ': ' html += definition - html += '
Definition ©wiktionary.org CC-BY-SA
' + html += '
Definition ©wiktionary.org CC-BY-SA
' $definition_body.html html +connector_width = 11 +connector_radius = 4 +connector_slant = 12 +add_connector = (tile, horiz, vert) -> + style = {} + switch horiz + when 'left' + style.left = -9 + when 'mid' + style.left = 21 - connector_radius + when 'right' + style.right = -9 + switch vert + when 'top' + style.top = -9 + when 'up' + style.top = 21 - connector_radius - connector_slant + when 'down' + style.top = 21 - connector_radius + connector_slant + when 'bot' + style.bottom = -9 + tile.connector = $("
").css style + tile.dom.append tile.connector select_tile = (tile) -> selected.push tile + if selected.length > 1 + prev = selected[selected.length - 2] + if prev.space.top_px < tile.space.top_px + if prev.space.left_px < tile.space.left_px + add_connector tile, 'left', 'up' + else if prev.space.left_px is tile.space.left_px + add_connector tile, 'mid', 'top' + else + add_connector tile, 'right', 'up' + else + if prev.space.left_px < tile.space.left_px + add_connector tile, 'left', 'down' + else if prev.space.left_px is tile.space.left_px + add_connector tile, 'mid', 'bot' + else + add_connector tile, 'right', 'down' update_selection_display() new_tile = (space, y) -> @@ -781,7 +828,7 @@ extract_wiktionary_definiton = (html) -> look_up_definition = (word) -> $definition_body.html "Looking up definition for \"#{word}\"..." $.ajax({ - url: "http://en.wiktionary.org/w/api.php?action=parse&format=json&page=#{word}" + url: "https://en.wiktionary.org/w/api.php?action=parse&format=json&page=#{word}" jsonpCallback: "lud_#{word}" # always use the same callback for the same word so it's cacheable dataType: 'jsonp' cache: true