2006-01-16 22:02:54 +01:00
|
|
|
// Copyright (c) 2005, 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-01-16 22:02:54 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file ass_file.cpp
|
|
|
|
/// @brief Overall storage of subtitle files, undo management and more
|
|
|
|
/// @ingroup subs_storage
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2009-09-10 15:06:40 +02:00
|
|
|
#ifndef AGI_PRE
|
2010-06-22 02:03:33 +02:00
|
|
|
#include <algorithm>
|
2006-01-19 02:42:39 +01:00
|
|
|
#include <fstream>
|
2012-01-08 02:04:37 +01:00
|
|
|
#include <inttypes.h>
|
2009-09-10 15:06:40 +02:00
|
|
|
#include <list>
|
|
|
|
|
2006-07-01 06:35:50 +02:00
|
|
|
#include <wx/filename.h>
|
2007-09-12 01:22:26 +02:00
|
|
|
#include <wx/log.h>
|
|
|
|
#include <wx/msgdlg.h>
|
2009-09-10 15:06:40 +02:00
|
|
|
#endif
|
|
|
|
|
2006-06-30 23:59:20 +02:00
|
|
|
#include "ass_attachment.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "ass_dialogue.h"
|
|
|
|
#include "ass_file.h"
|
|
|
|
#include "ass_override.h"
|
|
|
|
#include "ass_style.h"
|
2010-05-21 03:13:36 +02:00
|
|
|
#include "compat.h"
|
|
|
|
#include "main.h"
|
2011-01-16 08:16:33 +01:00
|
|
|
#include "standard_paths.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "subtitle_format.h"
|
2006-01-16 22:02:54 +01:00
|
|
|
#include "text_file_reader.h"
|
|
|
|
#include "text_file_writer.h"
|
2010-06-24 03:23:43 +02:00
|
|
|
#include "utils.h"
|
2006-01-16 22:02:54 +01:00
|
|
|
#include "version.h"
|
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
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
namespace std {
|
|
|
|
template<>
|
|
|
|
void swap(AssFile &lft, AssFile &rgt) {
|
|
|
|
lft.swap(rgt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AssFile::AssFile ()
|
2011-09-29 20:17:27 +02:00
|
|
|
: commitId(0)
|
2010-08-02 22:25:29 +02:00
|
|
|
, loaded(false)
|
2010-07-09 09:31:34 +02:00
|
|
|
{
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AssFile::~AssFile() {
|
2012-02-01 01:47:28 +01:00
|
|
|
background_delete_clear(Line);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2010-07-20 05:11:11 +02:00
|
|
|
/// @brief Load generic subs
|
2012-02-10 01:04:05 +01:00
|
|
|
void AssFile::Load(const wxString &_filename, wxString charset, bool addToRecent) {
|
2006-01-16 22:02:54 +01:00
|
|
|
try {
|
2006-02-27 01:06:46 +01:00
|
|
|
// Get proper format reader
|
2012-01-26 21:08:38 +01:00
|
|
|
const SubtitleFormat *reader = SubtitleFormat::GetReader(_filename);
|
2010-09-15 04:46:19 +02:00
|
|
|
if (!reader) {
|
2012-03-29 01:59:19 +02:00
|
|
|
wxMessageBox("Unknown file type","Error loading file",wxOK | wxICON_ERROR | wxCENTER);
|
2010-09-15 04:46:19 +02:00
|
|
|
return;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2010-09-15 04:46:19 +02:00
|
|
|
AssFile temp;
|
2012-01-26 21:08:38 +01:00
|
|
|
reader->ReadFile(&temp, _filename, charset);
|
2012-02-16 22:21:35 +01:00
|
|
|
|
|
|
|
bool found_style = false;
|
|
|
|
bool found_dialogue = false;
|
|
|
|
|
|
|
|
// Check if the file has at least one style and at least one dialogue line
|
|
|
|
for (entryIter it = temp.Line.begin(); it != temp.Line.end(); ++it) {
|
|
|
|
ASS_EntryType type = (*it)->GetType();
|
|
|
|
if (type == ENTRY_STYLE) found_style = true;
|
|
|
|
if (type == ENTRY_DIALOGUE) found_dialogue = true;
|
|
|
|
if (found_style && found_dialogue) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// And if it doesn't add defaults for each
|
|
|
|
if (!found_style)
|
|
|
|
temp.InsertStyle(new AssStyle);
|
|
|
|
if (!found_dialogue)
|
|
|
|
temp.InsertDialogue(new AssDialogue);
|
|
|
|
|
2010-09-15 04:46:19 +02:00
|
|
|
swap(temp);
|
|
|
|
}
|
|
|
|
catch (agi::UserCancelException const&) {
|
|
|
|
return;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2010-06-20 21:03:05 +02:00
|
|
|
// Real exception
|
|
|
|
catch (agi::Exception &e) {
|
2012-03-29 01:59:19 +02:00
|
|
|
wxMessageBox(lagi_wxString(e.GetChainedMessage()), "Error loading file", wxOK | wxICON_ERROR | wxCENTER);
|
2010-09-15 04:46:19 +02:00
|
|
|
return;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
// Other error
|
|
|
|
catch (...) {
|
2012-03-29 01:59:19 +02:00
|
|
|
wxMessageBox("Unknown error","Error loading file",wxOK | wxICON_ERROR | wxCENTER);
|
2010-09-15 04:46:19 +02:00
|
|
|
return;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set general data
|
|
|
|
loaded = true;
|
2010-09-15 04:46:19 +02:00
|
|
|
filename = _filename;
|
2012-02-10 01:04:05 +01:00
|
|
|
StandardPaths::SetPathValue("?script", wxFileName(filename).GetPath());
|
2011-01-16 08:16:33 +01:00
|
|
|
|
|
|
|
// Save backup of file
|
|
|
|
if (CanSave() && OPT_GET("App/Auto/Backup")->GetBool()) {
|
|
|
|
wxFileName file(filename);
|
|
|
|
if (file.FileExists()) {
|
|
|
|
wxString path = lagi_wxString(OPT_GET("Path/Auto/Backup")->GetString());
|
|
|
|
if (path.empty()) path = file.GetPath();
|
2012-01-27 22:32:48 +01:00
|
|
|
wxFileName dstpath(StandardPaths::DecodePath(path + "/"));
|
2012-01-08 02:34:37 +01:00
|
|
|
if (!dstpath.DirExists())
|
|
|
|
wxMkdir(dstpath.GetPath());
|
2011-01-16 08:16:33 +01:00
|
|
|
|
2012-01-08 02:34:37 +01:00
|
|
|
dstpath.SetFullName(file.GetName() + ".ORIGINAL." + file.GetExt());
|
2011-01-16 08:16:33 +01:00
|
|
|
|
2012-01-08 02:34:37 +01:00
|
|
|
wxCopyFile(file.GetFullPath(), dstpath.GetFullPath(), true);
|
2011-01-16 08:16:33 +01:00
|
|
|
}
|
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
// Add comments and set vars
|
2011-07-28 00:52:37 +02:00
|
|
|
AddComment(wxString("Script generated by Aegisub ") + GetAegisubLongVersionString());
|
2011-09-28 21:43:11 +02:00
|
|
|
AddComment("http://www.aegisub.org/");
|
|
|
|
SetScriptInfo("ScriptType","v4.00+");
|
2006-12-26 05:48:53 +01:00
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
// Push the initial state of the file onto the undo stack
|
2010-09-15 04:46:19 +02:00
|
|
|
UndoStack.clear();
|
|
|
|
RedoStack.clear();
|
|
|
|
undoDescription.clear();
|
2012-01-18 21:08:06 +01:00
|
|
|
autosavedCommitId = savedCommitId = commitId + 1;
|
2011-09-15 07:16:32 +02:00
|
|
|
Commit("", COMMIT_NEW);
|
2010-07-09 09:31:34 +02:00
|
|
|
|
2006-12-26 05:48:53 +01:00
|
|
|
// Add to recent
|
2011-01-16 08:16:33 +01:00
|
|
|
if (addToRecent) AddToRecent(filename);
|
|
|
|
FileOpen(filename);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-01-16 08:16:40 +01:00
|
|
|
void AssFile::Save(wxString filename, bool setfilename, bool addToRecent, wxString encoding) {
|
2012-01-26 21:08:38 +01:00
|
|
|
const SubtitleFormat *writer = SubtitleFormat::GetWriter(filename);
|
2011-01-16 08:16:40 +01:00
|
|
|
if (!writer)
|
|
|
|
throw "Unknown file type.";
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-01-16 08:16:40 +01:00
|
|
|
if (setfilename) {
|
2012-01-18 21:08:06 +01:00
|
|
|
autosavedCommitId = savedCommitId = commitId;
|
2011-09-28 21:50:59 +02:00
|
|
|
this->filename = filename;
|
2011-11-06 18:18:14 +01:00
|
|
|
StandardPaths::SetPathValue("?script", wxFileName(filename).GetPath());
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-01-16 08:16:40 +01:00
|
|
|
FileSave();
|
2006-02-27 22:57:10 +01:00
|
|
|
|
2012-01-26 21:08:38 +01:00
|
|
|
writer->WriteFile(this, filename, encoding);
|
2006-02-27 21:22:15 +01:00
|
|
|
|
2011-01-16 08:16:40 +01:00
|
|
|
if (addToRecent) {
|
|
|
|
AddToRecent(filename);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-29 20:17:27 +02:00
|
|
|
wxString AssFile::AutoSave() {
|
|
|
|
if (!loaded || commitId == autosavedCommitId)
|
|
|
|
return "";
|
|
|
|
|
|
|
|
wxFileName origfile(filename);
|
|
|
|
wxString path = lagi_wxString(OPT_GET("Path/Auto/Save")->GetString());
|
|
|
|
if (!path)
|
|
|
|
path = origfile.GetPath();
|
2012-01-27 22:32:48 +01:00
|
|
|
path = StandardPaths::DecodePath(path + "/");
|
2011-09-29 20:17:27 +02:00
|
|
|
|
|
|
|
wxFileName dstpath(path);
|
|
|
|
if (!dstpath.DirExists())
|
|
|
|
wxMkdir(path);
|
|
|
|
|
|
|
|
wxString name = origfile.GetName();
|
|
|
|
if (name.empty())
|
|
|
|
dstpath.SetFullName("Untitled.AUTOSAVE.ass");
|
|
|
|
else
|
|
|
|
dstpath.SetFullName(name + ".AUTOSAVE.ass");
|
|
|
|
|
|
|
|
Save(dstpath.GetFullPath(), false, false);
|
|
|
|
|
|
|
|
autosavedCommitId = commitId;
|
|
|
|
|
|
|
|
return dstpath.GetFullPath();
|
|
|
|
}
|
|
|
|
|
2012-01-08 02:33:19 +01:00
|
|
|
void AssFile::SaveMemory(std::vector<char> &dst) {
|
2007-10-29 03:09:45 +01:00
|
|
|
// Check if subs contain at least one style
|
|
|
|
// Add a default style if they don't for compatibility with libass/asa
|
|
|
|
if (GetStyles().Count() == 0)
|
2012-01-08 02:33:19 +01:00
|
|
|
InsertStyle(new AssStyle);
|
2007-10-29 03:09:45 +01:00
|
|
|
|
2007-01-26 23:55:42 +01:00
|
|
|
// Prepare vector
|
|
|
|
dst.clear();
|
|
|
|
dst.reserve(0x4000);
|
|
|
|
|
|
|
|
// Write file
|
2012-01-08 02:33:19 +01:00
|
|
|
for (entryIter cur = Line.begin(); cur != Line.end(); ++cur) {
|
|
|
|
wxCharBuffer buffer = ((*cur)->GetEntryData() + "\r\n").utf8_str();
|
|
|
|
copy(buffer.data(), buffer.data() + buffer.length(), back_inserter(dst));
|
2007-01-26 23:55:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-29 01:58:40 +02:00
|
|
|
bool AssFile::CanSave() const {
|
|
|
|
const SubtitleFormat *writer = SubtitleFormat::GetWriter(filename);
|
|
|
|
return writer && writer->CanSave(this);
|
2006-06-29 00:51:33 +02:00
|
|
|
}
|
|
|
|
|
2012-01-08 02:34:30 +01:00
|
|
|
void AssFile::AddLine(wxString data, int *version, AssAttachment **attach) {
|
|
|
|
// Is this line an attachment filename?
|
|
|
|
bool isFilename = data.StartsWith("fontname: ") || data.StartsWith("filename: ");
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-01-08 02:34:30 +01:00
|
|
|
// If there's an attachment in progress, deal with it first as an
|
|
|
|
// attachment data line can appear to be other things
|
|
|
|
if (*attach) {
|
2006-06-30 23:59:20 +02:00
|
|
|
// Check if it's valid data
|
2012-01-08 02:34:30 +01:00
|
|
|
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;
|
|
|
|
}
|
2006-06-30 23:59:20 +02:00
|
|
|
}
|
|
|
|
|
2012-01-08 02:34:30 +01:00
|
|
|
// Data is over, add attachment to the file
|
|
|
|
if (!validData || isFilename) {
|
|
|
|
(*attach)->Finish();
|
|
|
|
Line.push_back(*attach);
|
|
|
|
*attach = NULL;
|
2006-07-01 01:37:30 +02:00
|
|
|
}
|
2012-01-08 02:34:30 +01:00
|
|
|
else {
|
2006-06-30 23:59:20 +02:00
|
|
|
// Insert data
|
2012-01-08 02:34:30 +01:00
|
|
|
(*attach)->AddData(data);
|
2006-06-30 23:59:20 +02:00
|
|
|
|
|
|
|
// Done building
|
|
|
|
if (data.Length() < 80) {
|
2012-01-08 02:34:30 +01:00
|
|
|
(*attach)->Finish();
|
|
|
|
Line.push_back(*attach);
|
|
|
|
*attach = NULL;
|
2010-05-19 02:44:44 +02:00
|
|
|
return;
|
2006-07-01 02:54:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-08 02:34:30 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
else if (low == "[v4++ styles]") {
|
|
|
|
data = "[V4+ Styles]";
|
|
|
|
*version = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
Line.push_back(new AssEntry(data, data));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the first nonblank line isn't a header pretend it starts with [Script Info]
|
|
|
|
if (Line.empty())
|
|
|
|
Line.push_back(new AssEntry("[Script Info]", "[Script Info]"));
|
|
|
|
|
|
|
|
wxString group = Line.back()->group;
|
|
|
|
wxString lowGroup = group.Lower();
|
|
|
|
|
|
|
|
// Attachment
|
|
|
|
if (lowGroup == "[fonts]" || lowGroup == "[graphics]") {
|
|
|
|
if (isFilename) {
|
2012-02-01 01:47:38 +01:00
|
|
|
*attach = new AssAttachment(data.Mid(10), group);
|
2012-01-08 02:34:30 +01:00
|
|
|
}
|
|
|
|
}
|
2006-07-01 02:54:33 +02:00
|
|
|
// Dialogue
|
2011-09-28 21:43:11 +02:00
|
|
|
else if (lowGroup == "[events]") {
|
2011-12-26 23:20:49 +01:00
|
|
|
if (data.StartsWith("Dialogue:") || data.StartsWith("Comment:"))
|
2012-01-08 02:34:30 +01:00
|
|
|
Line.push_back(new AssDialogue(data, *version));
|
2011-12-26 23:20:49 +01:00
|
|
|
else if (data.StartsWith("Format:"))
|
|
|
|
Line.push_back(new AssEntry("Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text", group));
|
2006-07-01 02:54:33 +02:00
|
|
|
}
|
|
|
|
// Style
|
2011-09-28 21:43:11 +02:00
|
|
|
else if (lowGroup == "[v4+ styles]") {
|
2011-12-26 23:20:49 +01:00
|
|
|
if (data.StartsWith("Style:"))
|
2012-01-08 02:34:30 +01:00
|
|
|
Line.push_back(new AssStyle(data, *version));
|
2011-12-26 23:20:49 +01:00
|
|
|
else if (data.StartsWith("Format:"))
|
|
|
|
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));
|
2006-06-30 23:59:20 +02:00
|
|
|
}
|
|
|
|
// Script info
|
2011-09-28 21:43:11 +02:00
|
|
|
else if (lowGroup == "[script info]") {
|
2006-06-30 23:59:20 +02:00
|
|
|
// Comment
|
2011-09-28 21:43:11 +02:00
|
|
|
if (data.StartsWith(";")) {
|
2006-01-16 22:02:54 +01:00
|
|
|
// Skip stupid comments added by other programs
|
2006-06-30 23:59:20 +02:00
|
|
|
// Of course, we'll add our own in place later... ;)
|
2010-05-19 02:44:44 +02:00
|
|
|
return;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2006-06-30 23:59:20 +02:00
|
|
|
|
2011-09-28 21:43:11 +02:00
|
|
|
if (data.StartsWith("ScriptType:")) {
|
2012-01-08 02:34:30 +01:00
|
|
|
wxString versionString = data.Mid(11).Trim(true).Trim(false).Lower();
|
2007-01-08 02:00:44 +01:00
|
|
|
int trueVersion;
|
2012-01-08 02:34:30 +01:00
|
|
|
if (versionString == "v4.00")
|
|
|
|
trueVersion = 0;
|
|
|
|
else if (versionString == "v4.00+")
|
|
|
|
trueVersion = 1;
|
|
|
|
else if (versionString == "v4.00++")
|
|
|
|
trueVersion = 2;
|
|
|
|
else throw
|
|
|
|
"Unknown SSA file format version";
|
|
|
|
if (trueVersion != *version) {
|
2012-05-15 16:06:49 +02:00
|
|
|
if (!(trueVersion == 2 && *version == 1)) {
|
2012-01-08 02:34:30 +01:00
|
|
|
wxLogMessage("Warning: File has the wrong extension.");
|
2012-05-15 16:06:49 +02:00
|
|
|
}
|
2012-01-08 02:34:30 +01:00
|
|
|
*version = trueVersion;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
}
|
2006-06-30 23:59:20 +02:00
|
|
|
|
|
|
|
// Everything
|
2011-12-26 23:20:49 +01:00
|
|
|
Line.push_back(new AssEntry(data, group));
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2011-12-26 23:20:49 +01:00
|
|
|
// Unrecognized group
|
|
|
|
else {
|
|
|
|
Line.push_back(new AssEntry(data, group));
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-24 03:23:43 +02:00
|
|
|
void AssFile::Clear() {
|
2012-02-01 01:47:28 +01:00
|
|
|
background_delete_clear(Line);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
loaded = false;
|
2010-06-24 03:23:43 +02:00
|
|
|
filename.clear();
|
2010-07-09 09:31:34 +02:00
|
|
|
UndoStack.clear();
|
|
|
|
RedoStack.clear();
|
|
|
|
undoDescription.clear();
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-01-16 08:16:33 +01:00
|
|
|
void AssFile::LoadDefault(bool defline) {
|
2006-01-16 22:02:54 +01:00
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Write headers
|
2012-01-08 02:34:30 +01:00
|
|
|
AssAttachment *attach = 0;
|
2007-01-08 02:00:44 +01:00
|
|
|
int version = 1;
|
2012-01-08 02:34:30 +01:00
|
|
|
AddLine("[Script Info]", &version, &attach);
|
|
|
|
AddLine("Title: Default Aegisub file", &version, &attach);
|
|
|
|
AddLine("ScriptType: v4.00+", &version, &attach);
|
|
|
|
AddLine("WrapStyle: 0", &version, &attach);
|
|
|
|
AddLine("ScaledBorderAndShadow: yes", &version, &attach);
|
|
|
|
AddLine("Collisions: Normal", &version, &attach);
|
2012-01-08 02:04:37 +01:00
|
|
|
if (!OPT_GET("Subtitle/Default Resolution/Auto")->GetBool()) {
|
2012-01-08 02:34:30 +01:00
|
|
|
AddLine(wxString::Format("PlayResX: %" PRId64, OPT_GET("Subtitle/Default Resolution/Width")->GetInt()), &version, &attach);
|
|
|
|
AddLine(wxString::Format("PlayResY: %" PRId64, OPT_GET("Subtitle/Default Resolution/Height")->GetInt()), &version, &attach);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2012-05-11 16:38:44 +02:00
|
|
|
AddLine("YCbCr Matrix: None", &version, &attach);
|
2012-02-16 22:21:35 +01:00
|
|
|
|
|
|
|
InsertStyle(new AssStyle);
|
|
|
|
|
2012-01-08 02:34:30 +01:00
|
|
|
AddLine("[Events]", &version, &attach);
|
|
|
|
AddLine("Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text", &version, &attach);
|
|
|
|
|
|
|
|
if (defline)
|
2012-02-16 22:21:35 +01:00
|
|
|
Line.push_back(new AssDialogue);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-01-18 21:08:06 +01:00
|
|
|
autosavedCommitId = savedCommitId = commitId + 1;
|
2011-09-15 07:16:32 +02:00
|
|
|
Commit("", COMMIT_NEW);
|
2006-01-16 22:02:54 +01:00
|
|
|
loaded = true;
|
2011-01-16 08:16:33 +01:00
|
|
|
StandardPaths::SetPathValue("?script", "");
|
|
|
|
FileOpen("");
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
void AssFile::swap(AssFile &that) throw() {
|
|
|
|
// Intentionally does not swap undo stack related things
|
|
|
|
std::swap(loaded, that.loaded);
|
|
|
|
std::swap(commitId, that.commitId);
|
|
|
|
std::swap(undoDescription, that.undoDescription);
|
|
|
|
std::swap(Line, that.Line);
|
|
|
|
}
|
|
|
|
|
|
|
|
AssFile::AssFile(const AssFile &from)
|
|
|
|
: undoDescription(from.undoDescription)
|
|
|
|
, commitId(from.commitId)
|
|
|
|
, filename(from.filename)
|
|
|
|
, loaded(from.loaded)
|
|
|
|
{
|
2010-06-22 02:03:33 +02:00
|
|
|
std::transform(from.Line.begin(), from.Line.end(), std::back_inserter(Line), std::mem_fun(&AssEntry::Clone));
|
|
|
|
}
|
|
|
|
AssFile& AssFile::operator=(AssFile from) {
|
2010-07-09 09:31:34 +02:00
|
|
|
std::swap(*this, from);
|
2010-06-22 02:03:33 +02:00
|
|
|
return *this;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2012-02-16 22:21:35 +01:00
|
|
|
static bool try_insert(std::list<AssEntry*> &lines, AssEntry *entry) {
|
|
|
|
if (lines.empty()) return false;
|
|
|
|
|
2012-01-08 02:34:30 +01:00
|
|
|
// Search for insertion point
|
2012-02-16 22:21:35 +01:00
|
|
|
std::list<AssEntry*>::iterator it = lines.end();
|
2012-01-08 02:34:30 +01:00
|
|
|
do {
|
|
|
|
--it;
|
2012-02-16 22:21:35 +01:00
|
|
|
if ((*it)->group == entry->group) {
|
|
|
|
lines.insert(++it, entry);
|
|
|
|
return true;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2012-02-16 22:21:35 +01:00
|
|
|
} while (it != lines.begin());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AssFile::InsertStyle(AssStyle *style) {
|
|
|
|
if (try_insert(Line, style)) return;
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
// No styles found, add them
|
2012-01-08 02:34:30 +01:00
|
|
|
Line.push_back(new AssEntry("[V4+ Styles]", "[V4+ Styles]"));
|
|
|
|
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", "[V4+ Styles]"));
|
|
|
|
Line.push_back(style);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2012-01-08 02:34:30 +01:00
|
|
|
void AssFile::InsertAttachment(AssAttachment *attach) {
|
2012-02-16 22:21:35 +01:00
|
|
|
if (try_insert(Line, attach)) return;
|
2006-07-01 06:08:01 +02:00
|
|
|
|
2012-01-08 02:34:30 +01:00
|
|
|
// Didn't find a group of the appropriate type so create it
|
|
|
|
Line.push_back(new AssEntry(attach->group, attach->group));
|
|
|
|
Line.push_back(attach);
|
2006-07-01 06:08:01 +02:00
|
|
|
}
|
|
|
|
|
2012-02-01 01:47:38 +01:00
|
|
|
void AssFile::InsertAttachment(wxString filename) {
|
|
|
|
wxString group("[Graphics]");
|
2006-07-01 06:35:50 +02:00
|
|
|
|
2007-07-30 02:25:26 +02:00
|
|
|
wxString ext = filename.Right(4).Lower();
|
2012-01-08 02:34:30 +01:00
|
|
|
if (ext == ".ttf" || ext == ".ttc" || ext == ".pfb")
|
2012-02-01 01:47:38 +01:00
|
|
|
group = "[Fonts]";
|
|
|
|
|
|
|
|
std::auto_ptr<AssAttachment> newAttach(new AssAttachment(wxFileName(filename).GetFullName(), group));
|
|
|
|
newAttach->Import(filename);
|
|
|
|
|
2012-01-08 02:34:30 +01:00
|
|
|
InsertAttachment(newAttach.release());
|
2006-07-01 06:35:50 +02:00
|
|
|
}
|
|
|
|
|
2012-02-16 22:21:35 +01:00
|
|
|
void AssFile::InsertDialogue(AssDialogue *diag) {
|
|
|
|
if (try_insert(Line, diag)) return;
|
|
|
|
|
|
|
|
// Didn't find a group of the appropriate type so create it
|
|
|
|
Line.push_back(new AssEntry("[Events]", "[Events]"));
|
|
|
|
Line.push_back(new AssEntry("Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text", "[Events]"));
|
|
|
|
Line.push_back(diag);
|
|
|
|
}
|
|
|
|
|
2012-03-20 01:39:10 +01:00
|
|
|
wxString AssFile::GetScriptInfo(wxString key) const {
|
2011-11-04 20:41:43 +01:00
|
|
|
key.MakeLower();
|
2011-09-28 21:43:11 +02:00
|
|
|
key += ":";
|
2006-01-16 22:02:54 +01:00
|
|
|
bool GotIn = false;
|
|
|
|
|
2012-03-20 01:39:10 +01:00
|
|
|
for (std::list<AssEntry*>::const_iterator cur = Line.begin(); cur != Line.end(); ++cur) {
|
2011-09-28 21:43:11 +02:00
|
|
|
if ((*cur)->group == "[Script Info]") {
|
2006-01-16 22:02:54 +01:00
|
|
|
GotIn = true;
|
2006-02-27 03:23:50 +01:00
|
|
|
wxString curText = (*cur)->GetEntryData();
|
2011-11-28 23:16:50 +01:00
|
|
|
if (curText.Lower().StartsWith(key))
|
|
|
|
return curText.Mid(key.size()).Trim(true).Trim(false);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2011-10-25 03:16:36 +02:00
|
|
|
else if (GotIn) return "";
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2010-06-16 08:20:14 +02:00
|
|
|
return "";
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2012-03-20 01:39:10 +01:00
|
|
|
int AssFile::GetScriptInfoAsInt(const wxString key) const {
|
2006-01-16 22:02:54 +01:00
|
|
|
long temp = 0;
|
2011-10-25 03:16:47 +02:00
|
|
|
GetScriptInfo(key).ToLong(&temp);
|
2006-01-16 22:02:54 +01:00
|
|
|
return temp;
|
|
|
|
}
|
|
|
|
|
2011-08-27 08:42:10 +02:00
|
|
|
void AssFile::SetScriptInfo(wxString const& key, wxString const& value) {
|
|
|
|
wxString search_key = key.Lower() + ":";
|
|
|
|
size_t key_size = search_key.size();
|
|
|
|
std::list<AssEntry*>::iterator script_info_end;
|
|
|
|
bool found_script_info = false;
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-08-27 08:42:10 +02:00
|
|
|
for (std::list<AssEntry*>::iterator cur = Line.begin(); cur != Line.end(); ++cur) {
|
2011-09-28 21:43:11 +02:00
|
|
|
if ((*cur)->group == "[Script Info]") {
|
2011-08-27 08:42:10 +02:00
|
|
|
found_script_info = true;
|
|
|
|
wxString cur_text = (*cur)->GetEntryData().Left(key_size).Lower();
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-08-27 08:42:10 +02:00
|
|
|
if (cur_text == search_key) {
|
|
|
|
if (value.empty()) {
|
|
|
|
delete *cur;
|
|
|
|
Line.erase(cur);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
else {
|
2011-08-27 08:42:10 +02:00
|
|
|
(*cur)->SetEntryData(key + ": " + value);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2011-08-27 08:42:10 +02:00
|
|
|
script_info_end = cur;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2011-08-27 08:42:10 +02:00
|
|
|
else if (found_script_info) {
|
2012-02-01 01:47:38 +01:00
|
|
|
if (value.size())
|
|
|
|
Line.insert(script_info_end, new AssEntry(key + ": " + value, "[Script Info]"));
|
2006-01-16 22:02:54 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2012-02-16 22:21:55 +01:00
|
|
|
|
|
|
|
// Found a script info section, but not this key or anything after it,
|
|
|
|
// so add it at the end of the file
|
|
|
|
if (found_script_info)
|
|
|
|
Line.push_back(new AssEntry(key + ": " + value, "[Script Info]"));
|
|
|
|
// Script info section not found, so add it at the beginning of the file
|
|
|
|
else {
|
|
|
|
Line.push_front(new AssEntry(key + ": " + value, "[Script Info]"));
|
|
|
|
Line.push_front(new AssEntry("[Script Info]", "[Script Info]"));
|
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2012-03-20 01:39:10 +01:00
|
|
|
void AssFile::GetResolution(int &sw,int &sh) const {
|
2011-10-25 03:16:56 +02:00
|
|
|
sw = GetScriptInfoAsInt("PlayResX");
|
|
|
|
sh = GetScriptInfoAsInt("PlayResY");
|
2007-05-03 19:19:50 +02:00
|
|
|
|
|
|
|
// Gabest logic?
|
|
|
|
if (sw == 0 && sh == 0) {
|
|
|
|
sw = 384;
|
|
|
|
sh = 288;
|
|
|
|
} else if (sw == 0) {
|
|
|
|
if (sh == 1024)
|
|
|
|
sw = 1280;
|
|
|
|
else
|
|
|
|
sw = sh * 4 / 3;
|
|
|
|
} else if (sh == 0) {
|
2010-06-16 08:20:14 +02:00
|
|
|
// you are not crazy; this doesn't make any sense
|
2007-05-03 19:19:50 +02:00
|
|
|
if (sw == 1280)
|
|
|
|
sh = 1024;
|
|
|
|
else
|
|
|
|
sh = sw * 3 / 4;
|
|
|
|
}
|
2006-07-01 09:22:57 +02:00
|
|
|
}
|
|
|
|
|
2012-01-08 02:34:30 +01:00
|
|
|
void AssFile::AddComment(wxString comment) {
|
|
|
|
comment.Prepend("; ");
|
2006-01-16 22:02:54 +01:00
|
|
|
int step = 0;
|
|
|
|
|
2012-01-08 02:34:30 +01:00
|
|
|
for (std::list<AssEntry*>::iterator cur = Line.begin(); cur != Line.end(); ++cur) {
|
2006-01-16 22:02:54 +01:00
|
|
|
// Start of group
|
2012-01-08 02:34:30 +01:00
|
|
|
if (step == 0 && (*cur)->group == "[Script Info]")
|
|
|
|
step = 1;
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
// First line after a ;
|
2011-09-28 21:43:11 +02:00
|
|
|
else if (step == 1 && !(*cur)->GetEntryData().StartsWith(";")) {
|
2012-01-08 02:34:30 +01:00
|
|
|
Line.insert(cur, new AssEntry(comment, "[Script Info]"));
|
2006-01-16 22:02:54 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-20 01:39:10 +01:00
|
|
|
wxArrayString AssFile::GetStyles() const {
|
2006-01-16 22:02:54 +01:00
|
|
|
wxArrayString styles;
|
2012-03-20 01:39:10 +01:00
|
|
|
for (std::list<AssEntry*>::const_iterator cur = Line.begin(); cur != Line.end(); ++cur) {
|
2012-01-08 02:34:30 +01:00
|
|
|
if (AssStyle *curstyle = dynamic_cast<AssStyle*>(*cur))
|
2006-01-16 22:02:54 +01:00
|
|
|
styles.Add(curstyle->name);
|
|
|
|
}
|
|
|
|
return styles;
|
|
|
|
}
|
|
|
|
|
|
|
|
AssStyle *AssFile::GetStyle(wxString name) {
|
|
|
|
for (entryIter cur=Line.begin();cur!=Line.end();cur++) {
|
2010-06-16 08:20:14 +02:00
|
|
|
AssStyle *curstyle = dynamic_cast<AssStyle*>(*cur);
|
|
|
|
if (curstyle && curstyle->name == name)
|
|
|
|
return curstyle;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AssFile::AddToRecent(wxString file) {
|
2010-06-18 04:23:27 +02:00
|
|
|
config::mru->Add("Subtitle", STD_STR(file));
|
2011-01-16 08:16:40 +01:00
|
|
|
wxFileName filepath(file);
|
|
|
|
OPT_SET("Path/Last/Subtitles")->SetString(STD_STR(filepath.GetPath()));
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2006-12-26 05:48:53 +01:00
|
|
|
wxString AssFile::GetWildcardList(int mode) {
|
2006-12-26 19:26:13 +01:00
|
|
|
if (mode == 0) return SubtitleFormat::GetWildcards(0);
|
2011-09-28 21:43:11 +02:00
|
|
|
else if (mode == 1) return "Advanced Substation Alpha (*.ass)|*.ass";
|
2006-12-26 19:26:13 +01:00
|
|
|
else if (mode == 2) return SubtitleFormat::GetWildcards(1);
|
2010-07-20 05:11:11 +02:00
|
|
|
else return "";
|
2006-12-26 05:48:53 +01:00
|
|
|
}
|
|
|
|
|
2011-09-28 21:44:24 +02:00
|
|
|
int AssFile::Commit(wxString desc, int type, int amendId, AssEntry *single_line) {
|
2010-07-09 09:31:34 +02:00
|
|
|
++commitId;
|
|
|
|
// Allow coalescing only if it's the last change and the file has not been
|
2010-09-15 04:46:19 +02:00
|
|
|
// saved since the last change
|
2011-09-29 20:17:27 +02:00
|
|
|
if (commitId == amendId+1 && RedoStack.empty() && savedCommitId+1 != commitId && autosavedCommitId+1 != commitId) {
|
2011-09-28 21:44:24 +02:00
|
|
|
// If only one line changed just modify it instead of copying the file
|
|
|
|
if (single_line) {
|
|
|
|
entryIter this_it = Line.begin(), undo_it = UndoStack.back().Line.begin();
|
|
|
|
while (*this_it != single_line) {
|
|
|
|
++this_it;
|
|
|
|
++undo_it;
|
|
|
|
}
|
2011-12-22 22:31:18 +01:00
|
|
|
delete *undo_it;
|
|
|
|
*undo_it = single_line->Clone();
|
2011-09-28 21:44:24 +02:00
|
|
|
}
|
|
|
|
else {
|
2011-09-15 07:16:32 +02:00
|
|
|
UndoStack.back() = *this;
|
2011-09-28 21:44:24 +02:00
|
|
|
}
|
2010-12-07 20:09:28 +01:00
|
|
|
AnnounceCommit(type);
|
2010-07-09 09:31:34 +02:00
|
|
|
return commitId;
|
2006-02-20 22:32:58 +01:00
|
|
|
}
|
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
RedoStack.clear();
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
// Place copy on stack
|
|
|
|
undoDescription = desc;
|
|
|
|
UndoStack.push_back(*this);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
// Cap depth
|
2012-01-19 20:45:49 +01:00
|
|
|
int depth = std::max<int>(OPT_GET("Limits/Undo Levels")->GetInt(), 2);
|
2010-07-09 09:31:34 +02:00
|
|
|
while ((int)UndoStack.size() > depth) {
|
2006-02-20 22:32:58 +01:00
|
|
|
UndoStack.pop_front();
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2007-01-26 01:47:42 +01:00
|
|
|
|
2012-01-19 20:46:01 +01:00
|
|
|
if (UndoStack.size() > 1 && OPT_GET("App/Auto/Save on Every Change")->GetBool() && !filename.empty() && CanSave())
|
|
|
|
Save(filename);
|
2011-01-20 06:57:23 +01:00
|
|
|
|
2010-12-07 20:09:28 +01:00
|
|
|
AnnounceCommit(type);
|
2010-07-09 09:31:34 +02:00
|
|
|
return commitId;
|
2006-02-20 22:32:58 +01:00
|
|
|
}
|
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
void AssFile::Undo() {
|
|
|
|
if (UndoStack.size() <= 1) return;
|
2006-02-20 22:32:58 +01:00
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
RedoStack.push_back(AssFile());
|
|
|
|
std::swap(RedoStack.back(), *this);
|
|
|
|
UndoStack.pop_back();
|
|
|
|
*this = UndoStack.back();
|
2010-12-07 20:09:28 +01:00
|
|
|
|
2011-09-15 07:16:32 +02:00
|
|
|
AnnounceCommit(COMMIT_NEW);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
void AssFile::Redo() {
|
|
|
|
if (RedoStack.empty()) return;
|
2006-02-20 22:32:58 +01:00
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
std::swap(*this, RedoStack.back());
|
|
|
|
UndoStack.push_back(*this);
|
|
|
|
RedoStack.pop_back();
|
2010-12-07 20:09:28 +01:00
|
|
|
|
2011-09-15 07:16:32 +02:00
|
|
|
AnnounceCommit(COMMIT_NEW);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
wxString AssFile::GetUndoDescription() const {
|
|
|
|
return IsUndoStackEmpty() ? "" : UndoStack.back().undoDescription;
|
2007-01-26 01:47:42 +01:00
|
|
|
}
|
|
|
|
|
2010-07-09 09:31:34 +02:00
|
|
|
wxString AssFile::GetRedoDescription() const {
|
|
|
|
return IsRedoStackEmpty() ? "" : RedoStack.back().undoDescription;
|
2010-05-19 02:44:44 +02:00
|
|
|
}
|
2007-01-26 01:47:42 +01:00
|
|
|
|
2010-05-19 02:44:44 +02:00
|
|
|
bool AssFile::CompStart(const AssDialogue* lft, const AssDialogue* rgt) {
|
|
|
|
return lft->Start < rgt->Start;
|
|
|
|
}
|
|
|
|
bool AssFile::CompEnd(const AssDialogue* lft, const AssDialogue* rgt) {
|
|
|
|
return lft->End < rgt->End;
|
|
|
|
}
|
|
|
|
bool AssFile::CompStyle(const AssDialogue* lft, const AssDialogue* rgt) {
|
|
|
|
return lft->Style < rgt->Style;
|
2007-01-26 01:47:42 +01:00
|
|
|
}
|
2012-01-31 01:44:34 +01:00
|
|
|
bool AssFile::CompActor(const AssDialogue* lft, const AssDialogue* rgt) {
|
|
|
|
return lft->Actor < rgt->Actor;
|
|
|
|
}
|
|
|
|
bool AssFile::CompEffect(const AssDialogue* lft, const AssDialogue* rgt) {
|
|
|
|
return lft->Effect < rgt->Effect;
|
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-03-07 23:41:12 +01:00
|
|
|
void AssFile::Sort(CompFunc comp, std::set<AssDialogue*> const& limit) {
|
|
|
|
Sort(Line, comp, limit);
|
2010-05-19 02:44:44 +02:00
|
|
|
}
|
2010-05-19 05:24:07 +02:00
|
|
|
namespace {
|
|
|
|
struct AssEntryComp : public std::binary_function<const AssEntry*, const AssEntry*, bool> {
|
|
|
|
AssFile::CompFunc comp;
|
2010-05-19 02:44:44 +02:00
|
|
|
bool operator()(const AssEntry* a, const AssEntry* b) const {
|
|
|
|
return comp(static_cast<const AssDialogue*>(a), static_cast<const AssDialogue*>(b));
|
|
|
|
}
|
2010-05-19 05:24:07 +02:00
|
|
|
};
|
2012-03-07 23:41:12 +01:00
|
|
|
|
|
|
|
inline bool is_dialogue(AssEntry *e, std::set<AssDialogue*> const& limit) {
|
|
|
|
AssDialogue *d = dynamic_cast<AssDialogue*>(e);
|
|
|
|
return d && (limit.empty() || limit.count(d));
|
|
|
|
}
|
2010-05-19 05:24:07 +02:00
|
|
|
}
|
2012-03-07 23:41:12 +01:00
|
|
|
void AssFile::Sort(std::list<AssEntry*> &lst, CompFunc comp, std::set<AssDialogue*> const& limit) {
|
2010-05-19 05:24:07 +02:00
|
|
|
AssEntryComp compE;
|
2010-05-19 02:44:44 +02:00
|
|
|
compE.comp = comp;
|
|
|
|
// Sort each block of AssDialogues separately, leaving everything else untouched
|
|
|
|
for (entryIter begin = lst.begin(); begin != lst.end(); ++begin) {
|
2012-03-07 23:41:12 +01:00
|
|
|
if (!is_dialogue(*begin, limit)) continue;
|
2010-05-19 02:44:44 +02:00
|
|
|
entryIter end = begin;
|
2012-03-07 23:41:12 +01:00
|
|
|
while (end != lst.end() && is_dialogue(*end, limit)) ++end;
|
2010-05-19 02:44:44 +02:00
|
|
|
|
2010-07-20 05:11:11 +02:00
|
|
|
// used instead of std::list::sort for partial list sorting
|
2010-05-19 02:44:44 +02:00
|
|
|
std::list<AssEntry*> tmp;
|
|
|
|
tmp.splice(tmp.begin(), lst, begin, end);
|
|
|
|
tmp.sort(compE);
|
|
|
|
lst.splice(end, tmp);
|
|
|
|
|
|
|
|
begin = --end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void AssFile::Sort(std::list<AssDialogue*> &lst, CompFunc comp) {
|
|
|
|
lst.sort(comp);
|
|
|
|
}
|
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
|
|
|
|
2006-01-16 22:02:54 +01:00
|
|
|
AssFile *AssFile::top;
|