我想创建一个为我生成此代码的宏:
if (myEntity.get(Attack) == null) myEntity.add(new Attack());
if (myEntity.get(Confused) == null) myEntity.add(new Confused());
if (myEntity.get(Defend) == null) myEntity.add(new Defend());
if (myEntity.get(Offense) == null) myEntity.add(new Offense());
在代码中,我想像这样声明/使用它:
EntityMacroUtils.addComponents(myEntity, Attack, Confused, Defend, Offense);
当前的宏功能如下所示:
macro public static function addComponents(entity:ExprOf<Entity>, components:Array<ExprOf<Class<Component>>>):Expr
{
var exprs:Array<Expr> = [];
for (componentClass in components)
{
var instance = macro $e { new $componentClass() }; // problem is here
var expr = macro if ($entity.get($componentClass) == null) $entity.add(instance);
exprs.push(expr);
}
return macro $b{ exprs };
}
此宏功能不正确,我收到错误:
EntityMacroUtils.hx:17:字符22-43:未找到类型:$ componentClass
问题是我不知道如何定义new $componentClass()
。我该如何解决这个问题?
我还想避免在输出代码中使用Type.createInstance
。
答案 0 :(得分:4)
以编程方式生成实例化代码的一种方法是使用&#34; old school&#34;枚举AST构建(兼容Haxe 3.0.1 +):
// new pack.age.TheClass()
return {
expr:ENew({name:"TheClass", pack:["pack", "age"], params:[]}, []),
pos:Context.currentPos()
};
使用具体化的改进语法是可能的:
// new pack.age.TheClass()
var typePath = { name:"TheClass", pack:["pack", "age"], params:[] };
return macro new $typePath();
现在,为方便的实例化帮助&#34;函数语法,我们需要做一些扭曲来从我们在宏函数中接收的表达式中提取类型路径:
// new Foo(), new pack.Bar(), new pack.age.Baz()
instantiate(Foo, pack.Bar, pack.age.Baz);
macro static function instantiate(list:Array<Expr>)
{
var news = [for (what in list) {
var tp = makeTypePath(what);
macro new $tp();
}];
return macro $b{news};
}
#if macro
static function makeTypePath(of:Expr, ?path:Array<String>):TypePath
{
switch (of.expr)
{
case EConst(CIdent(name)):
if (path != null) {
path.unshift(name);
name = path.pop();
}
else path = [];
return { name:name, pack:path, params:[] };
case EField(e, field):
if (path == null) path = [field];
else path.unshift(field);
return makeTypePath(e, path);
default:
throw "nope";
}
}
#end
答案 1 :(得分:2)
如果有人需要答案,我得到了这个感谢ousado在Haxe IRC聊天:
如果你单独使用宏,你可以这样做:
var ct = macro : pack.age.SomeTypename;
var tp = switch ct { case TPath(tp):tp; case _: throw "nope"; }
var expr = macro new $tp();
..或者,如果您明确构建tp
:
var tp = {sub:'SomeTypeName',params:[],pack:['pack','age'],name:"SomeModuleName"}
如您所见,此处明确给出了复杂类型路径。
不幸的是,Haxe对于表达式位置的类型并没有真正简洁的语法。您可以传递( _ : TypeName )
以提供包含ComplexType的表达式。
但是如果你想传递一个类型作为参数,你可以这样做:
import haxe.macro.Expr;
using haxe.macro.Tools;
class Thing {
public function new(){}
}
class OtherThing {
public function new(){}
}
class TMacroNew {
macro static function instances( arr:Array<Expr> ) {
var news = [for (e in arr) {
var ct = switch e.expr { case EParenthesis({expr:ECheckType(_,ct)}):ct; case _: throw "nope"; };
var tp = switch ct { case TPath(tp):tp; case _: throw "nope"; };
macro new $tp();
}];
trace( (macro $b{news}).toString());
return macro $b{news};
}
static function main(){
instances( (_:Thing), (_:Thing), (_:OtherThing) );
}
}
..如果你想要一个类型列表,你可能想要找到像( _ : L< One,Two,Three> )
这样的参数列表。
答案 2 :(得分:1)
接受的答案是有问题的,因为当涉及类型参数时,或者当应包括对非名义类型的支持时,它会中断。
我使用两个替代方法更新了示例,以便为类型列表提供更简洁的表示法,同时仍允许实际类型的语法。
import haxe.macro.Expr;
using haxe.macro.Tools;
class Thing {
public function new(){}
}
class OtherThing {
public function new(){}
}
class TPThing<T>{
public function new(){}
}
class TMacroNew {
macro static function instances( e:Expr ) {
var tps = switch e.expr {
case EParenthesis({expr:ECheckType(_,TPath({params:tps}))}):tps;
case ENew({params:tps},_):tps;
case _: throw "not supported";
}
var type_paths = [ for (tp in tps) switch tp {
case TPType(TPath(tp)):tp;
case _: throw "not supported";
}];
var news = [for (tp in type_paths) macro new $tp()];
trace( (macro $b{news}).toString());
return macro $b{news};
}
static function main(){
instances( (_:L<Thing,Thing,OtherThing,TPThing<Int>> ) );
instances( new L<Thing,Thing,OtherThing,TPThing<Int>>() );
}
}
编辑:
L< ... >
中的L可以是任何有效的类型名称。它的唯一目的是允许以有效语法编写以逗号分隔的类型列表。由于宏函数将表达式作为参数,因此我们必须使用允许/需要类型的表达式,例如:( _ :T ), new T(), var v:T, function(_:T):T {}
。