-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayerSpeed.lua
136 lines (117 loc) · 6.1 KB
/
PlayerSpeed.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
-- PlayerSpeed Mod
-- FS17 refactor, FS19, FS22 and FS25 by *TurboStar*
-- v1.0.0.0 Initial FS25 release
-- v1.1.0.0 Fix slow start and stop with high speeds
PlayerSpeed = {}
function PlayerSpeed:loadMap()
self.ACC = PlayerMover.ACCELERATION or 16.0
self.DEC = PlayerMover.DECELERATION or 10.0
self.RATIOS = {0.2, 0.5, 0.7, 1.0, 3.0, 8.0, 15.0} -- ratio
self.RATIOS_LEN = #self.RATIOS
self.TEXTS = {"ps_slow02", "ps_slow05", "ps_slow07", "ps_x1", "ps_x3", "ps_x8", "ps_x15", ["other"] = "ps_othermod"}
self.cont = 4 -- It starts with default ratio
self.eventIdReduce, self.eventIdIncrease = nil, nil
self.errorDisplayed, self.firstTime = false, true
end
function PlayerSpeed:registerActionEvents()
if self.player.isOwner then
g_inputBinding:beginActionEventsModification(PlayerInputComponent.INPUT_CONTEXT_NAME)
-- Reset at start
if PlayerSpeed.firstTime then
PlayerSpeed.cont = 4
PlayerSpeed.firstTime = false
end
_, PlayerSpeed.eventIdReduce = g_inputBinding:registerActionEvent(InputAction.SPEEDMINUS, PlayerSpeed, PlayerSpeed.reduceSpeed, false, true, false, true, -1, true) --
_, PlayerSpeed.eventIdIncrease = g_inputBinding:registerActionEvent(InputAction.SPEEDPLUS, PlayerSpeed, PlayerSpeed.incrementSpeed, false, true, false, true, 1, true) --
g_inputBinding:endActionEventsModification()
end
end
PlayerInputComponent.registerActionEvents = Utils.appendedFunction(PlayerInputComponent.registerActionEvents, PlayerSpeed.registerActionEvents)
function PlayerSpeed:unregisterActionEvents()
if self.player.isOwner then
g_inputBinding:removeActionEventsByTarget(self)
end
end
PlayerInputComponent.unregisterActionEvents = Utils.appendedFunction(PlayerInputComponent.unregisterActionEvents, PlayerSpeed.unregisterActionEvents)
function PlayerSpeed:reduceSpeed(actionName, keyStatus)
if (self.cont == 1) then return end
self.cont = self.cont - 1
self.setAccDec(math.max(1.0, self.RATIOS[self.cont]))
-- g_inputBinding.events[PlayerSpeed.eventIdReduce].callbackState is -1 here
end
function PlayerSpeed:incrementSpeed(actionName, keyStatus)
if (self.cont == self.RATIOS_LEN) then return end
self.cont = self.cont + 1
self.setAccDec(math.max(1.0, self.RATIOS[self.cont]))
-- g_inputBinding.events[PlayerSpeed.eventIdIncrease].callbackState is 1 here
end
function PlayerSpeed:update(dt, isActiveForInput, isSelected)
local player = g_currentMission.playerSystem.playersByUserId[g_currentMission.playerUserId]
if not g_currentMission:getIsClient() or not player or (player and not player.isControlled) or (g_gui ~= nil and g_gui.currentGuiName ~= "") then
return
end
if (self.cont ~= nil and (self.cont < 1 or self.cont > self.RATIOS_LEN)) or self.cont == nil then
if not self.errorDisplayed then
print("PlayerSpeed: something is wrong on PlayerSpeed... Aborting functionality. Please report your log.txt")
self.errorDisplayed = true
end
return
end
g_inputBinding:setActionEventActive(self.eventIdReduce, self.cont ~= 1)
g_inputBinding:setActionEventTextVisibility(self.eventIdReduce, self.cont ~= 1)
g_inputBinding:setActionEventActive(self.eventIdIncrease, self.cont ~= self.RATIOS_LEN)
g_inputBinding:setActionEventTextVisibility(self.eventIdIncrease, self.cont ~= self.RATIOS_LEN)
if self.cont ~= nil and self.TEXTS ~= nil and self.TEXTS[self.cont] ~= nil then
g_currentMission:addExtraPrintText(g_i18n:getText(self.TEXTS[self.cont]))
elseif self.TEXTS and self.TEXTS ~= nil and self.TEXTS["other"] then
g_currentMission:addExtraPrintText(g_i18n:getText(self.TEXTS["other"]))
end
end
function PlayerSpeed.setAccDec(mltp)
if PlayerSpeed and mltp then
PlayerMover.ACCELERATION = PlayerSpeed.ACC * mltp
PlayerMover.DECELERATION = PlayerSpeed.DEC * mltp
end
end
function PlayerSpeed:speedWalk(superFunc, directionX, directionY)
local speedX, speedY = superFunc(self, directionX, directionY)
if PlayerSpeed and PlayerSpeed.RATIOS and PlayerSpeed.cont then
return speedX*PlayerSpeed.RATIOS[PlayerSpeed.cont], speedY*PlayerSpeed.RATIOS[PlayerSpeed.cont]
end
return speedX, speedY
end
PlayerStateWalk.calculateDesiredHorizontalVelocity = Utils.overwrittenFunction(PlayerStateWalk.calculateDesiredHorizontalVelocity, PlayerSpeed.speedWalk)
function PlayerSpeed:speedJump(superFunc, directionX, directionY)
local speedX, speedY = superFunc(self, directionX, directionY)
if PlayerSpeed and PlayerSpeed.RATIOS and PlayerSpeed.cont then
return speedX*PlayerSpeed.RATIOS[PlayerSpeed.cont], speedY*PlayerSpeed.RATIOS[PlayerSpeed.cont]
end
return speedX, speedY
end
PlayerStateJump.calculateDesiredHorizontalVelocity = Utils.overwrittenFunction(PlayerStateJump.calculateDesiredHorizontalVelocity, PlayerSpeed.speedJump)
function PlayerSpeed:speedCrouch(superFunc, directionX, directionY)
local speedX, speedY = superFunc(self, directionX, directionY)
if PlayerSpeed and PlayerSpeed.RATIOS and PlayerSpeed.cont then
return speedX*PlayerSpeed.RATIOS[PlayerSpeed.cont], speedY*PlayerSpeed.RATIOS[PlayerSpeed.cont]
end
return speedX, speedY
end
PlayerStateCrouch.calculateDesiredHorizontalVelocity = Utils.overwrittenFunction(PlayerStateCrouch.calculateDesiredHorizontalVelocity, PlayerSpeed.speedCrouch)
function PlayerSpeed:speedFall(superFunc, directionX, directionY)
local speedX, speedY = superFunc(self, directionX, directionY)
if PlayerSpeed and PlayerSpeed.RATIOS and PlayerSpeed.cont then
return speedX*PlayerSpeed.RATIOS[PlayerSpeed.cont], speedY*PlayerSpeed.RATIOS[PlayerSpeed.cont]
end
return speedX, speedY
end
PlayerStateFall.calculateDesiredHorizontalVelocity = Utils.overwrittenFunction(PlayerStateFall.calculateDesiredHorizontalVelocity, PlayerSpeed.speedFall)
function PlayerSpeed:speedSwim(superFunc, directionX, directionY)
local speedX, speedY = superFunc(self, directionX, directionY)
if PlayerSpeed and PlayerSpeed.RATIOS and PlayerSpeed.cont then
return speedX*PlayerSpeed.RATIOS[PlayerSpeed.cont], speedY*PlayerSpeed.RATIOS[PlayerSpeed.cont]
end
return speedX, speedY
end
PlayerStateSwim.calculateDesiredHorizontalVelocity = Utils.overwrittenFunction(PlayerStateSwim.calculateDesiredHorizontalVelocity, PlayerSpeed.speedSwim)
addModEventListener(PlayerSpeed)
print(" Loading PlayerSpeed Mod...")