-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtouchcommon.lua
executable file
·80 lines (54 loc) · 1.51 KB
/
touchcommon.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
npress=false
-- ui canvas coordinates system ( not screen coordinates )
npx=nil
npy=nil
hoverx=0
hovery=0
function getTouchOnCanvas(brad)
local xb=(npx-offsetcvs.x-brad*applicativezoom)/applicativezoom
local yb=(npy-offsetcvs.y-brad*applicativezoom)/applicativezoom
return xb,yb
end
--to see if it helps in windowed mode
--love.mouse.setGrabbed( true )
love.touchpressed=function ( id, x, y, dx, dy, pressure )
-- print('TOUCH id '..id)
end
love.mousepressed = function(x, y, button)
print("new touch "..x.." "..y)
-- --TODO WIP filter even if no paint zone is defined
-- if currentConfButtons==confButtonsRight and x<ww/3 then
-- return
-- end
npress=true
--we floor coords,integer screen coords
--was posing pb with painting
npx=math.floor(x/scrsx)
npy=math.floor(y/scrsy)
print("mousepressed scaled to ui canvas "..npx.." "..npy)
-- paint(npx,npy)
end
love.mousemoved=function( x, y, dx, dy, istouch )
local tx=(x/scrsx)
local ty=(y/scrsy)
local tdx=(dx/scrsx)
local tdy=(dy/scrsy)
--we maintain these to display brush
hoverx=tx
hovery=ty
if registerdrag~=nil then
addMsg('calling drag callback')
registerdrag.drag(registerdrag,tx,ty,tdx,tdy)
end
end
love.mousereleased = function(x, y, button)
addMsg('mouse released')
if registerdrag~=nil then
if registerdrag.dragrelease then
registerdrag.dragrelease(registerdrag)
end
end
registerdrag=nil
end
love.wheelmoved = function(x, y)
end