File size: 1,812 Bytes
b6a38d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
if not Platform.developer and not Platform.debug then
	return
end

if FirstLoad then
	PlayingSoundsTextsThread = false
	PlayingSoundsTextsMap = false
	ListenerText = false
end

function OnMsg.ChangeMap()
	DeleteThread(PlayingSoundsTextsThread)
	PlayingSoundsTextsMap = false
end

local function SetRenderStatistics(s)
	if hr.RenderStatistics ~= nil then
		hr.RenderStatistics = s
	end
end

function ToggleSoundDebug()
	local debug = listener and listener.Debug
	if not debug then return end
	listener.Debug = debug < 4 and ((debug + 1) % (listener.MaxDebug + 1)) or 1
	hr.AudioVolumeDebug = listener.Debug ~= 0 
	
	UpdateSoundDebug()
	local info
	if listener.Debug == 0 then
		info = "disabled"
	elseif listener.Debug == 1 then
		info = "listener circle + vector to playing objects"
	elseif listener.Debug == 2 then
		info = " + loud distance circle + volume visualization"
	elseif listener.Debug == 3 then
		info = " + sound texts for all map sound"
	end
	printf("Sound debug %d/%d: %s.", listener.Debug, listener.MaxDebug, info)
end

function UpdateSoundDebug()
	local debug = listener and listener.Debug
	if not debug then
		return
	end
	if debug == 0 then
		SetRenderStatistics(0)
	else
		SetRenderStatistics(1<<8 | 1<<9)
	end
	if GetMap() == "" then
		return
	end
	MapForEach("map", "SoundSource", SoundSource.UpdateMesh)
end

OnMsg.NewMapLoaded = UpdateSoundDebug

function OnMsg.GameExitEditor()
	MapForEach("map", "SoundSource", function(sound) 
		if sound.editor_interrupted then
			sound.editor_interrupted = false
			sound:ReplaySound(sound.FadeTime) 
		end
	end)
end

function ToggleListenerUpdate()
	if not listener then return end
	local disable = listener.DebugDisableUpdate == 0
	listener.DebugDisableUpdate = disable and 1 or 0
	printf("Listener update", disable and "disabled" or "enabled")
end