2014-01-03 13:32:13 -05:00
|
|
|
View = require 'views/kinds/CocoView'
|
|
|
|
template = require 'templates/play/level/tome/spell_palette'
|
|
|
|
{me} = require 'lib/auth'
|
|
|
|
filters = require 'lib/image_filter'
|
|
|
|
SpellPaletteEntryView = require './spell_palette_entry_view'
|
2014-02-12 19:42:09 -05:00
|
|
|
LevelComponent = require 'models/LevelComponent'
|
2014-06-25 00:07:36 -04:00
|
|
|
EditorConfigModal = require '../modal/editor_config_modal'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-02-16 18:30:00 -05:00
|
|
|
N_ROWS = 4
|
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
module.exports = class SpellPaletteView extends View
|
|
|
|
id: 'spell-palette-view'
|
|
|
|
template: template
|
|
|
|
controlsEnabled: true
|
|
|
|
|
|
|
|
subscriptions:
|
|
|
|
'level-disable-controls': 'onDisableControls'
|
|
|
|
'level-enable-controls': 'onEnableControls'
|
|
|
|
'surface:frame-changed': "onFrameChanged"
|
2014-06-25 00:07:36 -04:00
|
|
|
'tome:change-language': 'onTomeChangedLanguage'
|
|
|
|
|
|
|
|
events:
|
|
|
|
'click .code-language-logo': 'onEditEditorConfig'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
constructor: (options) ->
|
|
|
|
super options
|
|
|
|
@thang = options.thang
|
2014-02-16 18:30:00 -05:00
|
|
|
@createPalette()
|
|
|
|
|
|
|
|
getRenderData: ->
|
|
|
|
c = super()
|
|
|
|
c.entryGroups = @entryGroups
|
|
|
|
c.entryGroupSlugs = @entryGroupSlugs
|
2014-06-25 23:19:11 -04:00
|
|
|
c.entryGroupNames = @entryGroupNames
|
2014-02-16 18:30:00 -05:00
|
|
|
c.tabbed = _.size(@entryGroups) > 1
|
2014-03-13 12:02:19 -04:00
|
|
|
c.defaultGroupSlug = @defaultGroupSlug
|
2014-02-16 18:30:00 -05:00
|
|
|
c
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
afterRender: ->
|
|
|
|
super()
|
2014-02-16 18:30:00 -05:00
|
|
|
for group, entries of @entryGroups
|
|
|
|
groupSlug = @entryGroupSlugs[group]
|
|
|
|
for columnNumber, entryColumn of entries
|
|
|
|
col = $('<div class="property-entry-column"></div>').appendTo @$el.find(".properties-#{groupSlug}")
|
|
|
|
for entry in entryColumn
|
|
|
|
col.append entry.el
|
|
|
|
entry.render() # Render after appending so that we can access parent container for popover
|
2014-06-25 00:07:36 -04:00
|
|
|
$('.nano').nanoScroller()
|
|
|
|
@updateCodeLanguage @options.language
|
|
|
|
|
|
|
|
updateCodeLanguage: (language) ->
|
|
|
|
@options.language = language
|
|
|
|
@$el.find('.code-language-logo').removeClass().addClass 'code-language-logo ' + language
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
createPalette: ->
|
2014-02-12 19:42:09 -05:00
|
|
|
lcs = @supermodel.getModels LevelComponent
|
|
|
|
allDocs = {}
|
2014-02-18 14:23:01 -05:00
|
|
|
for lc in lcs
|
|
|
|
for doc in (lc.get('propertyDocumentation') ? [])
|
2014-03-12 12:10:36 -04:00
|
|
|
doc = _.clone doc
|
2014-02-28 15:43:31 -05:00
|
|
|
allDocs['__' + doc.name] ?= []
|
|
|
|
allDocs['__' + doc.name].push doc
|
2014-02-24 18:48:30 -05:00
|
|
|
if doc.type is 'snippet' then doc.owner = 'snippets'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-04-25 19:57:42 -04:00
|
|
|
if @options.programmable
|
|
|
|
propStorage =
|
|
|
|
'this': 'programmableProperties'
|
|
|
|
more: 'moreProgrammableProperties'
|
|
|
|
Math: 'programmableMathProperties'
|
|
|
|
Array: 'programmableArrayProperties'
|
|
|
|
Object: 'programmableObjectProperties'
|
|
|
|
String: 'programmableStringProperties'
|
|
|
|
Vector: 'programmableVectorProperties'
|
|
|
|
snippets: 'programmableSnippets'
|
|
|
|
else
|
|
|
|
propStorage =
|
|
|
|
'this': 'apiProperties'
|
2014-02-24 18:48:30 -05:00
|
|
|
count = 0
|
|
|
|
propGroups = {}
|
|
|
|
for owner, storage of propStorage
|
2014-04-25 19:57:42 -04:00
|
|
|
props = _.reject @thang[storage] ? [], (prop) -> prop[0] is '_' # no private properties
|
|
|
|
added = propGroups[owner] = _.sortBy(props).slice()
|
2014-02-24 18:48:30 -05:00
|
|
|
count += added.length
|
|
|
|
|
|
|
|
shortenize = count > 6
|
|
|
|
tabbify = count >= 10
|
2014-02-12 19:42:09 -05:00
|
|
|
@entries = []
|
2014-02-24 18:48:30 -05:00
|
|
|
for owner, props of propGroups
|
2014-02-18 14:23:01 -05:00
|
|
|
for prop in props
|
2014-02-28 15:43:31 -05:00
|
|
|
doc = _.find (allDocs['__' + prop] ? []), (doc) ->
|
2014-02-24 18:48:30 -05:00
|
|
|
return true if doc.owner is owner
|
2014-02-24 20:53:35 -05:00
|
|
|
return (owner is 'this' or owner is 'more') and (not doc.owner? or doc.owner is 'this')
|
2014-02-28 15:43:31 -05:00
|
|
|
console.log 'could not find doc for', prop, 'from', allDocs['__' + prop], 'for', owner, 'of', propGroups unless doc
|
2014-02-24 18:48:30 -05:00
|
|
|
doc ?= prop
|
|
|
|
@entries.push @addEntry(doc, shortenize, tabbify, owner is 'snippets')
|
|
|
|
groupForEntry = (entry) ->
|
2014-04-25 19:57:42 -04:00
|
|
|
return 'more' if entry.doc.owner is 'this' and entry.doc.name in (propGroups.more ? [])
|
2014-02-24 18:48:30 -05:00
|
|
|
entry.doc.owner
|
2014-02-16 18:30:00 -05:00
|
|
|
@entries = _.sortBy @entries, (entry) ->
|
2014-06-25 23:19:11 -04:00
|
|
|
order = ['this', 'more', 'Math', 'Vector', 'String', 'Object', 'Array', 'Function', 'snippets']
|
2014-02-24 18:48:30 -05:00
|
|
|
index = order.indexOf groupForEntry entry
|
2014-02-16 18:30:00 -05:00
|
|
|
index = String.fromCharCode if index is -1 then order.length else index
|
|
|
|
index += entry.doc.name
|
|
|
|
if tabbify and _.find @entries, ((entry) -> entry.doc.owner isnt 'this')
|
2014-02-24 18:48:30 -05:00
|
|
|
@entryGroups = _.groupBy @entries, groupForEntry
|
2014-02-16 18:30:00 -05:00
|
|
|
else
|
|
|
|
defaultGroup = $.i18n.t("play_level.tome_available_spells", defaultValue: "Available Spells")
|
|
|
|
@entryGroups = {}
|
|
|
|
@entryGroups[defaultGroup] = @entries
|
2014-03-13 12:02:19 -04:00
|
|
|
@defaultGroupSlug = _.string.slugify defaultGroup
|
2014-02-16 18:30:00 -05:00
|
|
|
@entryGroupSlugs = {}
|
2014-06-25 23:19:11 -04:00
|
|
|
@entryGroupNames = {}
|
2014-02-16 18:30:00 -05:00
|
|
|
for group, entries of @entryGroups
|
|
|
|
@entryGroups[group] = _.groupBy entries, (entry, i) -> Math.floor i / N_ROWS
|
2014-06-25 23:19:11 -04:00
|
|
|
@entryGroupSlugs[group] = _.string.slugify group
|
|
|
|
@entryGroupNames[group] = group
|
|
|
|
if thisName = {coffeescript: '@', lua: 'self', clojure: 'self'}[@options.language]
|
|
|
|
if @entryGroupNames.this
|
|
|
|
@entryGroupNames.this = thisName
|
2014-02-16 18:30:00 -05:00
|
|
|
null
|
|
|
|
|
|
|
|
addEntry: (doc, shortenize, tabbify, isSnippet=false) ->
|
2014-06-25 23:19:11 -04:00
|
|
|
new SpellPaletteEntryView doc: doc, thang: @thang, shortenize: shortenize, tabbify: tabbify, isSnippet: isSnippet, language: @options.language
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
onDisableControls: (e) -> @toggleControls e, false
|
|
|
|
onEnableControls: (e) -> @toggleControls e, true
|
|
|
|
toggleControls: (e, enabled) ->
|
|
|
|
return if e.controls and not ('palette' in e.controls)
|
|
|
|
return if enabled is @controlsEnabled
|
|
|
|
@controlsEnabled = enabled
|
|
|
|
@$el.find('*').attr('disabled', not enabled)
|
|
|
|
@toggleBackground()
|
|
|
|
|
|
|
|
toggleBackground: =>
|
|
|
|
# TODO: make the palette background an actual background and do the CSS trick
|
|
|
|
# used in spell_list_entry.sass for disabling
|
|
|
|
background = @$el.find('.code-palette-background')[0]
|
|
|
|
if background.naturalWidth is 0 # not loaded yet
|
|
|
|
return _.delay @toggleBackground, 100
|
|
|
|
filters.revertImage background if @controlsEnabled
|
|
|
|
filters.darkenImage background, 0.8 unless @controlsEnabled
|
|
|
|
|
|
|
|
onFrameChanged: (e) ->
|
|
|
|
return unless e.selectedThang?.id is @thang.id
|
2014-01-15 16:04:48 -05:00
|
|
|
@options.thang = @thang = e.selectedThang # Update our thang to the current version
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-06-25 00:07:36 -04:00
|
|
|
onTomeChangedLanguage: (e) ->
|
|
|
|
@updateCodeLanguage e.language
|
2014-06-25 23:19:11 -04:00
|
|
|
entry.destroy() for entry in @entries
|
|
|
|
@createPalette()
|
|
|
|
@render()
|
2014-06-25 00:07:36 -04:00
|
|
|
|
|
|
|
onEditEditorConfig: (e) ->
|
|
|
|
@openModalView new EditorConfigModal session: @options.session
|
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
destroy: ->
|
|
|
|
entry.destroy() for entry in @entries
|
2014-02-12 15:41:41 -05:00
|
|
|
@toggleBackground = null
|
2014-02-14 13:57:47 -05:00
|
|
|
super()
|