move texture ID to stream on FilamentController

This commit is contained in:
Nick Fisher
2022-12-20 11:31:14 +08:00
parent 19fcc8ac53
commit 357b2b0b7c
2 changed files with 40 additions and 30 deletions

View File

@@ -13,7 +13,7 @@ typedef FilamentLight = int;
abstract class FilamentController {
Size get size;
late int textureId;
late Stream<int> textureId;
Future get initialized;
Stream get onInitializationRequested;
Future initialize();
@@ -102,7 +102,10 @@ class PolyvoxFilamentController extends FilamentController {
double _pixelRatio = 1.0;
Size size = Size(0, 0);
final _onInitRequestedController = StreamController();
final _textureIdController = StreamController<int>();
Stream<int> get textureId => _textureIdController.stream;
final _onInitRequestedController = StreamController.broadcast();
Stream get onInitializationRequested => _onInitRequestedController.stream;
final _initialized = Completer();
@@ -139,16 +142,21 @@ class PolyvoxFilamentController extends FilamentController {
Future createTextureViewer(int width, int height) async {
size = Size(width * _pixelRatio, height * _pixelRatio);
textureId =
print("Creating texture of size $size");
var textureId =
await _channel.invokeMethod("initialize", [size.width, size.height]);
_textureIdController.add(textureId);
_initialized.complete(true);
}
Future resize(int width, int height,
{double contentScaleFactor = 1.0}) async {
size = Size(width * _pixelRatio, height * _pixelRatio);
textureId = await _channel.invokeMethod("resize",
var textureId = await _channel.invokeMethod("resize",
[width * _pixelRatio, height * _pixelRatio, contentScaleFactor]);
print("Resized to $size with texutre Id $textureId");
_textureIdController.add(textureId);
}
@override

View File

@@ -55,15 +55,11 @@ class FilamentWidget extends StatefulWidget {
}
class _FilamentWidgetState extends State<FilamentWidget> {
bool _ready = false;
StreamSubscription? _listener;
@override
void initState() {
_listener = widget.controller.onInitializationRequested.listen((_) {
if (_ready) {
return;
}
WidgetsBinding.instance.addPostFrameCallback((timeStamp) async {
var size = ((context.findRenderObject()) as RenderBox).size;
print(
@@ -71,13 +67,9 @@ class _FilamentWidgetState extends State<FilamentWidget> {
await widget.controller
.createTextureViewer(size.width.toInt(), size.height.toInt());
print("Filament texture/viewer created.");
setState(() {
_ready = true;
});
_listener!.cancel();
_listener = null;
});
// we need to make sure a new frame is requested, otherwise the callback may not run
setState(() {});
});
@@ -91,23 +83,33 @@ class _FilamentWidgetState extends State<FilamentWidget> {
@override
Widget build(BuildContext context) {
if (!_ready) {
return Container();
}
var texture = Texture(
textureId: widget.controller.textureId,
filterQuality: FilterQuality.high,
);
return ResizeObserver(
onResized: (Size oldSize, Size newSize) async {
await widget.controller
.resize(newSize.width.toInt(), newSize.height.toInt());
},
child: Platform.isLinux
? Transform(
alignment: Alignment.center,
transform: Matrix4.rotationX(pi),
child: texture)
: texture);
return StreamBuilder(
stream: widget.controller.textureId,
builder: (ctx, AsyncSnapshot<int> textureId) {
if (textureId.data == null) {
return Container();
}
var texture = Texture(
key: ObjectKey("texture_${textureId.data}"),
textureId: textureId.data!,
filterQuality: FilterQuality.high,
);
return LayoutBuilder(
builder: ((context, constraints) => SizedBox(
height: constraints.maxHeight,
width: constraints.maxWidth,
child: ResizeObserver(
onResized: (Size oldSize, Size newSize) async {
await widget.controller.resize(
newSize.width.toInt(), newSize.height.toInt());
},
child: Platform.isLinux
? Transform(
alignment: Alignment.center,
transform: Matrix4.rotationX(pi),
child: texture)
: texture))));
});
}
}