forked from mia/Aegisub
OMFG AMZ IS ALIVE! Partial TranStation export support (SMPTE drop-frames seem to be broken, and line merging isn't working)
Originally committed to SVN as r2266.
This commit is contained in:
parent
0badb4059f
commit
2d7b2527a7
8 changed files with 187 additions and 8 deletions
|
@ -277,6 +277,7 @@ aegisub_SOURCES = \
|
|||
subtitle_format_microdvd.cpp \
|
||||
subtitle_format_mkv.cpp \
|
||||
subtitle_format_srt.cpp \
|
||||
subtitle_format_transtation.cpp \
|
||||
subtitle_format_ttxt.cpp \
|
||||
subtitle_format_txt.cpp \
|
||||
text_file_writer.cpp \
|
||||
|
|
|
@ -242,6 +242,15 @@ wxString AssTime::GetSRTFormated () {
|
|||
}
|
||||
|
||||
|
||||
///////////////////
|
||||
// SMPTE formatted
|
||||
wxString AssTime::GetSMPTE(double fps)
|
||||
{
|
||||
int f = int(GetTimeMiliseconds() * fps / 1000.0 + 0.5);
|
||||
return wxString::Format(_T("%02i:%02i:%02i:%02i"),GetTimeHours(),GetTimeMinutes(),GetTimeSeconds(),f);
|
||||
}
|
||||
|
||||
|
||||
//////////////////////
|
||||
// AssTime comparison
|
||||
bool operator < (AssTime &t1, AssTime &t2) {
|
||||
|
|
|
@ -66,6 +66,7 @@ public:
|
|||
void ParseSRT(const wxString text); // Sets value to text-form time, in SRT format
|
||||
wxString GetASSFormated(bool ms=false); // Returns the ASS representation of time
|
||||
wxString GetSRTFormated(); // Returns the SRT representation of time
|
||||
wxString GetSMPTE(double fps); // Returns the SMPTE timecodes for the given frame rate
|
||||
};
|
||||
|
||||
// Comparison operators
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
#include "subtitle_format_mkv.h"
|
||||
#include "subtitle_format_microdvd.h"
|
||||
#include "subtitle_format_encore.h"
|
||||
#include "subtitle_format_transtation.h"
|
||||
#include "subtitle_format_dvd.h"
|
||||
#include "ass_file.h"
|
||||
#include "vfr.h"
|
||||
|
@ -134,6 +135,7 @@ void SubtitleFormat::LoadFormats () {
|
|||
new MicroDVDSubtitleFormat();
|
||||
new MKVSubtitleFormat();
|
||||
new EncoreSubtitleFormat();
|
||||
new TranStationSubtitleFormat();
|
||||
#ifdef __WXDEBUG__
|
||||
new DVDSubtitleFormat();
|
||||
#endif
|
||||
|
|
|
@ -87,13 +87,7 @@ void EncoreSubtitleFormat::WriteFile(wxString _filename,wxString encoding) {
|
|||
AssDialogue *current = AssEntry::GetAsDialogue(*cur);
|
||||
if (current && !current->Comment) {
|
||||
// Time stamps
|
||||
i++;
|
||||
AssTime time = current->Start;
|
||||
int f = int(time.GetTimeMiliseconds() * fps / 1000.0 + 0.5);
|
||||
wxString timeStamps = wxString::Format(_T("%i %02i:%02i:%02i:%02i "),i,time.GetTimeHours(),time.GetTimeMinutes(),time.GetTimeSeconds(),f);
|
||||
time = current->End;
|
||||
f = int(time.GetTimeMiliseconds() * fps / 1000.0 + 0.5);
|
||||
timeStamps += wxString::Format(_T("%02i:%02i:%02i:%02i "),time.GetTimeHours(),time.GetTimeMinutes(),time.GetTimeSeconds(),f);
|
||||
wxString timeStamps = wxString::Format(_T("%i "),++i) + current->Start.GetSMPTE(fps) + _T(" ") + current->End.GetSMPTE(fps);
|
||||
|
||||
// Convert : to ; if it's NTSC
|
||||
if (fps > 26.0) timeStamps.Replace(_T(":"),_T(";"));
|
||||
|
|
119
aegisub/subtitle_format_transtation.cpp
Normal file
119
aegisub/subtitle_format_transtation.cpp
Normal file
|
@ -0,0 +1,119 @@
|
|||
// Copyright (c) 2007, 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.
|
||||
//
|
||||
// -----------------------------------------------------------------------------
|
||||
//
|
||||
// AEGISUB
|
||||
//
|
||||
// Website: http://aegisub.cellosoft.com
|
||||
// Contact: mailto:zeratul@cellosoft.com
|
||||
//
|
||||
|
||||
|
||||
///////////
|
||||
// Headers
|
||||
#include "ass_dialogue.h"
|
||||
#include "ass_file.h"
|
||||
#include "ass_style.h"
|
||||
#include "subtitle_format_transtation.h"
|
||||
#include "text_file_writer.h"
|
||||
|
||||
|
||||
////////
|
||||
// Name
|
||||
wxString TranStationSubtitleFormat::GetName() {
|
||||
return _T("TranStation");
|
||||
}
|
||||
|
||||
|
||||
/////////////
|
||||
// Wildcards
|
||||
wxArrayString TranStationSubtitleFormat::GetWriteWildcards() {
|
||||
wxArrayString formats;
|
||||
formats.Add(_T("transtation.txt"));
|
||||
return formats;
|
||||
}
|
||||
|
||||
|
||||
///////////////////
|
||||
// Can write file?
|
||||
bool TranStationSubtitleFormat::CanWriteFile(wxString filename) {
|
||||
return (filename.Right(16).Lower() == _T(".transtation.txt"));
|
||||
}
|
||||
|
||||
|
||||
//////////////
|
||||
// Write file
|
||||
void TranStationSubtitleFormat::WriteFile(wxString _filename,wxString encoding) {
|
||||
// Get FPS
|
||||
double fps = AskForFPS(true);
|
||||
if (fps <= 0.0) return;
|
||||
|
||||
// Open file
|
||||
TextFileWriter file(_filename,encoding);
|
||||
|
||||
// Convert to TranStation
|
||||
CreateCopy();
|
||||
SortLines();
|
||||
Merge(true,true,true,false);
|
||||
|
||||
// Write lines
|
||||
using std::list;
|
||||
for (list<AssEntry*>::iterator cur=Line->begin();cur!=Line->end();cur++) {
|
||||
AssDialogue *current = AssEntry::GetAsDialogue(*cur);
|
||||
if (current && !current->Comment) {
|
||||
// Get line data
|
||||
AssStyle *style = GetAssFile()->GetStyle(current->Style);
|
||||
int align = 0;
|
||||
wxString type = _T("N");
|
||||
if (style) {
|
||||
if (style->alignment >= 4) align = 4;
|
||||
if (style->alignment >= 7) align = 9;
|
||||
if (style->italic) type = _T("I");
|
||||
}
|
||||
|
||||
// Write header
|
||||
wxString header = wxString::Format(_T("SUB [%i %s "),align,type.c_str()) + current->Start.GetSMPTE(fps) + _T(">") + current->End.GetSMPTE(fps) + _T("]");
|
||||
file.WriteLineToFile(header);
|
||||
|
||||
// Process text
|
||||
wxString lineEnd = _T("\r\n");
|
||||
current->StripTags();
|
||||
current->Text.Replace(_T("\\h"),_T(" "),true);
|
||||
current->Text.Replace(_T("\\n"),lineEnd,true);
|
||||
current->Text.Replace(_T("\\N"),lineEnd,true);
|
||||
while (current->Text.Replace(lineEnd+lineEnd,lineEnd,true));
|
||||
|
||||
// Write text
|
||||
file.WriteLineToFile(current->Text);
|
||||
file.WriteLineToFile(_T(""));
|
||||
}
|
||||
}
|
||||
|
||||
// Clean up
|
||||
ClearCopy();
|
||||
}
|
53
aegisub/subtitle_format_transtation.h
Normal file
53
aegisub/subtitle_format_transtation.h
Normal file
|
@ -0,0 +1,53 @@
|
|||
// Copyright (c) 2008, 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.
|
||||
//
|
||||
// -----------------------------------------------------------------------------
|
||||
//
|
||||
// AEGISUB
|
||||
//
|
||||
// Website: http://aegisub.cellosoft.com
|
||||
// Contact: mailto:zeratul@cellosoft.com
|
||||
//
|
||||
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
///////////
|
||||
// Headers
|
||||
#include "subtitle_format.h"
|
||||
|
||||
|
||||
//////////////////////
|
||||
// TranStation writer
|
||||
class TranStationSubtitleFormat : public SubtitleFormat {
|
||||
public:
|
||||
wxString GetName();
|
||||
wxArrayString GetWriteWildcards();
|
||||
bool CanWriteFile(wxString filename);
|
||||
void WriteFile(wxString filename,wxString encoding);
|
||||
};
|
|
@ -55,7 +55,7 @@ bool TXTSubtitleFormat::CanReadFile(wxString filename) {
|
|||
//////////////
|
||||
// Can write?
|
||||
bool TXTSubtitleFormat::CanWriteFile(wxString filename) {
|
||||
return (filename.Right(4).Lower() == _T(".txt") && filename.Right(11).Lower() != _T(".encore.txt"));
|
||||
return (filename.Right(4).Lower() == _T(".txt") && filename.Right(11).Lower() != _T(".encore.txt") && filename.Right(16).Lower() != _T(".transtation.txt"));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue