4

使用 RoboVM 绑定:https ://github.com/BlueRiverInteractive/robovm-ios-bindings 更具体地说是 Google Play 游戏服务绑定。

我似乎无法编译绑定。收到此错误:

An internal error occurred during: "Launching my-gdx-game-robovm".
No @Marshaler found for parameter 3 of @Bridge method 
<org.robovm.bindings.gpgs.GPGLeaderboard: void   
objc_loadScoresWithCompletionHandler(org.robovm.bindings.gpgs.GPGLeaderboard,org.robovm.objc.S elector,org.robovm.bindings.gpgs.GPGLeaderboardLoadScoresBlock)>

现在您可以说绑定本身存在错误,但我认为情况并非如此,因为会发生以下情况:

  1. 如果您直接运行 GPGC 项目(通过运行示例应用程序),它会正确编译并在模拟器上运行。
  2. 如果您尝试编译引用了 GPGC 项目的整个 libGDX 游戏,则会引发此错误。
  3. 如果您对 GPGLeaderboard 文件(包含错误的文件)进行更改并尝试直接运行 GPGC 项目,它也会引发此错误。如果你第二次运行它,它会神奇地消失。

为什么会这样?怎么可能修好?

使用最新的 GPGC 绑定和最新的 RoboVM nightlies (2014.01.05)。

谢谢你。

编辑:绑定的作者修复了这个问题(截至 2014.01.07)。

4

2 回答 2

3

RoboVM 中的块编组最近发生了变化。这些绑定的作者必须相应地更新它们。这是一个示例(来自UIApplication),它显示了如何VoidBlock在实例方法中编组 a:

private static final Selector beginBackgroundTaskWithExpirationHandler$ = Selector.register("beginBackgroundTaskWithExpirationHandler:");
@Bridge private native static int objc_beginBackgroundTask(UIApplication __self__, Selector __cmd__, ObjCBlock handler);
@Bridge private native static int objc_beginBackgroundTaskSuper(ObjCSuper __super__, Selector __cmd__, ObjCBlock handler);
public int beginBackgroundTask(VoidBlock handler) {
    return beginBackgroundTask(VoidBlock.Marshaler.toObjCBlock(handler));
}
protected int beginBackgroundTask(ObjCBlock handler) {
    if (customClass) { return objc_beginBackgroundTaskSuper(getSuper(), beginBackgroundTaskWithExpirationHandler$, handler); } else { return objc_beginBackgroundTask(this, beginBackgroundTaskWithExpirationHandler$, handler); }
}

这是一个静态方法的示例(in UIView):

private static final Selector animateWithDuration$animations$ = Selector.register("animateWithDuration:animations:");
@Bridge private native static void objc_animate(ObjCClass __self__, Selector __cmd__, double duration, ObjCBlock animations);
public static void animate(double duration, VoidBlock animations) {
    objc_animate(objCClass, animateWithDuration$animations$, duration, VoidBlock.Marshaler.toObjCBlock(animations));
}
于 2014-01-07T11:47:40.440 回答
2

BlueRiver 绑定已经更新以包含这些更改 - 除了用于应用内购买的 UIApplication 中的几个回调。您可能只需要提取最新版本。

于 2014-01-07T16:06:25.497 回答