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
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
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"
|
2010-05-21 03:13:36 +02:00
|
|
|
#include "compat.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "dialog_text_import.h"
|
2010-05-21 03:13:36 +02:00
|
|
|
#include "main.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"
|
2012-10-12 19:16:39 +02:00
|
|
|
#include "utils.h"
|
2006-10-20 00:53:06 +02:00
|
|
|
#include "version.h"
|
2006-02-27 01:06:46 +01:00
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
TXTSubtitleFormat::TXTSubtitleFormat()
|
|
|
|
: SubtitleFormat("Plain-Text")
|
|
|
|
{
|
2006-10-20 00:53:06 +02:00
|
|
|
}
|
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
wxArrayString TXTSubtitleFormat::GetReadWildcards() const {
|
2006-12-26 19:26:13 +01:00
|
|
|
wxArrayString formats;
|
2011-09-28 21:43:11 +02:00
|
|
|
formats.Add("txt");
|
2006-12-26 19:26:13 +01:00
|
|
|
return formats;
|
|
|
|
}
|
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
wxArrayString TXTSubtitleFormat::GetWriteWildcards() const {
|
2006-12-26 19:26:13 +01:00
|
|
|
return GetReadWildcards();
|
|
|
|
}
|
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
bool TXTSubtitleFormat::CanWriteFile(wxString const& filename) const {
|
|
|
|
return (filename.Right(4).Lower() == ".txt" && filename.Right(11).Lower() != ".encore.txt" && filename.Right(16).Lower() != ".transtation.txt");
|
|
|
|
}
|
2006-12-26 19:26:13 +01:00
|
|
|
|
2012-01-26 21:08:38 +01:00
|
|
|
void TXTSubtitleFormat::ReadFile(AssFile *target, wxString const& filename, wxString const& encoding) const {
|
2011-09-28 21:44:53 +02:00
|
|
|
using namespace std;
|
2007-07-16 05:22:11 +02:00
|
|
|
DialogTextImport dlg;
|
|
|
|
if (dlg.ShowModal() == wxID_CANCEL) 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
|
|
|
|
2012-01-26 21:08:38 +01:00
|
|
|
target->LoadDefault(false);
|
2006-02-27 01:06:46 +01:00
|
|
|
|
|
|
|
wxString actor;
|
2010-05-21 03:13:36 +02:00
|
|
|
wxString separator = lagi_wxString(OPT_GET("Tool/Import/Text/Actor Separator")->GetString());
|
|
|
|
wxString comment = lagi_wxString(OPT_GET("Tool/Import/Text/Comment Starter")->GetString());
|
2006-02-27 01:06:46 +01:00
|
|
|
|
|
|
|
// Parse file
|
|
|
|
while (file.HasMoreLines()) {
|
|
|
|
wxString value = file.ReadLineFromFile();
|
2011-09-28 21:44:53 +02:00
|
|
|
if(value.empty()) continue;
|
2006-02-27 01:06:46 +01:00
|
|
|
|
|
|
|
// Check if this isn't a timecodes file
|
2011-09-28 21:44:53 +02:00
|
|
|
if (value.StartsWith("# timecode"))
|
|
|
|
throw SubtitleFormatParseError("File is a timecode file, cannot load as subtitles.", 0);
|
2006-02-27 01:06:46 +01:00
|
|
|
|
|
|
|
// Read comment data
|
2011-09-28 21:44:53 +02:00
|
|
|
bool isComment = false;
|
|
|
|
if (!comment.empty() && value.StartsWith(comment)) {
|
2006-02-27 01:06:46 +01:00
|
|
|
isComment = true;
|
2011-09-28 21:44:53 +02:00
|
|
|
value = value.Mid(comment.size());
|
2006-02-27 01:06:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Read actor data
|
2011-09-28 21:44:53 +02:00
|
|
|
if (!isComment && !separator.empty()) {
|
2011-09-28 21:43:11 +02:00
|
|
|
if (value[0] != ' ' && value[0] != '\t') {
|
2007-01-11 04:18:14 +01:00
|
|
|
int pos = value.Find(separator);
|
|
|
|
if (pos != wxNOT_FOUND) {
|
2006-02-27 01:06:46 +01:00
|
|
|
actor = value.Left(pos);
|
|
|
|
actor.Trim(false);
|
|
|
|
actor.Trim(true);
|
|
|
|
value = value.Mid(pos+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Trim spaces at start
|
|
|
|
value.Trim(false);
|
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
if (value.empty())
|
|
|
|
isComment = true;
|
|
|
|
|
2006-02-27 01:06:46 +01:00
|
|
|
// Sets line up
|
2011-09-28 21:44:53 +02:00
|
|
|
AssDialogue *line = new AssDialogue;
|
2012-08-18 05:13:31 +02:00
|
|
|
line->Actor = isComment ? "" : 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
|
|
|
|
|
|
|
// Adds line
|
2012-10-12 19:16:39 +02:00
|
|
|
target->Line.push_back(*line);
|
2006-02-27 01:06:46 +01:00
|
|
|
}
|
|
|
|
}
|
2006-10-20 00:53:06 +02:00
|
|
|
|
2012-01-26 21:08:38 +01:00
|
|
|
void TXTSubtitleFormat::WriteFile(const AssFile *src, wxString const& filename, wxString 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
|
2012-11-04 04:53:03 +01:00
|
|
|
for (auto const& line : src->Line) {
|
|
|
|
const AssDialogue *dia = dynamic_cast<const AssDialogue*>(&line);
|
2006-10-20 00:53:06 +02:00
|
|
|
if (dia && !dia->Comment) {
|
|
|
|
num_dialogue_lines++;
|
2011-09-28 21:44:53 +02:00
|
|
|
if (!dia->Actor.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);
|
2011-07-28 00:52:37 +02:00
|
|
|
file.WriteLineToFile(wxString("# Exported by Aegisub ") + GetAegisubShortVersionString());
|
2006-10-20 00:53:06 +02:00
|
|
|
|
|
|
|
// Write the file
|
2012-11-04 04:53:03 +01:00
|
|
|
for (auto const& line : src->Line) {
|
|
|
|
const AssDialogue *dia = dynamic_cast<const AssDialogue*>(&line);
|
2012-10-12 19:16:39 +02:00
|
|
|
if (!dia) continue;
|
2006-10-20 00:53:06 +02:00
|
|
|
|
2012-10-12 19:16:39 +02:00
|
|
|
wxString out_line;
|
2006-10-20 00:53:06 +02:00
|
|
|
|
2012-10-12 19:16:39 +02:00
|
|
|
if (dia->Comment)
|
|
|
|
out_line = "# ";
|
2006-10-20 00:53:06 +02:00
|
|
|
|
2012-10-12 19:16:39 +02:00
|
|
|
if (write_actors)
|
|
|
|
out_line += dia->Actor + ": ";
|
2006-10-20 00:53:06 +02:00
|
|
|
|
2012-10-12 19:16:39 +02:00
|
|
|
wxString out_text;
|
|
|
|
if (strip_formatting) {
|
|
|
|
std::vector<AssDialogueBlock*> blocks = dia->ParseTags();
|
2012-11-04 04:53:03 +01:00
|
|
|
for (auto block : blocks) {
|
|
|
|
if (block->GetType() == BLOCK_PLAIN)
|
|
|
|
out_text += block->GetText();
|
2006-10-20 00:53:06 +02:00
|
|
|
}
|
2012-10-12 19:16:39 +02:00
|
|
|
delete_clear(blocks);
|
2006-10-20 00:53:06 +02:00
|
|
|
}
|
|
|
|
else {
|
2012-10-12 19:16:39 +02:00
|
|
|
out_text = dia->Text;
|
2006-10-20 00:53:06 +02:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|