2006-02-27 01:06:46 +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_txt.cpp
|
|
|
|
/// @brief Importing/exporting subtitles to untimed plain text
|
|
|
|
/// @ingroup subtitle_io
|
|
|
|
///
|
2006-02-27 01:06:46 +01:00
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
#include "subtitle_format_txt.h"
|
|
|
|
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "ass_dialogue.h"
|
2012-01-26 21:08:38 +01:00
|
|
|
#include "ass_file.h"
|
2014-05-22 21:07:15 +02:00
|
|
|
#include "dialogs.h"
|
2013-01-07 02:50:09 +01:00
|
|
|
#include "options.h"
|
2006-02-27 01:06:46 +01:00
|
|
|
#include "text_file_reader.h"
|
2006-10-20 00:53:06 +02:00
|
|
|
#include "text_file_writer.h"
|
|
|
|
#include "version.h"
|
2006-02-27 01:06:46 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
|
|
#include <boost/algorithm/string/trim.hpp>
|
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
TXTSubtitleFormat::TXTSubtitleFormat()
|
|
|
|
: SubtitleFormat("Plain-Text")
|
|
|
|
{
|
2006-10-20 00:53:06 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::vector<std::string> TXTSubtitleFormat::GetReadWildcards() const {
|
2014-05-22 21:07:15 +02:00
|
|
|
return {"txt"};
|
2006-12-26 19:26:13 +01:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::vector<std::string> TXTSubtitleFormat::GetWriteWildcards() const {
|
2006-12-26 19:26:13 +01:00
|
|
|
return GetReadWildcards();
|
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
bool TXTSubtitleFormat::CanWriteFile(agi::fs::path const& filename) const {
|
|
|
|
auto str = filename.string();
|
|
|
|
return boost::iends_with(str, ".txt") && !(boost::iends_with(str, ".encore.txt") || boost::iends_with(str, ".transtation.txt"));
|
2011-09-28 21:44:53 +02:00
|
|
|
}
|
2006-12-26 19:26:13 +01:00
|
|
|
|
2014-03-26 16:14:08 +01:00
|
|
|
void TXTSubtitleFormat::ReadFile(AssFile *target, agi::fs::path const& filename, agi::vfr::Framerate const& fps, std::string const& encoding) const {
|
2014-05-22 21:07:15 +02:00
|
|
|
if (!ShowPlainTextImportDialog()) return;
|
2006-02-27 01:06:46 +01:00
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
TextFileReader file(filename, encoding, false);
|
2006-02-27 01:06:46 +01:00
|
|
|
|
2014-05-04 13:04:48 +02:00
|
|
|
target->LoadDefault(false, OPT_GET("Subtitle Format/TXT/Default Style Catalog")->GetString());
|
2006-02-27 01:06:46 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string actor;
|
|
|
|
std::string separator = OPT_GET("Tool/Import/Text/Actor Separator")->GetString();
|
|
|
|
std::string comment = OPT_GET("Tool/Import/Text/Comment Starter")->GetString();
|
2006-02-27 01:06:46 +01:00
|
|
|
|
|
|
|
// Parse file
|
|
|
|
while (file.HasMoreLines()) {
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string value = file.ReadLineFromFile();
|
2013-02-01 16:47:24 +01:00
|
|
|
if (value.empty() && !OPT_GET("Tool/Import/Text/Include Blank")->GetBool()) continue;
|
2006-02-27 01:06:46 +01:00
|
|
|
|
|
|
|
// Check if this isn't a timecodes file
|
2013-01-04 16:01:50 +01:00
|
|
|
if (boost::starts_with(value, "# timecode"))
|
2014-05-29 14:57:27 +02:00
|
|
|
throw SubtitleFormatParseError("File is a timecode file, cannot load as subtitles.");
|
2006-02-27 01:06:46 +01:00
|
|
|
|
|
|
|
// Read comment data
|
2011-09-28 21:44:53 +02:00
|
|
|
bool isComment = false;
|
2013-01-04 16:01:50 +01:00
|
|
|
if (!comment.empty() && boost::starts_with(value, comment)) {
|
2006-02-27 01:06:46 +01:00
|
|
|
isComment = true;
|
2013-01-04 16:01:50 +01:00
|
|
|
value.erase(0, comment.size());
|
2006-02-27 01:06:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Read actor data
|
2013-02-01 16:47:24 +01:00
|
|
|
if (!isComment && !separator.empty() && !value.empty()) {
|
2011-09-28 21:43:11 +02:00
|
|
|
if (value[0] != ' ' && value[0] != '\t') {
|
2013-01-04 16:01:50 +01:00
|
|
|
size_t pos = value.find(separator);
|
|
|
|
if (pos != std::string::npos) {
|
|
|
|
actor = value.substr(0, pos);
|
|
|
|
boost::trim(actor);
|
2013-06-26 20:26:16 +02:00
|
|
|
value.erase(0, pos + 1);
|
2006-02-27 01:06:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Trim spaces at start
|
2013-01-04 16:01:50 +01:00
|
|
|
boost::trim_left(value);
|
2006-02-27 01:06:46 +01:00
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
if (value.empty())
|
|
|
|
isComment = true;
|
|
|
|
|
2006-02-27 01:06:46 +01:00
|
|
|
// Sets line up
|
2013-11-21 18:13:36 +01:00
|
|
|
auto line = new AssDialogue;
|
2013-01-04 16:01:50 +01:00
|
|
|
line->Actor = isComment ? std::string() : actor;
|
2006-02-27 01:06:46 +01:00
|
|
|
line->Comment = isComment;
|
|
|
|
line->Text = value;
|
2011-12-22 22:28:51 +01:00
|
|
|
line->End = 0;
|
2006-02-27 01:06:46 +01:00
|
|
|
|
2014-03-07 18:02:24 +01:00
|
|
|
target->Events.push_back(*line);
|
2006-02-27 01:06:46 +01:00
|
|
|
}
|
|
|
|
}
|
2006-10-20 00:53:06 +02:00
|
|
|
|
2014-03-26 16:14:08 +01:00
|
|
|
void TXTSubtitleFormat::WriteFile(const AssFile *src, agi::fs::path const& filename, agi::vfr::Framerate const& fps, std::string const& encoding) const {
|
2006-10-20 00:53:06 +02:00
|
|
|
size_t num_actor_names = 0, num_dialogue_lines = 0;
|
|
|
|
|
|
|
|
// Detect number of lines with Actor field filled out
|
2014-03-07 19:58:51 +01:00
|
|
|
for (auto const& dia : src->Events) {
|
|
|
|
if (!dia.Comment) {
|
2006-10-20 00:53:06 +02:00
|
|
|
num_dialogue_lines++;
|
2014-03-07 19:58:51 +01:00
|
|
|
if (!dia.Actor.get().empty())
|
2006-10-20 00:53:06 +02:00
|
|
|
num_actor_names++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If too few lines have Actor filled out, don't write it
|
|
|
|
bool write_actors = num_actor_names > num_dialogue_lines/2;
|
|
|
|
bool strip_formatting = true;
|
|
|
|
|
|
|
|
TextFileWriter file(filename, encoding);
|
2013-01-04 16:01:50 +01:00
|
|
|
file.WriteLineToFile(std::string("# Exported by Aegisub ") + GetAegisubShortVersionString());
|
2006-10-20 00:53:06 +02:00
|
|
|
|
|
|
|
// Write the file
|
2014-03-07 19:58:51 +01:00
|
|
|
for (auto const& dia : src->Events) {
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string out_line;
|
2006-10-20 00:53:06 +02:00
|
|
|
|
2014-03-07 19:58:51 +01:00
|
|
|
if (dia.Comment)
|
2012-10-12 19:16:39 +02:00
|
|
|
out_line = "# ";
|
2006-10-20 00:53:06 +02:00
|
|
|
|
2012-10-12 19:16:39 +02:00
|
|
|
if (write_actors)
|
2014-03-07 19:58:51 +01:00
|
|
|
out_line += dia.Actor.get() + ": ";
|
2006-10-20 00:53:06 +02:00
|
|
|
|
2014-03-07 19:58:51 +01:00
|
|
|
std::string out_text = strip_formatting ? dia.GetStrippedText() : dia.Text;
|
2012-10-12 19:16:39 +02:00
|
|
|
out_line += out_text;
|
|
|
|
|
|
|
|
if (!out_text.empty())
|
|
|
|
file.WriteLineToFile(out_line);
|
2006-10-20 00:53:06 +02:00
|
|
|
}
|
|
|
|
}
|