forked from exeldro/obs-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource-toggler.lua
99 lines (86 loc) · 3.29 KB
/
source-toggler.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
obs = obslua
gs = nil
always_show = false
function script_properties()
local props = obs.obs_properties_create()
obs.obs_properties_add_editable_list(props, "sources", "Scenes and Groups",obs.OBS_EDITABLE_LIST_TYPE_STRINGS,nil,nil)
obs.obs_properties_add_bool(props, "always_show", "Always show")
return props
end
function script_description()
return "toggle between sources visible in a scene"
end
function item_visible(calldata)
local visible = obs.calldata_bool(calldata,"visible")
if not visible and not always_show then
return
end
local item = obs.calldata_sceneitem(calldata,"item")
local source = obs.obs_sceneitem_get_source(item)
local sourceName = obs.obs_source_get_name(source)
local scene = obs.obs_sceneitem_get_scene(item)
local sceneitems = obs.obs_scene_enum_items(scene)
local found = false
for i, sceneitem in ipairs(sceneitems) do
local itemsource = obs.obs_sceneitem_get_source(sceneitem)
local isn = obs.obs_source_get_name(itemsource)
if visible and sourceName ~= isn then
if obs.obs_sceneitem_visible(sceneitem) then
obs.obs_sceneitem_set_visible(sceneitem, false)
end
elseif not visible and sourceName ~= isn and obs.obs_sceneitem_visible(sceneitem) then
found = true
end
end
if always_show and not visible and not found then
obs.obs_sceneitem_set_visible(item, true)
end
obs.sceneitem_list_release(sceneitems)
end
function script_update(settings)
always_show = obs.obs_data_get_bool(settings,"always_show")
local sourceNames = obs.obs_data_get_array(settings, "sources");
local count = obs.obs_data_array_count(sourceNames);
for i = 0,count do
local item = obs.obs_data_array_item(sourceNames, i);
local sourceName = obs.obs_data_get_string(item, "value");
local source = obs.obs_get_source_by_name(sourceName)
if source ~= nil then
local sh = obs.obs_source_get_signal_handler(source);
obs.signal_handler_disconnect(sh,"item_visible",item_visible)
obs.signal_handler_connect(sh,"item_visible",item_visible)
obs.obs_source_release(source)
end
end
end
function script_defaults(settings)
end
function script_save(settings)
end
function loaded(cd)
if gs == nil then
return
end
local source = obs.calldata_source(cd, "source")
local sn = obs.obs_source_get_name(source)
local sourceNames = obs.obs_data_get_array(gs, "sources");
local count = obs.obs_data_array_count(sourceNames);
for i = 0,count do
local item = obs.obs_data_array_item(sourceNames, i);
local sourceName = obs.obs_data_get_string(item, "value");
if sn == sourceName then
local sh = obs.obs_source_get_signal_handler(source);
obs.signal_handler_disconnect(sh,"item_visible",item_visible)
obs.signal_handler_connect(sh,"item_visible",item_visible)
end
end
obs.obs_data_array_release(sourceNames)
end
function script_load(settings)
gs = settings
always_show = obs.obs_data_get_bool(settings,"always_show")
local sh = obs.obs_get_signal_handler()
obs.signal_handler_connect(sh, "source_load", loaded)
end
function script_unload()
end