forked from mia/Aegisub
Split Lead In and Lead Out into separate passes in the TPP
This makes it so that if there is a gap between two lines but not enough space for both the full lead-in and lead-out to be added, adding lead-in to the second line will be prioritized over adding lead-out to the first line, which is usually the desired result. Originally committed to SVN as r6731.
This commit is contained in:
parent
742cbf16aa
commit
1c4bb4a0e2
1 changed files with 11 additions and 12 deletions
|
@ -358,20 +358,19 @@ void DialogTimingProcessor::Process() {
|
||||||
std::vector<AssDialogue*> sorted = SortDialogues();
|
std::vector<AssDialogue*> sorted = SortDialogues();
|
||||||
if (sorted.empty()) return;
|
if (sorted.empty()) return;
|
||||||
|
|
||||||
// Options
|
|
||||||
bool addIn = hasLeadIn->IsChecked() && leadIn;
|
|
||||||
bool addOut = hasLeadOut->IsChecked() && leadOut;
|
|
||||||
|
|
||||||
// Add lead-in/out
|
// Add lead-in/out
|
||||||
if (addIn || addOut) {
|
if (hasLeadIn->IsChecked() && leadIn) {
|
||||||
for (size_t i = 0; i < sorted.size(); ++i) {
|
for (size_t i = 0; i < sorted.size(); ++i)
|
||||||
AssDialogue *cur = sorted[i];
|
sorted[i]->Start = safe_time(sorted.rend() - i, sorted.rend(),
|
||||||
if (addIn)
|
sorted[i], sorted[i]->Start - leadIn,
|
||||||
cur->Start = safe_time(sorted.rend() - i, sorted.rend(), cur, cur->Start - leadIn, &AssDialogue::End, &std::max<int>);
|
&AssDialogue::End, &std::max<int>);
|
||||||
|
}
|
||||||
|
|
||||||
if (addOut)
|
if (hasLeadOut->IsChecked() && leadOut) {
|
||||||
cur->End = safe_time(sorted.begin() + i + 1, sorted.end(), cur, cur->End + leadOut, &AssDialogue::Start, &std::min<int>);
|
for (size_t i = 0; i < sorted.size(); ++i)
|
||||||
}
|
sorted[i]->End = safe_time(sorted.begin() + i + 1, sorted.end(),
|
||||||
|
sorted[i], sorted[i]->End + leadOut,
|
||||||
|
&AssDialogue::Start, &std::min<int>);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make adjacent
|
// Make adjacent
|
||||||
|
|
Loading…
Reference in a new issue