2014-03-14 20:06:08 -04:00
|
|
|
View = require 'views/kinds/CocoView'
|
|
|
|
template = require 'templates/play/level/level_loading'
|
|
|
|
|
2014-03-16 20:07:10 -04:00
|
|
|
|
2014-03-14 20:06:08 -04:00
|
|
|
module.exports = class LevelLoadingView extends View
|
|
|
|
id: "level-loading-view"
|
|
|
|
template: template
|
|
|
|
|
|
|
|
subscriptions:
|
|
|
|
'level-loader:progress-changed': 'onLevelLoaderProgressChanged'
|
2014-03-17 01:01:21 -04:00
|
|
|
|
|
|
|
afterRender: ->
|
|
|
|
tips = @$el.find('.tip').addClass('secret')
|
|
|
|
tip = _.sample(tips)
|
|
|
|
$(tip).removeClass('secret')
|
2014-03-14 20:06:08 -04:00
|
|
|
|
|
|
|
onLevelLoaderProgressChanged: (e) ->
|
|
|
|
@progress = e.progress
|
2014-03-17 03:05:45 -04:00
|
|
|
@progress = 0.01 if @progress < 0.01
|
2014-03-14 20:06:08 -04:00
|
|
|
@updateProgressBar()
|
|
|
|
|
|
|
|
updateProgressBar: ->
|
|
|
|
#@text.text = "BUILDING" if @progress is 1
|
|
|
|
@$el.find('.progress-bar').css('width', (100 * @progress) + '%')
|
|
|
|
|
|
|
|
showReady: ->
|
2014-03-16 20:07:10 -04:00
|
|
|
@$el.find('h2').addClass('ready').text 'Ready!'
|
2014-03-14 20:06:08 -04:00
|
|
|
|
|
|
|
unveil: ->
|
2014-03-14 22:44:19 -04:00
|
|
|
_.delay @reallyUnveil, 1000
|
2014-03-14 20:06:08 -04:00
|
|
|
|
|
|
|
reallyUnveil: =>
|
|
|
|
return if @destroyed
|
|
|
|
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-03-14 20:06:08 -04:00
|
|
|
_.delay @onUnveilEnded, duration * 1000
|
|
|
|
|
|
|
|
onUnveilEnded: =>
|
|
|
|
return if @destroyed
|
|
|
|
Backbone.Mediator.publish 'onLoadingViewUnveiled', view: @
|