SubtitleEdit/libse/SubtitleFormats/UnknownSubtitle89.cs
2020-04-12 18:10:18 +02:00

122 lines
4.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace Nikse.SubtitleEdit.Core.SubtitleFormats
{
public class UnknownSubtitle89 : SubtitleFormat
{
private static readonly Regex RegexTimeCodes1 = new Regex(@"^\d{1,2}:\d\d ", RegexOptions.Compiled);
private static readonly Regex RegexTimeCodes2 = new Regex(@"^\d{1,2}:\d\d:\d\d ", RegexOptions.Compiled);
public override string Extension => ".txt";
public override string Name => "Unknown 89";
public override string ToText(Subtitle subtitle, string title)
{
var sb = new StringBuilder();
foreach (Paragraph p in subtitle.Paragraphs)
{
sb.Append(EncodeTime(p.StartTime) + " " + (string.IsNullOrWhiteSpace(p.Actor) ? "Speaker" : p.Actor));
sb.AppendLine();
sb.AppendLine(p.Text);
sb.AppendLine();
}
return sb.ToString();
}
private static string EncodeTime(TimeCode timeCode)
{
var ts = timeCode.TimeSpan;
string s;
if (ts.Minutes == 0 && ts.Hours == 0 && ts.Days == 0)
{
s = $"0:{ts.Seconds:00}";
}
else if (ts.Hours == 0 && ts.Days == 0)
{
s = $"{ts.Minutes:0}:{ts.Seconds:00}";
}
else
{
s = $"{ts.Hours + ts.Days * 24:0}:{ts.Minutes:00}:{ts.Seconds:00}";
}
if (timeCode.TotalMilliseconds >= 0)
{
return s;
}
return "-" + s.RemoveChar('-');
}
public override void LoadSubtitle(Subtitle subtitle, List<string> lines, string fileName)
{
_errorCount = 0;
Paragraph p = null;
var sb = new StringBuilder();
foreach (string line in lines)
{
string s = line.Trim();
var match1 = RegexTimeCodes1.Match(s);
var match2 = RegexTimeCodes2.Match(s);
if (match1.Success || match2.Success)
{
var m = match1.Success ? match1 : match2;
if (p != null && sb.Length > 0)
{
p.Text = sb.ToString().Trim();
subtitle.Paragraphs.Add(p);
if (string.IsNullOrEmpty(p.Text))
{
_errorCount++;
}
}
p = new Paragraph
{
StartTime = DecodeTimeCode(m.Value.Trim(), SplitCharColon),
Actor = s.Remove(0, m.Value.Length).Trim(),
};
sb.Clear();
if (p.Actor.Split().Length > 3)
{
_errorCount++;
}
}
else if (p != null)
{
sb.AppendLine(s);
}
}
if (p != null && sb.Length > 0)
{
p.Text = sb.ToString().Trim();
subtitle.Paragraphs.Add(p);
}
subtitle.RecalculateDisplayTimes(Configuration.Settings.General.SubtitleMaximumCharactersPerSeconds,
null,
Configuration.Settings.General.SubtitleOptimalCharactersPerSeconds);
subtitle.Renumber();
}
private static TimeCode DecodeTimeCode(string s, char[] splitCharColon)
{
var arr = s.Split(splitCharColon);
if (arr.Length == 2)
{
return new TimeCode(0, int.Parse(arr[0]), int.Parse(arr[1]), 0);
}
if (arr.Length == 3)
{
return new TimeCode(int.Parse(arr[0]), int.Parse(arr[1]), int.Parse(arr[2]), 0);
}
throw new InvalidOperationException();
}
}
}