3

我正在使用Flutter Flame制作 2D 游戏。该库使用画布,如下所示:

start() {
  var previous = Duration.ZERO;

  window.onBeginFrame = (now) {
    var recorder = new PictureRecorder();
    var canvas = new Canvas(
        recorder,
        new Rect.fromLTWH(
            0.0, 0.0, window.physicalSize.width, window.physicalSize.height));

    Duration delta = now - previous;
    if (previous == Duration.ZERO) {
      delta = Duration.ZERO;
    }
    previous = now;

    var t = delta.inMicroseconds / Duration.MICROSECONDS_PER_SECOND;

    update(t);
    render(canvas);

    var deviceTransform = new Float64List(16)
      ..[0] = window.devicePixelRatio
      ..[5] = window.devicePixelRatio
      ..[10] = 1.0
      ..[15] = 1.0;

    var builder = new SceneBuilder()
      ..pushTransform(deviceTransform)
      ..addPicture(Offset.zero, recorder.endRecording())
      ..pop();

    window.render(builder.build());
    window.scheduleFrame();
  };

  window.scheduleFrame();
}

值得注意的是,Flutter Flame 使用了一个 custom BindingBase,类似于 Widgets 的工作方式。

class _CustomBinder extends BindingBase with ServicesBinding {}

这对游戏很有用,但我希望在主菜单、设置页面等上使用真正的颤振小部件。

有没有办法在这两个上下文之间交换?

为了提供我正在寻找的东西的想法,我希望存在这两个功能:

loadHomeScreen(); // replaces the canvas, if any, with Flutter widgets
loadCanvasScene(); // replaces the Flutter widgets with the canvas
4

1 回答 1

4

在较新版本的Flame (0.8.x) 中,游戏成为常规小部件,因此支持具有常规小部件用于菜单和设置的应用程序。

从常规应用开始,在您的构建方法之一中,添加游戏实现的小部件:

class MyGame extends BaseGame {
  // your game here
}

// in your game screen class

final MyGame game = new MyGame();

@override
Widget build(BuildContext context) {
  return game.widget;
}

如需更深入的示例,请查看使用最新版本的 Flame 构建的完整游戏。您正在寻找的在游戏和应用程序之间切换的特定代码在这里

于 2018-02-17T13:30:37.050 回答