codecombat/app/views/play/level/tome/Problem.coffee

50 lines
2.1 KiB
CoffeeScript
Raw Normal View History

2014-06-30 22:16:26 -04:00
Range = ace.require('ace/range').Range
2014-01-03 13:32:13 -05:00
module.exports = class Problem
annotation: null
markerRange: null
constructor: (@aether, @aetherProblem, @ace, isCast=false, @levelID) ->
2014-01-03 13:32:13 -05:00
@buildAnnotation()
2014-08-14 14:55:43 -04:00
@buildMarkerRange() if isCast
# TODO: get ACE screen line, too, for positioning, since any multiline "lines" will mess up positioning
Backbone.Mediator.publish("problem:problem-created", line: @annotation.row, text: @annotation.text) if application.isIPadApp
2014-01-03 13:32:13 -05:00
destroy: ->
@removeMarkerRanges()
2014-08-14 14:55:43 -04:00
@userCodeProblem.off() if @userCodeProblem
2014-01-03 13:32:13 -05:00
buildAnnotation: ->
2014-05-08 14:43:00 -04:00
return unless @aetherProblem.range
2014-01-03 13:32:13 -05:00
text = @aetherProblem.message.replace /^Line \d+: /, ''
2014-05-08 14:43:00 -04:00
start = @aetherProblem.range[0]
2014-01-03 13:32:13 -05:00
@annotation =
row: start.row,
column: start.col,
2014-01-03 13:32:13 -05:00
raw: text,
text: text,
2014-06-30 22:16:26 -04:00
type: @aetherProblem.level ? 'error'
2014-01-03 13:32:13 -05:00
buildMarkerRange: ->
2014-05-08 14:43:00 -04:00
return unless @aetherProblem.range
[start, end] = @aetherProblem.range
textClazz = "problem-marker-#{@aetherProblem.level}"
@textMarkerRange = new Range start.row, start.col, end.row, end.col
@textMarkerRange.start = @ace.getSession().getDocument().createAnchor @textMarkerRange.start
@textMarkerRange.end = @ace.getSession().getDocument().createAnchor @textMarkerRange.end
@textMarkerRange.id = @ace.getSession().addMarker @textMarkerRange, textClazz, 'text'
lineClazz = "problem-line"
@lineMarkerRange = new Range start.row, start.col, end.row, end.col
@lineMarkerRange.start = @ace.getSession().getDocument().createAnchor @lineMarkerRange.start
@lineMarkerRange.end = @ace.getSession().getDocument().createAnchor @lineMarkerRange.end
@lineMarkerRange.id = @ace.getSession().addMarker @lineMarkerRange, lineClazz, 'fullLine'
2014-01-03 13:32:13 -05:00
removeMarkerRanges: ->
if @textMarkerRange
@ace.getSession().removeMarker @textMarkerRange.id
@textMarkerRange.start.detach()
@textMarkerRange.end.detach()
if @lineMarkerRange
@ace.getSession().removeMarker @lineMarkerRange.id
@lineMarkerRange.start.detach()
@lineMarkerRange.end.detach()