Make dead dudes look deader. Eagerly destroy ThangListEntryView popovers, Highlander-style. Announce eternal brunch.

This commit is contained in:
Nick Winter 2014-02-19 17:02:39 -08:00
parent 11a4c1b6fd
commit 0469c918db
3 changed files with 30 additions and 1 deletions
app
styles/play/level/tome
views/play/level/tome
bin

View file

@ -7,9 +7,26 @@
box-sizing: border-box
width: 20%
max-width: 100px
position: relative
&.dead
@include opacity(0.50)
@include opacity(0.75)
&:after
content: "×"
font-size: 160px
color: red
@include opacity(0.75)
position: absolute
bottom: 0
height: 100%
width: 100%
text-align: center
line-height: 100px
font-family: monospace
.thang-name
text-decoration: line-through
&.disabled
@include opacity(0.25)

View file

@ -20,6 +20,7 @@ module.exports = class ThangListEntryView extends View
'level-enable-controls': 'onEnableControls'
'surface:frame-changed': "onFrameChanged"
'level-set-letterbox': 'onSetLetterbox'
'tome:thang-list-entry-popover-shown': 'onThangListEntryPopoverShown'
events:
'click': 'onClick'
@ -89,14 +90,22 @@ module.exports = class ThangListEntryView extends View
onMouseLeave: (e) ->
return unless @controlsEnabled and @spells.length
clearTimeout @hideSpellsTimeout if @hideSpellsTimeout
@hideSpellsTimeout = _.delay @hideSpells, 100
onThangListEntryPopoverShown: (e) ->
# I couldn't figure out how to get the mouseenter / mouseleave to always work, so this is a fallback
# to hide our popover is another Thang's popover gets shown.
return if e.entry is @
@hideSpells()
showSpells: =>
@sortSpells()
@$el.data('bs.popover').options.content = @getSpellListHTML()
@$el.popover('setContent').popover('show')
@$el.parent().parent().parent().i18n()
clearTimeout @hideSpellsTimeout if @hideSpellsTimeout
@hideSpellsTimeout = null
@popover = @$el.parent().parent().parent().find('.popover')
@popover.off 'mouseenter mouseleave'
@popover.mouseenter (e) => @onMouseEnter()
@ -104,9 +113,11 @@ module.exports = class ThangListEntryView extends View
thangID = @thang.id
@popover.find('code').click (e) ->
Backbone.Mediator.publish "level-select-sprite", thangID: thangID, spellName: $(@).data 'spell-name'
Backbone.Mediator.publish 'tome:thang-list-entry-popover-shown', entry: @
hideSpells: =>
@$el.popover('hide')
@hideSpellsTimeout = null
getSpellListHTML: ->
spellsPopoverTemplate {spells: @spells}

View file

@ -11,6 +11,7 @@ coco_path = os.getenv("COCO_DIR",os.path.join(current_directory,os.pardir))
brunch_path = coco_path + os.sep + "node_modules" + os.sep + ".bin" + os.sep + "brunch"
subprocess.Popen("ulimit -n 10000",shell=True)
while True:
print("Starting brunch. After the first compile, it'll keep running and watch for changes.")
call(brunch_path + " w",shell=True,cwd=coco_path)
print("Brunch crashed. Press control+C within 1 second to quit.")
time.sleep(1)