-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathframework.lua
244 lines (228 loc) · 7.66 KB
/
framework.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
-------------------------------------------------
-- The following is for polling. Do not alter.
-------------------------------------------------
_StartUpParameters = {
PollDevice = "mouse",
PollDelay = 10,
AutoTaskSleep = false,
}
function _PreEvent() end
function _PostEvent()
_TaskHandler.Execute()
end
function OnEvent(event, arg, family)
if event == "PROFILE_ACTIVATED" then
_TaskHandler = InitTaskHandler()
Poll = InitPolling(_StartUpParameters.PollDelay, _StartUpParameters.PollDevice, _PreEvent, _PostEvent)
end
Poll.Execute(event, arg, family)
end
----------------------------
-- Polling Class
----------------------------
function InitPolling(PollDelay, PollDevice, PreOnEventFunc, PostOnEventFunc)
local self = {
PollDelay = PollDelay,
PollDevice = PollDevice,
PreOnEventFunc = PreOnEventFunc,
PostOnEventFunc = PostOnEventFunc,
Sleep = Sleep_hook,
}
local function CreateEvent() SetMKeyState(1, self.PollDevice) end
local function OnEvent(event, arg, family)
if self.PreOnEventFunc then self.PreOnEventFunc() end
_OnEvent(event, arg, family)
if self.PostOnEventFunc then self.PostOnEventFunc() end
end
function self.Execute(event, arg, family)
if event == "PROFILE_ACTIVATED" then
if _OnActivated then _OnActivated(event, arg, family) end
OnEvent(event, arg, family)
CreateEvent() -- initiates the first polling event
elseif event == "M_RELEASED" and family == self.PollDevice then
OnEvent("POLLING", 0, self.PollDevice)
CreateEvent()
self.Sleep(self.PollDelay)
elseif event == "M_PRESSED" and family == self.PollDevice then
OnEvent("POLLING", 0, self.PollDevice)
self.Sleep(self.PollDelay)
elseif event == "PROFILE_DEACTIVATED" then
if _OnDeactivated then _OnDeactivated(event, arg, family) end
else
OnEvent(event, arg, family)
end
end
function self.SetPreOnEventFunc(func) self.PreOnEventFunc = func end
function self.SetPostOnEventFunc(func) self.PosOnEventFunc = func end
return self
end
------------------------
-- Task Class
------------------------
function TaskSleep(delay) return coroutine.yield(delay) end
function NewTask(func, ...)
local self = {
_Func = func,
_Running = false,
_Co = nil,
_ResumeRunningTime = -1,
_AtStart = false,
_Repeat = false,
_Vars = nil,
_TH = _TaskHandler or nil,
}
function self.ChangeVars(...) self._Vars = { ... } end
function self.SetRepeat(r) self._Repeat = r end
function self.GetRepeat() return self._Repeat end
function self.Create()
self._ResumeRunningTime = -1
self._Running = false
self._Co = coroutine.create(self._Func)
self._AtStart = true
end
function self.Start()
if not self.IsAtStart() or not self.IsCreated() then
self.Create()
end
self._Running = true
end
function self.Stop() self._Running = false; self._Co = nil end
function self.GetStatus()
if self._Co then return coroutine.status(self._Co)
else return nil end
end
function self.IsAtStart() return self._AtStart end
function self.IsAtEnd() return self.IsDead() end
function self.IsCreated()
if self._Co then return true
else return false end
end
function self.IsDead()
if self._Co and self.GetStatus() == "dead" then return true
else return false end
end
function self.IsRunning()
if self.IsCreated() and self._Running and not self.IsDead() then return true
else return false end
end
function self.IsReady()
if self._Running and self.IsCreated() and not self.IsDead()
and self._ResumeRunningTime <= GetRunningTime() then
return true
else return false end
end
function self.Pause() self._Running = false end
function self.Resume() self._Running = true end
function self.Execute()
if self.GetRepeat() and self.IsDead() and self._Running then self.Start() end
if self.IsReady() then
local status, delay = coroutine.resume(self._Co, unpack(self._Vars))
self._AtStart = false
if delay then self._ResumeRunningTime = delay + GetRunningTime()
else self._ResumeRunningTime = -1 end
return status
end
end
function self.Destroy()
if self._TH then self._TH.RemoveTask(self) end
self = nil
return nil
end
function self.Remove() self.Destroy() end
self.ChangeVars(...)
self.Create()
if self._TH then self._TH.AddTask(self) end
return self
end
--------------------------
-- TaskHandler
--------------------------
function InitTaskHandler()
local self = { _TaskList = {}, }
function self.AddTask(Task) self._TaskList[Task] = true end
function self.RemoveTask(Task) self._TaskList[Task] = nil end
function self.Execute()
for k,v in pairs(self._TaskList) do k.Execute() end
end
return self
end
coroutine.running_hook = coroutine.running
function coroutine.running()
local v = coroutine.running_hook()
return v
end
Sleep_hook = Sleep
function Sleep(d)
if _StartUpParameters.AutoTaskSleep and coroutine.running() then return TaskSleep(d)
else return Sleep_hook(d) end
end
---------------------------
---Framework for Weapons---
---------------------------
noWeapon = "clear"
function initWeapon(weapon)
weapon.onWeapon = function ()
onWeapon(weapon)
end
weapon.pdata = {}
for shotTimes = 2 , weapon.ammo do
local hchange = weapon.data[shotTimes-1][1] - weapon.data[shotTimes][1]
local vchange = weapon.data[shotTimes-1][2] - weapon.data[shotTimes][2]
hchange = math.floor(hchange * weapon.factor)
vchange = math.floor(vchange * weapon.factor)
weapon.pdata[shotTimes] = {hchange,vchange}
end
end
function onWeapon(weapon)
local shotTimes = 2
local startTime = GetRunningTime()
MoveMouseRelative(weapon.pdata[2][1],weapon.pdata[2][2])
while shotTimes < weapon.ammo do
local currentTime = GetRunningTime()
if currentTime-startTime >weapon.interval then
shotTimes = shotTimes + 1
startTime = startTime + weapon.interval
local hchange = weapon.pdata[shotTimes][1]
local vchange = weapon.pdata[shotTimes][2]
MoveMouseRelative(hchange,vchange)
end
TaskSleep(10)
end
end
--------------------------
----Global Configs--------
--------------------------
config = {}
config.task = nil
config.currentWeapon = nil
config.keyBindings = {}
function bindKey(key,func)
config.keyBindings[key] = func
end
function _OnEvent(event,arg)
EnablePrimaryMouseButtonEvents(true)
if event == "MOUSE_BUTTON_PRESSED" and config.keyBindings[arg] ~= nil then
if config.keyBindings[arg] == "clear" then
config.currentWeapon = nil
else
config.currentWeapon = config.keyBindings[arg]
end
end
if event == "MOUSE_BUTTON_PRESSED" and arg == 1 and config.currentWeapon ~= nil then
config.task = NewTask(config.currentWeapon.onWeapon)
config.task.Start()
end
if event == "MOUSE_BUTTON_RELEASED" and arg == 1 and config.currentWeapon ~= nil then
config.task.Destroy()
end
end
function makeInexactWeapon(step)
local weap = {}
weap.onWeapon = function()
while true do
MoveMouseRelative(0,step)
TaskSleep(10)
end
end
return weap
end