2006-01-16 22:02:54 +01:00
|
|
|
// Copyright (c) 2005, Rodrigo Braz Monteiro
|
2010-06-24 03:24:43 +02:00
|
|
|
// Copyright (c) 2010, Thomas Goyne <plorkyeran@aegisub.org>
|
2006-01-16 22:02:54 +01:00
|
|
|
// 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_override.cpp
|
|
|
|
/// @brief Parse and modify ASSA style overrides
|
|
|
|
/// @ingroup subs_storage
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-12-11 00:32:36 +01:00
|
|
|
#include "ass_dialogue.h"
|
|
|
|
|
2013-01-14 05:31:46 +01:00
|
|
|
#include "utils.h"
|
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
#include <libaegisub/color.h>
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-12-07 17:06:03 +01:00
|
|
|
#include <boost/algorithm/string/join.hpp>
|
2012-12-30 00:53:56 +01:00
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
|
|
#include <boost/algorithm/string/trim.hpp>
|
2013-01-14 05:31:46 +01:00
|
|
|
#include <boost/format.hpp>
|
2012-12-07 17:06:03 +01:00
|
|
|
#include <boost/range/adaptor/filtered.hpp>
|
|
|
|
#include <boost/range/adaptor/transformed.hpp>
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
using namespace boost::adaptors;
|
|
|
|
|
2012-12-10 23:19:28 +01:00
|
|
|
AssOverrideParameter::AssOverrideParameter(VariableDataType type, AssParameterClass classification)
|
|
|
|
: type(type)
|
|
|
|
, classification(classification)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AssOverrideParameter::AssOverrideParameter(AssOverrideParameter&& o)
|
|
|
|
: value(std::move(o.value))
|
|
|
|
, block(std::move(o.block))
|
|
|
|
, type(o.type)
|
|
|
|
, classification(o.classification)
|
2012-12-28 18:18:54 +01:00
|
|
|
, omitted(o.omitted)
|
2012-12-10 23:19:28 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-12-11 00:32:36 +01:00
|
|
|
AssOverrideParameter& AssOverrideParameter::operator=(AssOverrideParameter&& rhs) {
|
|
|
|
value = std::move(rhs.value);
|
|
|
|
block = std::move(rhs.block);
|
|
|
|
type = rhs.type;
|
|
|
|
classification = rhs.classification;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-10 23:19:28 +01:00
|
|
|
AssOverrideParameter::~AssOverrideParameter() {
|
|
|
|
}
|
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
template<> std::string AssOverrideParameter::Get<std::string>() const {
|
2013-11-21 18:13:36 +01:00
|
|
|
if (omitted) throw agi::InternalError("AssOverrideParameter::Get() called on omitted parameter", nullptr);
|
2012-12-10 23:19:28 +01:00
|
|
|
if (block.get()) {
|
2012-12-30 00:53:56 +01:00
|
|
|
std::string str(block->GetText());
|
2013-01-13 06:01:43 +01:00
|
|
|
if (boost::starts_with(str, "{")) str.erase(begin(str));
|
|
|
|
if (boost::ends_with(str, "}")) str.erase(end(str) - 1);
|
2012-12-10 23:19:28 +01:00
|
|
|
return str;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> int AssOverrideParameter::Get<int>() const {
|
2013-02-07 17:55:01 +01:00
|
|
|
if (classification == AssParameterClass::ALPHA)
|
2013-01-14 05:31:46 +01:00
|
|
|
// &Hxx&, but vsfilter lets you leave everything out
|
|
|
|
return mid<int>(0, strtol(std::find_if(value.c_str(), value.c_str() + value.size(), isxdigit), nullptr, 16), 255);
|
2013-01-13 18:48:24 +01:00
|
|
|
return atoi(Get<std::string>().c_str());
|
2012-12-10 23:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> double AssOverrideParameter::Get<double>() const {
|
2013-01-13 18:48:24 +01:00
|
|
|
return atof(Get<std::string>().c_str());
|
2012-12-10 23:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> float AssOverrideParameter::Get<float>() const {
|
2013-01-13 18:48:24 +01:00
|
|
|
return atof(Get<std::string>().c_str());
|
2012-12-10 23:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool AssOverrideParameter::Get<bool>() const {
|
|
|
|
return Get<int>() != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> agi::Color AssOverrideParameter::Get<agi::Color>() const {
|
2012-12-30 00:53:56 +01:00
|
|
|
return Get<std::string>();
|
2012-12-10 23:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> AssDialogueBlockOverride *AssOverrideParameter::Get<AssDialogueBlockOverride*>() const {
|
|
|
|
if (!block.get()) {
|
2012-12-30 00:53:56 +01:00
|
|
|
block.reset(new AssDialogueBlockOverride(Get<std::string>()));
|
2012-12-10 23:19:28 +01:00
|
|
|
block->ParseTags();
|
|
|
|
}
|
|
|
|
return block.get();
|
|
|
|
}
|
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
template<> void AssOverrideParameter::Set<std::string>(std::string new_value) {
|
2012-12-10 23:19:28 +01:00
|
|
|
omitted = false;
|
|
|
|
value = new_value;
|
|
|
|
block.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> void AssOverrideParameter::Set<int>(int new_value) {
|
2013-02-07 17:55:01 +01:00
|
|
|
if (classification == AssParameterClass::ALPHA)
|
2013-01-14 05:31:46 +01:00
|
|
|
Set(str(boost::format("&H%02X&") % mid(0, new_value, 255)));
|
|
|
|
else
|
|
|
|
Set(std::to_string(new_value));
|
2012-12-10 23:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> void AssOverrideParameter::Set<double>(double new_value) {
|
2012-12-30 00:53:56 +01:00
|
|
|
Set(std::to_string(new_value));
|
2012-12-10 23:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> void AssOverrideParameter::Set<bool>(bool new_value) {
|
|
|
|
Set<int>(new_value);
|
|
|
|
}
|
|
|
|
|
2012-12-10 00:40:28 +01:00
|
|
|
namespace {
|
|
|
|
/// The parameter is absent unless the total number of parameters is the
|
|
|
|
/// indicated number. Note that only arguments not at the end need to be marked
|
|
|
|
/// as optional; this is just to know which parameters to skip when there are
|
|
|
|
/// earlier optional arguments
|
|
|
|
enum AssParameterOptional {
|
|
|
|
NOT_OPTIONAL = 0xFF,
|
|
|
|
OPTIONAL_1 = 0x01,
|
|
|
|
OPTIONAL_2 = 0x02,
|
|
|
|
OPTIONAL_3 = 0x04,
|
|
|
|
OPTIONAL_4 = 0x08,
|
|
|
|
OPTIONAL_5 = 0x10,
|
|
|
|
OPTIONAL_6 = 0x20,
|
|
|
|
OPTIONAL_7 = 0x40
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Prototype of a single override parameter
|
|
|
|
struct AssOverrideParamProto {
|
|
|
|
/// ASS_ParameterOptional
|
|
|
|
int optional;
|
|
|
|
|
|
|
|
/// Type of this parameter
|
|
|
|
VariableDataType type;
|
|
|
|
|
|
|
|
/// Semantic type of this parameter
|
|
|
|
AssParameterClass classification;
|
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
AssOverrideParamProto(VariableDataType type, int opt, AssParameterClass classi)
|
|
|
|
: optional(opt)
|
|
|
|
, type(type)
|
|
|
|
, classification(classi)
|
|
|
|
{
|
|
|
|
}
|
2012-12-10 00:40:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct AssOverrideTagProto {
|
|
|
|
/// Name of the tag, with slash
|
2012-12-30 00:53:56 +01:00
|
|
|
std::string name;
|
|
|
|
|
2012-12-10 00:40:28 +01:00
|
|
|
/// Parameters to this tag
|
|
|
|
std::vector<AssOverrideParamProto> params;
|
2012-12-30 00:53:56 +01:00
|
|
|
|
2012-12-10 00:40:28 +01:00
|
|
|
typedef std::vector<AssOverrideTagProto>::iterator iterator;
|
|
|
|
|
|
|
|
/// @brief Add a parameter to this tag prototype
|
|
|
|
/// @param type Data type of the parameter
|
|
|
|
/// @param classi Semantic type of the parameter
|
|
|
|
/// @param opt Situations in which this parameter is present
|
2013-02-07 17:55:01 +01:00
|
|
|
void AddParam(VariableDataType type, AssParameterClass classi = AssParameterClass::NORMAL, int opt = NOT_OPTIONAL) {
|
2012-12-30 00:53:56 +01:00
|
|
|
params.emplace_back(type, opt, classi);
|
|
|
|
}
|
|
|
|
|
2012-12-10 00:40:28 +01:00
|
|
|
/// @brief Convenience function for single-argument tags
|
|
|
|
/// @param name Name of the tag, with slash
|
|
|
|
/// @param type Data type of the parameter
|
|
|
|
/// @param classi Semantic type of the parameter
|
|
|
|
/// @param opt Situations in which this parameter is present
|
2013-02-07 17:55:01 +01:00
|
|
|
void Set(const char *name, VariableDataType type, AssParameterClass classi = AssParameterClass::NORMAL, int opt = NOT_OPTIONAL) {
|
2012-12-30 00:53:56 +01:00
|
|
|
this->name = name;
|
|
|
|
params.emplace_back(type, opt, classi);
|
|
|
|
}
|
2012-12-10 00:40:28 +01:00
|
|
|
};
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2010-06-24 03:24:43 +02:00
|
|
|
static std::vector<AssOverrideTagProto> proto;
|
|
|
|
static void load_protos() {
|
|
|
|
static bool loaded = false;
|
2006-01-16 22:02:54 +01:00
|
|
|
if (loaded) return;
|
|
|
|
loaded = true;
|
|
|
|
|
2010-06-04 05:07:58 +02:00
|
|
|
proto.resize(56);
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
// Longer tag names must appear before shorter tag names
|
|
|
|
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[0].Set("\\alpha", VariableDataType::TEXT, AssParameterClass::ALPHA); // \alpha&H<aa>&
|
|
|
|
proto[++i].Set("\\bord", VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_SIZE); // \bord<depth>
|
|
|
|
proto[++i].Set("\\xbord", VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_SIZE); // \xbord<depth>
|
|
|
|
proto[++i].Set("\\ybord", VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_SIZE); // \ybord<depth>
|
|
|
|
proto[++i].Set("\\shad", VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_SIZE); // \shad<depth>
|
|
|
|
proto[++i].Set("\\xshad", VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_SIZE); // \xshad<depth>
|
|
|
|
proto[++i].Set("\\yshad", VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_SIZE); // \yshad<depth>
|
2012-03-25 06:05:06 +02:00
|
|
|
|
2006-01-16 22:02:54 +01:00
|
|
|
// \fade(<a1>,<a2>,<a3>,<t1>,<t2>,<t3>,<t4>)
|
2010-06-04 05:07:58 +02:00
|
|
|
i++;
|
2011-09-28 21:43:11 +02:00
|
|
|
proto[i].name = "\\fade";
|
2013-02-07 17:49:11 +01:00
|
|
|
proto[i].AddParam(VariableDataType::INT);
|
|
|
|
proto[i].AddParam(VariableDataType::INT);
|
|
|
|
proto[i].AddParam(VariableDataType::INT);
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::RELATIVE_TIME_START);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::RELATIVE_TIME_START);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::RELATIVE_TIME_START);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::RELATIVE_TIME_START);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
// \move(<x1>,<y1>,<x2>,<y2>[,<t1>,<t2>])
|
2010-06-04 05:07:58 +02:00
|
|
|
i++;
|
2011-09-28 21:43:11 +02:00
|
|
|
proto[i].name = "\\move";
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[i].AddParam(VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_POS_X);
|
|
|
|
proto[i].AddParam(VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_POS_Y);
|
|
|
|
proto[i].AddParam(VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_POS_X);
|
|
|
|
proto[i].AddParam(VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_POS_Y);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::RELATIVE_TIME_START);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::RELATIVE_TIME_START);
|
2010-06-04 05:07:58 +02:00
|
|
|
|
|
|
|
// If these are rearranged, keep rect clip and vector clip adjacent in this order
|
2006-01-16 22:02:54 +01:00
|
|
|
// \clip(<x1>,<y1>,<x2>,<y2>)
|
2010-06-04 05:07:58 +02:00
|
|
|
i++;
|
2011-09-28 21:43:11 +02:00
|
|
|
proto[i].name = "\\clip";
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_X);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_Y);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_X);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_Y);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
// \clip([<scale>,]<some drawings>)
|
2010-06-04 05:07:58 +02:00
|
|
|
i++;
|
2011-09-28 21:43:11 +02:00
|
|
|
proto[i].name = "\\clip";
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::NORMAL,OPTIONAL_2);
|
|
|
|
proto[i].AddParam(VariableDataType::TEXT, AssParameterClass::DRAWING);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2008-09-10 18:13:54 +02:00
|
|
|
// \iclip(<x1>,<y1>,<x2>,<y2>)
|
2010-06-04 05:07:58 +02:00
|
|
|
i++;
|
2011-09-28 21:43:11 +02:00
|
|
|
proto[i].name = "\\iclip";
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_X);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_Y);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_X);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_Y);
|
2008-09-10 18:13:54 +02:00
|
|
|
|
|
|
|
// \iclip([<scale>,]<some drawings>)
|
2010-06-04 05:07:58 +02:00
|
|
|
i++;
|
2011-09-28 21:43:11 +02:00
|
|
|
proto[i].name = "\\iclip";
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::NORMAL,OPTIONAL_2);
|
|
|
|
proto[i].AddParam(VariableDataType::TEXT, AssParameterClass::DRAWING);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[++i].Set("\\fscx", VariableDataType::FLOAT, AssParameterClass::RELATIVE_SIZE_X); // \fscx<percent>
|
|
|
|
proto[++i].Set("\\fscy", VariableDataType::FLOAT, AssParameterClass::RELATIVE_SIZE_Y); // \fscy<percent>
|
2006-01-16 22:02:54 +01:00
|
|
|
// \pos(<x>,<y>)
|
2010-06-04 05:07:58 +02:00
|
|
|
i++;
|
2011-09-28 21:43:11 +02:00
|
|
|
proto[i].name = "\\pos";
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[i].AddParam(VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_POS_X);
|
|
|
|
proto[i].AddParam(VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_POS_Y);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
// \org(<x>,<y>)
|
2010-06-04 05:07:58 +02:00
|
|
|
i++;
|
2011-09-28 21:43:11 +02:00
|
|
|
proto[i].name = "\\org";
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_X);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_Y);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[++i].Set("\\pbo", VariableDataType::INT, AssParameterClass::ABSOLUTE_POS_Y); // \pbo<y>
|
2006-01-16 22:02:54 +01:00
|
|
|
// \fad(<t1>,<t2>)
|
2010-06-04 05:07:58 +02:00
|
|
|
i++;
|
2011-09-28 21:43:11 +02:00
|
|
|
proto[i].name = "\\fad";
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::RELATIVE_TIME_START);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::RELATIVE_TIME_END);
|
2013-02-07 17:49:11 +01:00
|
|
|
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[++i].Set("\\fsp", VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_SIZE); // \fsp<pixels>
|
2013-02-07 17:49:11 +01:00
|
|
|
proto[++i].Set("\\frx", VariableDataType::FLOAT); // \frx<degrees>
|
|
|
|
proto[++i].Set("\\fry", VariableDataType::FLOAT); // \fry<degrees>
|
|
|
|
proto[++i].Set("\\frz", VariableDataType::FLOAT); // \frz<degrees>
|
|
|
|
proto[++i].Set("\\fr", VariableDataType::FLOAT); // \fr<degrees>
|
|
|
|
proto[++i].Set("\\fax", VariableDataType::FLOAT); // \fax<factor>
|
|
|
|
proto[++i].Set("\\fay", VariableDataType::FLOAT); // \fay<factor>
|
|
|
|
proto[++i].Set("\\1c", VariableDataType::TEXT); // \1c&H<bbggrr>&
|
|
|
|
proto[++i].Set("\\2c", VariableDataType::TEXT); // \2c&H<bbggrr>&
|
|
|
|
proto[++i].Set("\\3c", VariableDataType::TEXT); // \3c&H<bbggrr>&
|
|
|
|
proto[++i].Set("\\4c", VariableDataType::TEXT); // \4c&H<bbggrr>&
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[++i].Set("\\1a", VariableDataType::TEXT, AssParameterClass::ALPHA); // \1a&H<aa>&
|
|
|
|
proto[++i].Set("\\2a", VariableDataType::TEXT, AssParameterClass::ALPHA); // \2a&H<aa>&
|
|
|
|
proto[++i].Set("\\3a", VariableDataType::TEXT, AssParameterClass::ALPHA); // \3a&H<aa>&
|
|
|
|
proto[++i].Set("\\4a", VariableDataType::TEXT, AssParameterClass::ALPHA); // \4a&H<aa>&
|
2013-02-07 17:49:11 +01:00
|
|
|
proto[++i].Set("\\fe", VariableDataType::TEXT); // \fe<charset>
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[++i].Set("\\ko", VariableDataType::INT, AssParameterClass::KARAOKE); // \ko<duration>
|
|
|
|
proto[++i].Set("\\kf", VariableDataType::INT, AssParameterClass::KARAOKE); // \kf<duration>
|
2013-02-07 17:49:11 +01:00
|
|
|
proto[++i].Set("\\be", VariableDataType::INT); // \be<strength>
|
|
|
|
proto[++i].Set("\\blur", VariableDataType::FLOAT); // \blur<strength>
|
|
|
|
proto[++i].Set("\\fn", VariableDataType::TEXT); // \fn<name>
|
|
|
|
proto[++i].Set("\\fs+", VariableDataType::FLOAT); // \fs+<size>
|
|
|
|
proto[++i].Set("\\fs-", VariableDataType::FLOAT); // \fs-<size>
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[++i].Set("\\fs", VariableDataType::FLOAT, AssParameterClass::ABSOLUTE_SIZE); // \fs<size>
|
2013-02-07 17:49:11 +01:00
|
|
|
proto[++i].Set("\\an", VariableDataType::INT); // \an<alignment>
|
|
|
|
proto[++i].Set("\\c", VariableDataType::TEXT); // \c&H<bbggrr>&
|
|
|
|
proto[++i].Set("\\b", VariableDataType::INT); // \b<0/1/weight>
|
|
|
|
proto[++i].Set("\\i", VariableDataType::BOOL); // \i<0/1>
|
|
|
|
proto[++i].Set("\\u", VariableDataType::BOOL); // \u<0/1>
|
|
|
|
proto[++i].Set("\\s", VariableDataType::BOOL); // \s<0/1>
|
|
|
|
proto[++i].Set("\\a", VariableDataType::INT); // \a<alignment>
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[++i].Set("\\k", VariableDataType::INT, AssParameterClass::KARAOKE); // \k<duration>
|
|
|
|
proto[++i].Set("\\K", VariableDataType::INT, AssParameterClass::KARAOKE); // \K<duration>
|
2013-02-07 17:49:11 +01:00
|
|
|
proto[++i].Set("\\q", VariableDataType::INT); // \q<0-3>
|
|
|
|
proto[++i].Set("\\p", VariableDataType::INT); // \p<n>
|
|
|
|
proto[++i].Set("\\r", VariableDataType::TEXT); // \r[<name>]
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
// \t([<t1>,<t2>,][<accel>,]<style modifiers>)
|
2010-06-04 05:07:58 +02:00
|
|
|
i++;
|
2011-09-28 21:43:11 +02:00
|
|
|
proto[i].name = "\\t";
|
2013-02-07 17:55:01 +01:00
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::RELATIVE_TIME_START,OPTIONAL_3 | OPTIONAL_4);
|
|
|
|
proto[i].AddParam(VariableDataType::INT, AssParameterClass::RELATIVE_TIME_START,OPTIONAL_3 | OPTIONAL_4);
|
|
|
|
proto[i].AddParam(VariableDataType::FLOAT, AssParameterClass::NORMAL,OPTIONAL_2 | OPTIONAL_4);
|
2013-02-07 17:49:11 +01:00
|
|
|
proto[i].AddParam(VariableDataType::BLOCK);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
std::vector<std::string> tokenize(const std::string &text) {
|
|
|
|
std::vector<std::string> paramList;
|
2010-06-04 05:07:58 +02:00
|
|
|
paramList.reserve(6);
|
2006-01-29 23:46:18 +01:00
|
|
|
|
2012-12-10 00:40:28 +01:00
|
|
|
if (text.empty())
|
2010-06-24 03:24:43 +02:00
|
|
|
return paramList;
|
2012-12-10 00:40:28 +01:00
|
|
|
|
2011-09-28 21:43:11 +02:00
|
|
|
if (text[0] != '(') {
|
2010-06-24 03:24:43 +02:00
|
|
|
// There's just one parameter (because there's no parentheses)
|
|
|
|
// This means text is all our parameters
|
2012-12-30 00:53:56 +01:00
|
|
|
paramList.emplace_back(boost::trim_copy(text));
|
2010-06-24 03:24:43 +02:00
|
|
|
return paramList;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ok, so there are parentheses used here, so there may be more than one parameter
|
|
|
|
// Enter fullscale parsing!
|
|
|
|
size_t i = 0, textlen = text.size();
|
|
|
|
int parDepth = 1;
|
|
|
|
while (i < textlen && parDepth > 0) {
|
|
|
|
// Just skip until next ',' or ')', whichever comes first
|
|
|
|
// (Next ')' is achieved when parDepth == 0)
|
2012-12-30 00:53:56 +01:00
|
|
|
size_t start = ++i;
|
2006-01-29 23:46:18 +01:00
|
|
|
while (i < textlen && parDepth > 0) {
|
2012-12-30 00:53:56 +01:00
|
|
|
char c = text[i];
|
2010-06-24 03:24:43 +02:00
|
|
|
// parDepth 1 is where we start, and the tag-level we're interested in parsing on
|
2011-09-28 21:43:11 +02:00
|
|
|
if (c == ',' && parDepth == 1) break;
|
|
|
|
if (c == '(') parDepth++;
|
|
|
|
else if (c == ')') {
|
2012-12-30 00:53:56 +01:00
|
|
|
if (--parDepth == 0) {
|
2010-06-24 03:24:43 +02:00
|
|
|
// We just ate the parenthesis ending this parameter block
|
|
|
|
// Make sure it doesn't get included in the parameter text
|
|
|
|
break;
|
2006-01-29 23:46:18 +01:00
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2010-06-24 03:24:43 +02:00
|
|
|
i++;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2010-06-24 03:24:43 +02:00
|
|
|
// i now points to the first character not member of this parameter
|
2012-12-30 00:53:56 +01:00
|
|
|
paramList.emplace_back(boost::trim_copy(text.substr(start, i - start)));
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2010-06-24 03:24:43 +02:00
|
|
|
|
|
|
|
if (i+1 < textlen) {
|
|
|
|
// There's some additional garbage after the parentheses
|
|
|
|
// Just add it in for completeness
|
2012-12-30 00:53:56 +01:00
|
|
|
paramList.emplace_back(text.begin() + i + 1, text.end());
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2010-06-24 03:24:43 +02:00
|
|
|
return paramList;
|
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
void parse_parameters(AssOverrideTag *tag, const std::string &text, AssOverrideTagProto::iterator proto_it) {
|
2012-12-10 00:40:28 +01:00
|
|
|
tag->Clear();
|
2010-06-24 03:24:43 +02:00
|
|
|
|
|
|
|
// Tokenize text, attempting to find all parameters
|
2012-12-30 00:53:56 +01:00
|
|
|
std::vector<std::string> paramList = tokenize(text);
|
2010-06-24 03:24:43 +02:00
|
|
|
size_t totalPars = paramList.size();
|
|
|
|
|
|
|
|
int parsFlag = 1 << (totalPars - 1); // Get optional parameters flag
|
2011-12-26 23:20:49 +01:00
|
|
|
// vector (i)clip is the second clip proto_ittype in the list
|
2012-12-10 00:40:28 +01:00
|
|
|
if ((tag->Name == "\\clip" || tag->Name == "\\iclip") && totalPars != 4) {
|
2011-12-26 23:20:49 +01:00
|
|
|
++proto_it;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2006-01-17 08:52:18 +01:00
|
|
|
|
2010-06-24 03:24:43 +02:00
|
|
|
unsigned curPar = 0;
|
2012-11-04 04:53:03 +01:00
|
|
|
for (auto& curproto : proto_it->params) {
|
2006-01-16 22:02:54 +01:00
|
|
|
// Create parameter
|
2012-12-10 23:19:28 +01:00
|
|
|
tag->Params.emplace_back(curproto.type, curproto.classification);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2010-06-24 03:24:43 +02:00
|
|
|
// Check if it's optional and not present
|
2012-12-09 19:36:13 +01:00
|
|
|
if (!(curproto.optional & parsFlag) || curPar >= totalPars)
|
2010-06-24 03:24:43 +02:00
|
|
|
continue;
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-12-10 23:19:28 +01:00
|
|
|
tag->Params.back().Set(paramList[curPar++]);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-10 00:40:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// From ass_dialogue.h
|
|
|
|
void AssDialogueBlockOverride::ParseTags() {
|
2012-12-11 00:32:36 +01:00
|
|
|
Tags.clear();
|
2012-12-10 00:40:28 +01:00
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
int depth = 0;
|
|
|
|
size_t start = 0;
|
|
|
|
for (size_t i = 1; i < text.size(); ++i) {
|
|
|
|
if (depth > 0) {
|
|
|
|
if (text[i] == ')')
|
|
|
|
--depth;
|
|
|
|
}
|
|
|
|
else if (text[i] == '\\') {
|
|
|
|
Tags.emplace_back(text.substr(start, i - start));
|
|
|
|
start = i;
|
|
|
|
}
|
|
|
|
else if (text[i] == '(')
|
|
|
|
++depth;
|
2012-12-10 00:40:28 +01:00
|
|
|
}
|
2012-12-30 00:53:56 +01:00
|
|
|
|
|
|
|
if (!text.empty())
|
|
|
|
Tags.emplace_back(text.substr(start));
|
2012-12-10 00:40:28 +01:00
|
|
|
}
|
2012-12-11 00:32:36 +01:00
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
void AssDialogueBlockOverride::AddTag(std::string const& tag) {
|
2012-12-11 00:32:36 +01:00
|
|
|
Tags.emplace_back(tag);
|
2012-12-10 00:40:28 +01:00
|
|
|
}
|
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
static std::string tag_str(AssOverrideTag const& t) { return t; }
|
|
|
|
std::string AssDialogueBlockOverride::GetText() {
|
|
|
|
text = "{" + join(Tags | transformed(tag_str), std::string()) + "}";
|
2012-12-10 00:40:28 +01:00
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AssDialogueBlockOverride::ProcessParameters(ProcessParametersCallback callback, void *userData) {
|
2012-12-11 00:32:36 +01:00
|
|
|
for (auto& tag : Tags) {
|
|
|
|
for (auto& par : tag.Params) {
|
2012-12-10 23:19:28 +01:00
|
|
|
if (par.omitted) continue;
|
2012-12-10 00:40:28 +01:00
|
|
|
|
2012-12-11 00:32:36 +01:00
|
|
|
callback(tag.Name, &par, userData);
|
2012-12-10 00:40:28 +01:00
|
|
|
|
|
|
|
// Go recursive if it's a block parameter
|
2013-02-07 17:49:11 +01:00
|
|
|
if (par.GetType() == VariableDataType::BLOCK)
|
2012-12-10 00:40:28 +01:00
|
|
|
par.Get<AssDialogueBlockOverride*>()->ProcessParameters(callback, userData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AssOverrideTag::AssOverrideTag() : valid(false) { }
|
2012-12-30 00:53:56 +01:00
|
|
|
AssOverrideTag::AssOverrideTag(std::string const& text) {
|
2012-12-10 00:40:28 +01:00
|
|
|
SetText(text);
|
|
|
|
}
|
2012-12-11 00:32:36 +01:00
|
|
|
AssOverrideTag::AssOverrideTag(AssOverrideTag&& rhs)
|
|
|
|
: valid(rhs.valid)
|
|
|
|
, Name(std::move(rhs.Name))
|
|
|
|
, Params(std::move(rhs.Params))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AssOverrideTag& AssOverrideTag::operator=(AssOverrideTag&& rhs) {
|
|
|
|
valid = rhs.valid;
|
|
|
|
Name = std::move(rhs.Name);
|
|
|
|
Params = std::move(rhs.Params);
|
|
|
|
return *this;
|
|
|
|
}
|
2012-12-10 00:40:28 +01:00
|
|
|
|
|
|
|
void AssOverrideTag::Clear() {
|
|
|
|
Params.clear();
|
|
|
|
Params.reserve(6);
|
|
|
|
valid = false;
|
|
|
|
}
|
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
void AssOverrideTag::SetText(const std::string &text) {
|
2012-12-10 00:40:28 +01:00
|
|
|
load_protos();
|
2012-12-23 00:35:13 +01:00
|
|
|
for (auto cur = proto.begin(); cur != proto.end(); ++cur) {
|
2012-12-30 00:53:56 +01:00
|
|
|
if (boost::starts_with(text, cur->name)) {
|
2012-12-10 00:40:28 +01:00
|
|
|
Name = cur->name;
|
2012-12-30 00:53:56 +01:00
|
|
|
parse_parameters(this, text.substr(Name.size()), cur);
|
2012-12-10 00:40:28 +01:00
|
|
|
valid = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2012-12-30 00:53:56 +01:00
|
|
|
|
2012-12-10 00:40:28 +01:00
|
|
|
// Junk tag
|
|
|
|
Name = text;
|
|
|
|
valid = false;
|
|
|
|
}
|
|
|
|
|
2012-12-30 00:53:56 +01:00
|
|
|
static std::string param_str(AssOverrideParameter const& p) { return p.Get<std::string>(); }
|
|
|
|
AssOverrideTag::operator std::string() const {
|
|
|
|
std::string result = Name;
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2006-01-29 23:46:18 +01:00
|
|
|
// Determine if it needs parentheses
|
2012-12-07 17:12:35 +01:00
|
|
|
bool parentheses = Params.size() > 1;
|
2011-09-28 21:43:11 +02:00
|
|
|
if (parentheses) result += "(";
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
// Add parameters
|
2012-12-07 17:06:03 +01:00
|
|
|
result += join(Params
|
2012-12-10 23:19:28 +01:00
|
|
|
| filtered([](AssOverrideParameter const& p) { return !p.omitted; } )
|
2012-12-07 17:06:03 +01:00
|
|
|
| transformed(param_str),
|
2012-12-30 00:53:56 +01:00
|
|
|
",");
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-09-28 21:43:11 +02:00
|
|
|
if (parentheses) result += ")";
|
2006-01-16 22:02:54 +01:00
|
|
|
return result;
|
|
|
|
}
|