2014-01-03 13:32:13 -05:00
|
|
|
View = require 'views/kinds/CocoView'
|
|
|
|
template = require 'templates/play/level/tome/cast_button'
|
|
|
|
{me} = require 'lib/auth'
|
|
|
|
|
|
|
|
module.exports = class CastButtonView extends View
|
|
|
|
id: 'cast-button-view'
|
|
|
|
template: template
|
|
|
|
|
2014-03-24 13:11:27 -04:00
|
|
|
events:
|
|
|
|
'click .cast-button': 'onCastButtonClick'
|
|
|
|
'click .autocast-delays a': 'onCastOptionsClick'
|
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
subscriptions:
|
|
|
|
'tome:spell-changed': "onSpellChanged"
|
|
|
|
'tome:cast-spells': 'onCastSpells'
|
|
|
|
'god:world-load-progress-changed': 'onWorldLoadProgressChanged'
|
|
|
|
'god:new-world-created': 'onNewWorld'
|
|
|
|
|
|
|
|
constructor: (options) ->
|
|
|
|
super options
|
|
|
|
@spells = options.spells
|
2014-02-19 17:00:54 -05:00
|
|
|
@levelID = options.levelID
|
2014-01-03 13:32:13 -05:00
|
|
|
isMac = navigator.platform.toUpperCase().indexOf('MAC') isnt -1
|
2014-02-23 16:27:02 -05:00
|
|
|
@castShortcut = "⇧↵"
|
2014-01-03 13:32:13 -05:00
|
|
|
@castShortcutVerbose = "Shift+Enter"
|
|
|
|
|
2014-02-11 17:58:45 -05:00
|
|
|
getRenderData: (context={}) ->
|
2014-01-03 13:32:13 -05:00
|
|
|
context = super context
|
|
|
|
context.castShortcutVerbose = @castShortcutVerbose
|
|
|
|
context
|
|
|
|
|
|
|
|
afterRender: ->
|
|
|
|
super()
|
2014-02-12 15:41:41 -05:00
|
|
|
@castButton = $('.cast-button', @$el)
|
|
|
|
@castButtonGroup = $('.cast-button-group', @$el)
|
|
|
|
@castOptions = $('.autocast-delays', @$el)
|
2014-03-21 16:04:16 -04:00
|
|
|
delay = me.get('autocastDelay')
|
2014-01-03 13:32:13 -05:00
|
|
|
delay ?= 5000
|
2014-03-07 18:16:13 -05:00
|
|
|
if @levelID in ['brawlwood', 'brawlwood-tutorial', 'dungeon-arena', 'dungeon-arena-tutorial']
|
2014-02-19 17:00:54 -05:00
|
|
|
delay = 90019001
|
2014-01-03 13:32:13 -05:00
|
|
|
@setAutocastDelay delay
|
|
|
|
|
2014-01-25 18:11:29 -05:00
|
|
|
attachTo: (spellView) ->
|
|
|
|
@$el.detach().prependTo(spellView.toolbarView.$el).show()
|
|
|
|
|
2014-02-12 23:45:29 -05:00
|
|
|
onCastButtonClick: (e) ->
|
|
|
|
Backbone.Mediator.publish 'tome:manual-cast', {}
|
|
|
|
|
2014-02-13 20:43:42 -05:00
|
|
|
onCastOptionsClick: (e) =>
|
|
|
|
console.log 'cast options click', $(e.target)
|
2014-02-12 15:41:41 -05:00
|
|
|
Backbone.Mediator.publish 'focus-editor'
|
|
|
|
@castButtonGroup.removeClass 'open'
|
|
|
|
@setAutocastDelay $(e.target).attr 'data-delay'
|
|
|
|
false
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
onSpellChanged: (e) ->
|
|
|
|
@updateCastButton()
|
|
|
|
|
|
|
|
onCastSpells: (e) ->
|
|
|
|
@casting = true
|
2014-02-22 18:26:38 -05:00
|
|
|
Backbone.Mediator.publish 'play-sound', trigger: 'cast', volume: 0.5
|
2014-01-03 13:32:13 -05:00
|
|
|
@updateCastButton()
|
2014-02-19 21:04:37 -05:00
|
|
|
@onWorldLoadProgressChanged progress: 0
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
onWorldLoadProgressChanged: (e) ->
|
2014-02-28 14:05:41 -05:00
|
|
|
return # trying out showing progress on the canvas instead
|
2014-01-03 13:32:13 -05:00
|
|
|
overlay = @castButtonGroup.find '.button-progress-overlay'
|
2014-02-22 20:50:45 -05:00
|
|
|
overlay.css 'width', e.progress * @castButton.outerWidth() + 1
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
onNewWorld: (e) ->
|
|
|
|
@casting = false
|
2014-02-22 18:26:38 -05:00
|
|
|
Backbone.Mediator.publish 'play-sound', trigger: 'cast-end', volume: 0.5
|
2014-01-03 13:32:13 -05:00
|
|
|
@updateCastButton()
|
|
|
|
|
|
|
|
updateCastButton: ->
|
|
|
|
return if _.some @spells, (spell) => not spell.loaded
|
|
|
|
castable = _.some @spells, (spell) => spell.hasChangedSignificantly spell.getSource()
|
|
|
|
@castButtonGroup.toggleClass('castable', castable).toggleClass('casting', @casting)
|
|
|
|
if @casting
|
|
|
|
s = $.i18n.t("play_level.tome_cast_button_casting", defaultValue: "Casting")
|
|
|
|
else if castable
|
2014-02-19 21:20:21 -05:00
|
|
|
s = $.i18n.t("play_level.tome_cast_button_castable", defaultValue: "Cast Spell") + " " + @castShortcut
|
2014-01-03 13:32:13 -05:00
|
|
|
else
|
|
|
|
s = $.i18n.t("play_level.tome_cast_button_cast", defaultValue: "Spell Cast")
|
|
|
|
@castButton.text s
|
2014-01-04 18:49:13 -05:00
|
|
|
@castButton.prop 'disabled', not castable
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
setAutocastDelay: (delay) ->
|
|
|
|
#console.log "Set autocast delay to", delay
|
|
|
|
return unless delay
|
|
|
|
@autocastDelay = delay = parseInt delay
|
2014-03-21 16:04:16 -04:00
|
|
|
me.set('autocastDelay', delay)
|
|
|
|
me.save()
|
2014-01-03 13:32:13 -05:00
|
|
|
spell.view.setAutocastDelay delay for spellKey, spell of @spells
|
|
|
|
@castOptions.find('a').each ->
|
|
|
|
$(@).toggleClass('selected', parseInt($(@).attr('data-delay')) is delay)
|