about summary refs log tree commit diff stats
path: root/main.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-05-11 22:15:54 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-11 22:15:54 -0700
commit91fe5cd98061af426505319e826d76d5b8ad4daa (patch)
treec5d40bbfb23a90fe5e253239f2562cf92757c7d2 /main.lua
parent5011395bf143e6efb055d2c28aef8bafae4e0427 (diff)
downloadlines.love-91fe5cd98061af426505319e826d76d5b8ad4daa.tar.gz
more lightweight; select just the stroke at the mouse
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua13
1 files changed, 2 insertions, 11 deletions
diff --git a/main.lua b/main.lua
index 7a47c7a..accc980 100644
--- a/main.lua
+++ b/main.lua
@@ -4,7 +4,6 @@ require 'repl'
 local utf8 = require 'utf8'
 
 lines = {}
-mode = ''
 width, height, flags = 0, 0, nil
 exec_payload = nil
 
@@ -45,7 +44,7 @@ function love.draw()
       y = y+line.h
 
       for _,shape in ipairs(line.shapes) do
-        if shape.selected then
+        if on_freehand(love.mouse.getX(),love.mouse.getY(), shape) then
           love.graphics.setColor(1,0,0)
         else
           love.graphics.setColor(0,0,0)
@@ -79,7 +78,7 @@ function love.draw()
 end
 
 function love.update(dt)
-  if love.mouse.isDown('1') and mode == 'draw' then
+  if love.mouse.isDown('1') then
     if lines.current then
       local drawing = lines.current
       if type(drawing) == 'table' then
@@ -98,22 +97,14 @@ function love.mousepressed(x,y, button)
 end
 
 function propagate_to_drawings(x,y, button)
-  mode = 'grab'
   for i,drawing in ipairs(lines) do
     if type(drawing) == 'table' then
       local x, y = love.mouse.getX(), love.mouse.getY()
       if y >= drawing.y and y < drawing.y + drawing.h and x >= 12 and x < 12+drawing.w then
         lines.current = drawing
-        for _,shape in ipairs(drawing.shapes) do
-          if on_freehand(x,y, shape) then
-            shape.selected = true
-            return
-          end
-        end
       end
     end
   end
-  mode = 'draw'
 end
 
 function on_freehand(x,y, shape)