-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
429 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require: | ||
- mecha.contrib.embed | ||
- mecha.contrib.json_files | ||
- mecha.contrib.nested_resources | ||
- demo | ||
data_pack: | ||
load: "src" | ||
pipeline: | ||
- mecha |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
from dataclasses import dataclass, replace | ||
from typing import Generator | ||
|
||
from beet import Context, LootTable | ||
from beet.core.utils import required_field | ||
from nbtlib import String | ||
|
||
from mecha import ( | ||
AbstractNode, | ||
AstChildren, | ||
AstJson, | ||
AstJsonObject, | ||
AstJsonObjectEntry, | ||
AstJsonObjectKey, | ||
AstJsonValue, | ||
AstNbt, | ||
AstNbtCompoundEntry, | ||
AstNbtCompoundKey, | ||
AstNbtValue, | ||
CompilationDatabase, | ||
Mecha, | ||
MutatingReducer, | ||
rule, | ||
) | ||
from mecha.contrib.embed import EmbedHandler | ||
from mecha.contrib.json_files import AstJsonRoot | ||
|
||
|
||
def beet_default(ctx: Context): | ||
mc = ctx.inject(Mecha) | ||
embed_handler = ctx.inject(EmbedHandler) | ||
|
||
mc.steps.insert( | ||
mc.steps.index(mc.transform) + 1, | ||
LootTableEmbedParser(database=mc.database, embed_handler=embed_handler), | ||
) | ||
mc.steps.insert(mc.steps.index(embed_handler.resolver), CustomSubstitutions()) | ||
|
||
|
||
@dataclass | ||
class LootTableEmbedParser(MutatingReducer): | ||
database: CompilationDatabase = required_field() | ||
embed_handler: EmbedHandler = required_field() | ||
|
||
def filter(self, node: AbstractNode) -> bool: | ||
return isinstance(node, AstJsonRoot) and isinstance( | ||
self.database.current, LootTable | ||
) | ||
|
||
@rule(AstJsonObject) | ||
def set_nbt( | ||
self, | ||
node: AstJsonObject, | ||
) -> Generator[AstJson, AstJson, AstJsonObject]: | ||
match {entry.key.value: entry for entry in node.entries}: | ||
case { | ||
"function": AstJsonObjectEntry( | ||
value=AstJsonValue(value="minecraft:set_nbt") | ||
) as function, | ||
"tag": tag, | ||
**kwargs, | ||
}: | ||
parsed_value = self.embed_handler.parse(tag.value, using="nbt_compound") | ||
if parsed_value is tag.value: | ||
return node | ||
parsed_value = yield parsed_value | ||
return replace( | ||
node, | ||
entries=AstChildren( | ||
[function, replace(tag, value=parsed_value), *kwargs.values()] | ||
), | ||
) | ||
case _: | ||
return node | ||
|
||
@rule(AstNbtCompoundEntry, key=AstNbtCompoundKey(value="json_text_component")) | ||
def json_text_component( | ||
self, | ||
node: AstNbtCompoundEntry, | ||
) -> Generator[AstNbt, AstNbt, AstNbtCompoundEntry]: | ||
parsed_value = self.embed_handler.parse(node.value, using="json") | ||
if parsed_value is node.value: | ||
return node | ||
parsed_value = yield parsed_value | ||
return replace(node, value=parsed_value) | ||
|
||
|
||
class CustomSubstitutions(MutatingReducer): | ||
@rule(AstNbtValue, value="$PLACEHOLDER") | ||
def replace_placeholder(self, node: AstNbtValue): | ||
return replace(node, value=String("owo")) # type: ignore | ||
|
||
@rule( | ||
AstJsonObjectEntry, | ||
key=AstJsonObjectKey(value="color"), | ||
value=AstJsonValue(value="aqua"), | ||
) | ||
def replace_color_aqua(self, node: AstJsonObjectEntry): | ||
return replace(node, value=replace(node.value, value="red")) |
30 changes: 30 additions & 0 deletions
30
examples/basic_embed/src/data/demo/functions/stuff.mcfunction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
loot_table demo:bar { | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "item", | ||
"name": "minecraft:emerald", | ||
"functions": [ | ||
{ | ||
"function": "minecraft:set_nbt", | ||
"tag": "{ \ | ||
custom: { \ | ||
item: '$PLACEHOLDER', \ | ||
json_text_component: '{ \ | ||
\"text\": \"nonsense\", \ | ||
\"color\": \"aqua\", \ | ||
\"function\": \"minecraft:set_nbt\", \ | ||
\"tag\": \"{who_cares: \\'$PLACE\ | ||
HOLDER\\'}\" \ | ||
}' \ | ||
} \ | ||
}" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "item", | ||
"name": "minecraft:diamond", | ||
"functions": [ | ||
{ | ||
"function": "minecraft:set_nbt", | ||
"tag": "{custom: {value: '$PLACEHOLDER'}}" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
"""Plugin for parsing and resolving embeds in json and nbt strings.""" | ||
|
||
|
||
__all__ = [ | ||
"AstJsonValueEmbed", | ||
"AstNbtValueEmbed", | ||
"EmbedHandler", | ||
"EmbedResolver", | ||
"EmbedParseCallback", | ||
"EmbedSerializeCallback", | ||
] | ||
|
||
|
||
from dataclasses import dataclass | ||
from difflib import SequenceMatcher | ||
from typing import Any, List, Optional, Protocol, TypeVar, Union | ||
|
||
from beet import Context, TextFileBase | ||
from beet.core.utils import required_field | ||
from tokenstream import INITIAL_LOCATION, Preprocessor, SourceLocation, set_location | ||
|
||
from mecha import ( | ||
AstJsonValue, | ||
AstNbtValue, | ||
AstNode, | ||
CompilationDatabase, | ||
Diagnostic, | ||
DiagnosticError, | ||
Mecha, | ||
MutatingReducer, | ||
rule, | ||
) | ||
|
||
AstNodeType = TypeVar("AstNodeType", bound=AstNode) | ||
|
||
|
||
@dataclass(frozen=True, slots=True) | ||
class AstJsonValueEmbed(AstJsonValue): | ||
"""Ast json value embed node.""" | ||
|
||
embed: AstNode = required_field() | ||
|
||
|
||
@dataclass(frozen=True, slots=True) | ||
class AstNbtValueEmbed(AstNbtValue): | ||
"""Ast nbt value embed node.""" | ||
|
||
embed: AstNode = required_field() | ||
|
||
|
||
def beet_default(ctx: Context): | ||
mc = ctx.inject(Mecha) | ||
embed_handler = ctx.inject(EmbedHandler) | ||
|
||
mc.steps.append(embed_handler.resolver) | ||
|
||
|
||
class EmbedParseCallback(Protocol): | ||
"""Callback required for parsing embed.""" | ||
|
||
def __call__( | ||
self, | ||
source: TextFileBase[Any], | ||
*, | ||
using: str, | ||
preprocessor: Preprocessor, | ||
) -> AstNode: | ||
... | ||
|
||
|
||
class EmbedSerializeCallback(Protocol): | ||
"""Callback required for serializing embed.""" | ||
|
||
def __call__(self, node: AstNode) -> str: | ||
... | ||
|
||
|
||
class EmbedHandler: | ||
"""Service for handling embeds within json and nbt strings.""" | ||
|
||
database: CompilationDatabase | ||
parse_callback: EmbedParseCallback | ||
serialize_callback: EmbedSerializeCallback | ||
resolver: "EmbedResolver" | ||
|
||
def __init__(self, arg: Union[Context, Mecha]): | ||
if isinstance(arg, Context): | ||
arg = arg.inject(Mecha) | ||
|
||
self.database = arg.database | ||
self.parse_callback = arg.parse | ||
self.serialize_callback = arg.serialize | ||
self.resolver = EmbedResolver(embed_handler=self) | ||
|
||
def parse( | ||
self, | ||
node: AstNodeType, | ||
source: Optional[TextFileBase[Any]] = None, | ||
*, | ||
using: str, | ||
) -> AstNodeType: | ||
"""Parse a string embed originating from the given source file. | ||
Defaults to the current source file. | ||
""" | ||
if isinstance(node, (AstJsonValueEmbed, AstNbtValueEmbed)): | ||
return node | ||
if not isinstance(node, (AstJsonValue, AstNbtValue)): | ||
return node | ||
|
||
if source is None: | ||
source = self.database.current | ||
compilation_unit = self.database[source] | ||
|
||
if not isinstance(node.value, str): | ||
d = Diagnostic( | ||
"error", | ||
f'Couldn\'t parse value of type "{type(node.value).__name__}" as "{using}" embed.', | ||
) | ||
raise set_location(d, node) | ||
|
||
value = str(node.value) | ||
source_mappings: List[SourceLocation] = [] | ||
preprocessed_mappings: List[SourceLocation] = [] | ||
|
||
if ( | ||
compilation_unit.source | ||
and not node.location.unknown | ||
and not node.end_location.unknown | ||
): | ||
source_location = node.location | ||
preprocessed_location = INITIAL_LOCATION | ||
|
||
raw_value = compilation_unit.source[ | ||
node.location.pos : node.end_location.pos | ||
] | ||
|
||
index = 0 | ||
raw_index = 0 | ||
|
||
sequence_matcher = SequenceMatcher(None, value, raw_value) | ||
for i, j, size in sequence_matcher.get_matching_blocks(): | ||
if size == 0: | ||
continue | ||
|
||
source_mappings.append(source_location) | ||
preprocessed_mappings.append(preprocessed_location) | ||
|
||
extra = raw_value[raw_index:j] | ||
missing = value[index:i] | ||
|
||
if extra or missing: | ||
source_location = source_location.skip_over(extra) | ||
preprocessed_location = preprocessed_location.skip_over(missing) | ||
source_mappings.append(source_location) | ||
preprocessed_mappings.append(preprocessed_location) | ||
|
||
index = i + size | ||
raw_index = j + size | ||
|
||
source_location = source_location.skip_over(raw_value[j:raw_index]) | ||
preprocessed_location = preprocessed_location.skip_over(value[i:index]) | ||
|
||
source_mappings.append(source_location) | ||
preprocessed_mappings.append(preprocessed_location) | ||
|
||
try: | ||
embed = self.parse_callback( | ||
source, | ||
using=using, | ||
preprocessor=lambda _: (value, source_mappings, preprocessed_mappings), | ||
) | ||
except DiagnosticError as exc: | ||
raise exc.diagnostics.exceptions[0] from None | ||
|
||
if isinstance(node, AstJsonValue): | ||
embed_type = AstJsonValueEmbed | ||
else: | ||
embed_type = AstNbtValueEmbed | ||
|
||
return set_location(embed_type(value=node.value, embed=embed), node) # type: ignore | ||
|
||
|
||
@dataclass | ||
class EmbedResolver(MutatingReducer): | ||
"""Mutating reducer that serializes embeds back to regular json and nbt strings.""" | ||
|
||
embed_handler: EmbedHandler = required_field() | ||
|
||
@rule(AstJsonValueEmbed) | ||
def json_embed(self, node: AstJsonValueEmbed): | ||
return set_location( | ||
AstJsonValue.from_value(self.embed_handler.serialize_callback(node.embed)), | ||
node, | ||
) | ||
|
||
@rule(AstNbtValueEmbed) | ||
def nbt_embed(self, node: AstNbtValueEmbed): | ||
return set_location( | ||
AstNbtValue.from_value(self.embed_handler.serialize_callback(node.embed)), | ||
node, | ||
) |
Oops, something went wrong.