mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Added a button in the level editor to choose which team to play when editing a ladder level.
This commit is contained in:
parent
b635c4cf16
commit
94a6e3961b
2 changed files with 17 additions and 3 deletions
app
|
@ -47,9 +47,20 @@ block header
|
|||
a
|
||||
span.glyphicon-floppy-disk.glyphicon
|
||||
|
||||
li(title="⌃↩ or ⌘↩: Play preview of current level")#play-button
|
||||
a
|
||||
span.glyphicon-play.glyphicon
|
||||
if level.get('type') === 'ladder'
|
||||
li.dropdown
|
||||
a(data-toggle='dropdown')
|
||||
span.glyphicon-play.glyphicon
|
||||
ul.dropdown-menu
|
||||
li.dropdown-header Play As Which Team?
|
||||
li
|
||||
for team in ['humans', 'ogres']
|
||||
a.play-with-team-button(data-team=team)= team
|
||||
|
||||
else
|
||||
li(title="⌃↩ or ⌘↩: Play preview of current level")#play-button
|
||||
a
|
||||
span.glyphicon-play.glyphicon
|
||||
li.dropdown
|
||||
a(data-toggle='dropdown')
|
||||
span.glyphicon-chevron-down.glyphicon
|
||||
|
|
|
@ -25,6 +25,7 @@ module.exports = class EditorLevelView extends View
|
|||
|
||||
events:
|
||||
'click #play-button': 'onPlayLevel'
|
||||
'click .play-with-team-button': 'onPlayLevel'
|
||||
'click #commit-level-start-button': 'startCommittingLevel'
|
||||
'click #fork-level-start-button': 'startForkingLevel'
|
||||
'click #level-history-button': 'showVersionHistory'
|
||||
|
@ -77,6 +78,7 @@ module.exports = class EditorLevelView extends View
|
|||
@$el.find('#level-watch-button').find('> span').toggleClass('secret') if @level.watching()
|
||||
|
||||
onPlayLevel: (e) ->
|
||||
team = $(e.target).data('team')
|
||||
sendLevel = =>
|
||||
@childWindow.Backbone.Mediator.publish 'level-reload-from-data', level: @level, supermodel: @supermodel
|
||||
if @childWindow and not @childWindow.closed
|
||||
|
@ -85,6 +87,7 @@ module.exports = class EditorLevelView extends View
|
|||
else
|
||||
# Create a new Window with a blank LevelView
|
||||
scratchLevelID = @level.get('slug') + '?dev=true'
|
||||
scratchLevelID += "&team=#{team}" if team
|
||||
@childWindow = window.open("/play/level/#{scratchLevelID}", 'child_window', 'width=1024,height=560,left=10,top=10,location=0,menubar=0,scrollbars=0,status=0,titlebar=0,toolbar=0', true)
|
||||
@childWindow.onPlayLevelViewLoaded = (e) => sendLevel() # still a hack
|
||||
@childWindow.focus()
|
||||
|
|
Loading…
Add table
Reference in a new issue