2 Copyright 2004-2005 Chris Tallon
4 This file is part of VOMP.
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.
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.
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.
28 #include "teletxt/txtfont.h"
30 unsigned int interpol_table_fac1[16][22];
31 unsigned int interpol_table_fac2[16][22];
32 unsigned int interpol_table_fac3[16][22];
33 unsigned int interpol_table_fac4[16][22];
34 int interpol_lowbit[16];
35 int interpol_upbit[16];
36 int interpol_lowline[22];
37 int interpol_upline[22];
38 bool pol_table_inited=false;
40 void initpol_tables(){
44 if (Video::getInstance()->getFormat() == Video::PAL)
52 for (int py=0;py<charsizey;py++) {
53 float fposy=((float)(ttcharsizey))/((float)(charsizey))*((float)py);
54 float yweight=fposy-floor(fposy);
55 float yinvweight=1.-yweight;
56 interpol_upline[py]=min((unsigned int)ceil(fposy),9);
57 interpol_lowline[py]=max((unsigned int)floor(fposy),0);
58 for (int px=0;px<charsizex;px++) {
59 float fposx=((float)(ttcharsizex))/((float)(charsizex))*((float)px);
60 float xweight=fposx-floor(fposx);
61 float xinvweight=1.-xweight;
62 interpol_upbit[px]= (min((unsigned int)ceil(fposx),11));
63 interpol_lowbit[px]= (max((unsigned int)floor(fposx),0));
65 interpol_table_fac1[px][py]=xweight*yweight*256.;
66 interpol_table_fac2[px][py]=xinvweight*yweight*256.;
67 interpol_table_fac3[px][py]=xweight*yinvweight*256.;
68 interpol_table_fac4[px][py]=xinvweight*yinvweight*256.;
75 Surface* Surface::screen = NULL;
76 osd_font_t* Surface::font = &font_helvB18;
78 Surface::Surface(int id)
80 if (id == SCREEN) screen = this;
87 Surface* Surface::getScreen()
92 int Surface::drawText(const char* text, int x, int y, const DrawStyle& c)
94 return drawText(text, x, y, 2000, c);
97 int Surface::drawText(const char* text, int x, int y, int width, const DrawStyle& c)
111 unsigned char c = text[i];
112 unsigned long *character = &font->content[font->offset[c]];
113 int w = font->width[c];
116 for (X=0; (X<w) && (X + cx < width); X++)
120 if ((character[Y] >> (32 - X)) & 0x1)
122 drawPixel(x+X+cx, y+Y, rgba,true);
133 int Surface::drawTextRJ(const char* text, int x, int y, const DrawStyle& c)
140 for (i = 0; i < n; i++)
142 w += font->width[(unsigned char)text[i]];
148 else return drawText(text, x, y, c);
151 int Surface::drawTextCentre(const char* text, int x, int y, const DrawStyle& c)
158 for (i = 0; i < n; i++)
160 w += font->width[(unsigned char)text[i]]; //Characters bigger then 128 can appear
166 else return drawText(text, x, y, c);
169 float Surface::getCharWidth(wchar_t c)
171 return (float)font->width[(unsigned char) c];
174 int Surface::getFontHeight()
176 return font->spacing;
179 wchar_t Surface::getWChar(const char* str, unsigned int *length)
185 //Moved from Teletext view in order to allow device depend optimizations
187 Colour Surface::enumTeletextColorToCoulour(enumTeletextColor ttcol)
191 return Colour(0,0,0);
193 return Colour(255,0,0);
195 return Colour(0,255,0);
197 return Colour(255,255,0);
199 return Colour(0,0,255);
201 return Colour(255,0,255);
203 return Colour(0,255,255);
205 return Colour(255,255,255);
207 return Colour(0,0,0,0);
209 return Colour(127,0,0);
211 return Colour(0,127,0);
213 return Colour(127,127,0);
215 return Colour(0,0,127);
217 return Colour(127,0,127);
219 return Colour(0,127,127);
221 return Colour(127,127,127);
223 return Colour(0,0,0);
229 //Next function inspired by osdteletext plugin
230 void Surface::drawTTChar(int ox, int oy, int x, int y, cTeletextChar c)
232 if (!pol_table_inited){
234 pol_table_inited=true;
236 unsigned int buffer [10];
237 unsigned int * charmap=GetFontChar(c,buffer);
238 if (!charmap) { //invalid char
239 memset(&buffer,0,10);
242 enumTeletextColor ttforegcolour=c.GetFGColor();
243 enumTeletextColor ttbackgcolour=c.GetBGColor();
244 if (c.GetBoxedOut()) {
245 ttforegcolour=ttcTransparent;
246 ttbackgcolour=ttcTransparent;
252 if (Video::getInstance()->getFormat() == Video::PAL)
260 int screenposx=charsizex*x+ox; //12*40= 480 250
261 int screenposy=y*charsizey+oy;
264 // Log::getInstance()->log("Surface", Log::ERR, "TTpos %d %d %d %d %d %d",x,y,ox,oy,screenposx,screenposy);
265 Colour fgcharcl=enumTeletextColorToCoulour(ttforegcolour);
266 Colour bgcharcl=enumTeletextColorToCoulour(ttbackgcolour);
269 for (int py=0;py<charsizey;py++) {
270 int upperbitline=charmap[interpol_upline[py]];
271 int lowerbitline=charmap[interpol_lowline[py]];
272 for (int px=0;px<charsizex;px++) {
273 int upperbit= interpol_upbit[px];
274 int lowerbit= interpol_lowbit[px];
275 Colour uuc=( upperbitline &(0x8000>>upperbit)) ? fgcharcl: bgcharcl;
276 Colour ulc=( upperbitline &(0x8000>>lowerbit)) ? fgcharcl: bgcharcl;
277 Colour luc=( lowerbitline &(0x8000>>upperbit)) ? fgcharcl: bgcharcl;
278 Colour llc=( lowerbitline &(0x8000>>lowerbit)) ? fgcharcl: bgcharcl;
279 unsigned int fac1,fac2,fac3,fac4;
280 fac1=interpol_table_fac1[px][py];
281 fac2=interpol_table_fac2[px][py];
282 fac3=interpol_table_fac3[px][py];
283 fac4=interpol_table_fac4[px][py];
285 Colour res((uuc.red*fac1+ulc.red*fac2+luc.red*fac3+llc.red*fac4)/256,
286 (uuc.green*fac1+ulc.green*fac2+luc.green*fac3+llc.green*fac4)/256,
287 (uuc.blue*fac1+ulc.blue*fac2+luc.blue*fac3+llc.blue*fac4)/256,
288 (uuc.alpha*fac1+ulc.alpha*fac2+luc.alpha*fac3+llc.alpha*fac4)/256); //if this is too slow make a table
289 int c = ( (res.alpha << 24 )
293 drawPixel(screenposx+px,screenposy+py,c, true);
303 void Surface::drawMonoBitmap(UCHAR* base, int dx, int dy, unsigned int height,
304 unsigned int width, Colour& nextColour) {
307 unsigned int bytesIn, bitsIn;
308 int widthBytes=width/8;
309 for (y = 0; y < height; y++) {
310 for (x = 0; x < width; x++) {
311 bytesIn = (y * widthBytes) + (int) (x / 8);
314 if ((base[bytesIn] >> (7 - bitsIn)) & 0x01) {
315 drawPixel(dx+x, dy+y, nextColour, true);
322 void Surface::drawPoint(int x, int y, DrawStyle& c, bool fastdraw)
324 drawPixel(x,y,c,fastdraw);