mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
44 lines
2.1 KiB
C++
44 lines
2.1 KiB
C++
#pragma once
|
|
|
|
#include "Parsing/Menu/MenuFileParserState.h"
|
|
#include "Parsing/Sequence/SequenceResult.h"
|
|
#include "Parsing/Simple/Matcher/SimpleMatcherFactory.h"
|
|
|
|
namespace menu
|
|
{
|
|
class MenuMatcherFactory : public SimpleMatcherFactory
|
|
{
|
|
static constexpr auto TAG_STRING_CHAIN = 1420;
|
|
static constexpr auto TAG_IDENTIFIER = 1421;
|
|
static constexpr auto TAG_INT = 1422;
|
|
static constexpr auto TAG_NUMERIC = 1423;
|
|
static constexpr auto TAG_EXPRESSION = 1424;
|
|
|
|
static constexpr auto CAPTURE_FIRST_TOKEN = 1420;
|
|
static constexpr auto CAPTURE_STRING_CHAIN = 1421;
|
|
static constexpr auto CAPTURE_IDENTIFIER = 1422;
|
|
static constexpr auto CAPTURE_INT = 1423;
|
|
static constexpr auto CAPTURE_NUMERIC = 1424;
|
|
|
|
public:
|
|
explicit MenuMatcherFactory(const IMatcherForLabelSupplier<SimpleParserValue>* labelSupplier);
|
|
|
|
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> StringChain() const;
|
|
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> Text() const;
|
|
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> TextNoChain() const;
|
|
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> Numeric() const;
|
|
|
|
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> TextExpression() const;
|
|
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> IntExpression() const;
|
|
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> NumericExpression() const;
|
|
|
|
_NODISCARD static int TokenNumericIntValue(const SimpleParserValue& value);
|
|
_NODISCARD static double TokenNumericFloatingPointValue(const SimpleParserValue& value);
|
|
_NODISCARD static std::string& TokenTextValue(const SimpleParserValue& value);
|
|
|
|
_NODISCARD static std::string TokenTextExpressionValue(MenuFileParserState* state, SequenceResult<SimpleParserValue>& result);
|
|
_NODISCARD static int TokenIntExpressionValue(MenuFileParserState* state, SequenceResult<SimpleParserValue>& result);
|
|
_NODISCARD static double TokenNumericExpressionValue(MenuFileParserState* state, SequenceResult<SimpleParserValue>& result);
|
|
};
|
|
} // namespace menu
|