From 9ad00cafd4d7a000abac5a1b58998517e64f4b18 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 7 Jan 2024 23:52:26 +0100 Subject: [PATCH] Implement reconfigure() of PixmapPresenter --- pixmappresenter.d | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/pixmappresenter.d b/pixmappresenter.d index adf87d8..346ca09 100644 --- a/pixmappresenter.d +++ b/pixmappresenter.d @@ -952,10 +952,38 @@ final class PixmapPresenter { alias framebuffer = pixmap; /++ - Updates the configuration of the presenter + Updates the configuration of the presenter. + + Params: + resizeWindow = if false, `config.window.size` will be ignored. +/ - void reconfigure(const PresenterConfig config) { - assert(false, "Not implemented"); + void reconfigure(PresenterConfig config, const bool resizeWindow = false) { + // override requested window-size to current size if no resize requested + if (!resizeWindow) { + config.window.size = _poc.config.window.size; + } + + this.reconfigureImpl(config); + } + + private void reconfigureImpl(const ref PresenterConfig config) { + _poc.window.title = config.window.title; + + if (config.renderer.resolution != _poc.config.renderer.resolution) { + _poc.framebuffer.size = config.renderer.resolution; + } + + immutable resize = (config.window.size != _poc.config.window.size); + + // update stored configuration + _poc.config = config; + + if (resize) { + _poc.window.resize(config.window.size.width, config.window.size.height); + // resize-handler will call `_renderer.reconfigure()` + } else { + _renderer.reconfigure(); + } } /++ @@ -1039,6 +1067,8 @@ final class PixmapPresenter { _poc.config.window.size = newSize; _renderer.reconfigure(); + // ↑ In case this call gets removed, update `reconfigure()`. + // Current implementation takes advantage of the `_renderer.reconfigure()` call here. if (_onWindowResize !is null) { _onWindowResize(newSize);