codecombat/app/views/play/level/control_bar_view.coffee

90 lines
2.8 KiB
CoffeeScript
Raw Normal View History

2014-01-03 13:32:13 -05:00
View = require 'views/kinds/CocoView'
template = require 'templates/play/level/control_bar'
DocsModal = require './modal/docs_modal'
MultiplayerModal = require './modal/multiplayer_modal'
ReloadModal = require './modal/reload_modal'
module.exports = class ControlBarView extends View
id: "control-bar-view"
template: template
subscriptions:
'bus:player-states-changed': 'onPlayerStatesChanged'
events:
'click #multiplayer-button': ->
window.tracker?.trackEvent 'Clicked Multiplayer', level: @worldName, label: @worldName
@showMultiplayerModal()
'click #docs-button': ->
window.tracker?.trackEvent 'Clicked Docs', level: @worldName, label: @worldName
@showGuideModal()
'click #restart-button': ->
window.tracker?.trackEvent 'Clicked Restart', level: @worldName, label: @worldName
@showRestartModal()
2014-03-12 20:51:09 -04:00
'click #next-game-button': ->
Backbone.Mediator.publish 'next-game-pressed'
2014-01-03 13:32:13 -05:00
'click': -> Backbone.Mediator.publish 'focus-editor'
constructor: (options) ->
@worldName = options.worldName
@session = options.session
@level = options.level
2014-02-06 20:31:08 -05:00
@playableTeams = options.playableTeams
@ladderGame = options.ladderGame
2014-03-12 20:51:09 -04:00
@spectateGame = options.spectateGame ? false
2014-01-03 13:32:13 -05:00
super options
setBus: (@bus) ->
onPlayerStatesChanged: (e) ->
2014-02-12 15:41:41 -05:00
# TODO: this doesn't fire any more. Replacement?
2014-01-03 13:32:13 -05:00
return unless @bus is e.bus
numPlayers = _.keys(e.players).length
return if numPlayers is @numPlayers
@numPlayers = numPlayers
text = 'Multiplayer'
text += " (#{numPlayers})" if numPlayers > 1
$('#multiplayer-button', @$el).text(text)
getRenderData: (c={}) ->
super c
c.worldName = @worldName
c.multiplayerEnabled = @session.get('multiplayer')
c.ladderGame = @ladderGame
2014-03-12 20:51:09 -04:00
c.spectateGame = @spectateGame
c.homeLink = "/"
levelID = @level.get('slug')
if levelID in ["brawlwood", "brawlwood-tutorial", "dungeon-arena", "dungeon-arena-tutorial"]
levelID = 'brawlwood' if levelID is 'brawlwood-tutorial'
c.homeLink = "/play/ladder/" + levelID
c
2014-01-03 13:32:13 -05:00
afterRender: ->
super()
@guideHighlightInterval ?= setInterval @onGuideHighlight, 5 * 60 * 1000
destroy: ->
clearInterval @guideHighlightInterval if @guideHighlightInterval
super()
onGuideHighlight: =>
return if @destroyed or @guideShownOnce
@$el.find('#docs-button').hide().show('highlight', 4000)
2014-01-03 13:32:13 -05:00
showGuideModal: ->
options = {docs: @level.get('documentation'), supermodel: @supermodel}
@openModalView(new DocsModal(options))
clearInterval @guideHighlightInterval
@guideHighlightInterval = null
2014-01-03 13:32:13 -05:00
showMultiplayerModal: ->
@openModalView(new MultiplayerModal(session: @session, playableTeams: @playableTeams, level: @level, ladderGame: @ladderGame))
2014-01-03 13:32:13 -05:00
showRestartModal: ->
@openModalView(new ReloadModal())