@@ -22,12 +22,18 @@ const static std::map<MacroActionRecord::Action, std::string> actionTypes = {
22
22
" AdvSceneSwitcher.action.recording.type.pause" },
23
23
{MacroActionRecord::Action::UNPAUSE,
24
24
" AdvSceneSwitcher.action.recording.type.unpause" },
25
+ #if LIBOBS_API_VER >= MAKE_SEMANTIC_VERSION(28, 0, 0)
25
26
{MacroActionRecord::Action::SPLIT,
26
27
" AdvSceneSwitcher.action.recording.type.split" },
28
+ #endif
27
29
{MacroActionRecord::Action::FOLDER,
28
30
" AdvSceneSwitcher.action.recording.type.changeOutputFolder" },
29
31
{MacroActionRecord::Action::FILE_FORMAT,
30
32
" AdvSceneSwitcher.action.recording.type.changeOutputFileFormat" },
33
+ #if LIBOBS_API_VER >= MAKE_SEMANTIC_VERSION(30, 2, 0)
34
+ {MacroActionRecord::Action::ADD_CHAPTER,
35
+ " AdvSceneSwitcher.action.recording.type.addChapter" },
36
+ #endif
31
37
};
32
38
33
39
bool MacroActionRecord::PerformAction ()
@@ -86,6 +92,13 @@ bool MacroActionRecord::PerformAction()
86
92
" failed to set recoding file format string" );
87
93
}
88
94
break ;
95
+ #if LIBOBS_API_VER >= MAKE_SEMANTIC_VERSION(30, 2, 0)
96
+ case Action::ADD_CHAPTER:
97
+ if (!obs_frontend_recording_add_chapter (_chapterName.c_str ())) {
98
+ blog (LOG_WARNING, " failed to add recoding chapter!" );
99
+ }
100
+ break ;
101
+ #endif
89
102
}
90
103
default :
91
104
break ;
@@ -110,6 +123,7 @@ bool MacroActionRecord::Save(obs_data_t *obj) const
110
123
obs_data_set_int (obj, " action" , static_cast <int >(_action));
111
124
_folder.Save (obj, " folder" );
112
125
_fileFormat.Save (obj, " format" );
126
+ _chapterName.Save (obj, " chapterName" );
113
127
return true ;
114
128
}
115
129
@@ -119,6 +133,7 @@ bool MacroActionRecord::Load(obs_data_t *obj)
119
133
_action = static_cast <Action>(obs_data_get_int (obj, " action" ));
120
134
_folder.Load (obj, " folder" );
121
135
_fileFormat.Load (obj, " format" );
136
+ _chapterName.Load (obj, " chapterName" );
122
137
return true ;
123
138
}
124
139
@@ -136,6 +151,7 @@ void MacroActionRecord::ResolveVariablesToFixedValues()
136
151
{
137
152
_folder.ResolveVariables ();
138
153
_fileFormat.ResolveVariables ();
154
+ _chapterName.ResolveVariables ();
139
155
}
140
156
141
157
static inline void populateActionSelection (QComboBox *list)
@@ -154,7 +170,8 @@ MacroActionRecordEdit::MacroActionRecordEdit(
154
170
_splitHint(new QLabel(obs_module_text(
155
171
" AdvSceneSwitcher.action.recording.split.hint" ))),
156
172
_recordFolder(new FileSelection(FileSelection::Type::FOLDER, this )),
157
- _recordFileFormat(new VariableLineEdit(this ))
173
+ _recordFileFormat(new VariableLineEdit(this )),
174
+ _chapterName(new VariableLineEdit(this ))
158
175
{
159
176
populateActionSelection (_actions);
160
177
@@ -164,6 +181,8 @@ MacroActionRecordEdit::MacroActionRecordEdit(
164
181
this , SLOT (FolderChanged (const QString &)));
165
182
QWidget::connect (_recordFileFormat, SIGNAL (editingFinished ()), this ,
166
183
SLOT (FormatStringChanged ()));
184
+ QWidget::connect (_chapterName, SIGNAL (editingFinished ()), this ,
185
+ SLOT (ChapterNameChanged ()));
167
186
168
187
auto mainLayout = new QHBoxLayout;
169
188
PlaceWidgets (obs_module_text (" AdvSceneSwitcher.action.recording.entry" ),
@@ -172,7 +191,8 @@ MacroActionRecordEdit::MacroActionRecordEdit(
172
191
{" {{pauseHint}}" , _pauseHint},
173
192
{" {{splitHint}}" , _splitHint},
174
193
{" {{recordFolder}}" , _recordFolder},
175
- {" {{recordFileFormat}}" , _recordFileFormat}});
194
+ {" {{recordFileFormat}}" , _recordFileFormat},
195
+ {" {{chapterName}}" , _chapterName}});
176
196
setLayout (mainLayout);
177
197
178
198
_entryData = entryData;
@@ -188,6 +208,7 @@ void MacroActionRecordEdit::UpdateEntryData()
188
208
_actions->setCurrentIndex (static_cast <int >(_entryData->_action ));
189
209
_recordFolder->SetPath (_entryData->_folder );
190
210
_recordFileFormat->setText (_entryData->_fileFormat );
211
+ _chapterName->setText (_entryData->_chapterName );
191
212
SetWidgetVisibility ();
192
213
}
193
214
@@ -199,24 +220,22 @@ static bool isPauseAction(MacroActionRecord::Action a)
199
220
200
221
void MacroActionRecordEdit::FolderChanged (const QString &folder)
201
222
{
202
- if (_loading || !_entryData) {
203
- return ;
204
- }
205
-
206
- auto lock = LockContext ();
223
+ GUARD_LOADING_AND_LOCK ();
207
224
_entryData->_folder = folder.toStdString ();
208
225
}
209
226
210
227
void MacroActionRecordEdit::FormatStringChanged ()
211
228
{
212
- if (_loading || !_entryData) {
213
- return ;
214
- }
215
-
216
- auto lock = LockContext ();
229
+ GUARD_LOADING_AND_LOCK ();
217
230
_entryData->_fileFormat = _recordFileFormat->text ().toStdString ();
218
231
}
219
232
233
+ void MacroActionRecordEdit::ChapterNameChanged ()
234
+ {
235
+ GUARD_LOADING_AND_LOCK ();
236
+ _entryData->_chapterName = _chapterName->text ().toStdString ();
237
+ }
238
+
220
239
void MacroActionRecordEdit::SetWidgetVisibility ()
221
240
{
222
241
_pauseHint->setVisible (isPauseAction (_entryData->_action ));
@@ -226,6 +245,8 @@ void MacroActionRecordEdit::SetWidgetVisibility()
226
245
MacroActionRecord::Action::FOLDER);
227
246
_recordFileFormat->setVisible (_entryData->_action ==
228
247
MacroActionRecord::Action::FILE_FORMAT);
248
+ _chapterName->setVisible (_entryData->_action ==
249
+ MacroActionRecord::Action::ADD_CHAPTER);
229
250
}
230
251
231
252
void MacroActionRecordEdit::ActionChanged (int value)
0 commit comments