-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathInfoWriter.cpp
347 lines (288 loc) · 7.76 KB
/
InfoWriter.cpp
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
#include "InfoWriter.h"
#include <obs-frontend-api.h>
#include <Groundfloor/Atoms/Defines.h>
#include <Groundfloor/Materials/Functions.h>
#include <cstdint>
#include <cmath>
#include <memory>
#include <regex>
#include "OutputFormat/OutputFormat.Default.h"
#include "OutputFormat/OutputFormat.EDL.h"
#include "OutputFormat/OutputFormat.CSV.h"
#include "OutputFormat/OutputFormat.SRT.h"
const char *c_TimestampNotation = "%Y-%m-%d %H:%M:%S";
InfoWriter::InfoWriter() : Settings()
{
lastInfoMediaType = imtUnknown;
StartTime = 0;
StartRecordTime = 0;
StartStreamTime = 0;
PausedTotalTime = 0;
PausedStartTime = 0;
StreamStarted = false;
RecordStarted = false;
Paused = false;
}
std::string InfoWriter::SecsToHMSString(const int64_t totalseconds) const
{
uint32_t hr = (uint32_t)trunc(totalseconds / 60.0 / 60.0);
uint32_t min = (uint32_t)trunc(totalseconds / 60.0) - (hr * 60);
uint32_t sec = totalseconds % 60;
std::string format = Settings.GetFormat();
std::string replacement = "\t";
std::regex tabregex("(\\\\t)");
format = std::regex_replace(format, tabregex, replacement);
format += "\0\0\0\0";
char buffer[1024];
sprintf(&buffer[0], format.c_str(), hr, min, sec);
return buffer;
}
int64_t InfoWriter::getPausedTime(const int64_t currentTime) const
{
auto PausedTmpTime = PausedTotalTime;
if (Paused) {
PausedTmpTime =
PausedTotalTime + (currentTime - PausedStartTime);
}
return PausedTmpTime;
}
void InfoWriter::WriteInfo(const std::string AExtraInfo) const
{
if (output == nullptr)
return;
char crlf[] = GFNATIVENEXTLINE;
std::string Info;
auto currentTime = Groundfloor::GetTimestamp();
auto tmpTime = SecsToHMSString(0);
auto PausedTmpTime = getPausedTime(currentTime);
if (RecordStarted) {
tmpTime = SecsToHMSString((currentTime - StartRecordTime) -
PausedTmpTime);
}
std::string record_info = tmpTime;
tmpTime = SecsToHMSString(0);
if (StreamStarted) {
tmpTime = SecsToHMSString(currentTime - StartStreamTime);
}
auto stream_info = tmpTime;
record_info += " Record Time Marker";
stream_info += " Stream Time Marker";
if (!RecordStarted)
record_info += " (not recording)";
if (Paused)
record_info += " (recording is paused)";
if (!StreamStarted)
stream_info += " (not streaming)";
record_info += crlf;
stream_info += crlf;
if (AExtraInfo.length() != 0) {
Info = "";
Info += AExtraInfo;
Info += crlf;
}
Info += record_info;
if (this->Settings.GetShouldLogStreaming())
Info += stream_info;
output->TextMarker(Info);
}
void InfoWriter::WriteInfo(const InfoHotkey AHotkey) const
{
if (output == nullptr)
return;
auto Now = Groundfloor::GetTimestamp();
auto hotkey_text = Settings.GetHotkeyText(AHotkey);
if (lastInfoMediaType == imtStream) {
output->HotkeyMarker(Now - StartStreamTime, hotkey_text);
} else {
output->HotkeyMarker(Now - StartRecordTime - getPausedTime(Now),
hotkey_text);
}
this->WriteInfo("");
}
void InfoWriter::WriteSceneChange(const std::string scenename) const
{
if (output == nullptr)
return;
auto Now = Groundfloor::GetTimestamp();
if (lastInfoMediaType == imtStream) {
if (scenename == "") {
output->ScenechangeMarker(Now - StartStreamTime,
"UNKNO");
} else {
output->ScenechangeMarker(Now - StartStreamTime,
scenename);
}
} else {
if (scenename == "") {
output->ScenechangeMarker(Now - StartRecordTime -
getPausedTime(Now),
"UNKNO");
} else {
output->ScenechangeMarker(Now - StartRecordTime -
getPausedTime(Now),
scenename);
}
}
this->WriteInfo("");
}
void InfoWriter::InitCurrentFilename(int64_t timestamp)
{
bool currentname_set = false;
if (Settings.GetShouldSyncNameAndPathWithVideo()) {
obs_output_t *output = obs_frontend_get_recording_output();
if (output) {
obs_data_t *outputSettings =
obs_output_get_settings(output);
obs_data_item_t *item =
obs_data_item_byname(outputSettings, "url");
if (!item) {
item = obs_data_item_byname(outputSettings,
"path");
}
if (item) {
CurrentFilename =
obs_data_item_get_string(item);
size_t videoextensionstart =
CurrentFilename.find_last_of('.') + 1;
CurrentFilename.replace(
videoextensionstart,
CurrentFilename.length(),
Settings.GetAutomaticOutputExtension()
.c_str());
currentname_set = true;
}
}
}
if (!currentname_set) {
CurrentFilename = Settings.GetFilename();
if (CurrentFilename.find('%') != 0) {
auto filename = Groundfloor::TimestampToStr(
CurrentFilename.c_str(), StartTime);
CurrentFilename = filename->getValue();
delete filename;
}
}
}
void InfoWriter::MarkStart(InfoMediaType AType)
{
StartTime = Groundfloor::GetTimestamp();
InitCurrentFilename(StartTime);
auto outputformat = Settings.GetOutputFormat();
if (outputformat == "csv") {
output = std::make_unique<OutputFormatCSV>(Settings,
CurrentFilename);
} else if (outputformat == "edl") {
output = std::make_unique<OutputFormatEDL>(Settings,
CurrentFilename);
} else if (outputformat == "srt") {
output = std::make_unique<OutputFormatSRT>(Settings,
CurrentFilename);
} else {
output = std::make_unique<OutputFormatDefault>(Settings,
CurrentFilename);
}
output->Start();
auto MarkStr =
Groundfloor::TimestampToStr(c_TimestampNotation, StartTime);
lastInfoMediaType = AType;
switch (AType) {
case imtStream:
StartStreamTime = StartTime;
StreamStarted = true;
if (this->Settings.GetShouldLogStreaming()) {
MarkStr->prepend_ansi("EVENT:START STREAM @ ");
}
output->TextMarker(MarkStr->getValue());
break;
case imtUnknown:
MarkStr->prepend_ansi(" (WARNING:Unsure how we STARTED) ");
break;
case imtRecording:
MarkStr->prepend_ansi("EVENT:START RECORDING @ ");
StartRecordTime = StartTime;
RecordStarted = true;
Paused = false;
output->TextMarker(MarkStr->getValue());
break;
case imtRecordingPauseStart:
break;
case imtRecordingPauseResume:
break;
}
delete MarkStr;
this->WriteInfo("");
}
void InfoWriter::MarkStop(InfoMediaType AType)
{
if (output == nullptr)
return;
auto Now = Groundfloor::GetTimestamp();
auto MarkStr = Groundfloor::TimestampToStr(c_TimestampNotation, Now);
switch (AType) {
case imtStream:
output->Stop(Now - StartStreamTime);
MarkStr->prepend_ansi("EVENT:STOP STREAM @ ");
MarkStr->append(" Stream Time Marker Reset to 0");
StreamStarted = false;
StartStreamTime = 0;
break;
case imtUnknown:
case imtRecording:
output->Stop(Now - StartRecordTime - getPausedTime(Now));
MarkStr->prepend_ansi("EVENT:STOP RECORDING @ ");
MarkStr->append(" Record Time Marker Reset to 0");
StartRecordTime = 0; //reset times
PausedTotalTime = 0;
Paused = false;
RecordStarted = false;
break;
case imtRecordingPauseStart:
break;
case imtRecordingPauseResume:
break;
}
WriteInfo(MarkStr->getValue());
delete MarkStr;
}
void InfoWriter::MarkPauseStart(const InfoMediaType AType)
{
if (output == nullptr)
return;
Paused = true;
PausedStartTime = Groundfloor::GetTimestamp();
output->PausedMarker(PausedStartTime - StartTime);
this->WriteInfo("");
}
void InfoWriter::MarkPauseResume(const InfoMediaType AType)
{
if (output == nullptr)
return;
Paused = false;
auto CurrentTime = Groundfloor::GetTimestamp();
PausedTotalTime += (CurrentTime - PausedStartTime);
output->ResumedMarker(CurrentTime - StartTime,
CurrentTime - PausedStartTime);
this->WriteInfo("");
}
bool InfoWriter::HasStarted() const
{
if (StreamStarted)
return true;
if (RecordStarted)
return true;
return false;
}
bool InfoWriter::IsStreaming() const
{
return StreamStarted;
}
std::string InfoWriter::NowTimeStamp() const
{
auto NowStr =
Groundfloor::TimestampToStr(c_TimestampNotation, StartTime);
return NowStr->getValue();
}
InfoWriterSettings *InfoWriter::GetSettings()
{
return &Settings;
}