mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 01:55:38 -05:00
Scrolling with the mouse now zooms based on mouse position.
This commit is contained in:
parent
72712a349c
commit
8f938bf6fc
2 changed files with 21 additions and 2 deletions
|
@ -148,7 +148,21 @@ module.exports = class Camera extends CocoClass
|
|||
onMouseScrolled: (e) ->
|
||||
ratio = 1 + 0.05 * Math.sqrt(Math.abs(e.deltaY))
|
||||
ratio = 1 / ratio if e.deltaY > 0
|
||||
@zoomTo @target, @zoom * ratio, 0
|
||||
newZoom = @zoom * ratio
|
||||
if e.surfacePos
|
||||
# zoom based on mouse position, adjusting the target so the point under the mouse stays the same
|
||||
mousePoint = @canvasToSurface(e.surfacePos)
|
||||
ratioPosX = (mousePoint.x - @surfaceViewport.x) / @surfaceViewport.width
|
||||
ratioPosY = (mousePoint.y - @surfaceViewport.y) / @surfaceViewport.height
|
||||
newWidth = @canvasWidth / newZoom
|
||||
newHeight = @canvasHeight / newZoom
|
||||
newTargetX = mousePoint.x - (newWidth * ratioPosX) + (newWidth / 2)
|
||||
newTargetY = mousePoint.y - (newHeight * ratioPosY) + (newHeight / 2)
|
||||
target = {x: newTargetX, y:newTargetY}
|
||||
else
|
||||
target = @target
|
||||
@zoomTo target, newZoom, 0
|
||||
|
||||
onLevelRestarted: ->
|
||||
@setBounds(@firstBounds)
|
||||
|
||||
|
|
|
@ -433,6 +433,7 @@ module.exports = Surface = class Surface extends CocoClass
|
|||
# uh
|
||||
|
||||
onMouseMove: (e) =>
|
||||
@mouseSurfacePos = {x:e.stageX, y:e.stageY}
|
||||
return if @disabled
|
||||
Backbone.Mediator.publish 'surface:mouse-moved', x: e.stageX, y: e.stageY
|
||||
|
||||
|
@ -445,7 +446,11 @@ module.exports = Surface = class Surface extends CocoClass
|
|||
# https://github.com/brandonaaron/jquery-mousewheel
|
||||
e.preventDefault()
|
||||
return if @disabled
|
||||
Backbone.Mediator.publish 'surface:mouse-scrolled', deltaX: e.deltaX, deltaY: e.deltaY unless @disabled
|
||||
event =
|
||||
deltaX: e.deltaX
|
||||
deltaY: e.deltaY
|
||||
surfacePos: @mouseSurfacePos
|
||||
Backbone.Mediator.publish 'surface:mouse-scrolled', event unless @disabled
|
||||
|
||||
hookUpChooseControls: ->
|
||||
chooserOptions = stage: @stage, surfaceLayer: @surfaceLayer, camera: @camera, restrictRatio: @options.choosing is 'ratio-region'
|
||||
|
|
Loading…
Reference in a new issue