mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-26 13:12:39 +01:00
7d7b22bcb3
Work on #2755
187 lines
7.4 KiB
C#
187 lines
7.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.SubtitleFormats
|
|
{
|
|
public class DvdStudioPro : SubtitleFormat
|
|
{
|
|
private static readonly Regex RegexTimeCodes = new Regex(@"^\d+:\d+:\d+[:;]\d+\t,\t\d+:\d+:\d+[:;]\d+\t,\t.*$", RegexOptions.Compiled);
|
|
|
|
public override string Extension => ".STL";
|
|
|
|
public override string Name => "DVD Studio Pro";
|
|
|
|
public override string ToText(Subtitle subtitle, string title)
|
|
{
|
|
const string paragraphWriteFormat = "{0}\t,\t{1}\t,\t{2}\r\n";
|
|
const string timeFormat = "{0:00}:{1:00}:{2:00}:{3:00}";
|
|
const string header = @"$VertAlign = Bottom
|
|
$Bold = FALSE
|
|
$Underlined = FALSE
|
|
$Italic = 0
|
|
$XOffset = 0
|
|
$YOffset = -5
|
|
$TextContrast = 15
|
|
$Outline1Contrast = 15
|
|
$Outline2Contrast = 13
|
|
$BackgroundContrast = 0
|
|
$ForceDisplay = FALSE
|
|
$FadeIn = 0
|
|
$FadeOut = 0
|
|
$HorzAlign = Center
|
|
";
|
|
|
|
var sb = new StringBuilder();
|
|
sb.AppendLine(header);
|
|
var verticalAlign = "$VertAlign=Bottom";
|
|
var lastVerticalAlign = verticalAlign;
|
|
foreach (Paragraph p in subtitle.Paragraphs)
|
|
{
|
|
string startTime = string.Format(timeFormat, p.StartTime.Hours, p.StartTime.Minutes, p.StartTime.Seconds, MillisecondsToFramesMaxFrameRate(p.StartTime.Milliseconds));
|
|
string endTime = string.Format(timeFormat, p.EndTime.Hours, p.EndTime.Minutes, p.EndTime.Seconds, MillisecondsToFramesMaxFrameRate(p.EndTime.Milliseconds));
|
|
|
|
bool topAlign = p.Text.StartsWith("{\\an7}", StringComparison.Ordinal) ||
|
|
p.Text.StartsWith("{\\an8}", StringComparison.Ordinal) ||
|
|
p.Text.StartsWith("{\\an9}", StringComparison.Ordinal);
|
|
verticalAlign = topAlign ? "$VertAlign=Top" : "$VertAlign=Bottom";
|
|
if (lastVerticalAlign != verticalAlign)
|
|
{
|
|
sb.AppendLine(verticalAlign);
|
|
}
|
|
|
|
sb.AppendFormat(paragraphWriteFormat, startTime, endTime, EncodeStyles(p.Text));
|
|
lastVerticalAlign = verticalAlign;
|
|
}
|
|
return sb.ToString().Trim();
|
|
}
|
|
|
|
public override void LoadSubtitle(Subtitle subtitle, List<string> lines, string fileName)
|
|
{
|
|
_errorCount = 0;
|
|
int number = 0;
|
|
bool alignTop = false;
|
|
foreach (string line in lines)
|
|
{
|
|
if (!string.IsNullOrWhiteSpace(line) && line[0] != '$')
|
|
{
|
|
if (RegexTimeCodes.Match(line).Success)
|
|
{
|
|
string[] threePart = line.Split(new[] { "\t,\t" }, StringSplitOptions.None);
|
|
var p = new Paragraph();
|
|
if (threePart.Length == 3 &&
|
|
GetTimeCode(p.StartTime, threePart[0]) &&
|
|
GetTimeCode(p.EndTime, threePart[1]))
|
|
{
|
|
number++;
|
|
p.Number = number;
|
|
p.Text = threePart[2].TrimEnd().Replace(" | ", Environment.NewLine).Replace("|", Environment.NewLine);
|
|
p.Text = DecodeStyles(p.Text);
|
|
if (alignTop)
|
|
p.Text = "{\\an8}" + p.Text;
|
|
subtitle.Paragraphs.Add(p);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
_errorCount++;
|
|
}
|
|
}
|
|
else if (line != null && line.TrimStart().StartsWith("$VertAlign", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
var s = line.RemoveChar(' ').RemoveChar('\t');
|
|
if (s.Equals("$VertAlign=Bottom", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
alignTop = false;
|
|
}
|
|
else if (s.Equals("$VertAlign=Top", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
alignTop = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
internal static string DecodeStyles(string text)
|
|
{
|
|
var sb = new StringBuilder();
|
|
bool italicOn = false;
|
|
bool boldOn = false;
|
|
bool skipNext = false;
|
|
for (int i = 0; i < text.Length; i++)
|
|
{
|
|
if (skipNext)
|
|
{
|
|
skipNext = false;
|
|
}
|
|
else
|
|
{
|
|
if (text.Substring(i).StartsWith("^I", StringComparison.Ordinal))
|
|
{
|
|
if (!italicOn)
|
|
sb.Append("<i>");
|
|
else
|
|
sb.Append("</i>");
|
|
italicOn = !italicOn;
|
|
skipNext = true;
|
|
}
|
|
else if (text.Substring(i).StartsWith("^B", StringComparison.Ordinal))
|
|
{
|
|
if (!boldOn)
|
|
sb.Append("<b>");
|
|
else
|
|
sb.Append("</b>");
|
|
boldOn = !boldOn;
|
|
skipNext = true;
|
|
}
|
|
else
|
|
{
|
|
sb.Append(text[i]);
|
|
}
|
|
}
|
|
}
|
|
return sb.ToString();
|
|
}
|
|
|
|
internal static string EncodeStyles(string text)
|
|
{
|
|
text = Utilities.RemoveSsaTags(text);
|
|
text = text.Replace("<I>", "<i>").Replace("</I>", "</i>");
|
|
bool allItalic = text.StartsWith("<i>", StringComparison.Ordinal) && text.EndsWith("</i>", StringComparison.Ordinal) && Utilities.CountTagInText(text, "<i>") == 1;
|
|
|
|
text = text.Replace("<i>", "^I");
|
|
text = text.Replace("<I>", "^I");
|
|
text = text.Replace("</i>", "^I");
|
|
text = text.Replace("</I>", "^I");
|
|
|
|
text = text.Replace("<b>", "^B");
|
|
text = text.Replace("<B>", "^B");
|
|
text = text.Replace("</b>", "^B");
|
|
text = text.Replace("</B>", "^B");
|
|
|
|
if (allItalic)
|
|
return text.Replace(Environment.NewLine, "^I|^I");
|
|
return text.Replace(Environment.NewLine, "|");
|
|
}
|
|
|
|
internal static bool GetTimeCode(TimeCode timeCode, string timeString)
|
|
{
|
|
try
|
|
{
|
|
string[] timeParts = timeString.Split(':', ';');
|
|
timeCode.Hours = int.Parse(timeParts[0]);
|
|
timeCode.Minutes = int.Parse(timeParts[1]);
|
|
timeCode.Seconds = int.Parse(timeParts[2]);
|
|
timeCode.Milliseconds = FramesToMillisecondsMax999(int.Parse(timeParts[3]));
|
|
return true;
|
|
}
|
|
catch
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|