2012-10-12 04:12:42 +02:00
|
|
|
// Copyright (c) 2012, Thomas Goyne <plorkyeran@aegisub.org>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
class AssAttachment;
|
|
|
|
class AssFile;
|
|
|
|
|
|
|
|
class AssParser {
|
2014-05-22 03:32:42 +02:00
|
|
|
class HeaderToProperty;
|
|
|
|
std::unique_ptr<HeaderToProperty> property_handler;
|
|
|
|
|
2012-10-12 04:12:42 +02:00
|
|
|
AssFile *target;
|
|
|
|
int version;
|
2012-11-16 00:46:56 +01:00
|
|
|
std::unique_ptr<AssAttachment> attach;
|
2013-01-04 16:01:50 +01:00
|
|
|
void (AssParser::*state)(std::string const&);
|
2012-10-12 04:57:53 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
void ParseAttachmentLine(std::string const& data);
|
|
|
|
void ParseEventLine(std::string const& data);
|
|
|
|
void ParseStyleLine(std::string const& data);
|
|
|
|
void ParseScriptInfoLine(std::string const& data);
|
2014-05-22 03:32:42 +02:00
|
|
|
void ParseMetadataLine(std::string const& data);
|
2013-01-04 16:01:50 +01:00
|
|
|
void ParseFontLine(std::string const& data);
|
|
|
|
void ParseGraphicsLine(std::string const& data);
|
2014-04-22 19:21:00 +02:00
|
|
|
void ParseExtradataLine(std::string const &data);
|
2013-01-04 16:01:50 +01:00
|
|
|
void UnknownLine(std::string const&) { }
|
2012-10-12 04:12:42 +02:00
|
|
|
public:
|
|
|
|
AssParser(AssFile *target, int version);
|
|
|
|
~AssParser();
|
2013-01-04 16:01:50 +01:00
|
|
|
|
|
|
|
void AddLine(std::string const& data);
|
2012-10-12 04:12:42 +02:00
|
|
|
};
|