2006-06-30 22:56:16 +02:00
|
|
|
// Copyright (c) 2006, Rodrigo Braz Monteiro
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file ass_attachment.cpp
|
|
|
|
/// @brief Manage files embedded in subtitles
|
|
|
|
/// @ingroup subs_storage
|
|
|
|
///
|
2006-06-30 22:56:16 +02:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2006-07-08 03:56:17 +02:00
|
|
|
#include <wx/filename.h>
|
2011-12-22 22:15:37 +01:00
|
|
|
|
|
|
|
#include <istream>
|
2009-09-10 04:23:43 +02:00
|
|
|
|
2006-06-30 22:56:16 +02:00
|
|
|
#include "ass_attachment.h"
|
|
|
|
|
2011-12-22 22:15:37 +01:00
|
|
|
#include "compat.h"
|
|
|
|
|
|
|
|
#include <libaegisub/io.h>
|
|
|
|
#include <libaegisub/scoped_ptr.h>
|
|
|
|
|
2012-11-25 01:08:29 +01:00
|
|
|
AssAttachment::AssAttachment(wxString const& name, AssEntryGroup group)
|
2012-12-08 03:51:09 +01:00
|
|
|
: data(new std::vector<char>)
|
2011-12-22 22:15:28 +01:00
|
|
|
, filename(name)
|
2012-11-25 01:08:29 +01:00
|
|
|
, group(group)
|
2011-12-22 22:15:28 +01:00
|
|
|
{
|
|
|
|
wxFileName fname(filename);
|
2006-07-08 03:56:17 +02:00
|
|
|
wxString ext = fname.GetExt().Lower();
|
2011-12-22 22:15:28 +01:00
|
|
|
if (ext == "ttf")
|
|
|
|
filename = fname.GetName() + "_0." + ext;
|
2006-06-30 22:56:16 +02:00
|
|
|
}
|
|
|
|
|
2010-06-24 08:13:06 +02:00
|
|
|
AssEntry *AssAttachment::Clone() const {
|
2012-02-01 01:47:38 +01:00
|
|
|
AssAttachment *clone = new AssAttachment(filename, group);
|
2006-06-30 23:59:20 +02:00
|
|
|
clone->data = data;
|
2006-06-30 22:56:16 +02:00
|
|
|
return clone;
|
|
|
|
}
|
2006-06-30 23:21:30 +02:00
|
|
|
|
2010-10-11 22:06:26 +02:00
|
|
|
const wxString AssAttachment::GetEntryData() const {
|
2012-10-05 04:10:20 +02:00
|
|
|
size_t pos = 0;
|
|
|
|
size_t size = data->size();
|
|
|
|
size_t written = 0;
|
2006-07-01 01:37:30 +02:00
|
|
|
unsigned char src[3];
|
|
|
|
unsigned char dst[4];
|
|
|
|
|
|
|
|
// Write header
|
2012-11-25 01:08:29 +01:00
|
|
|
wxString entryData = (group == ENTRY_FONT ? "fontname: " : "filename: ") + filename + "\r\n";
|
2006-07-01 01:37:30 +02:00
|
|
|
|
|
|
|
// Read three bytes
|
2006-07-01 02:54:33 +02:00
|
|
|
while (pos < size) {
|
|
|
|
// Number to read
|
2012-10-05 04:10:20 +02:00
|
|
|
size_t read = size - pos;
|
2006-07-01 02:54:33 +02:00
|
|
|
if (read > 3) read = 3;
|
|
|
|
|
2006-07-01 01:37:30 +02:00
|
|
|
// Read source
|
2011-12-22 22:15:28 +01:00
|
|
|
src[0] = (*data)[pos];
|
|
|
|
if (read >= 2) src[1] = (*data)[pos+1];
|
2006-07-01 02:54:33 +02:00
|
|
|
else src[1] = 0;
|
2011-12-22 22:15:28 +01:00
|
|
|
if (read == 3) src[2] = (*data)[pos+2];
|
2006-07-01 02:54:33 +02:00
|
|
|
else src[2] = 0;
|
|
|
|
pos += read;
|
2006-07-01 01:37:30 +02:00
|
|
|
|
|
|
|
// Codify
|
|
|
|
dst[0] = src[0] >> 2;
|
|
|
|
dst[1] = ((src[0] & 0x3) << 4) | ((src[1] & 0xF0) >> 4);
|
|
|
|
dst[2] = ((src[1] & 0xF) << 2) | ((src[2] & 0xC0) >> 6);
|
|
|
|
dst[3] = src[2] & 0x3F;
|
|
|
|
|
2006-07-01 02:54:33 +02:00
|
|
|
// Number to write
|
2012-10-05 04:10:20 +02:00
|
|
|
size_t toWrite = read+1;
|
2006-07-01 02:54:33 +02:00
|
|
|
|
2006-07-01 01:37:30 +02:00
|
|
|
// Convert to text
|
2012-10-05 04:10:20 +02:00
|
|
|
for (size_t i=0;i<toWrite;i++) {
|
2011-09-28 21:43:11 +02:00
|
|
|
entryData += dst[i]+33;
|
2006-07-01 01:37:30 +02:00
|
|
|
written++;
|
|
|
|
|
|
|
|
// Line break
|
2006-07-01 02:54:33 +02:00
|
|
|
if (written == 80 && pos < size) {
|
2006-07-01 01:37:30 +02:00
|
|
|
written = 0;
|
2011-09-28 21:43:11 +02:00
|
|
|
entryData += "\r\n";
|
2006-07-01 01:37:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return entryData;
|
|
|
|
}
|
|
|
|
|
2012-03-20 01:39:10 +01:00
|
|
|
void AssAttachment::Extract(wxString const& filename) const {
|
2012-12-23 00:18:38 +01:00
|
|
|
agi::io::Save(from_wx(filename), true).Get().write(&(*data)[0], data->size());
|
2006-07-01 05:06:21 +02:00
|
|
|
}
|
|
|
|
|
2012-03-20 01:39:10 +01:00
|
|
|
void AssAttachment::Import(wxString const& filename) {
|
2012-12-23 00:18:38 +01:00
|
|
|
agi::scoped_ptr<std::istream> file(agi::io::Open(from_wx(filename), true));
|
2011-12-22 22:15:37 +01:00
|
|
|
file->seekg(0, std::ios::end);
|
|
|
|
data->resize(file->tellg());
|
|
|
|
file->seekg(0, std::ios::beg);
|
|
|
|
file->read(&(*data)[0], data->size());
|
2006-07-01 05:06:21 +02:00
|
|
|
}
|
|
|
|
|
2012-03-20 01:39:10 +01:00
|
|
|
wxString AssAttachment::GetFileName(bool raw) const {
|
2011-09-28 21:43:11 +02:00
|
|
|
if (raw || filename.Right(4).Lower() != ".ttf") return filename;
|
2006-07-08 04:30:18 +02:00
|
|
|
|
|
|
|
// Remove stuff after last underscore if it's a font
|
2011-12-22 22:15:28 +01:00
|
|
|
wxString::size_type last_under = filename.rfind('_');
|
|
|
|
if (last_under == wxString::npos)
|
|
|
|
return filename;
|
2006-07-01 05:06:21 +02:00
|
|
|
|
2011-12-22 22:15:28 +01:00
|
|
|
return filename.Left(last_under) + ".ttf";
|
2006-06-30 23:59:20 +02:00
|
|
|
}
|
|
|
|
|
2011-12-22 22:15:28 +01:00
|
|
|
void AssAttachment::Finish() {
|
2006-07-01 00:44:42 +02:00
|
|
|
// Source and dest buffers
|
|
|
|
unsigned char src[4];
|
|
|
|
unsigned char dst[3];
|
2011-12-22 22:15:28 +01:00
|
|
|
|
|
|
|
data->reserve(buffer.size() * 3 / 4);
|
2006-07-01 00:44:42 +02:00
|
|
|
|
|
|
|
// Read buffer
|
2011-12-22 22:15:28 +01:00
|
|
|
for(size_t pos = 0; pos + 1 < buffer.size(); ) {
|
2006-07-01 00:44:42 +02:00
|
|
|
// Find characters left
|
2011-12-22 22:15:28 +01:00
|
|
|
size_t read = std::min<size_t>(buffer.size() - pos, 4);
|
2006-07-01 00:44:42 +02:00
|
|
|
|
2011-12-22 22:15:28 +01:00
|
|
|
// Move 4 bytes from buffer to src
|
|
|
|
for (size_t i = 0; i < read; ++i)
|
|
|
|
src[i] = (unsigned char)buffer[pos++] - 33;
|
|
|
|
for (size_t i = read; i < 4; ++i)
|
|
|
|
src[i] = 0;
|
2006-07-01 00:44:42 +02:00
|
|
|
|
|
|
|
// Convert the 4 bytes from source to 3 in dst
|
|
|
|
dst[0] = (src[0] << 2) | (src[1] >> 4);
|
|
|
|
dst[1] = ((src[1] & 0xF) << 4) | (src[2] >> 2);
|
|
|
|
dst[2] = ((src[2] & 0x3) << 6) | (src[3]);
|
|
|
|
|
|
|
|
// Push into vector
|
2011-12-22 22:15:28 +01:00
|
|
|
copy(dst, dst + read - 1, back_inserter(*data));
|
2006-07-01 00:44:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clear buffer
|
2011-12-22 22:15:28 +01:00
|
|
|
buffer.clear();
|
2006-07-01 00:44:42 +02:00
|
|
|
buffer.Shrink();
|
2006-06-30 23:21:30 +02:00
|
|
|
}
|