2016-02-08 21:11:03 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
|
|
namespace Nikse.SubtitleEdit.Core.SubtitleFormats
|
|
|
|
|
{
|
|
|
|
|
public class SpruceWithSpace : SubtitleFormat
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
private static readonly Regex RegexTimeCodes = new Regex(@"^\d\d:\d\d:\d\d:\d\d, \d\d:\d\d:\d\d:\d\d,.+", RegexOptions.Compiled);
|
|
|
|
|
|
|
|
|
|
public override string Extension
|
|
|
|
|
{
|
|
|
|
|
get { return ".stl"; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Spruce Subtitle With Space"; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool IsTimeBased
|
|
|
|
|
{
|
|
|
|
|
get { return true; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool IsMine(List<string> lines, string fileName)
|
|
|
|
|
{
|
|
|
|
|
var subtitle = new Subtitle();
|
|
|
|
|
LoadSubtitle(subtitle, lines, fileName);
|
|
|
|
|
return subtitle.Paragraphs.Count > _errorCount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string ToText(Subtitle subtitle, string title)
|
|
|
|
|
{
|
2016-06-07 06:31:03 +02:00
|
|
|
|
const string header = @"$FontName = Arial
|
2016-02-08 21:11:03 +01:00
|
|
|
|
$FontSize = 34
|
|
|
|
|
$HorzAlign = Left
|
|
|
|
|
$VertAlign = Bottom
|
|
|
|
|
$XOffset = 0
|
|
|
|
|
$YOffset = 0
|
|
|
|
|
$Bold = FALSE
|
|
|
|
|
$UnderLined = FALSE
|
|
|
|
|
$Italic = FALSE
|
|
|
|
|
$TextContrast = 15
|
|
|
|
|
$Outline1Contrast = 15
|
|
|
|
|
$Outline2Contrast = 15
|
|
|
|
|
$BackgroundContrast = 0
|
|
|
|
|
$ForceDisplay = FALSE
|
|
|
|
|
$FadeIn = 0
|
|
|
|
|
$FadeOut = 0
|
|
|
|
|
$TapeOffset = FALSE
|
|
|
|
|
|
|
|
|
|
\\Colour 0 = Black
|
|
|
|
|
\\Colour 1 = Red
|
|
|
|
|
\\Colour 2 = Green
|
|
|
|
|
\\Colour 3 = Yellow
|
|
|
|
|
\\Colour 4 = Blue
|
|
|
|
|
\\Colour 5 = Magenta
|
|
|
|
|
\\Colour 6 = Cyan
|
|
|
|
|
\\Colour 7 = White
|
|
|
|
|
";
|
|
|
|
|
StringBuilder sb = new StringBuilder();
|
2016-06-07 06:31:03 +02:00
|
|
|
|
sb.AppendLine(header);
|
2016-02-08 21:11:03 +01:00
|
|
|
|
foreach (Paragraph p in subtitle.Paragraphs)
|
|
|
|
|
{
|
|
|
|
|
sb.AppendLine(string.Format("$HorzAlign = Center\r\n{0}, {1}, {2}", EncodeTimeCode(p.StartTime), EncodeTimeCode(p.EndTime), EncodeText(p.Text)));
|
|
|
|
|
}
|
|
|
|
|
return sb.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static string EncodeText(string text)
|
|
|
|
|
{
|
|
|
|
|
text = text.Replace("<b>", "^B");
|
|
|
|
|
text = text.Replace("</b>", string.Empty);
|
|
|
|
|
text = text.Replace("<i>", "^I");
|
|
|
|
|
text = text.Replace("</i>", string.Empty);
|
|
|
|
|
text = text.Replace("<u>", "^U");
|
|
|
|
|
text = text.Replace("</u>", string.Empty);
|
|
|
|
|
return text.Replace(Environment.NewLine, "|");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static string EncodeTimeCode(TimeCode time)
|
|
|
|
|
{
|
|
|
|
|
//00:01:54:19
|
|
|
|
|
return string.Format("{0:00}:{1:00}:{2:00}:{3:00}", time.Hours, time.Minutes, time.Seconds, MillisecondsToFramesMaxFrameRate(time.Milliseconds));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void LoadSubtitle(Subtitle subtitle, List<string> lines, string fileName)
|
|
|
|
|
{
|
|
|
|
|
//00:01:54:19,00:01:56:17,We should be thankful|they accepted our offer.
|
|
|
|
|
_errorCount = 0;
|
|
|
|
|
subtitle.Paragraphs.Clear();
|
|
|
|
|
foreach (string line in lines)
|
|
|
|
|
{
|
|
|
|
|
if (line.IndexOf(':') == 2 && RegexTimeCodes.IsMatch(line))
|
|
|
|
|
{
|
|
|
|
|
string start = line.Substring(0, 11);
|
|
|
|
|
string end = line.Substring(13, 11);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-02-15 05:18:31 +01:00
|
|
|
|
var startTime = DecodeTimeCodeFramesFourParts(start.Split(SplitCharColon, StringSplitOptions.RemoveEmptyEntries));
|
|
|
|
|
var endTime = DecodeTimeCodeFramesFourParts(end.Split(SplitCharColon, StringSplitOptions.RemoveEmptyEntries));
|
|
|
|
|
var p = new Paragraph(startTime, endTime, DecodeText(line.Substring(25).Trim()));
|
2016-02-08 21:11:03 +01:00
|
|
|
|
subtitle.Paragraphs.Add(p);
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
_errorCount++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-15 05:18:31 +01:00
|
|
|
|
else if (!string.IsNullOrWhiteSpace(line) && !line.StartsWith("//", StringComparison.Ordinal) && !line.StartsWith('$'))
|
2016-02-08 21:11:03 +01:00
|
|
|
|
{
|
|
|
|
|
_errorCount++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
subtitle.Renumber();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static string DecodeText(string text)
|
|
|
|
|
{ // TODO: Improve end tags
|
|
|
|
|
text = text.Replace("|", Environment.NewLine);
|
|
|
|
|
if (text.Contains("^B"))
|
|
|
|
|
text = text.Replace("^B", "<b>") + "</b>";
|
|
|
|
|
if (text.Contains("^I"))
|
|
|
|
|
text = text.Replace("^I", "<i>") + "</i>";
|
|
|
|
|
if (text.Contains("^U"))
|
|
|
|
|
text = text.Replace("^U", "<u>") + "</u>";
|
|
|
|
|
return text;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|