2006-02-26 23:45:34 +01:00
|
|
|
// Copyright (c) 2006, Rodrigo Braz Monteiro
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file subtitle_format_srt.cpp
|
|
|
|
/// @brief Reading/writing SubRip format subtitles (.SRT)
|
|
|
|
/// @ingroup subtitle_io
|
|
|
|
///
|
2006-02-26 23:45:34 +01:00
|
|
|
|
2012-03-29 01:59:01 +02:00
|
|
|
#include "subtitle_format_srt.h"
|
|
|
|
|
|
|
|
#include "ass_attachment.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "ass_dialogue.h"
|
|
|
|
#include "ass_file.h"
|
2014-05-03 21:08:37 +02:00
|
|
|
#include "options.h"
|
2006-02-26 23:45:34 +01:00
|
|
|
#include "text_file_reader.h"
|
2006-02-27 22:57:10 +01:00
|
|
|
#include "text_file_writer.h"
|
2006-02-26 23:45:34 +01:00
|
|
|
|
2014-05-29 00:19:05 +02:00
|
|
|
#include <libaegisub/format.h>
|
2012-11-05 17:20:58 +01:00
|
|
|
#include <libaegisub/of_type_adaptor.h>
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <boost/algorithm/string/case_conv.hpp>
|
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
|
|
#include <boost/algorithm/string/trim.hpp>
|
|
|
|
#include <boost/regex.hpp>
|
2012-11-19 06:10:36 +01:00
|
|
|
|
2014-05-29 14:57:27 +02:00
|
|
|
DEFINE_EXCEPTION(SRTParseError, SubtitleFormatParseError);
|
2010-06-20 21:07:43 +02:00
|
|
|
|
2011-11-25 20:27:51 +01:00
|
|
|
namespace {
|
2014-07-06 01:57:44 +02:00
|
|
|
enum class TagType {
|
|
|
|
UNKNOWN,
|
|
|
|
BOLD_OPEN,
|
|
|
|
BOLD_CLOSE,
|
|
|
|
ITALICS_OPEN,
|
|
|
|
ITALICS_CLOSE,
|
|
|
|
UNDERLINE_OPEN,
|
|
|
|
UNDERLINE_CLOSE,
|
|
|
|
STRIKEOUT_OPEN,
|
|
|
|
STRIKEOUT_CLOSE,
|
|
|
|
FONT_OPEN,
|
|
|
|
FONT_CLOSE
|
|
|
|
};
|
|
|
|
|
|
|
|
TagType type_from_name(std::string const& tag) {
|
|
|
|
switch (tag.size()) {
|
|
|
|
case 1:
|
|
|
|
switch (tag[0]) {
|
|
|
|
case 'b': return TagType::BOLD_OPEN;
|
|
|
|
case 'i': return TagType::ITALICS_OPEN;
|
|
|
|
case 'u': return TagType::UNDERLINE_OPEN;
|
|
|
|
case 's': return TagType::STRIKEOUT_OPEN;
|
|
|
|
default: return TagType::UNKNOWN;
|
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
if (tag[0] != '/') return TagType::UNKNOWN;
|
|
|
|
switch (tag[1]) {
|
|
|
|
case 'b': return TagType::BOLD_CLOSE;
|
|
|
|
case 'i': return TagType::ITALICS_CLOSE;
|
|
|
|
case 'u': return TagType::UNDERLINE_CLOSE;
|
|
|
|
case 's': return TagType::STRIKEOUT_CLOSE;
|
|
|
|
default: return TagType::UNKNOWN;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if (tag == "font") return TagType::FONT_OPEN;
|
|
|
|
if (tag == "/font") return TagType::FONT_CLOSE;
|
|
|
|
return TagType::UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ToggleTag {
|
|
|
|
char tag;
|
|
|
|
int level = 0;
|
|
|
|
|
|
|
|
ToggleTag(char tag) : tag(tag) { }
|
|
|
|
|
|
|
|
void Open(std::string& out) {
|
|
|
|
if (level == 0) {
|
|
|
|
out += "{\\";
|
|
|
|
out += tag;
|
|
|
|
out += "1}";
|
|
|
|
}
|
|
|
|
++level;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Close(std::string& out) {
|
|
|
|
if (level == 1) {
|
|
|
|
out += "{\\";
|
|
|
|
out += tag;
|
|
|
|
out += '}';
|
|
|
|
}
|
|
|
|
if (level > 0)
|
|
|
|
--level;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-11-25 20:27:51 +01:00
|
|
|
class SrtTagParser {
|
|
|
|
struct FontAttribs {
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string face;
|
|
|
|
std::string size;
|
|
|
|
std::string color;
|
2011-11-25 20:27:51 +01:00
|
|
|
};
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
const boost::regex tag_matcher;
|
|
|
|
const boost::regex attrib_matcher;
|
|
|
|
const boost::regex is_quoted;
|
2011-11-25 20:27:51 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
SrtTagParser()
|
2013-01-04 16:01:50 +01:00
|
|
|
: tag_matcher("^(.*?)<(/?b|/?i|/?u|/?s|/?font)([^>]*)>(.*)$", boost::regex::icase)
|
2013-12-12 18:27:52 +01:00
|
|
|
, attrib_matcher(R"(^[[:space:]]+(face|size|color)=('[^']*'|"[^"]*"|[^[:space:]]+))", boost::regex::icase)
|
|
|
|
, is_quoted(R"(^(['"]).*\1$)")
|
2011-11-25 20:27:51 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string ToAss(std::string srt)
|
2011-11-25 20:27:51 +01:00
|
|
|
{
|
2014-07-06 01:57:44 +02:00
|
|
|
ToggleTag bold('b');
|
|
|
|
ToggleTag italic('i');
|
|
|
|
ToggleTag underline('u');
|
|
|
|
ToggleTag strikeout('s');
|
2011-11-25 20:27:51 +01:00
|
|
|
std::vector<FontAttribs> font_stack;
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string ass; // result to be built
|
2011-11-25 20:27:51 +01:00
|
|
|
|
|
|
|
while (!srt.empty())
|
|
|
|
{
|
2013-01-04 16:01:50 +01:00
|
|
|
boost::smatch result;
|
|
|
|
if (!regex_match(srt, result, tag_matcher))
|
2011-11-25 20:27:51 +01:00
|
|
|
{
|
|
|
|
// no more tags could be matched, end of string
|
|
|
|
ass.append(srt);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we found a tag, translate it
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string pre_text = result.str(1);
|
|
|
|
std::string tag_name = result.str(2);
|
|
|
|
std::string tag_attrs = result.str(3);
|
|
|
|
std::string post_text = result.str(4);
|
2011-11-25 20:27:51 +01:00
|
|
|
|
|
|
|
// the text before the tag goes through unchanged
|
|
|
|
ass.append(pre_text);
|
|
|
|
// the text after the tag is the input for next iteration
|
|
|
|
srt = post_text;
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
boost::to_lower(tag_name);
|
2014-07-06 01:57:44 +02:00
|
|
|
switch (type_from_name(tag_name))
|
2011-11-25 20:27:51 +01:00
|
|
|
{
|
2014-07-06 01:57:44 +02:00
|
|
|
case TagType::BOLD_OPEN: bold.Open(ass); break;
|
|
|
|
case TagType::BOLD_CLOSE: bold.Close(ass); break;
|
|
|
|
case TagType::ITALICS_OPEN: italic.Open(ass); break;
|
|
|
|
case TagType::ITALICS_CLOSE: italic.Close(ass); break;
|
|
|
|
case TagType::UNDERLINE_OPEN: underline.Open(ass); break;
|
|
|
|
case TagType::UNDERLINE_CLOSE: underline.Close(ass); break;
|
|
|
|
case TagType::STRIKEOUT_OPEN: strikeout.Open(ass); break;
|
|
|
|
case TagType::STRIKEOUT_CLOSE: strikeout.Close(ass); break;
|
|
|
|
case TagType::FONT_OPEN:
|
2011-11-25 20:27:51 +01:00
|
|
|
{
|
|
|
|
// new attributes to fill in
|
|
|
|
FontAttribs new_attribs;
|
|
|
|
FontAttribs old_attribs;
|
|
|
|
// start out with any previous ones on stack
|
|
|
|
if (font_stack.size() > 0)
|
|
|
|
old_attribs = font_stack.back();
|
|
|
|
new_attribs = old_attribs;
|
|
|
|
// now find all attributes on this font tag
|
2013-01-04 16:01:50 +01:00
|
|
|
boost::smatch result;
|
|
|
|
while (regex_search(tag_attrs, result, attrib_matcher))
|
2011-11-25 20:27:51 +01:00
|
|
|
{
|
|
|
|
// get attribute name and values
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string attr_name = result.str(1);
|
|
|
|
std::string attr_value = result.str(2);
|
|
|
|
|
2011-11-25 20:27:51 +01:00
|
|
|
// clean them
|
2013-01-04 16:01:50 +01:00
|
|
|
boost::to_lower(attr_name);
|
|
|
|
if (regex_match(attr_value, is_quoted))
|
|
|
|
attr_value = attr_value.substr(1, attr_value.size() - 2);
|
|
|
|
|
2011-11-25 20:27:51 +01:00
|
|
|
// handle the attributes
|
|
|
|
if (attr_name == "face")
|
2014-05-29 00:19:05 +02:00
|
|
|
new_attribs.face = agi::format("{\\fn%s}", attr_value);
|
2011-11-25 20:27:51 +01:00
|
|
|
else if (attr_name == "size")
|
2014-05-29 00:19:05 +02:00
|
|
|
new_attribs.size = agi::format("{\\fs%s}", attr_value);
|
2011-11-25 20:27:51 +01:00
|
|
|
else if (attr_name == "color")
|
2014-05-29 00:19:05 +02:00
|
|
|
new_attribs.color = agi::format("{\\c%s}", agi::Color(attr_value).GetAssOverrideFormatted());
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2011-11-25 20:27:51 +01:00
|
|
|
// remove this attribute to prepare for the next
|
2013-01-04 16:01:50 +01:00
|
|
|
tag_attrs = result.suffix().str();
|
2011-11-25 20:27:51 +01:00
|
|
|
}
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2011-11-25 20:27:51 +01:00
|
|
|
// the attributes changed from old are then written out
|
|
|
|
if (new_attribs.face != old_attribs.face)
|
|
|
|
ass.append(new_attribs.face);
|
|
|
|
if (new_attribs.size != old_attribs.size)
|
|
|
|
ass.append(new_attribs.size);
|
|
|
|
if (new_attribs.color != old_attribs.color)
|
|
|
|
ass.append(new_attribs.color);
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2011-11-25 20:27:51 +01:00
|
|
|
// lastly dump the new attributes state onto the stack
|
|
|
|
font_stack.push_back(new_attribs);
|
|
|
|
}
|
|
|
|
break;
|
2014-07-06 01:57:44 +02:00
|
|
|
case TagType::FONT_CLOSE:
|
2011-11-25 20:27:51 +01:00
|
|
|
{
|
|
|
|
// this requires a font stack entry
|
|
|
|
if (font_stack.empty())
|
|
|
|
break;
|
|
|
|
// get the current attribs
|
|
|
|
FontAttribs cur_attribs = font_stack.back();
|
|
|
|
// remove them from the stack
|
|
|
|
font_stack.pop_back();
|
|
|
|
// grab the old attributes if there are any
|
|
|
|
FontAttribs old_attribs;
|
|
|
|
if (font_stack.size() > 0)
|
|
|
|
old_attribs = font_stack.back();
|
|
|
|
// then restore the attributes to previous settings
|
|
|
|
if (cur_attribs.face != old_attribs.face)
|
|
|
|
{
|
|
|
|
if (old_attribs.face.empty())
|
|
|
|
ass.append("{\\fn}");
|
|
|
|
else
|
|
|
|
ass.append(old_attribs.face);
|
|
|
|
}
|
|
|
|
if (cur_attribs.size != old_attribs.size)
|
|
|
|
{
|
|
|
|
if (old_attribs.size.empty())
|
|
|
|
ass.append("{\\fs}");
|
|
|
|
else
|
|
|
|
ass.append(old_attribs.size);
|
|
|
|
}
|
|
|
|
if (cur_attribs.color != old_attribs.color)
|
|
|
|
{
|
|
|
|
if (old_attribs.color.empty())
|
|
|
|
ass.append("{\\c}");
|
|
|
|
else
|
|
|
|
ass.append(old_attribs.color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// unknown tag, replicate it in the output
|
|
|
|
ass.append("<").append(tag_name).append(tag_attrs).append(">");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// make it a little prettier, join tag groups
|
2013-01-04 16:01:50 +01:00
|
|
|
boost::replace_all(ass, "}{", "");
|
2011-11-25 20:27:51 +01:00
|
|
|
|
|
|
|
return ass;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-07-06 16:28:58 +02:00
|
|
|
std::string WriteSRTTime(agi::Time const& ts)
|
2011-11-25 20:27:51 +01:00
|
|
|
{
|
2018-11-10 21:51:48 +01:00
|
|
|
return ts.GetSrtFormatted();
|
2011-11-25 20:27:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
SRTSubtitleFormat::SRTSubtitleFormat()
|
|
|
|
: SubtitleFormat("SubRip")
|
|
|
|
{
|
2006-12-26 19:26:13 +01:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::vector<std::string> SRTSubtitleFormat::GetReadWildcards() const {
|
2014-05-12 17:34:28 +02:00
|
|
|
return {"srt"};
|
2006-12-26 19:26:13 +01:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::vector<std::string> SRTSubtitleFormat::GetWriteWildcards() const {
|
2006-12-26 19:26:13 +01:00
|
|
|
return GetReadWildcards();
|
|
|
|
}
|
|
|
|
|
2014-07-06 01:57:44 +02:00
|
|
|
enum class ParseState {
|
|
|
|
INITIAL,
|
|
|
|
TIMESTAMP,
|
|
|
|
FIRST_LINE_OF_BODY,
|
|
|
|
REST_OF_BODY,
|
|
|
|
LAST_WAS_BLANK
|
2012-12-05 16:16:10 +01:00
|
|
|
};
|
|
|
|
|
2014-03-26 16:14:08 +01:00
|
|
|
void SRTSubtitleFormat::ReadFile(AssFile *target, agi::fs::path const& filename, agi::vfr::Framerate const& fps, std::string const& encoding) const {
|
2006-02-26 23:45:34 +01:00
|
|
|
using namespace std;
|
|
|
|
|
2011-11-25 20:27:51 +01:00
|
|
|
TextFileReader file(filename, encoding);
|
2014-05-04 13:04:48 +02:00
|
|
|
target->LoadDefault(false, OPT_GET("Subtitle Format/SRT/Default Style Catalog")->GetString());
|
2006-02-26 23:45:34 +01:00
|
|
|
|
2010-06-20 21:07:43 +02:00
|
|
|
// See parsing algorithm at <http://devel.aegisub.org/wiki/SubtitleFormats/SRT>
|
2007-01-15 22:35:34 +01:00
|
|
|
|
2010-06-20 21:07:43 +02:00
|
|
|
// "hh:mm:ss,fff --> hh:mm:ss,fff" (e.g. "00:00:04,070 --> 00:00:10,04")
|
2013-06-22 16:54:56 +02:00
|
|
|
const boost::regex timestamp_regex("^([0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2},[0-9]{1,}) --> ([0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2},[0-9]{1,})");
|
2007-01-15 22:35:34 +01:00
|
|
|
|
2011-11-25 20:27:51 +01:00
|
|
|
SrtTagParser tag_parser;
|
|
|
|
|
2014-07-06 01:57:44 +02:00
|
|
|
ParseState state = ParseState::INITIAL;
|
2010-06-20 21:07:43 +02:00
|
|
|
int line_num = 0;
|
|
|
|
int linebreak_debt = 0;
|
2013-11-21 18:13:36 +01:00
|
|
|
AssDialogue *line = nullptr;
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string text;
|
2010-06-20 21:07:43 +02:00
|
|
|
while (file.HasMoreLines()) {
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string text_line = file.ReadLineFromFile();
|
|
|
|
++line_num;
|
|
|
|
boost::trim(text_line);
|
2010-06-20 21:07:43 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
boost::smatch timestamp_match;
|
2014-10-21 16:06:33 +02:00
|
|
|
bool found_timestamps = false;
|
2010-06-20 21:07:43 +02:00
|
|
|
switch (state) {
|
2014-07-06 01:57:44 +02:00
|
|
|
case ParseState::INITIAL:
|
2012-12-05 16:16:10 +01:00
|
|
|
// ignore leading blank lines
|
|
|
|
if (text_line.empty()) break;
|
2013-01-04 16:01:50 +01:00
|
|
|
if (all(text_line, boost::is_digit())) {
|
2010-06-20 21:07:43 +02:00
|
|
|
// found the line number, throw it away and hope for timestamps
|
2014-07-06 01:57:44 +02:00
|
|
|
state = ParseState::TIMESTAMP;
|
2010-06-20 21:07:43 +02:00
|
|
|
break;
|
|
|
|
}
|
2014-10-21 16:06:33 +02:00
|
|
|
if (regex_search(text_line, timestamp_match, timestamp_regex)) {
|
|
|
|
found_timestamps = true;
|
|
|
|
break;
|
|
|
|
}
|
2011-11-25 20:27:51 +01:00
|
|
|
|
2014-05-29 14:57:27 +02:00
|
|
|
throw SRTParseError(agi::format("Parsing SRT: Expected subtitle index at line %d", line_num));
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2014-07-06 01:57:44 +02:00
|
|
|
case ParseState::TIMESTAMP:
|
2013-06-22 16:47:51 +02:00
|
|
|
if (!regex_search(text_line, timestamp_match, timestamp_regex))
|
2014-05-29 14:57:27 +02:00
|
|
|
throw SRTParseError(agi::format("Parsing SRT: Expected timestamp pair at line %d", line_num));
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2014-10-21 16:06:33 +02:00
|
|
|
found_timestamps = true;
|
2010-06-20 21:07:43 +02:00
|
|
|
break;
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2014-07-06 01:57:44 +02:00
|
|
|
case ParseState::FIRST_LINE_OF_BODY:
|
2011-11-25 20:27:51 +01:00
|
|
|
if (text_line.empty()) {
|
2010-06-20 21:07:43 +02:00
|
|
|
// that's not very interesting... blank subtitle?
|
2014-07-06 01:57:44 +02:00
|
|
|
state = ParseState::LAST_WAS_BLANK;
|
2010-06-20 21:42:13 +02:00
|
|
|
// no previous line that needs a line break after
|
|
|
|
linebreak_debt = 0;
|
2010-06-20 21:07:43 +02:00
|
|
|
break;
|
|
|
|
}
|
2013-01-04 16:01:50 +01:00
|
|
|
text.append(text_line);
|
2014-07-06 01:57:44 +02:00
|
|
|
state = ParseState::REST_OF_BODY;
|
2010-06-20 21:07:43 +02:00
|
|
|
break;
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2014-07-06 01:57:44 +02:00
|
|
|
case ParseState::REST_OF_BODY:
|
2011-11-25 20:27:51 +01:00
|
|
|
if (text_line.empty()) {
|
2012-12-05 16:16:10 +01:00
|
|
|
// Might be either the gap between two subtitles or just a
|
|
|
|
// blank line in the middle of a subtitle, so defer adding
|
|
|
|
// the line break until we check what's on the next line
|
2014-07-06 01:57:44 +02:00
|
|
|
state = ParseState::LAST_WAS_BLANK;
|
2010-06-20 21:07:43 +02:00
|
|
|
linebreak_debt = 1;
|
|
|
|
break;
|
|
|
|
}
|
2013-01-04 16:01:50 +01:00
|
|
|
text.append("\\N");
|
|
|
|
text.append(text_line);
|
2010-06-20 21:07:43 +02:00
|
|
|
break;
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2014-07-06 01:57:44 +02:00
|
|
|
case ParseState::LAST_WAS_BLANK:
|
2012-12-05 16:16:10 +01:00
|
|
|
++linebreak_debt;
|
|
|
|
if (text_line.empty()) break;
|
2013-01-04 16:01:50 +01:00
|
|
|
if (all(text_line, boost::is_digit())) {
|
2012-12-05 16:16:10 +01:00
|
|
|
// Hopefully it's the start of a new subtitle, and the
|
|
|
|
// previous blank line(s) were the gap between subtitles
|
2014-07-06 01:57:44 +02:00
|
|
|
state = ParseState::TIMESTAMP;
|
2010-06-20 21:07:43 +02:00
|
|
|
break;
|
|
|
|
}
|
2014-10-21 16:06:33 +02:00
|
|
|
if (regex_search(text_line, timestamp_match, timestamp_regex)) {
|
|
|
|
found_timestamps = true;
|
|
|
|
break;
|
|
|
|
}
|
2011-11-25 20:27:51 +01:00
|
|
|
|
2010-06-20 21:07:43 +02:00
|
|
|
// assume it's a continuation of the subtitle text
|
|
|
|
// resolve our line break debt and append the line text
|
|
|
|
while (linebreak_debt-- > 0)
|
2013-01-04 16:01:50 +01:00
|
|
|
text.append("\\N");
|
|
|
|
text.append(text_line);
|
2014-07-06 01:57:44 +02:00
|
|
|
state = ParseState::REST_OF_BODY;
|
2010-06-20 21:07:43 +02:00
|
|
|
break;
|
2006-02-26 23:45:34 +01:00
|
|
|
}
|
2014-10-21 16:06:33 +02:00
|
|
|
if (found_timestamps) {
|
|
|
|
if (line) {
|
|
|
|
// finalize active line
|
|
|
|
line->Text = tag_parser.ToAss(text);
|
|
|
|
text.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// create new subtitle
|
|
|
|
line = new AssDialogue;
|
|
|
|
line->Start = timestamp_match.str(1);
|
|
|
|
line->End = timestamp_match.str(2);
|
|
|
|
// store pointer to subtitle, we'll continue working on it
|
|
|
|
target->Events.push_back(*line);
|
|
|
|
// next we're reading the text
|
|
|
|
state = ParseState::FIRST_LINE_OF_BODY;
|
|
|
|
}
|
2006-02-26 23:45:34 +01:00
|
|
|
}
|
2007-01-06 06:04:57 +01:00
|
|
|
|
2014-07-06 01:57:44 +02:00
|
|
|
if (state == ParseState::TIMESTAMP || state == ParseState::FIRST_LINE_OF_BODY)
|
2014-05-29 14:57:27 +02:00
|
|
|
throw SRTParseError("Parsing SRT: Incomplete file");
|
2010-06-20 21:07:43 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
if (line) // an unfinalized line
|
2012-12-04 23:35:59 +01:00
|
|
|
line->Text = tag_parser.ToAss(text);
|
2006-02-26 23:45:34 +01:00
|
|
|
}
|
2006-02-27 22:57:10 +01:00
|
|
|
|
2014-03-26 16:14:08 +01:00
|
|
|
void SRTSubtitleFormat::WriteFile(const AssFile *src, agi::fs::path const& filename, agi::vfr::Framerate const& fps, std::string const& encoding) const {
|
2012-01-26 21:08:38 +01:00
|
|
|
TextFileWriter file(filename, encoding);
|
2006-02-27 22:57:10 +01:00
|
|
|
|
|
|
|
// Convert to SRT
|
2012-01-26 21:08:38 +01:00
|
|
|
AssFile copy(*src);
|
|
|
|
copy.Sort();
|
2012-10-12 19:16:39 +02:00
|
|
|
StripComments(copy);
|
|
|
|
RecombineOverlaps(copy);
|
|
|
|
MergeIdentical(copy);
|
2012-07-24 04:39:32 +02:00
|
|
|
#ifdef _WIN32
|
2012-10-12 19:16:39 +02:00
|
|
|
ConvertNewlines(copy, "\r\n", false);
|
2012-07-24 04:39:32 +02:00
|
|
|
#else
|
2012-10-12 19:16:39 +02:00
|
|
|
ConvertNewlines(copy, "\n", false);
|
2012-07-24 04:39:32 +02:00
|
|
|
#endif
|
2006-02-27 22:57:10 +01:00
|
|
|
|
|
|
|
// Write lines
|
2012-11-05 17:20:58 +01:00
|
|
|
int i=0;
|
2014-03-07 19:58:51 +01:00
|
|
|
for (auto const& current : copy.Events) {
|
2013-01-04 16:01:50 +01:00
|
|
|
file.WriteLineToFile(std::to_string(++i));
|
2014-03-07 19:58:51 +01:00
|
|
|
file.WriteLineToFile(WriteSRTTime(current.Start) + " --> " + WriteSRTTime(current.End));
|
|
|
|
file.WriteLineToFile(ConvertTags(¤t));
|
2012-11-05 17:20:58 +01:00
|
|
|
file.WriteLineToFile("");
|
2006-02-27 22:57:10 +01:00
|
|
|
}
|
|
|
|
}
|
2011-11-25 20:28:19 +01:00
|
|
|
|
2012-03-29 01:59:01 +02:00
|
|
|
bool SRTSubtitleFormat::CanSave(const AssFile *file) const {
|
2014-03-07 18:02:24 +01:00
|
|
|
if (!file->Attachments.empty())
|
|
|
|
return false;
|
2012-03-29 01:59:01 +02:00
|
|
|
|
2014-05-12 17:34:28 +02:00
|
|
|
auto def = boost::flyweight<std::string>("Default");
|
2014-03-07 18:02:24 +01:00
|
|
|
for (auto const& line : file->Events) {
|
2014-05-12 17:34:28 +02:00
|
|
|
if (line.Style != def)
|
|
|
|
return false;
|
|
|
|
|
2014-04-14 19:58:46 +02:00
|
|
|
auto blocks = line.ParseTags();
|
2014-03-07 18:02:24 +01:00
|
|
|
for (auto ovr : blocks | agi::of_type<AssDialogueBlockOverride>()) {
|
|
|
|
// Verify that all overrides used are supported
|
|
|
|
for (auto const& tag : ovr->Tags) {
|
2014-07-06 01:57:44 +02:00
|
|
|
if (tag.Name.size() != 2)
|
|
|
|
return false;
|
|
|
|
if (!strchr("bisu", tag.Name[1]))
|
2014-03-07 18:02:24 +01:00
|
|
|
return false;
|
2012-03-29 01:59:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string SRTSubtitleFormat::ConvertTags(const AssDialogue *diag) const {
|
2014-07-06 01:57:44 +02:00
|
|
|
struct tag_state { char tag; bool value; };
|
|
|
|
tag_state tag_states[] = {
|
|
|
|
{'b', false},
|
|
|
|
{'i', false},
|
|
|
|
{'s', false},
|
|
|
|
{'u', false}
|
|
|
|
};
|
2011-11-25 20:28:19 +01:00
|
|
|
|
2014-07-06 01:57:44 +02:00
|
|
|
std::string final;
|
2014-04-14 19:58:46 +02:00
|
|
|
for (auto& block : diag->ParseTags()) {
|
2014-12-26 17:51:14 +01:00
|
|
|
switch (block->GetType()) {
|
|
|
|
case AssBlockType::OVERRIDE:
|
|
|
|
for (auto const& tag : static_cast<AssDialogueBlockOverride&>(*block).Tags) {
|
2014-07-06 01:57:44 +02:00
|
|
|
if (!tag.IsValid() || tag.Name.size() != 2)
|
|
|
|
continue;
|
|
|
|
for (auto& state : tag_states) {
|
|
|
|
if (state.tag != tag.Name[1]) continue;
|
|
|
|
|
|
|
|
bool temp = tag.Params[0].Get(false);
|
|
|
|
if (temp && !state.value)
|
|
|
|
final += agi::format("<%c>", state.tag);
|
|
|
|
if (!temp && state.value)
|
|
|
|
final += agi::format("</%c>", state.tag);
|
|
|
|
state.value = temp;
|
2011-11-25 20:28:19 +01:00
|
|
|
}
|
|
|
|
}
|
2014-12-26 17:51:14 +01:00
|
|
|
break;
|
|
|
|
case AssBlockType::PLAIN:
|
|
|
|
final += block->GetText();
|
|
|
|
break;
|
|
|
|
case AssBlockType::DRAWING:
|
|
|
|
case AssBlockType::COMMENT:
|
|
|
|
break;
|
2011-11-25 20:28:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure all tags are closed
|
|
|
|
// Otherwise unclosed overrides might affect lines they shouldn't, see bug #809 for example
|
2014-07-06 01:57:44 +02:00
|
|
|
for (auto state : tag_states) {
|
|
|
|
if (state.value)
|
|
|
|
final += agi::format("</%c>", state.tag);
|
2011-11-25 20:28:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return final;
|
|
|
|
}
|