forked from thisdp/dgs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimation.lua
326 lines (311 loc) · 11.6 KB
/
animation.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
animGUIList = {}
moveGUIList = {}
sizeGUIList = {}
alphaGUIList = {}
function dgsIsAniming(gui)
assert(dgsIsDxElement(gui),"Bad argument @dgsIsAniming at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
return moveGUIList[gui] or false
end
function dgsAnimTo(gui, property, value, easing, thetime, callback)
assert(dgsIsDxElement(gui),"Bad argument @dgsAnimTo at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
local thetime = tonumber(thetime)
assert(type(property) == "string","Bad argument @dgsAnimTo at argument 2, expect string got "..type(property))
assert(thetime,"Bad argument @dgsAnimTo at argument 6, expect number got "..type(thetime))
local easing = easing or "Linear"
assert(dgsEasingFunctionExists(easing),"Bad argument @dgsAnimTo at argument 4, easing function doesn't exist ("..tostring(easing)..")")
assert(not(type(value) ~= "number" and builtins[easing]),"Bad argument @dgsAnimTo, only number can be passed with mta built-in easing type")
dgsSetData(gui,"anim",{[0]=getTickCount(), property, value, DgsData[gui][property], easing, thetime, ["callback"] = callback})
if not animGUIList[gui] then
animGUIList[gui] = true
return true
end
return false
end
function dgsStopAniming(gui)
assert(dgsIsDxElement(gui),"Bad argument @dgsStopAniming at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
if animGUIList[gui] then
local callback = dgsGetData(gui,"anim")["callback"]
dgsSetData(gui,"anim",false)
triggerEvent("onDgsStopAniming",gui)
animGUIList[gui] = nil
callback()
return true
end
return false
end
function dgsIsMoving(gui)
assert(dgsIsDxElement(gui),"Bad argument @dgsIsMoving at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
return moveGUIList[gui] or false
end
function dgsMoveTo(gui,x,y,relative,movetype,easing,torvx,vy,tab)
assert(dgsIsDxElement(gui),"Bad argument @dgsMoveTo at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
local x,y,torvx = tonumber(x),tonumber(y),tonumber(torvx)
assert(x,"Bad argument @dgsMoveTo at argument 2, expect number got "..type(x))
assert(y,"Bad argument @dgsMoveTo at argument 3, expect number got "..type(y))
assert(torvx,"Bad argument @dgsMoveTo at argument 7, expect number got "..type(torvx))
local easing = easing or "Linear"
assert(dgsEasingFunctionExists(easing),"Bad argument @dgsMoveTo at argument 6, easing function doesn't exist ("..tostring(easing)..")")
local ox,oy = dgsGetPosition(gui,relative or false)
dgsSetData(gui,"move",{[-1]=tab,[0]=getTickCount(),getDistanceBetweenPoints2D(ox,oy,x,y),ox,oy,x,y,relative or false,movetype,easing,torvx,vy or torvx})
if not moveGUIList[gui] then
moveGUIList[gui] = true
return true
end
return false
end
function dgsStopMoving(gui)
assert(dgsIsDxElement(gui),"Bad argument @dgsStopMoving at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
if moveGUIList[gui] then
dgsSetData(gui,"move",false)
triggerEvent("onDgsStopMoving",gui)
moveGUIList[gui] = nil
return true
end
return false
end
function dgsIsSizing(gui)
assert(dgsIsDxElement(gui),"Bad argument @dgsIsSizing at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
return sizeGUIList[gui] or false
end
function dgsSizeTo(gui,x,y,relative,movetype,easing,torvx,vy,tab)
assert(dgsIsDxElement(gui),"Bad argument @dgsSizeTo at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
local x,y,torvx = tonumber(x),tonumber(y),tonumber(torvx)
assert(x,"Bad argument @dgsSizeTo at argument 2, expect number got "..type(x))
assert(y,"Bad argument @dgsSizeTo at argument 3, expect number got "..type(y))
assert(torvx,"Bad argument @dgsSizeTo at argument 7, expect number got "..type(torvx))
local easing = easing or "Linear"
assert(dgsEasingFunctionExists(easing),"Bad argument @dgsSizeTo at argument 6, easing function doesn't exist ("..tostring(easing)..")")
local ox,oy = dgsGetSize(gui,relative or false)
dgsSetData(gui,"size",{[-1]=tab,[0]=getTickCount(),getDistanceBetweenPoints2D(ox,oy,x,y),ox,oy,x,y,relative or false,movetype,easing,torvx,vy or torvx})
if not sizeGUIList[gui] then
sizeGUIList[gui] = true
return true
end
return false
end
function dgsStopSizing(gui)
assert(dgsIsDxElement(gui),"Bad argument @dgsStopSizing at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
if sizeGUIList[gui] then
dgsSetData(gui,"size",false)
triggerEvent("onDgsStopSizing",gui)
sizeGUIList[gui] = nil
return true
end
return false
end
function dgsIsAlphaing(gui)
assert(dgsIsDxElement(gui),"Bad argument @dgsIsAlphaing at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
return alphaGUIList[gui] or false
end
function dgsAlphaTo(gui,toalpha,movetype,easing,torv,tab)
assert(dgsIsDxElement(gui),"Bad argument @dgsAlphaTo at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
local toalpha,torv = tonumber(toalpha),tonumber(torv)
assert(toalpha,"Bad argument @dgsAlphaTo at argument 2, expect number got "..type(toalpha))
assert(torv,"Bad argument @dgsAlphaTo at argument 5, expect number got "..type(torv))
local easing = easing or "Linear"
assert(dgsEasingFunctionExists(easing),"Bad argument @dgsAlphaTo at argument 4, easing function doesn't exist ("..tostring(easing)..")")
local toalpha = (toalpha > 1 and 1) or (toalpha < 0 and 0) or toalpha
dgsSetData(gui,"calpha",{[-1]=tab,[0]=getTickCount(),dgsElementData[gui].alpha-toalpha,toalpha,movetype,easing,torv})
if not alphaGUIList[gui] then
alphaGUIList[gui] = true
return true
end
return
end
function dgsStopAlphaing(gui)
assert(dgsIsDxElement(gui),"Bad argument @dgsStopAlphaing at argument 1, expect dgs-dxgui got "..dgsGetType(gui))
if alphaGUIList[gui] then
dgsSetData(gui,"calpha",false)
triggerEvent("onDgsStopAlphaing",gui)
alphaGUIList[gui] = nil
return true
end
return false
end
addEventHandler("onClientRender",root,function()
local tickCount = getTickCount()
for v,value in pairs(animGUIList) do
if not dgsIsDxElement(v) or not value then animGUIList[v] = nil end
local data = dgsElementData[v].anim
if not data then animGUIList[v] = nil end
if animGUIList[v] then
local propertyName,targetValue,oldValue,easing,thetime = data[1],data[2],data[3],data[4],data[5]
local changeTime = tickCount-data[0]
if changeTime <= thetime then
if builtins[easing] then
local percent = oldValue+getEasingValue(changeTime/thetime,easing)*(targetValue-oldValue)
dgsSetProperty(v,propertyName,percent)
else
if SelfEasing[easing] then
local value = SelfEasing[easing](changeTime/thetime,{propertyName,targetValue,oldValue},v)
dgsSetProperty(v,propertyName,value)
else
dgsStopAniming(v)
assert(false,"Bad argument @dgsAnimTo, easing function is missing during running easing funcition("..easing..")")
end
end
else
dgsStopAniming(v)
end
end
end
for v,value in pairs(moveGUIList) do
if not dgsIsDxElement(v) or not value then moveGUIList[v] = nil end
local data = dgsElementData[v].move
if not data then moveGUIList[v] = nil end
if moveGUIList[v] then
local allDistance,ox,oy,x,y,rlt,mtype,easing,torvx,vy,settings = data[1],data[2],data[3],data[4],data[5],data[6],data[7],data[8],data[9],data[-1]
local nx,ny = dgsGetPosition(v,rlt)
local tx,ty
local compMove = false
local percentx,percenty
if mtype then
local disx,disy = x-ox,y-oy
local percentxo,percentyo = disx~=0 and (nx-ox)/disx or 1,disy ~= 0 and (ny-oy)/disy or 1
if builtins[easing] then
percentx,percenty = getEasingValue(percentxo,easing)*percentxo,getEasingValue(percentyo,easing)*percentyo
else
percentx,percenty = getEasingValue2(percentxo,easing,settings,v)*percentxo,getEasingValue2(percentyo,easing,settings,v)*percentyo
end
if percentxo >= 1 and percentyo >= 1 then
compMove = true
tx,ty = x,y
else
tx,ty = nx+torvx,ny+vy
end
else
local changeTime = tickCount-data[0]
local temp = changeTime/torvx
if builtins[easing] then
percentx,percenty = interpolateBetween(ox,oy,0,x,y,0,temp,easing)
else
percentx,percenty = interpolateBetween2(ox,oy,0,x,y,0,temp,easing,settings,v)
end
if temp >= 1 then
compMove = true
tx,ty = x,y
else
tx,ty = percentx,percenty
end
end
dgsSetPosition(v,tx,ty,rlt)
if compMove then
dgsStopMoving(v)
end
end
end
for v,value in pairs(sizeGUIList) do
if not dgsIsDxElement(v) or not value then sizeGUIList[v] = nil end
local data = dgsGetData(v,"size")
if not data then sizeGUIList[v] = nil end
if sizeGUIList[v] then
local allDistance,ox,oy,x,y,rlt,mtype,easing,torvx,vy,settings = data[1],data[2],data[3],data[4],data[5],data[6],data[7],data[8],data[9],data[-1]
local nx,ny = dgsGetSize(v,rlt)
local tx,ty
local compSize = false
local percentx,percenty
if mtype then
local disx,disy = x-ox,y-oy
local percentxo,percentyo = disx~=0 and (nx-ox)/disx or 1,disy ~= 0 and (ny-oy)/disy or 1
if builtins[easing] then
percentx,percenty = getEasingValue(percentxo,easing)*percentxo,getEasingValue(percentyo,easing)*percentyo
else
percentx,percenty = getEasingValue2(percentxo,easing,settings,v)*percentxo,getEasingValue2(percentyo,easing,settings,v)*percentyo
end
if percentxo >= 1 and percentyo >= 1 then
compSize = true
tx,ty = x,y
else
tx,ty = nx+torvx,ny+vy
end
else
local changeTime = tickCount-data[0]
local temp = changeTime/torvx
if builtins[easing] then
percentx,percenty = interpolateBetween(ox,oy,0,x,y,0,temp,easing)
else
percentx,percenty = interpolateBetween2(ox,oy,0,x,y,0,temp,easing,settings,v)
end
if temp >= 1 then
compSize = true
tx,ty = x,y
else
tx,ty = percentx,percenty
end
end
dgsSetSize(v,tx,ty,rlt)
if compSize then
dgsStopSizing(v)
end
end
end
for v,value in pairs(alphaGUIList) do
if not dgsIsDxElement(v) or not value then alphaGUIList[v] = nil end
local data = dgsElementData[v].calpha
if not data then alphaGUIList[v] = nil end
local allDistance,endalpha,mtype,easing,torv,settings = data[1],data[2],data[3],data[4],data[5],data[-1]
local alp = dgsElementData[v].alpha
if not alp then alphaGUIList[v] = nil end
if alphaGUIList[v] then
local talp
local compAlpha = false
local percentalp
if mtype then
local percentalpo = alp-(endalpha+allDistance)/allDistance
if builtins[easing] then
percentalp = getEasingValue(percentalpo,easing or "Linear")*percentalpo
else
percentalp = getEasingValue2(percentalpo,easing,settings,v)*percentalpo
end
if percentalpo >= 1 then
compAlpha = true
talp = endalpha
else
talp = talp+torv+percentalp*torv
end
else
local changeTime = tickCount-data[0]
local temp = changeTime/torv
if builtins[easing] then
percentalp = interpolateBetween(endalpha+allDistance,0,0,endalpha,0,0,temp,easing or "Linear")
else
percentalp = interpolateBetween2(endalpha+allDistance,0,0,endalpha,0,0,temp,easing,settings,v)
end
if temp >= 1 then
compAlpha = true
talp = endalpha
else
talp = percentalp
end
end
dgsSetData(v,"alpha",talp)
if compAlpha then
dgsStopAlphaing(v)
end
end
end
tickCount = getTickCount()
end)
function interpolateBetween2(x,y,z,tx,ty,tz,percent,easing,settings,self)
if SelfEasing[easing] then
local nx,ny,nz = 0,0,0
local temp = SelfEasing[easing](percent,settings,self)
local diff = {tx-x,ty-y,tz-z}
if diff[1] ~= 0 then
nx = temp*diff[1]+x
end
if diff[2] ~= 0 then
ny = temp*diff[2]+y
end
if diff[3] ~= 0 then
ny = temp*diff[3]+z
end
return nx,ny,nz
end
return false
end
function getEasingValue2(percent,easing,settings,self)
if SelfEasing[easing] then
return SelfEasing[easing](percent,settings,self)
end
end