]> git.vomp.tv Git - vompclient.git/blob - osdopenvg.h
Add recording option to VEpgSummary
[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, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef OSDOPENVG_H
22 #define OSDOPENVG_H
23
24 #include <stdio.h>
25
26
27 #include <EGL/egl.h>
28 #include <EGL/eglext.h>
29 #include <VG/openvg.h>
30 #include <VG/vgu.h>
31
32
33
34 #include "osdvector.h"
35 #include "defines.h"
36 #include "log.h"
37 #include "threadp.h"
38 #include "mutex.h"
39 #include "signal.h"
40 #include "videoomx.h"
41 #ifdef PICTURE_DECODER_OMX
42 #include "imageomx.h"
43 #endif
44
45 #include <deque>
46
47 #include <ft2build.h>
48 #include FT_FREETYPE_H
49
50 enum OpenVGTask {
51         OVGdestroyImageRef,
52         OVGdestroyPaint,
53         OVGcreateImagePalette,
54         OVGcreateMonoBitmap,
55         OVGcreateColorRef,
56         OVGimageUploadLine,
57         //OVGcreateImageFile,
58         OVGreplacefont,
59         OVGcreateImageMemory,
60         OVGcreateEGLImage,
61         OVGreadyEGLImage
62 };
63
64 struct OpenVGCommand
65 {
66         enum OpenVGTask task;
67         const void *data;
68         const void *data2;
69         unsigned int param1,param2,param3;
70         unsigned int id; //only set an id if you are waiting
71 };
72
73 struct OpenVGResponse{
74         unsigned int id;
75         unsigned int result;
76 };
77
78
79 class OsdOpenVG : public OsdVector, public Thread_TYPE, public EGLPictureCreator
80 {
81   public:
82     OsdOpenVG();
83     virtual ~OsdOpenVG();
84
85     int init(void* device);
86     int shutdown();
87     int stopUpdate();
88
89
90
91
92     float getFontHeight();
93     float getCharWidth(wchar_t c);
94     void imageUploadLine(ImageIndex index,unsigned int j,unsigned int width,void *data);
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
105 protected:
106
107
108    /*osd vector implementation*/
109     void destroyImageRef(ImageIndex index);
110    // ImageIndex createJpeg(const char* fileName, int *width,int *height);
111     ImageIndex createMonoBitmap(void *base,int width,int height);
112     ImageIndex createImagePalette(int width,int height,const unsigned char *image_data,const unsigned int*palette_data);
113     void createPicture(struct PictureInfo& pict_inf);
114     void destroyStyleRef(unsigned int index);
115         unsigned int createStyleRef(const DrawStyle &c);
116         unsigned int createColorRef(const Colour &c);
117         bool getStaticImageData(unsigned int static_id, UCHAR **userdata, ULONG *length);
118
119         void drawSetTrans(SurfaceCommands & sc);
120         void executeDrawCommand(SVGCommand & command);
121
122         void initPaths();
123         void destroyPaths();
124         VGPath std_paths[Point+1];
125         long long  lastrendertime;
126         void InternalRendering();
127         void getScreenSize(int &width, int &height);
128
129
130
131         Mutex vgmutex;
132         Mutex taskmutex;
133         Signal vgtaskSignal;
134     deque<OpenVGCommand> vgcommands;
135     deque<OpenVGResponse> vgresponses;
136     bool processTasks();
137     bool haveOpenVGResponse(unsigned int id,unsigned int * resp);
138     unsigned int  putOpenVGCommand(OpenVGCommand& comm,bool wait);
139     unsigned int handleTask(OpenVGCommand& command);
140     //void purgeAllReferences();
141     unsigned int wait_id;
142
143     FT_Library  ft_library;
144     FT_Face     ft_face;
145     VGFont vgfont;
146     VGFont vgttfont;
147     VGPaint vgttpaint;
148     int  loadFont(bool fontchange);
149     map<unsigned int,float> font_exp_x;
150     vector<char*> fontnames;
151     vector<char*> fontnames_keys;
152     char * cur_fontname;
153
154     int clip_shift_x;
155     int clip_shift_y;
156
157     unsigned int loadTTchar(cTeletextChar c);
158     map<unsigned int,int> tt_font_chars;
159
160
161
162         void threadMethod();
163     void threadPostStopCleanup();
164
165
166          /* BCM specific */
167
168     uint32_t display_height;
169         uint32_t display_width;
170         DISPMANX_DISPLAY_HANDLE_T bcm_display;
171         DISPMANX_ELEMENT_HANDLE_T bcm_element;
172 //      DISPMANX_ELEMENT_HANDLE_T bcm_background;
173 //      DISPMANX_RESOURCE_HANDLE_T bcm_backres;
174
175         uint32_t mode;
176
177
178         EGLDisplay egl_display;
179         EGLSurface egl_surface;
180         EGLContext egl_context;
181         EGLConfig egl_ourconfig;
182         float font_height;
183         float aspect_correction;
184         bool freetype_inited;
185
186 #ifdef PICTURE_DECODER_OMX
187         ImageOMX *imageomx;
188 #endif
189
190 };
191
192 #endif