forked from reaper-oss/sws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBR_Util.cpp
3667 lines (3194 loc) · 102 KB
/
BR_Util.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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/******************************************************************************
/ BR_Util.cpp
/
/ Copyright (c) 2013-2015 Dominik Martin Drzic
/ http://forum.cockos.com/member.php?u=27094
/ http://github.com/reaper-oss/sws
/
/ Permission is hereby granted, free of charge, to any person obtaining a copy
/ of this software and associated documentation files (the "Software"), to deal
/ in the Software without restriction, including without limitation the rights to
/ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
/ of the Software, and to permit persons to whom the Software is furnished to
/ do so, subject to the following conditions:
/
/ The above copyright notice and this permission notice shall be included in all
/ copies or substantial portions of the Software.
/
/ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
/ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
/ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
/ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
/ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
/ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
/ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
/ OTHER DEALINGS IN THE SOFTWARE.
/
******************************************************************************/
#include "stdafx.h"
#include "BR_Util.h"
#include "BR.h"
#include "BR_EnvelopeUtil.h"
#include "BR_MidiUtil.h"
#include "BR_Misc.h"
#include "../cfillion/cfillion.hpp" // CF_GetScrollInfo
#include "../SnM/SnM.h"
#include "../SnM/SnM_Chunk.h"
#include "../SnM/SnM_Dlg.h"
#include "../SnM/SnM_Item.h"
#include "../SnM/SnM_Util.h"
#include <WDL/localize/localize.h>
#include <WDL/lice/lice.h>
#include <WDL/lice/lice_bezier.h>
#include <WDL/projectcontext.h>
/******************************************************************************
* Constants *
******************************************************************************/
const int TCP_MASTER_GAP = 5;
const int ITEM_LABEL_MIN_HEIGHT = 28;
const int ENV_GAP = 4; // bottom gap may seem like 3 when selected, but that
const int ENV_LINE_WIDTH = 1; // first pixel is used to "bold" selected envelope
const int TAKE_MIN_HEIGHT_COUNT = 10;
const int TAKE_MIN_HEIGHT_HIGH = 12; // min height when take count <= TAKE_MIN_HEIGHT_COUNT
const int TAKE_MIN_HEIGHT_LOW = 6; // min height when take count > TAKE_MIN_HEIGHT_COUNT
const int PROJ_CONTEXT_LINE = 4096; // same length used by ProjectContext
/******************************************************************************
* Miscellaneous *
******************************************************************************/
vector<int> GetDigits (int val)
{
int count = (int)(log10((float)val)) + 1;
vector<int> digits;
digits.resize(count);
for (int i = count-1; i >= 0; --i)
{
digits[i] = GetLastDigit(val);
val /= 10;
}
return digits;
}
int GetFirstDigit (int val)
{
val = abs(val);
while (val >= 10)
val /= 10;
return val;
}
int GetLastDigit (int val)
{
return abs(val) % 10;
}
int BinaryToDecimal (const char* binaryString)
{
int base10 = 0;
for (size_t i = 0; i < strlen(binaryString); ++i)
{
int digit = binaryString[i] - '0';
if (digit == 0 || digit == 1)
base10 = base10 << 1 | digit;
}
return base10;
}
int GetBit (int val, int bit)
{
return (val & 1 << bit) != 0;
}
int SetBit (int val, int bit, bool set)
{
if (set) return SetBit(val, bit);
else return ClearBit(val, bit);
}
int SetBit (int val, int bit)
{
return val | 1 << bit;
}
int ClearBit (int val, int bit)
{
return val & ~(1 << bit);
}
int ToggleBit (int val, int bit)
{
return val ^= 1 << bit;
}
int RoundToInt (double val)
{
if (val < 0)
return (int)(val - 0.5);
else
return (int)(val + 0.5);
}
int TruncToInt (double val)
{
return (int)val;
}
double Round (double val)
{
return (double)(int)(val + ((val < 0) ? (-0.5) : (0.5)));
}
double RoundToN (double val, double n)
{
double shift = pow(10.0, n);
return RoundToInt(val * shift) / shift;
}
double Trunc (double val)
{
return (val < 0) ? ceil(val) : floor(val);
}
double TranslateRange (double value, double oldMin, double oldMax, double newMin, double newMax)
{
double oldRange = oldMax - oldMin;
double newRange = newMax - newMin;
double newValue = ((value - oldMin) * newRange / oldRange) + newMin;
return SetToBounds(newValue, newMin, newMax);
}
double AltAtof (char* str)
{
replace(str, str+strlen(str), ',', '.' );
return atof(str);
}
bool IsFraction (char* str, double& convertedFraction)
{
int size = strlen(str);
replace(str, str + size, ',', '.' );
char* buf = strstr(str,"/");
if (!buf)
{
convertedFraction = atof(str);
snprintf(str, size + 1, "%g", convertedFraction);
return false;
}
else
{
int num = atoi(str);
int den = atoi(buf+1);
snprintf(str, size + 1, "%d/%d", num, den);
if (den != 0)
convertedFraction = (double)num/(double)den;
else
convertedFraction = 0;
return true;
}
}
void ReplaceAll (string& str, string oldStr, string newStr)
{
if (oldStr.empty())
return;
size_t pos = 0, oldLen = oldStr.length(), newLen = newStr.length();
while ((pos = str.find(oldStr, pos)) != std::string::npos)
{
str.replace(pos, oldLen, newStr);
pos += newLen;
}
}
void AppendLine (WDL_FastString& str, const char* line)
{
str.Append(line);
str.Append("\n");
}
const char* strstr_last (const char* haystack, const char* needle)
{
if (!haystack || !needle || *needle == '\0')
return haystack;
const char *result = NULL;
while (true)
{
const char *p = strstr(haystack, needle);
if (!p) break;
result = p;
haystack = p + 1;
}
return result;
}
/******************************************************************************
* General *
******************************************************************************/
vector<double> GetProjectMarkers (bool timeSel, double timeSelDelta /*=0*/)
{
double tStart, tEnd;
GetSet_LoopTimeRange2(NULL, false, false, &tStart, &tEnd, false);
int i = 0;
bool region;
double pos;
vector<double> markers;
while (EnumProjectMarkers2(NULL, i, ®ion, &pos, NULL, NULL, NULL))
{
bool pRegion;
double pPos;
int previous = EnumProjectMarkers2(NULL, i-1, &pRegion, &pPos, NULL, NULL, NULL);
if (!region)
{
// In certain corner cases involving regions, reaper will output the same marker more than
// once. This should prevent those duplicate values from being written into the vector.
// Note: this might have been fixed in 4.60, but it doesn't hurt to leave it...
if (pos != pPos || (pos == pPos && pRegion) || !previous)
{
if (timeSel)
{
if (pos > tEnd + timeSelDelta)
break;
if (pos >= tStart - timeSelDelta)
markers.push_back(pos);
}
else
markers.push_back(pos);
}
}
++i;
}
return markers;
}
WDL_FastString FormatTime (double position, int mode /*=-1*/)
{
WDL_FastString string;
const int projTimeMode = ConfigVar<int>("projtimemode").value_or(0);
if (mode == 1 || (mode == -1 && projTimeMode == 1))
{
char formatedPosition[128];
format_timestr_pos(position, formatedPosition, sizeof(formatedPosition), 2);
string.AppendFormatted(sizeof(formatedPosition), "%s", formatedPosition);
format_timestr_pos(position, formatedPosition, sizeof(formatedPosition), 0);
string.AppendFormatted(sizeof(formatedPosition), " / %s", formatedPosition);
}
else
{
char formatedPosition[128];
format_timestr_pos(position, formatedPosition, sizeof(formatedPosition), mode);
string.AppendFormatted(sizeof(formatedPosition), "%s", formatedPosition);
}
return string;
}
const char *GetCurrentTheme (std::string* themeNameOut)
{
const char *fullThemePath = GetLastColorThemeFile();
if (themeNameOut) {
std::string fileName(strlen(fullThemePath), '\0');
GetFilenameNoExt(fullThemePath, &fileName[0], fileName.size()+1);
std::swap(fileName, *themeNameOut);
}
return fullThemePath;
}
int FindClosestProjMarkerIndex (double position)
{
int first = 0;
int last = CountProjectMarkers(NULL, NULL, NULL);
if (last < 0)
return -1;
// Find previous marker/region
while (first != last)
{
int mid = (first + last) /2;
double currentPos; EnumProjectMarkers3(NULL, mid, NULL, ¤tPos, NULL, NULL, NULL, NULL);
if (currentPos < position) first = mid + 1;
else last = mid;
}
int prevId = first - ((first == 0) ? 0 : 1);
// Make sure we get marker index, not region
int id = prevId + 1; bool region; double prevPosition;
while (EnumProjectMarkers3(NULL, --id, ®ion, &prevPosition, NULL, NULL, NULL, NULL))
{
if (!region)
break;
}
if (id < 0)
return -1;
// Check against next marker
int nextId = prevId;
double nextPosition;
while (EnumProjectMarkers3(NULL, ++nextId, ®ion, &nextPosition, NULL, NULL, NULL, NULL))
{
if (!region)
{
if (abs(nextPosition - position) < abs(position - prevPosition)) id = nextId;
if (id >= CountProjectMarkers(NULL, NULL, NULL)) id = -1;
break;
}
}
return id;
}
int CountProjectTabs ()
{
int count = 0;
while (EnumProjects(count, NULL, 0))
count++;
return count;
}
double EndOfProject (bool markers, bool regions)
{
double projEnd = 0;
int tracks = GetNumTracks();
for (int i = 0; i < tracks; ++i)
{
MediaTrack* track = GetTrack(0, i);
MediaItem* item = GetTrackMediaItem(track, GetTrackNumMediaItems(track) - 1);
double itemEnd = GetMediaItemInfo_Value(item, "D_POSITION") + GetMediaItemInfo_Value(item, "D_LENGTH");
if (itemEnd > projEnd)
projEnd = itemEnd;
}
if (markers || regions)
{
bool region; double start, end; int i = 0;
while ((i = EnumProjectMarkers(i, ®ion, &start, &end, NULL, NULL)))
{
if (regions)
if (region && end > projEnd)
projEnd = end;
if (markers)
if (!region && start > projEnd)
projEnd = start;
}
}
return projEnd;
}
double GetMidiOscVal (double min, double max, double step, double currentVal, int commandVal, int commandValhw, int commandRelmode)
{
double returnVal = currentVal;
// 14-bit resolution (MIDI pitch...OSC doesn't seem to work)
if (commandValhw >= 0)
{
returnVal = TranslateRange(SetToBounds((double)(commandValhw | commandVal << 7), 0.0, 16383.0), 0, 16383, min, max);
}
// MIDI/mousewheel
else if (commandVal >= 0 && commandVal < 128)
{
// Absolute mode
if (!commandRelmode)
returnVal = TranslateRange(commandVal, 0, 127, min, max);
// Relative modes
else
{
if (commandRelmode == 1) {if (commandVal >= 0x40) commandVal |= ~0x3f;} // sign extend if 0x40 set
else if (commandRelmode == 2) {commandVal -= 0x40;} // offset by 0x40
else if (commandRelmode == 3) {if (commandVal & 0x40) commandVal = -(commandVal & 0x3f);} // 0x40 is sign bit
else commandVal = 0;
returnVal = currentVal + (commandVal * step);
}
}
return SetToBounds(returnVal, min, max);
}
double GetPositionFromTimeInfo (int hours, int minutes, int seconds, int frames)
{
WDL_FastString timeString;
timeString.AppendFormatted(256, "%d:%d:%d:%d", hours, minutes, seconds, frames);
return parse_timestr_len(timeString.Get(), 0, 5);
}
void GetTimeInfoFromPosition (double position, int* hours, int* minutes, int* seconds, int* frames)
{
char timeStr[512];
format_timestr_len(position, timeStr, sizeof(timeStr), 0, 5);
WDL_FastString str[4];
int i = -1;
int strId = 0;
while (timeStr[++i])
{
if (timeStr[i] == ':') ++strId;
else str[strId].AppendRaw(&timeStr[i], 1);
}
WritePtr(hours, ((str[0].GetLength() > 0) ? atoi(str[0].Get()) : 0));
WritePtr(minutes, ((str[1].GetLength() > 0) ? atoi(str[1].Get()) : 0));
WritePtr(seconds, ((str[2].GetLength() > 0) ? atoi(str[2].Get()) : 0));
WritePtr(frames, ((str[3].GetLength() > 0) ? atoi(str[3].Get()) : 0));
}
void GetSetLastAdjustedSend (bool set, MediaTrack** track, int* sendId, BR_EnvType* type)
{
static MediaTrack* s_lastTrack = NULL;
static int s_lastId = -1;
static BR_EnvType s_lastType = UNKNOWN;
if (set)
{
s_lastTrack = *track;
s_lastId = *sendId;
s_lastType = *type;
}
else
{
WritePtr(track, s_lastTrack);
WritePtr(sendId, s_lastId);
WritePtr(type, s_lastType);
}
}
void GetSetFocus (bool set, HWND* hwnd, int* context)
{
if (set)
{
HWND currentHwnd; // check for current focus (using SetCursorContext() can focus arrange
int currentContext; // and then SetFocus() can change it to midi editor which was already
GetSetFocus(false, ¤tHwnd, ¤tContext); // focused, and will make it flicker due to the brief focus change
if (context && *context != currentContext) // context first (it may refocus main window)
{
TrackEnvelope* envelope = GetSelectedEnvelope(NULL);
SetCursorContext((*context == 2 && !envelope) ? 1 : *context, (*context == 2) ? envelope : NULL);
}
if (hwnd && *hwnd != currentHwnd)
SetFocus(*hwnd);
}
else
{
WritePtr(hwnd, GetFocus());
WritePtr(context, GetCursorContext2(true)); // last_valid_focus: example - select item and focus mixer. Pressing delete
} // tells us context is still 1, but GetCursorContext2(false) would return 0
}
void SetAllCoordsToZero (RECT* r)
{
if (r)
{
r->top = 0;
r->bottom = 0;
r->left = 0;
r->right = 0;
}
}
void RegisterCsurfPlayState (bool set, void (*CSurfPlayState)(bool,bool,bool), const vector<void(*)(bool,bool,bool)>** registeredFunctions /*= NULL*/, bool cleanup /*= false*/)
{
static vector<void(*)(bool,bool,bool)> s_functions;
if (CSurfPlayState)
{
if (set)
{
bool found = false;
for (size_t i = 0; i < s_functions.size(); ++i)
{
if (s_functions[i] == CSurfPlayState)
{
found = true;
break;
}
}
if (!found)
s_functions.push_back(CSurfPlayState);
}
else
{
for (size_t i = 0; i < s_functions.size(); ++i)
{
if (s_functions[i] == CSurfPlayState)
s_functions[i] = NULL;
}
}
}
// Because CSurfPlayState can remove itself from vector (and mess stuff up in BR_CSurfSetPlayState when iterating over all stored functions), instead of deleting
// functions from vector as soon as they are deregistered, we set them to NULL and erase afterward from BR_CSurfSetPlayState once we called all of them
if (cleanup)
{
for (size_t i = 0; i < s_functions.size(); ++i)
{
if (s_functions[i] == NULL)
{
s_functions.erase(s_functions.begin() + i);
--i;
}
}
}
if (registeredFunctions)
*registeredFunctions = &s_functions;
}
void StartPlayback (ReaProject* proj, double position)
{
double editCursor = GetCursorPositionEx(proj);
PreventUIRefresh(1);
SetEditCurPos2(proj, position, false, false);
OnPlayButtonEx(proj);
SetEditCurPos2(proj, editCursor, false, false);
PreventUIRefresh(-1);
}
bool IsPlaying (ReaProject* proj)
{
return (GetPlayStateEx(proj) & 1) == 1;
}
bool IsPaused (ReaProject* proj)
{
return (GetPlayStateEx(proj) & 2) == 2;
}
bool IsRecording (ReaProject* proj)
{
return (GetPlayStateEx(proj) & 4) == 4;
}
bool AreAllCoordsZero (RECT& r)
{
return (r.bottom == 0 && r.left == 0 && r.right == 0 && r.top == 0);
}
PCM_source* DuplicateSource (PCM_source* source)
{
if (source && !strcmp(source->GetType(), "MIDI")) // check "MIDI" only (trim pref doesn't apply to pooled MIDI)
{
const ConfigVar<int> trimMidiOnSplit("trimmidionsplit");
if (trimMidiOnSplit && GetBit(*trimMidiOnSplit, 1))
{
ConfigVarOverride<int> temp(trimMidiOnSplit, ClearBit(*trimMidiOnSplit, 1));
PCM_source* newSource = source->Duplicate();
return newSource;
}
}
return source ? source->Duplicate() : NULL;
}
/******************************************************************************
* Tracks *
******************************************************************************/
int GetEffectiveCompactLevel (MediaTrack* track)
{
int compact = 0;
MediaTrack* parent = track;
while ((parent = (MediaTrack*)GetSetMediaTrackInfo(parent, "P_PARTRACK", NULL)))
{
int tmp = (int)GetMediaTrackInfo_Value(parent, "I_FOLDERCOMPACT");
if (tmp > compact)
{
compact = tmp;
if (compact == 2)
break;
}
}
return compact;
}
int GetTrackFreezeCount (MediaTrack* track)
{
int freezeCount = 0;
if (track)
{
char* trackState = GetSetObjectState(track, "");
char* token = strtok(trackState, "\n");
WDL_FastString newState;
LineParser lp(false);
int blockCount = 0;
while (token != NULL)
{
lp.parse(token);
if (blockCount == 1 && !strcmp(lp.gettoken_str(0), "<FREEZE"))
++freezeCount;
if (lp.gettoken_str(0)[0] == '<') ++blockCount;
else if (lp.gettoken_str(0)[0] == '>') --blockCount;
token = strtok(NULL, "\n");
}
FreeHeapPtr(trackState);
}
return freezeCount;
}
bool TcpVis (MediaTrack* track)
{
if (track)
{
if ((GetMasterTrack(NULL) == track))
{
const int master = ConfigVar<int>("showmaintrack").value_or(0);
if (master == 0 || (int)GetMediaTrackInfo_Value(track, "I_WNDH") == 0)
return false;
else
return true;
}
else
{
if (!GetMediaTrackInfo_Value(track, "B_SHOWINTCP") || !GetMediaTrackInfo_Value(track, "I_WNDH"))
return false;
else
return true;
}
}
else
return false;
}
/******************************************************************************
* Items and takes *
******************************************************************************/
vector<MediaItem*> GetSelItems (MediaTrack* track)
{
vector<MediaItem*> items;
int count = CountTrackMediaItems(track);
for (int i = 0; i < count ; ++i)
if (*(bool*)GetSetMediaItemInfo(GetTrackMediaItem(track, i), "B_UISEL", NULL))
items.push_back(GetTrackMediaItem(track, i));
return items;
}
double ProjectTimeToItemTime (MediaItem* item, double projTime)
{
if (item)
return projTime - GetMediaItemInfo_Value(item, "D_POSITION");
else
return projTime;
}
double ItemTimeToProjectTime (MediaItem* item, double itemTime)
{
if (item)
return GetMediaItemInfo_Value(item, "D_POSITION") + itemTime;
else
return itemTime;
}
int GetTakeId (MediaItem_Take* take, MediaItem* item /*= NULL*/)
{
item = (item) ? item : GetMediaItemTake_Item(take);
for (int i = 0; i < CountTakes(item); ++i)
{
if (GetTake(item, i) == take)
return i;
}
return -1;
}
int GetLoopCount (MediaItem_Take* take, double position, int* loopIterationForPosition)
{
int loopCount = 0;
int currentLoop = -1;
MediaItem* item = GetMediaItemTake_Item(take);
if (item && take)
{
double itemStart = GetMediaItemInfo_Value(item, "D_POSITION");
double itemEnd = GetMediaItemInfo_Value(GetMediaItemTake_Item(take), "D_LENGTH") + itemStart;
if (GetMediaItemInfo_Value(item, "B_LOOPSRC"))
{
if (IsMidi(take, NULL))
{
double itemEndPPQ = MIDI_GetPPQPosFromProjTime(take, itemEnd);
double sourceLenPPQ = GetMidiSourceLengthPPQ(take, true);
double itemLenPPQ = itemEndPPQ; // gotcha: the same cause PPQ starts counting from 0 from item start, making it mover obvious this way
loopCount = static_cast<int>(itemLenPPQ / sourceLenPPQ);
// fmod works great here because ppq are always rounded to whole numbers
if(fmod(itemLenPPQ, sourceLenPPQ) == 0)
loopCount--;
if (loopIterationForPosition && CheckBounds(position, itemStart, itemEnd))
{
double takeOffset = GetMediaItemTakeInfo_Value(take, "D_STARTOFFS");
double itemStartEffPPQ = MIDI_GetPPQPosFromProjTime(take, itemStart - takeOffset);
double positionPPQ = MIDI_GetPPQPosFromProjTime(take, position);
double itemEndEffPPQ = positionPPQ - itemStartEffPPQ;
currentLoop = (int)(itemEndEffPPQ / sourceLenPPQ);
if (currentLoop > loopCount) currentLoop = loopCount;
else if (currentLoop < 0) currentLoop = 0;
}
}
else
{
double takePlayrate = GetMediaItemTakeInfo_Value(take, "D_PLAYRATE");
double takeOffset = GetMediaItemTakeInfo_Value(take, "D_STARTOFFS");
double itemStartEff = itemStart - takeOffset / takePlayrate;
double itemLen = (itemEnd - itemStartEff);
double sourceLen = GetMediaItemTake_Source(take)->GetLength() / takePlayrate;
loopCount = (int)(itemLen/sourceLen);
if (loopCount > 0 && CheckBounds(itemStartEff + sourceLen*(loopCount), itemEnd - 0.00000000000001, itemEnd))
--loopCount;
if (loopIterationForPosition && CheckBounds(position, itemStart, itemEnd))
{
currentLoop = (int)((position - itemStartEff) / sourceLen);
if (currentLoop > loopCount) currentLoop = loopCount;
else if (currentLoop < 0) currentLoop = 0;
}
}
}
else
{
if (CheckBounds(position, itemStart, itemEnd))
{
currentLoop = 0;
}
}
}
WritePtr(loopIterationForPosition, currentLoop);
return loopCount;
}
int GetEffectiveTakeId (MediaItem_Take* take, MediaItem* item, int id, int* effectiveTakeCount)
{
MediaItem* validItem = (item) ? (item) : (GetMediaItemTake_Item(take));
MediaItem_Take* validTake = (take) ? (take) : (GetTake(validItem, id));
int count = CountTakes(validItem);
int effectiveCount = 0;
int effectiveId = -1;
// Empty takes not displayed
const int emptyLanes = ConfigVar<int>("takelanes").value_or(0);
if (GetBit(emptyLanes, 2))
{
for (int i = 0; i < count; ++i)
{
if (MediaItem_Take* currentTake = GetTake(validItem, i))
{
if (currentTake == validTake)
effectiveId = effectiveCount;
++effectiveCount;
}
}
}
// Empty takes displayed
else
{
if (take)
{
for (int i = 0; i < count; ++i)
{
if (GetTake(validItem, i) == validTake)
{
effectiveId = i;
break;
}
}
}
else
{
effectiveId = id;
}
effectiveCount = count;
}
WritePtr(effectiveTakeCount, effectiveCount);
return effectiveId;
}
SourceType GetSourceType (PCM_source* source)
{
if (!source)
return SourceType::Unknown;
const char* type = source->GetType();
if (!strcmp(type, "SECTION"))
return GetSourceType(source->GetSource());
if (!strcmp(type, "MIDIPOOL") || !strcmp(type, "MIDI"))
return SourceType::MIDI;
else if (!strcmp(type, "VIDEO"))
return SourceType::Video;
else if (!strcmp(type, "CLICK"))
return SourceType::Click;
else if (!strcmp(type, "LTC"))
return SourceType::Timecode;
else if (!strcmp(type, "RPP_PROJECT"))
return SourceType::Project;
else if (!strcmp(type, "VIDEOEFFECT"))
return SourceType::VideoEffect;
else if (!strcmp(type, ""))
return SourceType::Unknown;
else
return SourceType::Audio;
}
SourceType GetSourceType (MediaItem_Take* take)
{
if (!take)
return SourceType::Unknown;
return GetSourceType(GetMediaItemTake_Source(take));
}
int GetEffectiveTimebase (MediaItem* item)
{
int timeBase = 0;
if (item)
{
timeBase = (int)(char)GetMediaItemInfo_Value(item , "C_BEATATTACHMODE");
if (timeBase != 0 && timeBase != 1 && timeBase != 2)
{
timeBase = (int)(char)GetMediaTrackInfo_Value(GetMediaItemTrack(item), "C_BEATATTACHMODE");
if (timeBase != 0 && timeBase != 1 && timeBase != 2)
timeBase = ConfigVar<int>("itemtimelock").value_or(0);
}
}
return timeBase;
}
int GetTakeFXCount (MediaItem_Take* take)
{
int count = 0;
MediaItem* item = GetMediaItemTake_Item(take);
int takeId = GetTakeId(take, item);
if (takeId >= 0)
{
SNM_TakeParserPatcher p(item, CountTakes(item));
WDL_FastString takeChunk;
if (p.GetTakeChunk(takeId, &takeChunk))
{
SNM_ChunkParserPatcher ptk(&takeChunk, false);
count = ptk.Parse(SNM_COUNT_KEYWORD, 1, "TAKEFX", "WAK");
}
}
return count;
}
bool GetMidiTakeTempoInfo (MediaItem_Take* take, bool* ignoreProjTempo, double* bpm, int* num, int* den)
{
bool _ignoreTempo = false;
double _bpm = 0;
int _num = 0;
int _den = 0;
bool succes = false;
if (take && IsMidi(take, NULL))
{
MediaItem* item = GetMediaItemTake_Item(take);
int takeId = GetTakeId(take, item);
if (takeId >= 0)
{
SNM_TakeParserPatcher p(item, CountTakes(item));
WDL_FastString takeChunk;
int tkPos, tklen;
if (p.GetTakeChunk(takeId, &takeChunk, &tkPos, &tklen))
{
SNM_ChunkParserPatcher ptk(&takeChunk, false);
WDL_FastString tempoLine;
if (ptk.Parse(SNM_GET_SUBCHUNK_OR_LINE, 1, "SOURCE", "IGNTEMPO", 0, -1, &tempoLine))
{
LineParser lp(false);
lp.parse(tempoLine.Get());
_ignoreTempo = !!lp.gettoken_int(1);
_bpm = lp.gettoken_float(2);
_num = lp.gettoken_int(3);
_den = lp.gettoken_int(4);
succes = true;
}
}
}
}
WritePtr(ignoreProjTempo, _ignoreTempo);
WritePtr(bpm, _bpm);
WritePtr(num, _num);
WritePtr(den, _den);
return succes;
}
bool SetIgnoreTempo (MediaItem* item, bool ignoreTempo, double bpm, int num, int den, bool skipItemsWithSameIgnoreState)
{
bool midiFound = false;
for (int i = 0; i < CountTakes(item); ++i)
{
if (IsMidi(GetMediaItemTake(item, i)))
{
midiFound = true;
break;
}
}
if (!midiFound)
return false;
double timeBase = GetMediaItemInfo_Value(item, "C_BEATATTACHMODE");
SetMediaItemInfo_Value(item, "C_BEATATTACHMODE", 0);
WDL_FastString newState;
char* chunk = GetSetObjectState(item, "");
bool stateChanged = false;
char* token = strtok(chunk, "\n");
while (token != NULL)
{
if (!strncmp(token, "IGNTEMPO ", sizeof("IGNTEMPO ") - 1))
{
LineParser lp(false);
lp.parse(token);
if (!skipItemsWithSameIgnoreState || !!lp.gettoken_int(1) != ignoreTempo)
{
for (int i = 0; i < lp.getnumtokens(); ++i)
{
if (i == 0) newState.AppendFormatted(256, "%s", lp.gettoken_str(i));
else if (i == 1) newState.AppendFormatted(256, "%d", ignoreTempo ? 1 : 0);
else if (i == 2) newState.AppendFormatted(256, "%.14lf", ignoreTempo ? bpm : lp.gettoken_float(i));
else if (i == 3) newState.AppendFormatted(256, "%d", ignoreTempo ? num : lp.gettoken_int(i));
else if (i == 4) newState.AppendFormatted(256, "%d", ignoreTempo ? den : lp.gettoken_int(i));
else newState.AppendFormatted(256, "%s", lp.gettoken_str(i));
newState.Append(" ");
}
newState.Append("\n");
stateChanged = true;
}
else
{
AppendLine(newState, token);
}
}
else
{
AppendLine(newState, token);
}
token = strtok(NULL, "\n");
}