about summary refs log tree commit diff stats
path: root/drawing.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-05-17 19:41:42 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-17 19:41:42 -0700
commit2aa8c67a22e26e9b4bdf733904be6fa6cfdab0d1 (patch)
tree423ea19da29dfbea886fa94600f33b1c429ccddd /drawing.lua
parent9ade4d2782cd22355cccca971f24145d10031a38 (diff)
downloadlines.love-2aa8c67a22e26e9b4bdf733904be6fa6cfdab0d1.tar.gz
extract a module
I want to use `drawing` for locals, so I'll use uppercase the module
name just like globals.
Diffstat (limited to 'drawing.lua')
-rw-r--r--drawing.lua51
1 files changed, 51 insertions, 0 deletions
diff --git a/drawing.lua b/drawing.lua
new file mode 100644
index 0000000..928325f
--- /dev/null
+++ b/drawing.lua
@@ -0,0 +1,51 @@
+-- primitives for editing drawings
+Drawing = {}
+
+function Drawing.draw(line, y)
+  local pmx,pmy = love.mouse.getX(), love.mouse.getY()
+  if pmx < 16+Drawing_width and pmy > line.y and pmy < line.y+pixels(line.h) then
+    love.graphics.setColor(0.75,0.75,0.75)
+    love.graphics.rectangle('line', 16,line.y, Drawing_width,pixels(line.h))
+    if icon[Current_mode] then
+      icon[Current_mode](16+Drawing_width-20, line.y+4)
+    else
+      icon[Previous_mode](16+Drawing_width-20, line.y+4)
+    end
+
+    if love.mouse.isDown('1') and love.keyboard.isDown('h') then
+      draw_help_with_mouse_pressed(line)
+      return
+    end
+  end
+
+  if line.show_help then
+    draw_help_without_mouse_pressed(line)
+    return
+  end
+
+  local mx,my = coord(love.mouse.getX()-16), coord(love.mouse.getY()-line.y)
+
+  for _,shape in ipairs(line.shapes) do
+    assert(shape)
+    if on_shape(mx,my, line, shape) then
+      love.graphics.setColor(1,0,0)
+    else
+      love.graphics.setColor(0,0,0)
+    end
+    draw_shape(16,line.y, line, shape)
+  end
+  for _,p in ipairs(line.points) do
+    if p.deleted == nil then
+      if near(p, mx,my) then
+        love.graphics.setColor(1,0,0)
+        love.graphics.circle('line', pixels(p.x)+16,pixels(p.y)+line.y, 4)
+      else
+        love.graphics.setColor(0,0,0)
+        love.graphics.circle('fill', pixels(p.x)+16,pixels(p.y)+line.y, 2)
+      end
+    end
+  end
+  draw_pending_shape(16,line.y, line)
+end
+
+return Drawing