mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-09-10 16:07:06 +00:00
Support static expressions for menu simple string properties
This commit is contained in:
@@ -8,13 +8,17 @@ namespace menu
|
||||
{
|
||||
class MenuMatcherFactory : public SimpleMatcherFactory
|
||||
{
|
||||
static constexpr auto TAG_INT = 1420;
|
||||
static constexpr auto TAG_NUMERIC = 1421;
|
||||
static constexpr auto TAG_EXPRESSION = 1422;
|
||||
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_INT = 1421;
|
||||
static constexpr auto CAPTURE_NUMERIC = 1422;
|
||||
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);
|
||||
@@ -24,6 +28,7 @@ namespace menu
|
||||
_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;
|
||||
|
||||
@@ -31,6 +36,7 @@ namespace menu
|
||||
_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);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user