42 lines
1.4 KiB
Lua
42 lines
1.4 KiB
Lua
function handleInitialState()
|
|
local voiceModeData = Cfg.voiceModes[mode]
|
|
MumbleSetTalkerProximity(voiceModeData[1] + 0.0)
|
|
MumbleClearVoiceTarget(voiceTarget)
|
|
MumbleSetVoiceTarget(voiceTarget)
|
|
MumbleSetVoiceChannel(playerServerId)
|
|
|
|
while MumbleGetVoiceChannelFromServerId(playerServerId) ~= playerServerId do
|
|
Wait(250)
|
|
MumbleSetVoiceChannel(playerServerId)
|
|
end
|
|
|
|
MumbleAddVoiceTargetChannel(voiceTarget, playerServerId)
|
|
|
|
addNearbyPlayers()
|
|
end
|
|
|
|
AddEventHandler('mumbleConnected', function(address, isReconnecting)
|
|
logger.info('Connected to mumble server with address of %s, is this a reconnect %s', GetConvarInt('voice_hideEndpoints', 1) == 1 and 'HIDDEN' or address, isReconnecting)
|
|
|
|
logger.log('Connecting to mumble, setting targets.')
|
|
-- don't try to set channel instantly, we're still getting data.
|
|
local voiceModeData = Cfg.voiceModes[mode]
|
|
LocalPlayer.state:set('proximity', {
|
|
index = mode,
|
|
distance = voiceModeData[1],
|
|
mode = voiceModeData[2],
|
|
}, true)
|
|
|
|
handleInitialState()
|
|
|
|
logger.log('Finished connection logic')
|
|
end)
|
|
|
|
AddEventHandler('mumbleDisconnected', function(address)
|
|
logger.info('Disconnected from mumble server with address of %s', GetConvarInt('voice_hideEndpoints', 1) == 1 and 'HIDDEN' or address)
|
|
end)
|
|
|
|
-- TODO: Convert the last Cfg to a Convar, while still keeping it simple.
|
|
AddEventHandler('pma-voice:settingsCallback', function(cb)
|
|
cb(Cfg)
|
|
end) |