codecombat/app/views/editor/level/LevelEditView.coffee

213 lines
9.1 KiB
CoffeeScript
Raw Normal View History

RootView = require 'views/core/RootView'
2014-01-03 13:32:13 -05:00
template = require 'templates/editor/level/edit'
Level = require 'models/Level'
LevelSystem = require 'models/LevelSystem'
World = require 'lib/world/world'
DocumentFiles = require 'collections/DocumentFiles'
LevelLoader = require 'lib/LevelLoader'
2014-01-03 13:32:13 -05:00
# in the template, but need to require them to load them
require 'views/modal/RevertModal'
require 'views/editor/level/modals/GenerateTerrainModal'
ThangsTabView = require './thangs/ThangsTabView'
SettingsTabView = require './settings/SettingsTabView'
ScriptsTabView = require './scripts/ScriptsTabView'
ComponentsTabView = require './components/ComponentsTabView'
SystemsTabView = require './systems/SystemsTabView'
SaveLevelModal = require './modals/SaveLevelModal'
ForkModal = require 'views/editor/ForkModal'
SaveVersionModal = require 'views/editor/modal/SaveVersionModal'
PatchesView = require 'views/editor/PatchesView'
RelatedAchievementsView = require 'views/editor/level/RelatedAchievementsView'
VersionHistoryView = require './modals/LevelVersionsModal'
ComponentsDocumentationView = require 'views/editor/docs/ComponentsDocumentationView'
SystemsDocumentationView = require 'views/editor/docs/SystemsDocumentationView'
LevelFeedbackView = require 'views/editor/level/LevelFeedbackView'
storage = require 'core/storage'
require 'vendor/coffeescript' # this is tenuous, since the LevelSession and LevelComponent models are what compile the code
require 'vendor/treema'
# Make sure that all of our Aethers are loaded, so that if we try to preview the level, it will work.
require 'vendor/aether-javascript'
require 'vendor/aether-python'
require 'vendor/aether-coffeescript'
require 'vendor/aether-lua'
require 'vendor/aether-clojure'
require 'vendor/aether-io'
module.exports = class LevelEditView extends RootView
2014-06-30 22:16:26 -04:00
id: 'editor-level-view'
className: 'editor'
2014-01-03 13:32:13 -05:00
template: template
cache: false
events:
'click #play-button': 'onPlayLevel'
'click .play-with-team-button': 'onPlayLevel'
'click .play-with-team-parent': 'onPlayLevelTeamSelect'
2014-01-03 13:32:13 -05:00
'click #commit-level-start-button': 'startCommittingLevel'
'click li:not(.disabled) > #fork-start-button': 'startForking'
2014-04-17 14:29:12 -04:00
'click #level-history-button': 'showVersionHistory'
'click #undo-button': 'onUndo'
'mouseenter #undo-button': 'showUndoDescription'
'click #redo-button': 'onRedo'
'mouseenter #redo-button': 'showRedoDescription'
'click #patches-tab': -> @patchesView.load()
'click #components-tab': -> @subviews.editor_level_components_tab_view.refreshLevelThangsTreema @level.get('thangs')
2014-04-17 16:37:08 -04:00
'click #level-patch-button': 'startPatchingLevel'
'click #level-watch-button': 'toggleWatchLevel'
'click li:not(.disabled) > #pop-level-i18n-button': 'onPopulateI18N'
'click a[href="#editor-level-documentation"]': 'onClickDocumentationTab'
2014-04-21 15:15:22 -04:00
'mouseup .nav-tabs > li a': 'toggleTab'
2014-06-30 22:16:26 -04:00
2014-01-03 13:32:13 -05:00
constructor: (options, @levelID) ->
super options
@supermodel.shouldSaveBackups = (model) ->
model.constructor.className in ['Level', 'LevelComponent', 'LevelSystem', 'ThangType']
@levelLoader = new LevelLoader supermodel: @supermodel, levelID: @levelID, headless: true, sessionless: true
@level = @levelLoader.level
@files = new DocumentFiles(@levelLoader.level)
@supermodel.loadCollection(@files, 'file_names')
2014-01-03 13:32:13 -05:00
2015-01-10 12:33:36 -05:00
destroy: ->
clearInterval @timerIntervalID
super()
2014-01-03 13:32:13 -05:00
showLoading: ($el) ->
$el ?= @$el.find('.outer-content')
2014-01-03 13:32:13 -05:00
super($el)
getTitle: -> "LevelEditor - " + (@level.get('name') or '...')
2014-01-03 13:32:13 -05:00
onLoaded: ->
_.defer =>
@world = @levelLoader.world
@render()
2015-01-10 12:33:36 -05:00
@timerIntervalID = setInterval @incrementBuildTime, 1000
2014-02-11 17:58:45 -05:00
getRenderData: (context={}) ->
2014-01-03 13:32:13 -05:00
context = super(context)
context.level = @level
context.authorized = me.isAdmin() or @level.hasWriteAccess(me)
context.anonymous = me.get('anonymous')
2014-08-30 17:30:53 -04:00
context.recentlyPlayedOpponents = storage.load('recently-played-matches')?[@levelID] ? []
2014-01-03 13:32:13 -05:00
context
afterRender: ->
super()
return unless @supermodel.finished()
2014-01-30 19:36:36 -05:00
@$el.find('a[data-toggle="tab"]').on 'shown.bs.tab', (e) =>
Backbone.Mediator.publish 'editor:view-switched', {targetURL: $(e.target).attr('href')}
@insertSubView new ThangsTabView world: @world, supermodel: @supermodel, level: @level
@insertSubView new SettingsTabView supermodel: @supermodel
@insertSubView new ScriptsTabView world: @world, supermodel: @supermodel, files: @files
@insertSubView new ComponentsTabView supermodel: @supermodel
@insertSubView new SystemsTabView supermodel: @supermodel, world: @world
@insertSubView new RelatedAchievementsView supermodel: @supermodel, level: @level
@insertSubView new ComponentsDocumentationView lazy: true # Don't give it the supermodel, it'll pollute it!
@insertSubView new SystemsDocumentationView lazy: true # Don't give it the supermodel, it'll pollute it!
@insertSubView new LevelFeedbackView level: @level
Backbone.Mediator.publish 'editor:level-loaded', level: @level
@showReadOnly() if me.get('anonymous')
@patchesView = @insertSubView(new PatchesView(@level), @$el.find('.patches-view'))
@listenTo @patchesView, 'accepted-patch', -> location.reload()
@$el.find('#level-watch-button').find('> span').toggleClass('secret') if @level.watching()
2014-01-03 13:32:13 -05:00
onPlayLevelTeamSelect: (e) ->
if @childWindow and not @childWindow.closed
# We already have a child window open, so we don't need to ask for a team; we'll use its existing team.
e.stopImmediatePropagation()
@onPlayLevel e
2014-01-03 13:32:13 -05:00
onPlayLevel: (e) ->
team = $(e.target).data('team')
2014-08-30 17:30:53 -04:00
opponentSessionID = $(e.target).data('opponent')
2014-01-03 13:32:13 -05:00
sendLevel = =>
@childWindow.Backbone.Mediator.publish 'level:reload-from-data', level: @level, supermodel: @supermodel
2014-01-03 13:32:13 -05:00
if @childWindow and not @childWindow.closed
# Reset the LevelView's world, but leave the rest of the state alone
sendLevel()
else
# Create a new Window with a blank LevelView
2014-06-30 22:16:26 -04:00
scratchLevelID = @level.get('slug') + '?dev=true'
scratchLevelID += "&team=#{team}" if team
2014-08-30 17:30:53 -04:00
scratchLevelID += "&opponent=#{opponentSessionID}" if opponentSessionID
2014-08-10 20:47:18 -04:00
if me.get('name') is 'Nick'
@childWindow = window.open("/play/level/#{scratchLevelID}", 'child_window', 'width=2560,height=1080,left=0,top=-1600,location=1,menubar=1,scrollbars=1,status=0,titlebar=1,toolbar=1', true)
else
@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)
2014-01-03 13:32:13 -05:00
@childWindow.onPlayLevelViewLoaded = (e) => sendLevel() # still a hack
@childWindow.focus()
onUndo: ->
TreemaNode.getLastTreemaWithFocus()?.undo()
onRedo: ->
TreemaNode.getLastTreemaWithFocus()?.redo()
showUndoDescription: ->
undoDescription = TreemaNode.getLastTreemaWithFocus().getUndoDescription()
2015-01-05 18:49:47 -05:00
@$el.find('#undo-button').attr('title', $.i18n.t("general.undo_prefix") + " " + undoDescription + " " + $.i18n.t("general.undo_shortcut"))
showRedoDescription: ->
redoDescription = TreemaNode.getLastTreemaWithFocus().getRedoDescription()
2015-01-05 18:49:47 -05:00
@$el.find('#redo-button').attr('title', $.i18n.t("general.redo_prefix") + " " + redoDescription + " " + $.i18n.t("general.redo_shortcut"))
getCurrentView: ->
2014-09-02 19:58:34 -04:00
currentViewID = @$el.find('.tab-pane.active').attr('id')
return @patchesView if currentViewID is 'editor-level-patches'
currentViewID = 'components-documentation-view' if currentViewID is 'editor-level-documentation'
return @subviews[_.string.underscored(currentViewID)]
startPatchingLevel: (e) ->
2014-06-30 22:16:26 -04:00
@openModalView new SaveVersionModal({model: @level})
Backbone.Mediator.publish 'editor:view-switched', {}
2014-06-30 22:16:26 -04:00
2014-01-03 13:32:13 -05:00
startCommittingLevel: (e) ->
@openModalView new SaveLevelModal level: @level, supermodel: @supermodel, buildTime: @levelBuildTime
Backbone.Mediator.publish 'editor:view-switched', {}
2014-01-03 13:32:13 -05:00
startForking: (e) ->
@openModalView new ForkModal model: @level, editorPath: 'level'
Backbone.Mediator.publish 'editor:view-switched', {}
showVersionHistory: (e) ->
2014-06-30 22:16:26 -04:00
versionHistoryView = new VersionHistoryView level: @level, @levelID
@openModalView versionHistoryView
Backbone.Mediator.publish 'editor:view-switched', {}
toggleWatchLevel: ->
button = @$el.find('#level-watch-button')
@level.watch(button.find('.watch').is(':visible'))
button.find('> span').toggleClass('secret')
onPopulateI18N: ->
@level.populateI18N()
f = -> document.location.reload()
setTimeout(f, 2000)
2014-06-30 22:16:26 -04:00
2014-04-21 15:15:22 -04:00
toggleTab: (e) ->
@renderScrollbar()
2014-04-21 15:15:22 -04:00
return unless $(document).width() <= 800
li = $(e.target).closest('li')
if li.hasClass('active')
li.parent().find('li').show()
else
li.parent().find('li').hide()
li.show()
console.log li.hasClass('active')
onClickDocumentationTab: (e) ->
# It's either too late at night or something is going on with Bootstrap nested tabs, so we do the click instead of using .active.
return if @initializedDocs
@initializedDocs = true
@$el.find('a[href="#components-documentation-view"]').click()
2015-01-10 12:33:36 -05:00
incrementBuildTime: =>
return if application.userIsIdle
@levelBuildTime ?= @level.get('buildTime') ? 0
++@levelBuildTime