mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
23 lines
907 B
CoffeeScript
23 lines
907 B
CoffeeScript
componentKeywords = ['attach', 'constructor', 'validateArguments', 'toString', 'isComponent'] # Array is faster than object
|
|
|
|
module.exports = class Component
|
|
@className: 'Component'
|
|
isComponent: true
|
|
constructor: (config) ->
|
|
for key, value of config
|
|
@[key] = value # Hmm, might want to _.cloneDeep here? What if the config has nested object values and the Thang modifies them, then we re-use the config for, say, missile spawning? Well, for now we'll clone in the missile.
|
|
|
|
attach: (thang) ->
|
|
# Optimize; this is much of the World constructor time
|
|
for key, value of @ when key not in componentKeywords and key[0] isnt '_'
|
|
oldValue = thang[key]
|
|
if typeof oldValue is 'function'
|
|
thang.appendMethod key, value
|
|
else
|
|
thang[key] = value
|
|
|
|
validateArguments:
|
|
additionalProperties: false
|
|
|
|
toString: ->
|
|
"<Component: #{@constructor.className}"
|