2014-11-28 20:49:41 -05:00
|
|
|
CocoView = require 'views/core/CocoView'
|
2014-03-14 20:06:08 -04:00
|
|
|
template = require 'templates/play/level/level_loading'
|
2014-11-28 20:49:41 -05:00
|
|
|
utils = require 'core/utils'
|
2014-12-03 15:04:12 -05:00
|
|
|
SubscribeModal = require 'views/play/modal/SubscribeModal'
|
2014-03-14 20:06:08 -04:00
|
|
|
|
2014-07-17 20:20:11 -04:00
|
|
|
module.exports = class LevelLoadingView extends CocoView
|
2014-06-30 22:16:26 -04:00
|
|
|
id: 'level-loading-view'
|
2014-03-14 20:06:08 -04:00
|
|
|
template: template
|
|
|
|
|
2014-09-21 17:35:59 -04:00
|
|
|
events:
|
2014-09-21 23:19:27 -04:00
|
|
|
'mousedown .start-level-button': 'startUnveiling' # Split into two for animation smoothness.
|
2014-09-21 17:35:59 -04:00
|
|
|
'click .start-level-button': 'onClickStartLevel'
|
2014-12-03 15:04:12 -05:00
|
|
|
'click .start-subscription-button': 'onClickStartSubscription'
|
2014-09-21 17:35:59 -04:00
|
|
|
|
2014-09-21 18:52:49 -04:00
|
|
|
subscriptions:
|
2014-09-21 23:19:27 -04:00
|
|
|
'level:loaded': 'onLevelLoaded' # If Level loads after level loading view.
|
2014-12-03 15:04:12 -05:00
|
|
|
'level:subscription-required': 'onSubscriptionRequired' # If they'd need a subscription to start playing.
|
|
|
|
'subscribe-modal:subscribed': 'onSubscribed'
|
2014-09-21 17:35:59 -04:00
|
|
|
|
2014-11-23 18:24:59 -05:00
|
|
|
shortcuts:
|
|
|
|
'enter': 'onEnterPressed'
|
|
|
|
|
2014-03-17 01:01:21 -04:00
|
|
|
afterRender: ->
|
2014-11-01 14:10:26 -04:00
|
|
|
super()
|
2014-03-17 03:12:11 -04:00
|
|
|
@$el.find('.tip.rare').remove() if _.random(1, 10) < 9
|
|
|
|
tips = @$el.find('.tip').addClass('to-remove')
|
2014-03-17 01:01:21 -04:00
|
|
|
tip = _.sample(tips)
|
2014-11-12 18:00:24 -05:00
|
|
|
$(tip).removeClass('to-remove').addClass('secret')
|
2014-03-17 03:12:11 -04:00
|
|
|
@$el.find('.to-remove').remove()
|
2014-09-21 23:19:27 -04:00
|
|
|
@onLevelLoaded level: @options.level if @options.level?.get('goals') # If Level was already loaded.
|
2014-03-14 20:06:08 -04:00
|
|
|
|
2014-11-01 14:10:26 -04:00
|
|
|
afterInsert: ->
|
|
|
|
super()
|
|
|
|
_.defer =>
|
|
|
|
return if @destroyed
|
|
|
|
# Make sure that we are as tall now as we will be when the canvas wrapper is resized to the right height.
|
2014-11-08 14:51:31 -05:00
|
|
|
currentCanvasHeight = 589
|
2014-11-01 14:10:26 -04:00
|
|
|
canvasAspectRatio = 924 / 589
|
|
|
|
eventualCanvasWidth = $('#canvas-wrapper').outerWidth()
|
2014-11-08 14:51:31 -05:00
|
|
|
eventualCanvasHeight = eventualCanvasWidth / canvasAspectRatio
|
|
|
|
newHeight = Math.max 769, @$el.outerHeight() + eventualCanvasHeight - currentCanvasHeight + 2
|
|
|
|
@$el.addClass('manually-sized').css('height', newHeight)
|
2014-11-01 14:10:26 -04:00
|
|
|
|
2014-09-21 18:52:49 -04:00
|
|
|
onLevelLoaded: (e) ->
|
|
|
|
@level = e.level
|
2014-09-22 01:10:52 -04:00
|
|
|
goalContainer = @$el.find('.level-loading-goals')
|
|
|
|
goalList = goalContainer.find('ul')
|
|
|
|
goalCount = 0
|
2014-09-21 23:19:27 -04:00
|
|
|
for goalID, goal of @level.get('goals') when (not goal.team or goal.team is e.team) and not goal.hiddenGoal
|
2014-09-21 23:49:45 -04:00
|
|
|
name = utils.i18n goal, 'name'
|
2014-11-30 21:02:45 -05:00
|
|
|
goalList.append $('<li>' + name + '</li>')
|
2014-09-22 01:10:52 -04:00
|
|
|
++goalCount
|
|
|
|
if goalCount
|
|
|
|
goalContainer.removeClass('secret')
|
|
|
|
if goalCount is 1
|
|
|
|
goalContainer.find('.panel-heading').text $.i18n.t 'play_level.goal' # Not plural
|
2014-11-12 18:00:24 -05:00
|
|
|
tip = @$el.find('.tip')
|
|
|
|
if @level.get('loadingTip')
|
|
|
|
loadingTip = utils.i18n @level.attributes, 'loadingTip'
|
|
|
|
tip.text(loadingTip)
|
|
|
|
tip.removeClass('secret')
|
2014-09-21 18:52:49 -04:00
|
|
|
|
2014-03-14 20:06:08 -04:00
|
|
|
showReady: ->
|
2014-05-20 00:53:14 -04:00
|
|
|
return if @shownReady
|
|
|
|
@shownReady = true
|
2014-11-01 14:10:26 -04:00
|
|
|
_.delay @finishShowingReady, 1500 # Let any blocking JS hog the main thread before we show that we're done.
|
|
|
|
|
|
|
|
finishShowingReady: =>
|
|
|
|
return if @destroyed
|
2014-09-21 23:19:27 -04:00
|
|
|
if @options.autoUnveil
|
|
|
|
@startUnveiling()
|
|
|
|
@unveil()
|
|
|
|
else
|
2014-11-01 14:10:26 -04:00
|
|
|
Backbone.Mediator.publish 'audio-player:play-sound', trigger: 'level_loaded', volume: 0.75 # old: loading_ready
|
2014-11-30 21:02:45 -05:00
|
|
|
@$el.find('.progress').hide()
|
|
|
|
@$el.find('.start-level-button').show()
|
2014-03-14 20:06:08 -04:00
|
|
|
|
2014-09-21 18:52:49 -04:00
|
|
|
startUnveiling: (e) ->
|
2014-11-26 09:58:23 -05:00
|
|
|
@playSound 'menu-button-click'
|
2014-09-21 18:52:49 -04:00
|
|
|
Backbone.Mediator.publish 'level:loading-view-unveiling', {}
|
2014-09-23 14:39:56 -04:00
|
|
|
_.delay @onClickStartLevel, 1000 # If they never mouse-up for the click (or a modal shows up and interrupts the click), do it anyway.
|
2014-09-21 18:52:49 -04:00
|
|
|
|
2014-09-23 14:39:56 -04:00
|
|
|
onClickStartLevel: (e) =>
|
|
|
|
return if @destroyed
|
2014-09-21 17:35:59 -04:00
|
|
|
@unveil()
|
2014-03-14 20:06:08 -04:00
|
|
|
|
2014-11-23 18:24:59 -05:00
|
|
|
onEnterPressed: (e) ->
|
|
|
|
return unless @shownReady and not @$el.hasClass 'unveiled'
|
|
|
|
@startUnveiling()
|
|
|
|
@onClickStartLevel()
|
|
|
|
|
2014-09-21 17:35:59 -04:00
|
|
|
unveil: ->
|
2014-09-23 14:39:56 -04:00
|
|
|
return if @$el.hasClass 'unveiled'
|
2014-04-09 12:04:59 -04:00
|
|
|
@$el.addClass 'unveiled'
|
2014-03-14 20:06:08 -04:00
|
|
|
loadingDetails = @$el.find('.loading-details')
|
|
|
|
duration = parseFloat loadingDetails.css 'transition-duration'
|
|
|
|
loadingDetails.css 'top', -loadingDetails.outerHeight(true)
|
2014-03-14 22:44:19 -04:00
|
|
|
@$el.find('.left-wing').css left: '-100%', backgroundPosition: 'right -400px top 0'
|
|
|
|
@$el.find('.right-wing').css right: '-100%', backgroundPosition: 'left -400px top 0'
|
2014-09-11 11:38:30 -04:00
|
|
|
Backbone.Mediator.publish 'audio-player:play-sound', trigger: 'loading-view-unveil', volume: 0.5
|
2014-03-14 20:06:08 -04:00
|
|
|
_.delay @onUnveilEnded, duration * 1000
|
|
|
|
|
|
|
|
onUnveilEnded: =>
|
|
|
|
return if @destroyed
|
2014-04-13 23:31:23 -04:00
|
|
|
Backbone.Mediator.publish 'level:loading-view-unveiled', view: @
|
2014-12-03 15:04:12 -05:00
|
|
|
|
|
|
|
onSubscriptionRequired: (e) ->
|
|
|
|
@$el.find('.level-loading-goals, .tip, .load-progress').hide()
|
|
|
|
@$el.find('.subscription-required').show()
|
|
|
|
|
|
|
|
onClickStartSubscription: (e) ->
|
2014-12-06 12:35:13 -05:00
|
|
|
@openModalView new SubscribeModal()
|
|
|
|
window.tracker?.trackEvent 'Show subscription modal', category: 'Subscription', label: 'level loading'
|
|
|
|
window.tracker?.trackPageView "subscription/show-modal", ['Google Analytics']
|
2014-12-03 15:04:12 -05:00
|
|
|
|
|
|
|
onSubscribed: ->
|
|
|
|
document.location.reload()
|