summary refs log tree commit diff stats
path: root/compiler/syntaxes.nim
Commit message (Expand)AuthorAgeFilesLines
* Replace countup(x, y) with x .. yClyybber2019-05-071-3/+3
* nimpretty: explicit --indent option; fixes #9502; refs #9510 [backport]Andreas Rumpf2018-11-111-7/+11
* removed the undocumented #? strongSpaces parsing modeAraq2018-11-061-7/+5
* nimpretty: fixes #9384Araq2018-10-171-6/+10
* compiler refactoring; use typesafe path handing; docgen: render symbols betwe...Andreas Rumpf2018-09-071-6/+6
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
* preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-2/+2
* remove ast.emptyNode global; cleanup configuration.nimAraq2018-05-161-3/+1
* fixes testament compilationAraq2018-05-141-0/+4
|\
* | options.nim: no global variables anymoreAndreas Rumpf2018-05-131-1/+1
* | big refactoring: magicsys compiles againAndreas Rumpf2018-05-101-16/+18
|/
* compiler refactoring, pass config around explicitlyAndreas Rumpf2018-05-051-16/+13
* the compiler does not rely on the zero terminator anymoreAndreas Rumpf2018-04-291-5/+5
* refactoring: make FileIndex a distinct type; make line information an uint16;...Andreas Rumpf2018-04-211-2/+2
* big refactoring: step 1Araq2016-10-311-38/+27
* implements #?braces syntaxAraq2016-10-161-3/+3
* Removed `#!` handling (was deprecated long enought)Hans Raaf2016-02-261-4/+1
* fixes #2559Araq2015-09-101-1/+6
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-51/+51
* Introduce NotesVerbosity defining verbosity levelsAdam Strzelecki2015-07-031-1/+1
* nimsuggest: sane dirty buffer handlingAraq2015-01-291-2/+2
* Nimrod renamed to NimAraq2014-08-281-1/+1
* renamefestAraq2014-08-231-1/+1
* Delete dead fileflaviut2014-04-191-2/+0
* implements strongSpaces parsing modeAraq2014-03-071-9/+12
* case consistency: next stepsAraq2013-12-291-2/+2
* case consistency part 4Araq2013-12-271-14/+14
* case consistency part 1Araq2013-12-271-15/+15
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* Fixed openssl lib path on Mac OS X;Zahary Karadjov2013-01-271-1/+1
* fixed a regression: compiling projects not residing in the current directoryZahary Karadjov2013-01-201-1/+1
* CaaS in-memory cachingZahary Karadjov2012-11-281-8/+10
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* 'assert' is now implemented without compiler magicAraq2011-12-041-1/+1
* compiler uses new 'readLine'Araq2011-11-271-4/+5
* deprecated system.copy: use system.substr insteadAraq2011-05-141-1/+1
* got rid of some arcane module namesAraq2011-04-211-7/+7
* big repo cleanupAraq2011-04-121-0/+173
n> then return false end local x1,x2 = p1.x, p2.x if x1 > x2 then x1,x2 = x2,x1 end return x >= x1-2 and x <= x2+2 end elseif shape.mode == 'polygon' or shape.mode == 'rectangle' or shape.mode == 'square' then return geom.on_polygon(x,y, drawing, shape) elseif shape.mode == 'circle' then local center = drawing.points[shape.center] local dist = geom.dist(center.x,center.y, x,y) return dist > shape.radius*0.95 and dist < shape.radius*1.05 elseif shape.mode == 'arc' then local center = drawing.points[shape.center] local dist = geom.dist(center.x,center.y, x,y) if dist < shape.radius*0.95 or dist > shape.radius*1.05 then return false end return geom.angle_between(center.x,center.y, x,y, shape.start_angle,shape.end_angle) elseif shape.mode == 'deleted' then else assert(false, ('unknown drawing mode %s'):format(shape.mode)) end end function geom.on_freehand(x,y, drawing, shape) local prev for _,p in ipairs(shape.points) do if prev then if geom.on_line(x,y, drawing, {p1=prev, p2=p}) then return true end end prev = p end return false end function geom.on_line(x,y, drawing, shape) local p1,p2 if type(shape.p1) == 'number' then p1 = drawing.points[shape.p1] p2 = drawing.points[shape.p2] else p1 = shape.p1 p2 = shape.p2 end if p1.x == p2.x then if math.abs(p1.x-x) > 2 then return false end local y1,y2 = p1.y,p2.y if y1 > y2 then y1,y2 = y2,y1 end return y >= y1-2 and y <= y2+2 end -- has the right slope and intercept local m = (p2.y - p1.y) / (p2.x - p1.x) local yp = p1.y + m*(x-p1.x) if yp < y-2 or yp > y+2 then return false end -- between endpoints local k = (x-p1.x) / (p2.x-p1.x) return k > -0.005 and k < 1.005 end function geom.on_polygon(x,y, drawing, shape) local prev for _,p in ipairs(shape.vertices) do if prev then if geom.on_line(x,y, drawing, {p1=prev, p2=p}) then return true end end prev = p end return geom.on_line(x,y, drawing, {p1=shape.vertices[1], p2=shape.vertices[#shape.vertices]}) end -- are (x3,y3) and (x4,y4) on the same side of the line between (x1,y1) and (x2,y2) function geom.same_side(x1,y1, x2,y2, x3,y3, x4,y4) if x1 == x2 then return math.sign(x3-x1) == math.sign(x4-x1) end if y1 == y2 then return math.sign(y3-y1) == math.sign(y4-y1) end local m = (y2-y1)/(x2-x1) return math.sign(m*(x3-x1) + y1-y3) == math.sign(m*(x4-x1) + y1-y4) end function math.sign(x) if x > 0 then return 1 elseif x == 0 then return 0 elseif x < 0 then return -1 end end function geom.angle_with_hint(x1, y1, x2, y2, hint) local result = geom.angle(x1,y1, x2,y2) if hint then -- Smooth the discontinuity where angle goes from positive to negative. -- The hint is a memory of which way we drew it last time. while result > hint+math.pi/10 do result = result-math.pi*2 end while result < hint-math.pi/10 do result = result+math.pi*2 end end return result end -- result is from -π/2 to 3π/2, approximately adding math.atan2 from Lua 5.3 -- (LÖVE is Lua 5.1) function geom.angle(x1,y1, x2,y2) local result = math.atan((y2-y1)/(x2-x1)) if x2 < x1 then result = result+math.pi end return result end -- is the line between x,y and cx,cy at an angle between s and e? function geom.angle_between(ox,oy, x,y, s,e) local angle = geom.angle(ox,oy, x,y) if s > e then s,e = e,s end -- I'm not sure this is right or ideal.. angle = angle-math.pi*2 if s <= angle and angle <= e then return true end angle = angle+math.pi*2 if s <= angle and angle <= e then return true end angle = angle+math.pi*2 return s <= angle and angle <= e end function geom.dist(x1,y1, x2,y2) return ((x2-x1)^2+(y2-y1)^2)^0.5 end