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/
|
2006-02-27 01:06:46 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file subtitle_format_ass.cpp
|
|
|
|
/// @brief Reading/writing of SSA-lineage subtitles
|
|
|
|
/// @ingroup subtitle_io
|
|
|
|
///
|
2006-02-27 01:06:46 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2006-02-27 01:06:46 +01:00
|
|
|
#include "subtitle_format_ass.h"
|
2011-09-28 21:44:53 +02:00
|
|
|
|
2012-10-12 03:45:54 +02:00
|
|
|
#include "ass_attachment.h"
|
2011-09-28 21:44:53 +02:00
|
|
|
#include "ass_dialogue.h"
|
2012-01-26 21:08:38 +01:00
|
|
|
#include "ass_file.h"
|
2012-10-12 03:45:54 +02:00
|
|
|
#include "ass_style.h"
|
2011-09-28 21:44:53 +02:00
|
|
|
#include "compat.h"
|
2006-02-27 01:06:46 +01:00
|
|
|
#include "text_file_reader.h"
|
2006-02-27 22:57:10 +01:00
|
|
|
#include "text_file_writer.h"
|
2006-02-27 01:06:46 +01:00
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
DEFINE_SIMPLE_EXCEPTION(AssParseError, SubtitleFormatParseError, "subtitle_io/parse/ass")
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
ASSSubtitleFormat::ASSSubtitleFormat()
|
|
|
|
: SubtitleFormat("Advanced Substation Alpha")
|
|
|
|
{
|
2006-12-26 19:26:13 +01:00
|
|
|
}
|
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
wxArrayString ASSSubtitleFormat::GetReadWildcards() const {
|
2006-12-26 19:26:13 +01:00
|
|
|
wxArrayString formats;
|
2011-09-28 21:43:11 +02:00
|
|
|
formats.Add("ass");
|
|
|
|
formats.Add("ssa");
|
2006-12-26 19:26:13 +01:00
|
|
|
return formats;
|
|
|
|
}
|
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
wxArrayString ASSSubtitleFormat::GetWriteWildcards() const {
|
2006-12-26 19:26:13 +01:00
|
|
|
wxArrayString formats;
|
2011-09-28 21:43:11 +02:00
|
|
|
formats.Add("ass");
|
|
|
|
formats.Add("ssa");
|
2006-12-26 19:26:13 +01:00
|
|
|
return formats;
|
|
|
|
}
|
|
|
|
|
2012-01-26 21:08:38 +01:00
|
|
|
void ASSSubtitleFormat::ReadFile(AssFile *target, wxString const& filename, wxString const& encoding) const {
|
|
|
|
target->Clear();
|
|
|
|
|
2011-09-28 21:44:53 +02:00
|
|
|
TextFileReader file(filename, encoding);
|
|
|
|
int version = filename.Right(4).Lower() != ".ssa";
|
2012-01-08 02:34:30 +01:00
|
|
|
AssAttachment *attach = 0;
|
2006-02-27 01:06:46 +01:00
|
|
|
|
|
|
|
while (file.HasMoreLines()) {
|
2011-09-28 21:44:53 +02:00
|
|
|
wxString line = file.ReadLineFromFile();
|
2006-02-27 01:06:46 +01:00
|
|
|
try {
|
2012-10-12 03:45:54 +02:00
|
|
|
AddLine(target, line, &version, &attach);
|
2006-02-27 01:06:46 +01:00
|
|
|
}
|
2011-09-28 21:43:11 +02:00
|
|
|
catch (const char *err) {
|
2012-01-26 21:08:38 +01:00
|
|
|
target->Clear();
|
2011-09-28 21:44:53 +02:00
|
|
|
throw AssParseError("Error processing line: " + STD_STR(line) + ": " + err, 0);
|
2006-02-27 01:06:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-27 22:57:10 +01:00
|
|
|
|
2012-01-26 21:08:38 +01:00
|
|
|
void ASSSubtitleFormat::WriteFile(const AssFile *src, wxString const& filename, wxString const& encoding) const {
|
2011-09-28 21:44:53 +02:00
|
|
|
TextFileWriter file(filename, encoding);
|
2011-09-28 21:43:11 +02:00
|
|
|
bool ssa = filename.Right(4).Lower() == ".ssa";
|
2006-02-27 22:57:10 +01:00
|
|
|
|
2012-01-26 21:08:38 +01:00
|
|
|
wxString group = src->Line.front()->group;
|
|
|
|
for (LineList::const_iterator cur = src->Line.begin(); cur != src->Line.end(); ++cur) {
|
2010-10-11 22:06:09 +02:00
|
|
|
// Add a blank line between each group
|
|
|
|
if ((*cur)->group != group) {
|
|
|
|
file.WriteLineToFile("");
|
|
|
|
group = (*cur)->group;
|
|
|
|
}
|
2006-03-13 23:25:09 +01:00
|
|
|
|
2012-08-18 05:13:34 +02:00
|
|
|
file.WriteLineToFile(ssa ? (*cur)->GetSSAText() : (*cur)->GetEntryData(), true);
|
2006-02-27 22:57:10 +01:00
|
|
|
}
|
|
|
|
}
|
2012-10-12 03:45:54 +02:00
|
|
|
|
|
|
|
void ASSSubtitleFormat::AddLine(AssFile *target, wxString data, int *version, AssAttachment **attach) {
|
|
|
|
// Is this line an attachment filename?
|
|
|
|
bool isFilename = data.StartsWith("fontname: ") || data.StartsWith("filename: ");
|
|
|
|
|
|
|
|
// If there's an attachment in progress, deal with it first as an
|
|
|
|
// attachment data line can appear to be other things
|
|
|
|
if (*attach) {
|
|
|
|
// Check if it's valid data
|
|
|
|
bool validData = data.size() > 0 && data.size() <= 80;
|
|
|
|
for (size_t i = 0; i < data.size(); ++i) {
|
|
|
|
if (data[i] < 33 || data[i] >= 97) {
|
|
|
|
validData = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Data is over, add attachment to the file
|
|
|
|
if (!validData || isFilename) {
|
|
|
|
(*attach)->Finish();
|
|
|
|
target->Line.push_back(*attach);
|
|
|
|
*attach = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Insert data
|
|
|
|
(*attach)->AddData(data);
|
|
|
|
|
|
|
|
// Done building
|
|
|
|
if (data.Length() < 80) {
|
|
|
|
(*attach)->Finish();
|
|
|
|
target->Line.push_back(*attach);
|
|
|
|
*attach = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.empty()) return;
|
|
|
|
|
|
|
|
// Section header
|
|
|
|
if (data[0] == '[' && data.Last() == ']') {
|
|
|
|
// Ugly hacks to allow intermixed v4 and v4+ style sections
|
|
|
|
wxString low = data.Lower();
|
|
|
|
if (low == "[v4 styles]") {
|
|
|
|
data = "[V4+ Styles]";
|
|
|
|
*version = 0;
|
|
|
|
}
|
|
|
|
else if (low == "[v4+ styles]") {
|
|
|
|
data = "[V4+ Styles]";
|
|
|
|
*version = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
target->Line.push_back(new AssEntry(data, data));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the first nonblank line isn't a header pretend it starts with [Script Info]
|
|
|
|
if (target->Line.empty())
|
|
|
|
target->Line.push_back(new AssEntry("[Script Info]", "[Script Info]"));
|
|
|
|
|
|
|
|
wxString group = target->Line.back()->group;
|
|
|
|
wxString lowGroup = group.Lower();
|
|
|
|
|
|
|
|
// Attachment
|
|
|
|
if (lowGroup == "[fonts]" || lowGroup == "[graphics]") {
|
|
|
|
if (isFilename) {
|
|
|
|
*attach = new AssAttachment(data.Mid(10), group);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Dialogue
|
|
|
|
else if (lowGroup == "[events]") {
|
|
|
|
if (data.StartsWith("Dialogue:") || data.StartsWith("Comment:"))
|
|
|
|
target->Line.push_back(new AssDialogue(data));
|
|
|
|
else if (data.StartsWith("Format:"))
|
|
|
|
target->Line.push_back(new AssEntry("Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text", group));
|
|
|
|
}
|
|
|
|
// Style
|
|
|
|
else if (lowGroup == "[v4+ styles]") {
|
|
|
|
if (data.StartsWith("Style:"))
|
|
|
|
target->Line.push_back(new AssStyle(data, *version));
|
|
|
|
else if (data.StartsWith("Format:"))
|
|
|
|
target->Line.push_back(new AssEntry("Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding", group));
|
|
|
|
}
|
|
|
|
// Script info
|
|
|
|
else if (lowGroup == "[script info]") {
|
|
|
|
// Comment
|
|
|
|
if (data.StartsWith(";")) {
|
|
|
|
// Skip stupid comments added by other programs
|
|
|
|
// Of course, we'll add our own in place later... ;)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.StartsWith("ScriptType:")) {
|
|
|
|
wxString versionString = data.Mid(11).Trim(true).Trim(false).Lower();
|
|
|
|
int trueVersion;
|
|
|
|
if (versionString == "v4.00")
|
|
|
|
trueVersion = 0;
|
|
|
|
else if (versionString == "v4.00+")
|
|
|
|
trueVersion = 1;
|
|
|
|
else
|
|
|
|
throw "Unknown SSA file format version";
|
|
|
|
if (trueVersion != *version) {
|
|
|
|
wxLogMessage("Warning: File has the wrong extension.");
|
|
|
|
*version = trueVersion;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Everything
|
|
|
|
target->Line.push_back(new AssEntry(data, group));
|
|
|
|
}
|
|
|
|
// Unrecognized group
|
|
|
|
else {
|
|
|
|
target->Line.push_back(new AssEntry(data, group));
|
|
|
|
}
|
|
|
|
}
|