-
Notifications
You must be signed in to change notification settings - Fork 195
/
shared.lua
127 lines (110 loc) · 3.61 KB
/
shared.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
Cfg = {}
voiceTarget = 1
gameVersion = GetGameName()
-- these are just here to satisfy linting
if not IsDuplicityVersion() then
LocalPlayer = LocalPlayer
playerServerId = GetPlayerServerId(PlayerId())
if gameVersion == "redm" then
function CreateAudioSubmix(name)
return Citizen.InvokeNative(0x658d2bc8, name, Citizen.ResultAsInteger())
end
function AddAudioSubmixOutput(submixId, outputSubmixId)
Citizen.InvokeNative(0xAC6E290D, submixId, outputSubmixId)
end
function MumbleSetSubmixForServerId(serverId, submixId)
Citizen.InvokeNative(0xFE3A3054, serverId, submixId)
end
function SetAudioSubmixEffectParamFloat(submixId, effectSlot, paramIndex, paramValue)
Citizen.InvokeNative(0x9A209B3C, submixId, effectSlot, paramIndex, paramValue)
end
function SetAudioSubmixEffectParamInt(submixId, effectSlot, paramIndex, paramValue)
Citizen.InvokeNative(0x77FAE2B8, submixId, effectSlot, paramIndex, paramValue)
end
function SetAudioSubmixEffectRadioFx(submixId, effectSlot)
Citizen.InvokeNative(0xAAA94D53, submixId, effectSlot)
end
function SetAudioSubmixOutputVolumes(submixId, outputSlot, frontLeftVolume, frontRightVolume, rearLeftVolume,
rearRightVolume, channel5Volume, channel6Volume)
Citizen.InvokeNative(0x825DC0D1, submixId, outputSlot, frontLeftVolume, frontRightVolume, rearLeftVolume,
rearRightVolume, channel5Volume, channel6Volume)
end
end
end
Player = Player
Entity = Entity
if GetConvar('voice_useNativeAudio', 'false') == 'true' then
-- native audio distance seems to be larger then regular gta units
Cfg.voiceModes = {
{ 1.5, "Whisper" }, -- Whisper speech distance in gta distance units
{ 3.0, "Normal" }, -- Normal speech distance in gta distance units
{ 6.0, "Shouting" } -- Shout speech distance in gta distance units
}
else
Cfg.voiceModes = {
{ 3.0, "Whisper" }, -- Whisper speech distance in gta distance units
{ 7.0, "Normal" }, -- Normal speech distance in gta distance units
{ 15.0, "Shouting" } -- Shout speech distance in gta distance units
}
end
logger = {
log = function(message, ...)
print((message):format(...))
end,
info = function(message, ...)
if GetConvarInt('voice_debugMode', 0) >= 1 then
print(('[info] ' .. message):format(...))
end
end,
warn = function(message, ...)
print(('[^1WARNING^7] ' .. message):format(...))
end,
error = function(message, ...)
error((message):format(...))
end,
verbose = function(message, ...)
if GetConvarInt('voice_debugMode', 0) >= 4 then
print(('[verbose] ' .. message):format(...))
end
end,
}
function tPrint(tbl, indent)
indent = indent or 0
for k, v in pairs(tbl) do
local tblType = type(v)
local formatting = string.rep(" ", indent) .. k .. ": "
if tblType == "table" then
print(formatting)
tPrint(v, indent + 1)
elseif tblType == 'boolean' then
print(formatting .. tostring(v))
elseif tblType == "function" then
print(formatting .. tostring(v))
else
print(formatting .. v)
end
end
end
local function types(args)
local argType = type(args[1])
for i = 2, #args do
local arg = args[i]
if argType == arg then
return true, argType
end
end
return false, argType
end
--- does a type check and errors if an invalid type is sent
---@param ... table a table with the variable being the first argument and the expected type being the second
function type_check(...)
local vars = { ... }
for i = 1, #vars do
local var = vars[i]
local matchesType, varType = types(var)
if not matchesType then
table.remove(var, 1)
error(("Invalid type sent to argument #%s, expected %s, got %s"):format(i, table.concat(var, "|"), varType))
end
end
end