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
////////////
// Includes
2009-01-04 07:31:48 +01:00
# include "config.h"
2006-01-19 02:42:39 +01:00
# include <list>
# include <fstream>
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>
2006-01-16 22:02:54 +01:00
# include "ass_file.h"
# include "ass_dialogue.h"
# include "ass_style.h"
2006-06-30 23:59:20 +02:00
# include "ass_attachment.h"
2006-01-16 22:02:54 +01:00
# include "ass_override.h"
# include "ass_exporter.h"
# include "vfr.h"
# include "options.h"
# include "text_file_reader.h"
# include "text_file_writer.h"
# include "version.h"
2006-02-27 22:57:10 +01:00
# include "subtitle_format.h"
2006-01-16 22:02:54 +01:00
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
/// @brief AssFile constructor AssFile //////////////////////
///
2006-01-16 22:02:54 +01:00
AssFile : : AssFile ( ) {
AssOverrideTagProto : : LoadProtos ( ) ;
Clear ( ) ;
}
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
/// @brief AssFile destructor
///
2006-01-16 22:02:54 +01:00
AssFile : : ~ AssFile ( ) {
Clear ( ) ;
}
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
/// @brief Load generic subs
/// @param _filename
/// @param charset
/// @param addToRecent
///
2006-12-26 05:48:53 +01:00
void AssFile : : Load ( const wxString _filename , const wxString charset , bool addToRecent ) {
2006-01-16 22:02:54 +01:00
bool ok = true ;
try {
// Try to open file
2006-10-20 00:53:06 +02:00
FILE * file ;
# ifdef WIN32
file = _tfopen ( _filename . c_str ( ) , _T ( " r " ) ) ;
# else
2006-10-24 00:17:27 +02:00
file = fopen ( _filename . mb_str ( * wxConvFileName ) , " r " ) ;
2006-10-20 00:53:06 +02:00
# endif
if ( ! file ) {
2006-01-16 22:02:54 +01:00
throw _T ( " Unable to open file \" " ) + _filename + _T ( " \" . Check if it exists and if you have permissions to read it. " ) ;
}
2006-10-20 00:53:06 +02:00
fclose ( file ) ;
2006-01-16 22:02:54 +01:00
// Find file encoding
wxString enc ;
2006-02-20 22:32:58 +01:00
if ( charset . IsEmpty ( ) ) enc = TextFileReader : : GetEncoding ( _filename ) ;
2006-01-16 22:02:54 +01:00
else enc = charset ;
TextFileReader : : EnsureValid ( enc ) ;
// Generic preparation
Clear ( ) ;
2006-02-27 01:06:46 +01:00
// Get proper format reader
2006-02-27 22:57:10 +01:00
SubtitleFormat * reader = SubtitleFormat : : GetReader ( _filename ) ;
2006-01-16 22:02:54 +01:00
2006-02-27 01:06:46 +01:00
// Read file
if ( reader ) {
reader - > SetTarget ( this ) ;
reader - > ReadFile ( _filename , enc ) ;
2006-01-16 22:02:54 +01:00
}
// Couldn't find a type
2006-02-27 01:06:46 +01:00
else throw _T ( " Unknown file type. " ) ;
2006-01-16 22:02:54 +01:00
}
// String error
2006-04-14 18:46:38 +02:00
catch ( const wchar_t * except ) {
2006-01-16 22:02:54 +01:00
wxMessageBox ( except , _T ( " Error loading file " ) , wxICON_ERROR | wxOK ) ;
ok = false ;
}
catch ( wxString except ) {
wxMessageBox ( except , _T ( " Error loading file " ) , wxICON_ERROR | wxOK ) ;
ok = false ;
}
// Other error
catch ( . . . ) {
wxMessageBox ( _T ( " Unknown error " ) , _T ( " Error loading file " ) , wxICON_ERROR | wxOK ) ;
ok = false ;
}
// Verify loading
if ( ok ) filename = _filename ;
else LoadDefault ( ) ;
// Set general data
loaded = true ;
// Add comments and set vars
2006-05-07 14:38:33 +02:00
AddComment ( _T ( " Script generated by Aegisub " ) + GetAegisubLongVersionString ( ) ) ;
2006-01-16 22:02:54 +01:00
AddComment ( _T ( " http://www.aegisub.net " ) ) ;
SetScriptInfo ( _T ( " ScriptType " ) , _T ( " v4.00+ " ) ) ;
2006-12-26 05:48:53 +01:00
// Add to recent
if ( addToRecent ) AddToRecent ( _filename ) ;
2006-01-16 22:02:54 +01:00
}
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
/// @brief Save a file to Hard Disk
/// @param _filename
/// @param setfilename
/// @param addToRecent
/// @param encoding
///
2006-01-16 22:02:54 +01:00
void AssFile : : Save ( wxString _filename , bool setfilename , bool addToRecent , const wxString encoding ) {
// Finds last dot
int i = 0 ;
for ( i = ( int ) _filename . size ( ) ; - - i > = 0 ; ) {
if ( _filename [ i ] = = ' . ' ) break ;
}
wxString extension = _filename . substr ( i + 1 ) ;
extension . Lower ( ) ;
2006-02-27 22:57:10 +01:00
// Get writer
SubtitleFormat * writer = SubtitleFormat : : GetWriter ( _filename ) ;
2006-01-16 22:02:54 +01:00
2006-02-27 22:57:10 +01:00
// Write file
if ( writer ) {
writer - > SetTarget ( this ) ;
writer - > WriteFile ( _filename , encoding ) ;
2006-01-16 22:02:54 +01:00
}
2006-02-27 22:57:10 +01:00
// Couldn't find a type
else throw _T ( " Unknown file type. " ) ;
// Add to recent
if ( addToRecent ) AddToRecent ( _filename ) ;
2006-02-27 21:22:15 +01:00
// Done
if ( setfilename ) {
Modified = false ;
filename = _filename ;
2006-01-16 22:02:54 +01:00
}
}
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
/// @brief Saves a file to a ram vector
/// @param dst
/// @param encoding
///
2007-01-26 23:55:42 +01:00
void AssFile : : SaveMemory ( std : : vector < char > & dst , const wxString encoding ) {
// Set encoding
wxString enc = encoding ;
if ( enc . IsEmpty ( ) ) enc = _T ( " UTF-8 " ) ;
if ( enc ! = _T ( " UTF-8 " ) ) throw _T ( " Memory writer only supports UTF-8 for now. " ) ;
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 )
InsertStyle ( new AssStyle ( ) ) ;
2007-01-26 23:55:42 +01:00
// Prepare vector
dst . clear ( ) ;
dst . reserve ( 0x4000 ) ;
// Write file
entryIter cur ;
unsigned int lineSize = 0 ;
unsigned int targetSize = 0 ;
unsigned int pos = 0 ;
wxCharBuffer buffer ;
for ( cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
// Convert
wxString temp = ( * cur ) - > GetEntryData ( ) + _T ( " \r \n " ) ;
buffer = temp . mb_str ( wxConvUTF8 ) ;
lineSize = strlen ( buffer ) ;
// Raise capacity if needed
targetSize = dst . size ( ) + lineSize ;
if ( dst . capacity ( ) < targetSize ) {
unsigned int newSize = dst . capacity ( ) ;
while ( newSize < targetSize ) newSize * = 2 ;
dst . reserve ( newSize ) ;
}
// Append line
pos = dst . size ( ) ;
dst . resize ( targetSize ) ;
memcpy ( & dst [ pos ] , buffer , lineSize ) ;
}
}
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
/// @brief Exports file with proper transformations
/// @param _filename
///
2006-01-16 22:02:54 +01:00
void AssFile : : Export ( wxString _filename ) {
AssExporter exporter ( this ) ;
exporter . AddAutoFilters ( ) ;
2007-01-21 07:30:19 +01:00
exporter . Export ( _filename , _T ( " UTF-8 " ) ) ;
2006-01-16 22:02:54 +01:00
}
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
/// @brief Can save file?
/// @return
///
2006-06-29 00:51:33 +02:00
bool AssFile : : CanSave ( ) {
// ASS format?
2008-03-07 00:36:43 +01:00
wxString ext = filename . Lower ( ) . Right ( 4 ) ;
if ( ext = = _T ( " .ass " ) ) return true ;
// Never save texts
if ( ext = = _T ( " .txt " ) ) return false ;
2006-06-29 00:51:33 +02:00
// Check if it's a known extension
SubtitleFormat * writer = SubtitleFormat : : GetWriter ( filename ) ;
if ( ! writer ) return false ;
2008-03-07 00:36:43 +01:00
// Check if format supports timing
bool canTime = true ;
//if (filename.Lower().Right(4) == _T(".txt")) canTime = false;
2006-06-29 00:51:33 +02:00
// Scan through the lines
AssStyle defstyle ;
AssStyle * curstyle ;
AssDialogue * curdiag ;
2006-07-01 07:15:56 +02:00
AssAttachment * attach ;
2006-06-29 00:51:33 +02:00
for ( entryIter cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
// Check style, if anything non-default is found, return false
curstyle = AssEntry : : GetAsStyle ( * cur ) ;
if ( curstyle ) {
if ( curstyle - > GetEntryData ( ) ! = defstyle . GetEntryData ( ) ) return false ;
}
2006-07-01 07:15:56 +02:00
// Check for attachments, if any is found, return false
attach = AssEntry : : GetAsAttachment ( * cur ) ;
if ( attach ) return false ;
2006-06-29 00:51:33 +02:00
// Check dialog
curdiag = AssEntry : : GetAsDialogue ( * cur ) ;
if ( curdiag ) {
2008-03-07 00:36:43 +01:00
// Timed?
if ( ! canTime & & ( curdiag - > Start . GetMS ( ) ! = 0 | | curdiag - > End . GetMS ( ) ! = 0 ) ) return false ;
// Overrides?
2006-06-29 00:51:33 +02:00
curdiag - > ParseASSTags ( ) ;
for ( size_t i = 0 ; i < curdiag - > Blocks . size ( ) ; i + + ) {
2008-01-14 01:30:00 +01:00
if ( curdiag - > Blocks [ i ] - > GetType ( ) ! = BLOCK_PLAIN ) return false ;
2006-06-29 00:51:33 +02:00
}
curdiag - > ClearBlocks ( ) ;
}
}
// Success
return true ;
}
2006-05-06 03:05:07 +02:00
////////////////////////////////////
// Returns script as a single string
2007-04-07 05:12:55 +02:00
//wxString AssFile::GetString() {
// using std::list;
// wxString ret;
// AssEntry *entry;
// ret += 0xfeff;
// for (list<AssEntry*>::iterator cur=Line.begin();cur!=Line.end();) {
// entry = *cur;
// ret += entry->GetEntryData();
// ret += L"\n";
// cur++;
// }
// return ret;
//}
2006-05-06 03:05:07 +02:00
2006-07-01 02:54:33 +02:00
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
/// @brief even moving things out of order might break ASS parsing - AMZ. I strongly advice you against touching this function unless you know what you're doing; ------------------- Appends line to Ass
/// @param data
/// @param group
/// @param lasttime
/// @param version
/// @param outGroup
/// @return
///
2007-01-08 02:00:44 +01:00
int AssFile : : AddLine ( wxString data , wxString group , int lasttime , int & version , wxString * outGroup ) {
2006-07-01 02:54:33 +02:00
// Group
2006-01-16 22:02:54 +01:00
AssEntry * entry = NULL ;
2006-07-01 02:54:33 +02:00
wxString origGroup = group ;
static wxString keepGroup ;
if ( ! keepGroup . IsEmpty ( ) ) group = keepGroup ;
2006-07-01 04:27:37 +02:00
if ( outGroup ) * outGroup = group ;
2007-04-21 01:07:22 +02:00
wxString lowGroup = group . Lower ( ) ;
2006-01-16 22:02:54 +01:00
2006-06-30 23:59:20 +02:00
// Attachment
2007-04-21 01:07:22 +02:00
if ( lowGroup = = _T ( " [fonts] " ) | | lowGroup = = _T ( " [graphics] " ) ) {
2006-06-30 23:59:20 +02:00
// Check if it's valid data
2006-07-01 01:37:30 +02:00
size_t dataLen = data . Length ( ) ;
bool validData = ( dataLen > 0 ) & & ( dataLen < = 80 ) ;
for ( size_t i = 0 ; i < dataLen ; i + + ) {
2006-06-30 23:59:20 +02:00
if ( data [ i ] < 33 | | data [ i ] > = 97 ) validData = false ;
}
// Is the filename line?
2008-11-23 03:37:25 +01:00
bool isFilename = ( data . Left ( 10 ) = = _T ( " fontname: " ) | | data . Left ( 10 ) = = _T ( " filename: " ) ) ;
2006-06-30 23:59:20 +02:00
// The attachment file is static, since it is built through several calls to this
// After it's done building, it's reset to NULL
static AssAttachment * attach = NULL ;
// Attachment exists, and data is over
if ( attach & & ( ! validData | | isFilename ) ) {
attach - > Finish ( ) ;
2006-07-01 02:54:33 +02:00
keepGroup . Clear ( ) ;
group = origGroup ;
2007-04-21 01:07:22 +02:00
lowGroup = group . Lower ( ) ;
2006-06-30 23:59:20 +02:00
Line . push_back ( attach ) ;
attach = NULL ;
}
2006-07-01 01:37:30 +02:00
// Create attachment if needed
if ( isFilename ) {
attach = new AssAttachment ( data . Mid ( 10 ) ) ;
2009-05-15 01:45:20 +02:00
attach - > SetStartMS ( lasttime ) ;
2006-07-01 01:37:30 +02:00
attach - > group = group ;
2006-07-01 02:54:33 +02:00
keepGroup = group ;
2006-07-01 01:37:30 +02:00
return lasttime ;
}
2006-06-30 23:59:20 +02:00
2006-07-01 01:37:30 +02:00
// Valid data?
2008-11-23 03:37:25 +01:00
if ( attach & & validData ) {
2006-06-30 23:59:20 +02:00
// Insert data
attach - > AddData ( data ) ;
// Done building
if ( data . Length ( ) < 80 ) {
attach - > Finish ( ) ;
2006-07-01 02:54:33 +02:00
keepGroup . Clear ( ) ;
group = origGroup ;
2007-04-21 01:07:22 +02:00
lowGroup = group . Lower ( ) ;
2006-06-30 23:59:20 +02:00
entry = attach ;
attach = NULL ;
}
2006-07-01 01:37:30 +02:00
// Not done
2006-07-01 02:54:33 +02:00
else {
return lasttime ;
}
}
}
// Dialogue
2007-04-21 01:07:22 +02:00
if ( lowGroup = = _T ( " [events] " ) ) {
2006-07-01 02:54:33 +02:00
if ( ( data . Left ( 9 ) = = _T ( " Dialogue: " ) | | data . Left ( 8 ) = = _T ( " Comment: " ) ) ) {
2007-01-08 02:00:44 +01:00
AssDialogue * diag = new AssDialogue ( data , version ) ;
2009-05-15 01:45:20 +02:00
lasttime = diag - > GetStartMS ( ) ;
2006-07-01 02:54:33 +02:00
//diag->ParseASSTags();
entry = diag ;
2009-05-15 01:45:20 +02:00
entry - > SetStartMS ( lasttime ) ;
2006-07-01 02:54:33 +02:00
entry - > group = group ;
}
if ( data . Left ( 7 ) = = _T ( " Format: " ) ) {
entry = new AssEntry ( _T ( " Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text " ) ) ;
2009-05-15 01:45:20 +02:00
entry - > SetStartMS ( lasttime ) ;
2006-07-01 02:54:33 +02:00
entry - > group = group ;
}
}
// Style
2007-04-21 01:07:22 +02:00
else if ( lowGroup = = _T ( " [v4+ styles] " ) ) {
2006-07-01 02:54:33 +02:00
if ( data . Left ( 6 ) = = _T ( " Style: " ) ) {
2007-01-08 02:00:44 +01:00
AssStyle * style = new AssStyle ( data , version ) ;
2006-07-01 02:54:33 +02:00
entry = style ;
2009-05-15 01:45:20 +02:00
entry - > SetStartMS ( lasttime ) ;
2006-07-01 02:54:33 +02:00
entry - > group = group ;
}
if ( data . Left ( 7 ) = = _T ( " Format: " ) ) {
entry = new AssEntry ( _T ( " Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding " ) ) ;
2009-05-15 01:45:20 +02:00
entry - > SetStartMS ( lasttime ) ;
2006-07-01 02:54:33 +02:00
entry - > group = group ;
2006-06-30 23:59:20 +02:00
}
}
// Script info
2007-04-21 01:07:22 +02:00
else if ( lowGroup = = _T ( " [script info] " ) ) {
2006-06-30 23:59:20 +02:00
// Comment
2006-01-16 22:02:54 +01:00
if ( data . Left ( 1 ) = = _T ( " ; " ) ) {
// 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... ;)
2006-01-16 22:02:54 +01:00
return lasttime ;
}
2006-06-30 23:59:20 +02:00
// Version
2006-01-16 22:02:54 +01:00
if ( data . Left ( 11 ) = = _T ( " ScriptType: " ) ) {
2007-01-08 02:00:44 +01:00
wxString versionString = data . Mid ( 11 ) ;
versionString . Trim ( true ) ;
versionString . Trim ( false ) ;
versionString . MakeLower ( ) ;
int trueVersion ;
if ( versionString = = _T ( " v4.00 " ) ) trueVersion = 0 ;
else if ( versionString = = _T ( " v4.00+ " ) ) trueVersion = 1 ;
else if ( versionString = = _T ( " v4.00++ " ) ) trueVersion = 2 ;
2007-07-18 15:46:38 +02:00
else throw _T ( " Unknown SSA file format version " ) ;
2007-01-08 02:00:44 +01:00
if ( trueVersion ! = version ) {
2007-01-08 02:54:02 +01:00
if ( ! ( trueVersion = = 2 & & version = = 1 ) ) wxLogMessage ( _T ( " Warning: File has the wrong extension. " ) ) ;
2007-01-08 02:00:44 +01:00
version = trueVersion ;
2006-01-16 22:02:54 +01:00
}
}
2006-06-30 23:59:20 +02:00
// Everything
2006-01-16 22:02:54 +01:00
entry = new AssEntry ( data ) ;
2009-05-15 01:45:20 +02:00
entry - > SetStartMS ( lasttime ) ;
2006-01-16 22:02:54 +01:00
entry - > group = group ;
}
// Common entry
if ( entry = = NULL ) {
entry = new AssEntry ( data ) ;
2009-05-15 01:45:20 +02:00
entry - > SetStartMS ( lasttime ) ;
2006-01-16 22:02:54 +01:00
entry - > group = group ;
}
2006-06-30 23:59:20 +02:00
// Insert the line
2006-01-16 22:02:54 +01:00
Line . push_back ( entry ) ;
return lasttime ;
}
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
/// @brief Clears contents of assfile
///
2006-01-16 22:02:54 +01:00
void AssFile : : Clear ( ) {
for ( std : : list < AssEntry * > : : iterator cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
if ( * cur ) delete * cur ;
}
Line . clear ( ) ;
loaded = false ;
filename = _T ( " " ) ;
Modified = false ;
}
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
/// @brief Loads default subs
/// @param defline
///
2006-01-16 22:02:54 +01:00
void AssFile : : LoadDefault ( bool defline ) {
// Clear first
Clear ( ) ;
// Write headers
AssStyle defstyle ;
2007-01-08 02:00:44 +01:00
int version = 1 ;
AddLine ( _T ( " [Script Info] " ) , _T ( " [Script Info] " ) , - 1 , version ) ;
AddLine ( _T ( " Title: Default Aegisub file " ) , _T ( " [Script Info] " ) , - 1 , version ) ;
AddLine ( _T ( " ScriptType: v4.00+ " ) , _T ( " [Script Info] " ) , - 1 , version ) ;
AddLine ( _T ( " WrapStyle: 0 " ) , _T ( " [Script Info] " ) , - 1 , version ) ;
AddLine ( _T ( " PlayResX: 640 " ) , _T ( " [Script Info] " ) , - 1 , version ) ;
AddLine ( _T ( " PlayResY: 480 " ) , _T ( " [Script Info] " ) , - 1 , version ) ;
2007-07-16 05:16:17 +02:00
AddLine ( _T ( " ScaledBorderAndShadow: yes " ) , _T ( " [Script Info] " ) , - 1 , version ) ;
2007-01-08 02:00:44 +01:00
AddLine ( _T ( " " ) , _T ( " [Script Info] " ) , - 1 , version ) ;
AddLine ( _T ( " [V4+ Styles] " ) , _T ( " [V4+ Styles] " ) , - 1 , version ) ;
AddLine ( _T ( " Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding " ) , _T ( " [V4+ Styles] " ) , - 1 , version ) ;
AddLine ( defstyle . GetEntryData ( ) , _T ( " [V4+ Styles] " ) , - 1 , version ) ;
AddLine ( _T ( " " ) , _T ( " [V4+ Styles] " ) , - 1 , version ) ;
AddLine ( _T ( " [Events] " ) , _T ( " [Events] " ) , - 1 , version ) ;
AddLine ( _T ( " Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text " ) , _T ( " [Events] " ) , - 1 , version ) ;
2006-01-16 22:02:54 +01:00
if ( defline ) {
AssDialogue def ;
2007-01-08 02:00:44 +01:00
AddLine ( def . GetEntryData ( ) , _T ( " [Events] " ) , 0 , version ) ;
2006-01-16 22:02:54 +01:00
}
loaded = true ;
}
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
/// @brief Copy constructor
/// @param from
///
2006-01-16 22:02:54 +01:00
AssFile : : AssFile ( AssFile & from ) {
using std : : list ;
// Copy standard variables
filename = from . filename ;
loaded = from . loaded ;
Modified = from . Modified ;
// Copy lines
for ( list < AssEntry * > : : iterator cur = from . Line . begin ( ) ; cur ! = from . Line . end ( ) ; cur + + ) {
2006-02-27 10:07:08 +01:00
Line . push_back ( ( * cur ) - > Clone ( ) ) ;
2006-01-16 22:02:54 +01:00
}
}
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
/// @brief Insert a new style
/// @param style
///
2006-01-16 22:02:54 +01:00
void AssFile : : InsertStyle ( AssStyle * style ) {
// Variables
using std : : list ;
AssEntry * curEntry ;
2006-01-19 02:42:39 +01:00
list < AssEntry * > : : iterator lastStyle = Line . end ( ) ;
2006-01-16 22:02:54 +01:00
list < AssEntry * > : : iterator cur ;
2007-01-11 04:18:14 +01:00
int lasttime = - 1 ;
2006-01-16 22:02:54 +01:00
wxString lastGroup ;
// Look for insert position
for ( cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
curEntry = * cur ;
2006-02-27 03:23:50 +01:00
if ( curEntry - > GetType ( ) = = ENTRY_STYLE | | ( lastGroup = = _T ( " [V4+ Styles] " ) & & curEntry - > GetEntryData ( ) . substr ( 0 , 7 ) = = _T ( " Format: " ) ) ) {
2006-01-16 22:02:54 +01:00
lastStyle = cur ;
}
2009-05-15 01:45:20 +02:00
lasttime = curEntry - > GetStartMS ( ) ;
2006-01-16 22:02:54 +01:00
lastGroup = curEntry - > group ;
}
// No styles found, add them
2006-01-19 02:42:39 +01:00
if ( lastStyle = = Line . end ( ) ) {
2006-01-16 22:02:54 +01:00
// Add space
curEntry = new AssEntry ( _T ( " " ) ) ;
curEntry - > group = lastGroup ;
2009-05-15 01:45:20 +02:00
curEntry - > SetStartMS ( lasttime ) ;
2006-01-16 22:02:54 +01:00
Line . push_back ( curEntry ) ;
// Add header
curEntry = new AssEntry ( _T ( " [V4+ Styles] " ) ) ;
curEntry - > group = _T ( " [V4+ Styles] " ) ;
2009-05-15 01:45:20 +02:00
curEntry - > SetStartMS ( lasttime ) ;
2006-01-16 22:02:54 +01:00
Line . push_back ( curEntry ) ;
// Add format line
curEntry = new AssEntry ( _T ( " Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding " ) ) ;
curEntry - > group = _T ( " [V4+ Styles] " ) ;
2009-05-15 01:45:20 +02:00
curEntry - > SetStartMS ( lasttime ) ;
2006-01-16 22:02:54 +01:00
Line . push_back ( curEntry ) ;
// Add style
style - > group = _T ( " [V4+ Styles] " ) ;
2009-05-15 01:45:20 +02:00
style - > SetStartMS ( lasttime ) ;
2006-01-16 22:02:54 +01:00
Line . push_back ( style ) ;
}
// Add to end of list
else {
lastStyle + + ;
style - > group = ( * lastStyle ) - > group ;
2009-05-15 01:45:20 +02:00
style - > SetStartMS ( lasttime ) ;
2006-01-16 22:02:54 +01:00
Line . insert ( lastStyle , style ) ;
}
}
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
/// @brief Insert attachment
/// @param attach
///
2006-07-01 06:08:01 +02:00
void AssFile : : InsertAttachment ( AssAttachment * attach ) {
// Search for insertion point
std : : list < AssEntry * > : : iterator insPoint = Line . end ( ) , cur ;
for ( cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
// Check if it's another attachment
AssAttachment * att = AssEntry : : GetAsAttachment ( * cur ) ;
if ( att ) {
if ( attach - > group = = att - > group ) insPoint = cur ;
}
// See if it's the start of group
else if ( ( * cur ) - > GetType ( ) = = ENTRY_BASE ) {
AssEntry * entry = ( AssEntry * ) ( * cur ) ;
if ( entry - > GetEntryData ( ) = = attach - > group ) insPoint = cur ;
}
}
// Found point, insert there
if ( insPoint ! = Line . end ( ) ) {
insPoint + + ;
2009-05-15 01:45:20 +02:00
attach - > SetStartMS ( ( * insPoint ) - > GetStartMS ( ) ) ;
2006-07-01 06:08:01 +02:00
Line . insert ( insPoint , attach ) ;
}
// Otherwise, create the [Fonts] group and insert
else {
2007-01-08 02:00:44 +01:00
int version = 1 ;
2009-05-15 01:45:20 +02:00
int StartMS = Line . back ( ) - > GetStartMS ( ) ;
2007-01-08 02:00:44 +01:00
AddLine ( _T ( " " ) , Line . back ( ) - > group , StartMS , version ) ;
AddLine ( attach - > group , attach - > group , StartMS , version ) ;
2009-05-15 01:45:20 +02:00
attach - > SetStartMS ( StartMS ) ;
2006-07-01 06:08:01 +02:00
Line . push_back ( attach ) ;
2007-01-08 02:00:44 +01:00
AddLine ( _T ( " " ) , attach - > group , StartMS , version ) ;
2006-07-01 06:08:01 +02:00
}
}
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
/// @brief Insert attachment from file
/// @param filename
///
2006-07-01 06:35:50 +02:00
void AssFile : : InsertAttachment ( wxString filename ) {
// Get name
wxFileName fname ( filename ) ;
// Create
AssAttachment * newAttach = new AssAttachment ( fname . GetFullName ( ) ) ;
// Load
try {
newAttach - > Import ( filename ) ;
}
catch ( . . . ) {
delete newAttach ;
throw ;
}
// Insert
2007-07-30 02:25:26 +02:00
wxString ext = filename . Right ( 4 ) . Lower ( ) ;
if ( ext = = _T ( " .ttf " ) | | ext = = _T ( " .ttc " ) | | ext = = _T ( " .pfb " ) ) newAttach - > group = _T ( " [Fonts] " ) ;
2006-07-01 07:00:03 +02:00
else newAttach - > group = _T ( " [Graphics] " ) ;
2006-07-01 06:35:50 +02:00
InsertAttachment ( newAttach ) ;
}
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
/// @brief Gets script info
/// @param _key
/// @return
///
2006-01-16 22:02:54 +01:00
wxString AssFile : : GetScriptInfo ( const wxString _key ) {
// Prepare
wxString key = _key ; ;
key . Lower ( ) ;
key + = _T ( " : " ) ;
std : : list < AssEntry * > : : iterator cur ;
bool GotIn = false ;
// Look for it
for ( cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
if ( ( * cur ) - > group = = _T ( " [Script Info] " ) ) {
GotIn = true ;
2006-02-27 03:23:50 +01:00
wxString curText = ( * cur ) - > GetEntryData ( ) ;
2006-01-16 22:02:54 +01:00
curText . Lower ( ) ;
// Found
if ( curText . Left ( key . length ( ) ) = = key ) {
wxString result = curText . Mid ( key . length ( ) ) ;
result . Trim ( false ) ;
result . Trim ( true ) ;
return result ;
}
}
else if ( GotIn ) break ;
}
// Couldn't find
return _T ( " " ) ;
}
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
/// @brief Get script info as int
/// @param key
/// @return
///
2006-01-16 22:02:54 +01:00
int AssFile : : GetScriptInfoAsInt ( const wxString key ) {
long temp = 0 ;
try {
GetScriptInfo ( key ) . ToLong ( & temp ) ;
}
catch ( . . . ) {
temp = 0 ;
}
return temp ;
}
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
/// @brief Set a script info line
/// @param _key
/// @param value
/// @return
///
2006-01-16 22:02:54 +01:00
void AssFile : : SetScriptInfo ( const wxString _key , const wxString value ) {
// Prepare
wxString key = _key ; ;
key . Lower ( ) ;
key + = _T ( " : " ) ;
std : : list < AssEntry * > : : iterator cur ;
std : : list < AssEntry * > : : iterator prev ;
bool GotIn = false ;
// Look for it
for ( cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
if ( ( * cur ) - > group = = _T ( " [Script Info] " ) ) {
GotIn = true ;
2006-02-27 03:23:50 +01:00
wxString curText = ( * cur ) - > GetEntryData ( ) ;
2006-01-16 22:02:54 +01:00
curText . Lower ( ) ;
// Found
if ( curText . Left ( key . length ( ) ) = = key ) {
// Set value
if ( value ! = _T ( " " ) ) {
wxString result = _key ;
result + = _T ( " : " ) ;
result + = value ;
2006-02-27 03:23:50 +01:00
( * cur ) - > SetEntryData ( result ) ;
2006-01-16 22:02:54 +01:00
}
// Remove key
else {
Line . erase ( cur ) ;
return ;
}
return ;
}
2006-02-27 03:23:50 +01:00
if ( ! ( * cur ) - > GetEntryData ( ) . empty ( ) ) prev = cur ;
2006-01-16 22:02:54 +01:00
}
// Add
else if ( GotIn ) {
if ( value ! = _T ( " " ) ) {
wxString result = _key ;
result + = _T ( " : " ) ;
result + = value ;
AssEntry * entry = new AssEntry ( result ) ;
entry - > group = ( * prev ) - > group ;
2009-05-15 01:45:20 +02:00
entry - > SetStartMS ( ( * prev ) - > GetStartMS ( ) ) ;
2006-01-16 22:02:54 +01:00
Line . insert ( + + prev , entry ) ;
}
return ;
}
}
}
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
/// @brief Get resolution
/// @param sw
/// @param sh
///
2006-07-01 09:22:57 +02:00
void AssFile : : GetResolution ( int & sw , int & sh ) {
// Height
wxString temp = GetScriptInfo ( _T ( " PlayResY " ) ) ;
if ( temp . IsEmpty ( ) | | ! temp . IsNumber ( ) ) {
2007-05-03 19:19:50 +02:00
sh = 0 ;
2006-07-01 09:22:57 +02:00
}
else {
long templ ;
temp . ToLong ( & templ ) ;
sh = templ ;
}
// Width
temp = GetScriptInfo ( _T ( " PlayResX " ) ) ;
if ( temp . IsEmpty ( ) | | ! temp . IsNumber ( ) ) {
2007-05-03 19:19:50 +02:00
sw = 0 ;
2006-07-01 09:22:57 +02:00
}
else {
long templ ;
temp . ToLong ( & templ ) ;
sw = templ ;
}
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 ) {
if ( sw = = 1280 )
sh = 1024 ;
else
sh = sw * 3 / 4 ;
}
2006-07-01 09:22:57 +02:00
}
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
/// @brief Adds a comment to [Script Info]
/// @param _comment
///
2006-01-16 22:02:54 +01:00
void AssFile : : AddComment ( const wxString _comment ) {
wxString comment = _T ( " ; " ) ;
comment + = _comment ;
std : : list < AssEntry * > : : iterator cur ;
int step = 0 ;
// Find insert position
for ( cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
// Start of group
if ( step = = 0 & & ( * cur ) - > group = = _T ( " [Script Info] " ) ) step = 1 ;
// First line after a ;
2006-02-27 03:23:50 +01:00
else if ( step = = 1 & & ( * cur ) - > GetEntryData ( ) . Left ( 1 ) ! = _T ( " ; " )) {
2006-01-16 22:02:54 +01:00
AssEntry * prev = * cur ;
AssEntry * comm = new AssEntry ( comment ) ;
comm - > group = prev - > group ;
2009-05-15 01:45:20 +02:00
comm - > SetStartMS ( prev - > GetStartMS ( ) ) ;
2006-01-16 22:02:54 +01:00
Line . insert ( cur , comm ) ;
break ;
}
}
}
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
/// @brief Get list of styles
/// @return
///
2006-01-16 22:02:54 +01:00
wxArrayString AssFile : : GetStyles ( ) {
wxArrayString styles ;
AssStyle * curstyle ;
for ( entryIter cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
curstyle = AssEntry : : GetAsStyle ( * cur ) ;
if ( curstyle ) {
styles . Add ( curstyle - > name ) ;
}
}
return styles ;
}
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
/// @brief Gets style of specific name
/// @param name
/// @return
///
2006-01-16 22:02:54 +01:00
AssStyle * AssFile : : GetStyle ( wxString name ) {
AssStyle * curstyle ;
for ( entryIter cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
curstyle = AssEntry : : GetAsStyle ( * cur ) ;
if ( curstyle ) {
if ( curstyle - > name = = name ) return curstyle ;
}
}
return NULL ;
}
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
/// @brief Adds file name to list of recent
/// @param file
///
2006-01-16 22:02:54 +01:00
void AssFile : : AddToRecent ( wxString file ) {
Options . AddToRecentList ( file , _T ( " Recent sub " ) ) ;
}
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
/// @brief List of supported wildcards
/// @param mode
/// @return
///
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 _T("All Supported Types (*.ass,*.ssa,*.srt,*.txt,*.mkv,*.mks,*.mka)|*.ass;*.ssa;*.srt;*.txt;*.mkv;*.mks;*.mka|Advanced Substation Alpha (*.ass)|*.ass|Substation Alpha (*.ssa)|*.ssa|SubRip (*.srt)|*.srt|Plain-text (*.txt)|*.txt|Matroska (*.mkv,*.mks,*.mka)|*.mkv;*.mks;*.mka");
//else if (mode == 1) return _T("Advanced Substation Alpha (*.ass)|*.ass");
//else if (mode == 2) return _T("All Supported Types (*.ass,*.ssa,*.srt,*.txt,*.mkv,*.mks,*.mka)|*.ass;*.ssa;*.srt;*.txt|Advanced Substation Alpha (*.ass)|*.ass|Substation Alpha (*.ssa)|*.ssa|SubRip (*.srt)|*.srt|Plain-text (*.txt)|*.txt");
//else return _T("");
if ( mode = = 0 ) return SubtitleFormat : : GetWildcards ( 0 ) ;
2006-12-26 05:48:53 +01:00
else if ( mode = = 1 ) return _T ( " Advanced Substation Alpha (*.ass)|*.ass " ) ;
2006-12-26 19:26:13 +01:00
else if ( mode = = 2 ) return SubtitleFormat : : GetWildcards ( 1 ) ;
2006-12-26 05:48:53 +01:00
else return _T ( " " ) ;
}
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
/// @brief Compress/decompress for storage on stack
/// @param compress
///
2006-02-21 22:52:32 +01:00
void AssFile : : CompressForStack ( bool compress ) {
AssDialogue * diag ;
for ( entryIter cur = Line . begin ( ) ; cur ! = Line . end ( ) ; cur + + ) {
diag = AssEntry : : GetAsDialogue ( * cur ) ;
if ( diag ) {
if ( compress ) {
2006-02-27 03:23:50 +01:00
diag - > SetEntryData ( _T ( " " ) ) ;
2006-02-21 22:52:32 +01:00
diag - > ClearBlocks ( ) ;
}
else diag - > UpdateData ( ) ;
}
}
}
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
/// @brief Checks if file is modified
/// @return
///
2006-01-16 22:02:54 +01:00
bool AssFile : : IsModified ( ) {
return Modified ;
}
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
/// @brief Flag file as modified
/// @param desc
///
2007-01-26 01:47:42 +01:00
void AssFile : : FlagAsModified ( wxString desc ) {
2006-02-20 22:32:58 +01:00
// Clear redo
if ( ! RedoStack . empty ( ) ) {
//StackPush();
//UndoStack.push_back(new AssFile(*UndoStack.back()));
for ( std : : list < AssFile * > : : iterator cur = RedoStack . begin ( ) ; cur ! = RedoStack . end ( ) ; cur + + ) {
delete * cur ;
}
RedoStack . clear ( ) ;
}
2006-01-16 22:02:54 +01:00
Modified = true ;
2007-01-26 01:47:42 +01:00
StackPush ( desc ) ;
2006-01-16 22:02:54 +01:00
}
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
/// @brief Stack push
/// @param desc
///
2007-01-26 01:47:42 +01:00
void AssFile : : StackPush ( wxString desc ) {
2006-01-16 22:02:54 +01:00
// Places copy on stack
AssFile * curcopy = new AssFile ( * top ) ;
2006-02-21 22:52:32 +01:00
curcopy - > CompressForStack ( true ) ;
2007-01-26 01:47:42 +01:00
curcopy - > undodescription = desc ;
2006-02-20 22:32:58 +01:00
UndoStack . push_back ( curcopy ) ;
2006-01-16 22:02:54 +01:00
StackModified = true ;
// Cap depth
int n = 0 ;
2006-02-20 22:32:58 +01:00
for ( std : : list < AssFile * > : : iterator cur = UndoStack . begin ( ) ; cur ! = UndoStack . end ( ) ; cur + + ) {
2006-01-16 22:02:54 +01:00
n + + ;
}
int depth = Options . AsInt ( _T ( " Undo levels " ) ) ;
while ( n > depth ) {
2006-02-20 22:32:58 +01:00
delete UndoStack . front ( ) ;
UndoStack . pop_front ( ) ;
2006-01-16 22:02:54 +01:00
n - - ;
}
}
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
/// @brief Stack pop
///
2006-01-16 22:02:54 +01:00
void AssFile : : StackPop ( ) {
bool addcopy = false ;
2007-01-26 01:47:42 +01:00
wxString undodesc = _T ( " " ) ;
2006-01-16 22:02:54 +01:00
if ( StackModified ) {
2007-01-26 01:47:42 +01:00
undodesc = UndoStack . back ( ) - > undodescription ;
2009-06-03 21:55:39 +02:00
delete UndoStack . back ( ) ;
2006-02-20 22:32:58 +01:00
UndoStack . pop_back ( ) ;
2006-01-16 22:02:54 +01:00
StackModified = false ;
addcopy = true ;
}
2006-02-20 22:32:58 +01:00
if ( ! UndoStack . empty ( ) ) {
//delete top;
2007-01-26 01:47:42 +01:00
AssFile * undo = UndoStack . back ( ) ;
2006-02-21 22:52:32 +01:00
top - > CompressForStack ( true ) ;
2007-01-26 01:47:42 +01:00
top - > undodescription = undodesc ;
2006-02-20 22:32:58 +01:00
RedoStack . push_back ( top ) ;
2007-01-26 01:47:42 +01:00
top = undo ;
2006-02-21 22:52:32 +01:00
top - > CompressForStack ( false ) ;
2006-02-20 22:32:58 +01:00
UndoStack . pop_back ( ) ;
2006-01-16 22:02:54 +01:00
Popping = true ;
}
if ( addcopy ) {
2007-01-26 01:47:42 +01:00
StackPush ( top - > undodescription ) ;
2006-01-16 22:02:54 +01:00
}
}
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
/// @brief Stack redo
///
2006-02-20 22:32:58 +01:00
void AssFile : : StackRedo ( ) {
bool addcopy = false ;
if ( StackModified ) {
2009-06-03 21:55:39 +02:00
delete UndoStack . back ( ) ;
2006-02-20 22:32:58 +01:00
UndoStack . pop_back ( ) ;
StackModified = false ;
addcopy = true ;
}
if ( ! RedoStack . empty ( ) ) {
2006-02-21 22:52:32 +01:00
top - > CompressForStack ( true ) ;
2006-02-20 22:32:58 +01:00
UndoStack . push_back ( top ) ;
top = RedoStack . back ( ) ;
2006-02-21 22:52:32 +01:00
top - > CompressForStack ( false ) ;
2006-02-20 22:32:58 +01:00
RedoStack . pop_back ( ) ;
Popping = true ;
//StackModified = false;
}
if ( addcopy ) {
2007-01-26 01:47:42 +01:00
StackPush ( top - > undodescription ) ;
2006-02-20 22:32:58 +01:00
}
}
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
/// @brief Stack clear
///
2006-01-16 22:02:54 +01:00
void AssFile : : StackClear ( ) {
2006-02-20 22:32:58 +01:00
// Clear undo
for ( std : : list < AssFile * > : : iterator cur = UndoStack . begin ( ) ; cur ! = UndoStack . end ( ) ; cur + + ) {
delete * cur ;
}
UndoStack . clear ( ) ;
// Clear redo
for ( std : : list < AssFile * > : : iterator cur = RedoStack . begin ( ) ; cur ! = RedoStack . end ( ) ; cur + + ) {
2006-01-16 22:02:54 +01:00
delete * cur ;
}
2006-02-20 22:32:58 +01:00
RedoStack . clear ( ) ;
2006-01-16 22:02:54 +01:00
Popping = false ;
}
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
/// @brief Stack reset
/// @return
///
2006-01-16 22:02:54 +01:00
void AssFile : : StackReset ( ) {
StackClear ( ) ;
delete top ;
top = new AssFile ;
StackModified = false ;
}
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
/// @brief Returns if undo stack is empty
/// @return
///
2006-02-20 22:32:58 +01:00
bool AssFile : : IsUndoStackEmpty ( ) {
if ( StackModified ) return ( UndoStack . size ( ) < = 1 ) ;
else return UndoStack . empty ( ) ;
}
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
/// @brief Returns if redo stack is empty
/// @return
///
2006-02-20 22:32:58 +01:00
bool AssFile : : IsRedoStackEmpty ( ) {
return RedoStack . empty ( ) ;
2006-01-16 22:02:54 +01:00
}
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
/// @brief DOCME
/// @return
///
2007-01-26 01:47:42 +01:00
wxString AssFile : : GetUndoDescription ( ) {
return ( IsUndoStackEmpty ( ) ) ? _T ( " " ) : ( UndoStack . back ( ) ) - > undodescription ;
}
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
/// @brief DOCME
/// @return
///
2007-01-26 01:47:42 +01:00
wxString AssFile : : GetRedoDescription ( ) {
return ( IsRedoStackEmpty ( ) ) ? _T ( " " ) : ( RedoStack . back ( ) ) - > undodescription ;
}
2006-01-16 22:02:54 +01:00
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
/// DOCME
2006-01-16 22:02:54 +01:00
AssFile * AssFile : : top ;
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
/// DOCME
2006-02-20 22:32:58 +01:00
std : : list < AssFile * > AssFile : : UndoStack ;
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
/// DOCME
2006-02-20 22:32:58 +01:00
std : : list < AssFile * > AssFile : : RedoStack ;
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
/// DOCME
2006-01-16 22:02:54 +01:00
bool AssFile : : Popping ;
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
/// DOCME
2006-01-16 22:02:54 +01:00
bool AssFile : : StackModified ;
2007-07-16 05:16:17 +02:00
2007-09-12 01:22:26 +02:00
2007-10-29 03:09:45 +01:00
2009-07-29 07:43:02 +02:00
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