codecombat/app/lib/surface/CoordinateDisplay.coffee

93 lines
2.9 KiB
CoffeeScript
Raw Normal View History

2014-01-03 13:32:13 -05:00
module.exports = class CoordinateDisplay extends createjs.Container
layerPriority: -10
subscriptions:
'surface:mouse-moved': 'onMouseMove'
'surface:mouse-out': 'onMouseOut'
'surface:mouse-over': 'onMouseOver'
2014-03-12 20:50:59 -04:00
'surface:stage-mouse-down': 'onMouseDown'
2014-01-03 13:32:13 -05:00
'camera:zoom-updated': 'onZoomUpdated'
constructor: (options) ->
super()
@initialize()
@camera = options.camera
console.error "CoordinateDisplay needs camera." unless @camera
@build()
@show = _.debounce @show, 125
2014-01-03 13:32:13 -05:00
Backbone.Mediator.subscribe(channel, @[func], @) for channel, func of @subscriptions
destroy: ->
Backbone.Mediator.unsubscribe(channel, @[func], @) for channel, func of @subscriptions
@show = null
@destroyed = true
2014-01-03 13:32:13 -05:00
build: ->
@mouseEnabled = @mouseChildren = false
@addChild @background = new createjs.Shape()
@addChild @label = new createjs.Text("", "bold 32px Arial", "#FFFFFF")
@label.name = 'Coordinate Display Text'
@label.shadow = new createjs.Shadow("#000000", 1, 1, 0)
@background.name = "Coordinate Display Background"
2014-01-03 13:32:13 -05:00
onMouseOver: (e) -> @mouseInBounds = true
onMouseOut: (e) -> @mouseInBounds = false
onMouseMove: (e) ->
if @mouseInBounds and key.shift
$('#surface').addClass('flag-cursor') unless $('#surface').hasClass('flag-cursor')
else if @mouseInBounds
$('#surface').removeClass('flag-cursor') if $('#surface').hasClass('flag-cursor')
2014-01-03 13:32:13 -05:00
wop = @camera.canvasToWorld x: e.x, y: e.y
wop.x = Math.round(wop.x)
wop.y = Math.round(wop.y)
return if wop.x is @lastPos?.x and wop.y is @lastPos?.y
@lastPos = wop
@hide()
@show() # debounced
2014-03-12 20:50:59 -04:00
onMouseDown: (e) ->
return unless key.shift
wop = @camera.canvasToWorld x: e.x, y: e.y
wop.x = Math.round wop.x
wop.y = Math.round wop.y
Backbone.Mediator.publish 'surface:coordinate-selected', wop
2014-01-03 13:32:13 -05:00
onZoomUpdated: (e) ->
@hide()
@show()
hide: ->
return unless @label.parent
@removeChild @label
@removeChild @background
2014-01-03 13:32:13 -05:00
@uncache()
updateSize: ->
margin = 6
radius = 5
width = @label.getMeasuredWidth() + 2 * margin
height = @label.getMeasuredHeight() + 2 * margin
@label.regX = @background.regX = width / 2 - margin
@label.regY = @background.regY = height / 2 - margin
@background.graphics
.clear()
.beginFill("rgba(0, 0, 0, 0.4)")
.beginStroke("rgba(0, 0, 0, 0.6)")
.setStrokeStyle(1)
.drawRoundRect(0, 0, width, height, radius)
.endFill()
.endStroke()
[width, height]
2014-01-03 13:32:13 -05:00
show: =>
return unless @mouseInBounds and @lastPos and not @destroyed
2014-01-03 13:32:13 -05:00
@label.text = "(#{@lastPos.x}, #{@lastPos.y})"
[width, height] = @updateSize()
2014-01-03 13:32:13 -05:00
sup = @camera.worldToSurface @lastPos
@x = sup.x
@y = sup.y - 5
@addChild @background
2014-01-03 13:32:13 -05:00
@addChild @label
@cache -width / 2, -height / 2, width, height
Backbone.Mediator.publish 'surface:coordinates-shown', {}