Set back up debug marks.

This commit is contained in:
Scott Erickson 2014-09-26 14:09:44 -07:00
parent f21083acf5
commit f0e879295c
2 changed files with 21 additions and 12 deletions

View file

@ -605,10 +605,9 @@ module.exports = CocoSprite = class CocoSprite extends CocoClass
@options.thang = @thang
setDebug: (debug) ->
# TODO: get debugging shapes working again
# return unless @thang?.collides and @options.camera?
# @addMark 'debug', @options.floatingLayer if debug
# @marks.debug?.toggle debug
return unless @thang?.collides and @options.camera?
@addMark 'debug', @options.floatingLayer if debug
@marks.debug?.toggle debug
addLabel: (name, style) ->
@labels[name] ?= new Label sprite: @, camera: @options.camera, layer: @options.textLayer, style: style

View file

@ -211,16 +211,26 @@ module.exports = class Mark extends CocoClass
@mark.scaleY *= @camera.y2x
buildDebug: ->
@mark = new createjs.Shape()
shapeName = if @sprite.thang.shape in ['ellipsoid', 'disc'] then 'ellipse' else 'rect'
key = "#{shapeName}-debug"
DEBUG_SIZE = 10
unless key in @layer.spriteSheet.getAnimations()
shape = new createjs.Shape()
shape.graphics.beginFill 'rgba(171,205,239,0.5)'
bounds = [-DEBUG_SIZE / 2, -DEBUG_SIZE / 2, DEBUG_SIZE, DEBUG_SIZE]
if shapeName is 'ellipse'
shape.graphics.drawEllipse bounds...
else
shape.graphics.drawRect bounds...
shape.graphics.endFill()
@layer.addCustomGraphic(key, shape, bounds)
@mark = new createjs.Sprite(@layer.spriteSheet)
@mark.gotoAndStop(key)
PX = 3
[w, h] = [Math.max(PX, @sprite.thang.width * Camera.PPM), Math.max(PX, @sprite.thang.height * Camera.PPM) * @camera.y2x] # TODO: doesn't work with rotation
@mark.alpha = 0.5
@mark.graphics.beginFill '#abcdef'
if @sprite.thang.shape in ['ellipsoid', 'disc']
@mark.graphics.drawEllipse -w / 2, -h / 2, w, h
else
@mark.graphics.drawRect -w / 2, -h / 2, w, h
@mark.graphics.endFill()
@mark.scaleX = w / (@layer.resolutionFactor * DEBUG_SIZE)
@mark.scaleY = h / (@layer.resolutionFactor * DEBUG_SIZE)
buildSprite: ->
if _.isString @thangType