Mercurial > hg > orthanc-stone
annotate Framework/Scene2D/OpenGLCompositor.h @ 1080:287ec78f63b4
GenericToolbox (fast c-string --> double or integer) + refactoring to be able
to set structures lut into configurator + fixed missing revision bump in
configurator + UT
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Mon, 21 Oct 2019 16:01:29 +0200 |
parents | 1091b2adeb5a |
children | d10d2acb8a02 2d8ab34c8c91 |
rev | line source |
---|---|
594 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium | |
6 * | |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #pragma once | |
23 | |
905
88bf49aebc13
introduced ICompositor and allow SdlViewport to work with a CairoCompositor (to run on machines without OpenGL drivers)
Alain Mazy <alain@mazy.be>
parents:
891
diff
changeset
|
24 #include "ICompositor.h" |
594 | 25 #include "Internals/CompositorHelper.h" |
26 #include "Internals/OpenGLColorTextureProgram.h" | |
27 #include "Internals/OpenGLFloatTextureProgram.h" | |
28 #include "Internals/OpenGLLinesProgram.h" | |
29 #include "Internals/OpenGLTextProgram.h" | |
30 | |
31 namespace OrthancStone | |
32 { | |
942
685c9a2d115f
Added missing ORTHANC_OVERRIDE + preparation for lost GL context handling + stubs for GL context event handlers
Benjamin Golinvaux <bgo@osimis.io>
parents:
911
diff
changeset
|
33 class OpenGLCompositor : public ICompositor, private Internals::CompositorHelper::IRendererFactory |
594 | 34 { |
35 private: | |
36 class Font; | |
37 | |
38 typedef std::map<size_t, Font*> Fonts; | |
39 | |
40 OpenGL::IOpenGLContext& context_; | |
41 Fonts fonts_; | |
42 Internals::CompositorHelper helper_; | |
43 Internals::OpenGLColorTextureProgram colorTextureProgram_; | |
44 Internals::OpenGLFloatTextureProgram floatTextureProgram_; | |
45 Internals::OpenGLLinesProgram linesProgram_; | |
46 Internals::OpenGLTextProgram textProgram_; | |
47 unsigned int canvasWidth_; | |
48 unsigned int canvasHeight_; | |
947
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
942
diff
changeset
|
49 |
594 | 50 const Font* GetFont(size_t fontIndex) const; |
51 | |
942
685c9a2d115f
Added missing ORTHANC_OVERRIDE + preparation for lost GL context handling + stubs for GL context event handlers
Benjamin Golinvaux <bgo@osimis.io>
parents:
911
diff
changeset
|
52 virtual Internals::CompositorHelper::ILayerRenderer* Create(const ISceneLayer& layer) ORTHANC_OVERRIDE; |
594 | 53 |
54 public: | |
55 OpenGLCompositor(OpenGL::IOpenGLContext& context, | |
600
6129b1e5ba42
BasicScene SDL sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
597
diff
changeset
|
56 const Scene2D& scene); |
594 | 57 |
905
88bf49aebc13
introduced ICompositor and allow SdlViewport to work with a CairoCompositor (to run on machines without OpenGL drivers)
Alain Mazy <alain@mazy.be>
parents:
891
diff
changeset
|
58 virtual ~OpenGLCompositor(); |
594 | 59 |
942
685c9a2d115f
Added missing ORTHANC_OVERRIDE + preparation for lost GL context handling + stubs for GL context event handlers
Benjamin Golinvaux <bgo@osimis.io>
parents:
911
diff
changeset
|
60 virtual void Refresh() ORTHANC_OVERRIDE; |
594 | 61 |
947
1091b2adeb5a
Fixed animation frame stopping when returning false + big work on the OpenGL
Benjamin Golinvaux <bgo@osimis.io>
parents:
942
diff
changeset
|
62 void SetFont(size_t index, const GlyphBitmapAlphabet& dict); |
594 | 63 |
64 #if ORTHANC_ENABLE_LOCALE == 1 | |
65 void SetFont(size_t index, | |
66 Orthanc::EmbeddedResources::FileResourceId resource, | |
67 unsigned int fontSize, | |
942
685c9a2d115f
Added missing ORTHANC_OVERRIDE + preparation for lost GL context handling + stubs for GL context event handlers
Benjamin Golinvaux <bgo@osimis.io>
parents:
911
diff
changeset
|
68 Orthanc::Encoding codepage) ORTHANC_OVERRIDE; |
594 | 69 #endif |
617 | 70 |
942
685c9a2d115f
Added missing ORTHANC_OVERRIDE + preparation for lost GL context handling + stubs for GL context event handlers
Benjamin Golinvaux <bgo@osimis.io>
parents:
911
diff
changeset
|
71 virtual unsigned int GetCanvasWidth() const ORTHANC_OVERRIDE |
617 | 72 { |
73 return canvasWidth_; | |
74 } | |
75 | |
942
685c9a2d115f
Added missing ORTHANC_OVERRIDE + preparation for lost GL context handling + stubs for GL context event handlers
Benjamin Golinvaux <bgo@osimis.io>
parents:
911
diff
changeset
|
76 virtual unsigned int GetCanvasHeight() const ORTHANC_OVERRIDE |
617 | 77 { |
78 return canvasHeight_; | |
79 } | |
594 | 80 }; |
81 } |