SudokuLua/ui/mouse.lua

30 lines
935 B
Lua

function love.mousepressed(x, y, button, istouch)
local inBoard = false
local dx = math.floor(cell.width / 3)
local dy = math.floor(cell.height / 3)
local cx = 0
local cy = 0
local mx = 0
local my = 0
local n = 0
if x > grid.x1 and x < grid.x2 and y > grid.y1 and y < grid.y2 then
inBoard = true
cx = math.floor((x - grid.x1) / cell.width) + 1
cy = math.floor((y - grid.y1) / cell.height) + 1
mx = math.floor((x - grid[cx][cy].x1) / dx) + 1
my = math.floor((y - grid[cx][cy].y1) / dy) + 1
n = mx + 3 * (my - 1)
end
if button == 1 then
if cursor.x == cx and cursor.y == cy then
smallNumbersVal[cx][cy][n] = not smallNumbersVal[cx][cy][n]
else
cursor.x = cx
cursor.y = cy
end
elseif button == 2 then
smallNumbersVal[cx][cy][n] = not smallNumbersVal[cx][cy][n]
end
end