]> git.vomp.tv Git - vompclient.git/blob - osdopenvg.h
11 CWFs
[vompclient.git] / osdopenvg.h
1 /*
2     Copyright 2004-2005 Chris Tallon, 2006,2011-2012 Marten Richter
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP.  If not, see <https://www.gnu.org/licenses/>.
18 */
19
20 #ifndef OSDOPENVG_H
21 #define OSDOPENVG_H
22
23 #include <vector>
24 #include <deque>
25 #include <mutex>
26 #include <thread>
27 #include <condition_variable>
28
29 #include <EGL/egl.h>
30 #include <EGL/eglext.h>
31 #include <VG/openvg.h>
32 #include <VG/vgu.h>
33
34 #include "defines.h"
35 #include "osdvector.h"
36 #include "log.h"
37 #include "videoomx.h"
38 #include "staticartwork.h"
39 #ifdef PICTURE_DECODER_OMX
40   #include "imageomx.h"
41 #endif
42
43 #include <ft2build.h>
44 #include FT_FREETYPE_H
45
46 enum OpenVGTask
47 {
48   OVGdestroyImageRef,
49   OVGdestroyPaint,
50   OVGcreateImagePalette,
51   OVGcreateMonoBitmap,
52   OVGcreateColorRef,
53   OVGimageUploadLine,
54   //OVGcreateImageFile,
55   OVGreplacefont,
56   OVGcreateImageMemory,
57   OVGcreateEGLImage,
58   OVGreadyEGLImage
59 };
60
61 struct OpenVGResponse
62 {
63   bool done{};
64   UINT result;
65   std::condition_variable doneCond;
66 };
67
68 struct OpenVGCommand
69 {
70   enum OpenVGTask task;
71   const void* data;
72   const void* data2;
73   unsigned int param1, param2, param3;
74
75   struct OpenVGResponse* response{}; // If !NULL, a thread is waiting
76 };
77
78 class OsdOpenVG : public OsdVector
79 #ifdef PICTURE_DECODER_OMX
80   , public EGLPictureCreator
81 #endif
82 {
83   public:
84     OsdOpenVG();
85     virtual ~OsdOpenVG();
86
87     int init();
88     int shutdown();
89     int stopUpdate();
90
91     bool screenShot(void* buffer, int width, int height, bool osd /*include osd*/);
92
93     float getFontHeight();
94     float getCharWidth(wchar_t c);
95
96     int getFontNames(const char***  names, const char***  names_keys);
97
98     virtual void setFont(const char* fontname);
99
100     virtual float getPixelAspect() {return aspect_correction;};
101
102     bool getEGLPicture(struct OsdVector::PictureInfo& info, EGLDisplay* display);
103
104     void updateBackgroundColor(DrawStyle bg);
105
106   protected:
107     /*osd vector implementation*/
108     void destroyImageRef(ImageIndex index);
109     // ImageIndex createJpeg(const char* fileName, int *width,int *height);
110     ImageIndex createMonoBitmap(void* base, int width, int height);
111     ImageIndex createImagePalette(int width, int height, const unsigned char* image_data, const unsigned int* palette_data);
112     void createPicture(struct PictureInfo& pict_inf);
113     void destroyDrawStyleHandle(VectorHandle index);
114     VectorHandle createDrawStyleHandle(const DrawStyle& c);
115     bool getStaticImageData(unsigned int static_id, UCHAR** userdata, ULONG* length);
116
117     void drawSetTrans(SurfaceInfo& sc);
118     void executeDrawCommand(SVGCommand& command);
119
120     void initPaths();
121     void destroyPaths();
122     VGPath std_paths[PIPoint + 1];
123     long long  lastrendertime;
124     void InternalRendering();
125     void getScreenSize(int& width, int& height);
126     void getRealScreenSize(int& width, int& height);
127
128     std::mutex vgmutex;
129     std::mutex taskmutex;
130
131     std::deque<OpenVGCommand> vgcommands;
132     bool processOpenVGCommands();
133     unsigned int putOpenVGCommand(OpenVGCommand& comm, bool wait);
134     unsigned int handleOpenVGCommand(OpenVGCommand& command);
135     //void purgeAllReferences();
136
137     FT_Library  ft_library;
138     FT_Face     ft_face;
139     VGFont vgfont;
140     VGFont vgttfont;
141     VGPaint vgttpaint;
142     int loadFont(bool fontchange);
143     std::map<unsigned int, float> font_exp_x;
144     std::vector<char*> fontnames;
145     std::vector<char*> fontnames_keys;
146     char* cur_fontname;
147
148     int clip_shift_x;
149     int clip_shift_y;
150
151     unsigned int loadTTchar(cTeletextChar c);
152     std::map<unsigned int, int> tt_font_chars;
153
154     std::thread renderThread;
155     std::mutex renderThreadMutex; // used for start-protect, go-around signal, quit signal
156     std::condition_variable renderThreadCond;
157     int renderThreadReq; // 1 - do update, 2 - stop
158     void renderLoop();
159     void renderThreadStop();
160
161     /* BCM specific */
162
163     int32_t display_height{};
164     int32_t display_width{};
165     DISPMANX_DISPLAY_HANDLE_T bcm_display;
166     DISPMANX_ELEMENT_HANDLE_T bcm_element;
167     DISPMANX_ELEMENT_HANDLE_T bcm_background;
168     DISPMANX_RESOURCE_HANDLE_T bcm_backres{};
169
170     uint32_t mode{};
171
172     EGLDisplay egl_display;
173     EGLSurface egl_surface;
174     EGLContext egl_context;
175     EGLConfig egl_ourconfig;
176     float font_height;
177     float aspect_correction{1.};
178     bool freetype_inited{};
179
180     uint8_t* static_artwork_begin[sa_MAX];
181     uint8_t* static_artwork_end[sa_MAX];
182
183 #ifdef PICTURE_DECODER_OMX
184     ImageOMX* imageomx;
185 #endif
186 };
187
188 #endif