Mercurial > hg > orthanc-stone
view Framework/Viewport/WebAssemblyViewport.h @ 1271:0ca50d275b9a broker
upgrade to year 2020
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 31 Jan 2020 17:34:57 +0100 |
parents | a4bb8c2dd211 |
children | 7ec8fea061b9 |
line wrap: on
line source
/** * Stone of Orthanc * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017-2020 Osimis S.A., Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ #pragma once #if !defined(ORTHANC_ENABLE_WASM) # error Macro ORTHANC_ENABLE_WASM must be defined #endif #if ORTHANC_ENABLE_WASM != 1 # error This file can only be used if targeting WebAssembly #endif #include "IViewport.h" #include <emscripten.h> #include <emscripten/html5.h> namespace OrthancStone { class WebAssemblyViewport : public IViewport { private: class WasmLock; std::string shortCanvasId_; std::string fullCanvasId_; std::auto_ptr<ICompositor> compositor_; boost::shared_ptr<ViewportController> controller_; std::auto_ptr<IViewportInteractor> interactor_; static EM_BOOL OnRequestAnimationFrame(double time, void *userData); static EM_BOOL OnResize(int eventType, const EmscriptenUiEvent *uiEvent, void *userData); static EM_BOOL OnMouseDown(int eventType, const EmscriptenMouseEvent *mouseEvent, void *userData); static EM_BOOL OnMouseMove(int eventType, const EmscriptenMouseEvent *mouseEvent, void *userData); static EM_BOOL OnMouseUp(int eventType, const EmscriptenMouseEvent *mouseEvent, void *userData); protected: void Invalidate(); void ClearCompositor() { compositor_.reset(); } bool HasCompositor() const { return compositor_.get() != NULL; } void AcquireCompositor(ICompositor* compositor /* takes ownership */); virtual void Paint(ICompositor& compositor, ViewportController& controller) = 0; virtual void UpdateSize(ICompositor& compositor) = 0; public: WebAssemblyViewport(const std::string& canvasId, const Scene2D* scene); virtual ILock* Lock() ORTHANC_OVERRIDE; void AcquireInteractor(IViewportInteractor* interactor); const std::string& GetShortCanvasId() const { return shortCanvasId_; } const std::string& GetFullCanvasId() const { return fullCanvasId_; } }; }