glib.c
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:10k
源码类别:

uCOS

开发平台:

C/C++

  1. //====================================================================
  2. // File Name : Glib.c
  3. // Function  : S3C2440 Graphic library(drawing).
  4. // Program   : 
  5. // Date      : May 30, 2002
  6. // Version   : 0.0
  7. // History
  8. // -2410
  9. //   0.0 : Programming start ???
  10. // -2440
  11. //   R0.0 (20030421): Modified for 2440. -> Junon
  12. //====================================================================
  13. #include "def.h"
  14. #include "lcdlib.h"
  15. #include "glib.h"
  16. #include "2440lcd.h"
  17. #include "LCDMem.h"
  18. void (*PutPixel)(U32,U32,U32);
  19. extern void LCD_L0_SetPixelIndex(U32 x, U32 y, U32 PixelIndex);
  20. void Glib_Init(int type)
  21. {
  22.     switch(type)
  23.     {
  24.     case MODE_STN_1BIT:
  25.      PutPixel=_PutStn1Bit;
  26.      break;
  27.     case MODE_STN_2BIT:
  28.        PutPixel=_PutStn2Bit;
  29.        break;
  30.     case MODE_STN_4BIT:
  31.        PutPixel=_PutStn4Bit;
  32.         break;
  33.     case MODE_CSTN_8BIT:
  34.      PutPixel=_PutCstn8Bit;
  35.      break;   
  36. case MODE_CSTN_12BIT:
  37. PutPixel=_PutCstn12Bit;
  38. break;  
  39. case MODE_CSTN_12BIT_UP:
  40. case MODE_CSTN_16BIT:
  41. PutPixel=_PutCstn16Bit;
  42. break;  
  43.     case MODE_TFT_8BIT_240320:
  44.      PutPixel=_PutTft8Bit_240320;   
  45.      break;   
  46.     case MODE_TFT_16BIT_240320:
  47.      //PutPixel=_PutTft16Bit_240320;
  48.      PutPixel=LCD_PutPixel;
  49.      break;   
  50.     case MODE_TFT_1BIT_640480:
  51.      PutPixel=_PutTft1Bit_640480;
  52.      break;   
  53.     case MODE_TFT_8BIT_640480:
  54.      PutPixel=_PutTft8Bit_640480;
  55.      break;   
  56.     case MODE_TFT_16BIT_640480:
  57.      PutPixel= LCD_L0_SetPixelIndex;
  58.      break;   
  59.     case MODE_TFT_24BIT_640480:
  60.      PutPixel=_PutTft24Bit_640480;
  61.      break;   
  62. //--------------------------------------
  63.     case MODE_TFT_1BIT_800600:
  64.      PutPixel=_PutTft1Bit_800600;
  65.      break;   
  66.     case MODE_TFT_8BIT_800600:
  67.      PutPixel=_PutTft8Bit_800600;
  68.      break;   
  69.     case MODE_TFT_16BIT_800600:
  70.      PutPixel=_PutTft16Bit_800600;
  71.      break;   
  72. //--------------------------------------
  73.     default: 
  74.      break;
  75.     }
  76. }
  77. void _PutStn1Bit(U32 x,U32 y,U32 c)
  78. {
  79.     if(x<SCR_XSIZE_STN&& y<SCR_YSIZE_STN)
  80. frameBuffer1Bit[(y)][(x)/32]=( frameBuffer1Bit[(y)][(x)/32]
  81. & ~(0x80000000>>((x)%32)*1) ) | ( (c&0x00000001)<< ((32-1-((x)%32))*1) );
  82. }
  83. void _PutStn2Bit(U32 x,U32 y,U32 c)
  84. {
  85.     if(x<SCR_XSIZE_STN&& y<SCR_YSIZE_STN)
  86.         frameBuffer2Bit[(y)][(x)/16]=( frameBuffer2Bit[(y)][x/16]
  87. & ~(0xc0000000>>((x)%16)*2) ) | ( (c&0x00000003)<<((16-1-((x)%16))*2) );
  88. }
  89. void _PutStn4Bit(U32 x,U32 y,U32 c)
  90. {
  91.     if(x<SCR_XSIZE_STN&& y<SCR_YSIZE_STN)
  92.         frameBuffer4Bit[(y)][(x)/8]=( frameBuffer4Bit[(y)][x/8]
  93. & ~(0xf0000000>>((x)%8)*4) ) | ( (c&0x0000000f)<<((8-1-((x)%8))*4) );
  94. }
  95. void _PutCstn8Bit(U32 x,U32 y,U32 c)
  96. {
  97.     if(x<SCR_XSIZE_CSTN&& y<SCR_YSIZE_CSTN)
  98.         frameBuffer8Bit[(y)][(x)/4]=( frameBuffer8Bit[(y)][x/4]
  99.     & ~(0xff000000>>((x)%4)*8) ) | ( (c&0x000000ff)<<((4-1-((x)%4))*8) );
  100. }
  101. void _PutCstn12Bit(U32 x,U32 y,U32 c)
  102. {
  103.     U32 z;
  104.     z=((x)%8);
  105.     if(x<SCR_XSIZE_CSTN&& y<SCR_YSIZE_CSTN)
  106.     {
  107.         if((z%3)!=2)
  108.             frameBuffer12Bit[(y)][(x)*3/8]=
  109.             ( frameBuffer12Bit[(y)][(x)*3/8] & ~(0xfff00000>>(((z/3)*4)+((z)%3)*12) )
  110. | ( (c&0xfff)<<(20-(((z/3)*4)+((z)%3)*12))) );
  111.         else
  112.         {
  113.             if(z==2)
  114.             {
  115.                 frameBuffer12Bit[(y)][(x)*3/8]=( (frameBuffer12Bit[(y)][(x)*3/8]
  116.     & ~(0xff)) | ((c&0xff0)>>4)  ); 
  117.                 frameBuffer12Bit[(y)][((x)*3/8)+1]=( (frameBuffer12Bit[(y)][((x)*3/8)+1]
  118.     & ~(0xf0000000)) | ((c&0xf)<<28)  );
  119.             }   
  120.             else if(z==5)
  121.             {
  122.                 frameBuffer12Bit[(y)][(x)*3/8]=( (frameBuffer12Bit[(y)][(x)*3/8]
  123.             & ~(0xf)) | ((c&0xf00)>>8)  );
  124.                 frameBuffer12Bit[(y)][((x)*3/8)+1]=( (frameBuffer12Bit[(y)][((x)*3/8)+1]
  125.             & ~(0xff000000)) | ((c&0xff)<<24)  );
  126.             }   
  127.         }
  128.     }
  129. }
  130. void _PutCstn16Bit(U32 x,U32 y,U32 c)
  131. {
  132.     if(x<SCR_XSIZE_CSTN&& y<SCR_YSIZE_CSTN)
  133.         frameBuffer16Bit[(y)][(x)/2]=( frameBuffer16Bit[(y)][x/2]
  134.     & ~(0xffff0000>>((x)%2)*16) ) | ( (c&0x0000ffff)<<((2-1-((x)%2))*16) );
  135. }
  136. void _PutTft8Bit_240320(U32 x,U32 y,U32 c)
  137. {
  138.     if(x<SCR_XSIZE_TFT_240320 && y<SCR_YSIZE_TFT_240320)
  139.         frameBuffer8BitTft240320[(y)][(x)/4]=( frameBuffer8BitTft240320[(y)][x/4]
  140.         & ~(0xff000000>>((x)%4)*8) ) | ( (c&0x000000ff)<<((4-1-((x)%4))*8) );
  141. }
  142. void _PutTft16Bit_240320(U32 x,U32 y,U32 c)
  143. {
  144.     if(x<SCR_XSIZE_TFT_240320 && y<SCR_YSIZE_TFT_240320)
  145.         frameBuffer16BitTft240320[(y)][(x)/2]=( frameBuffer16BitTft240320[(y)][x/2]
  146.         & ~(0xffff0000>>((x)%2)*16) ) | ( (c&0x0000ffff)<<((2-1-((x)%2))*16) );
  147. }
  148. void _PutTft1Bit_640480(U32 x,U32 y,U32 c)
  149. {
  150.     if(x<SCR_XSIZE_TFT_640480 && y<SCR_YSIZE_TFT_640480)
  151.         frameBuffer1BitTft640480[(y)][(x)/32]=( frameBuffer1BitTft640480[(y)][x/32]
  152. & ~(0x80000000>>((x)%32)*1) ) | ( (c&0x00000001)<< ((32-1-((x)%32))*1) );
  153. }
  154. void _PutTft8Bit_640480(U32 x,U32 y,U32 c)
  155. {
  156.     if(x<SCR_XSIZE_TFT_640480 && y<SCR_YSIZE_TFT_640480)
  157.         frameBuffer8BitTft640480[(y)][(x)/4]=( frameBuffer8BitTft640480[(y)][x/4]
  158.         & ~(0xff000000>>((x)%4)*8) ) | ( (c&0x000000ff)<<((4-1-((x)%4))*8) );
  159. }
  160. void _PutTft16Bit_640480(U32 x,U32 y,U32 c)
  161. {
  162.     if(x<SCR_XSIZE_TFT_640480 && y<SCR_YSIZE_TFT_640480)
  163.         frameBuffer16BitTft640480[(y)][(x)/2]=( frameBuffer16BitTft640480[(y)][x/2]
  164.         & ~(0xffff0000>>((x)%2)*16) ) | ( (c&0x0000ffff)<<((2-1-((x)%2))*16) );
  165. }
  166. void _PutTft24Bit_640480(U32 x,U32 y,U32 c)
  167. {
  168.     if(x<SCR_XSIZE_TFT_640480 && y<SCR_YSIZE_TFT_640480)
  169.         frameBuffer24BitTft640480[(y)][(x)]=( frameBuffer24BitTft640480[(y)][(x)]
  170.         & (0x0) | ( c&0xffffff00)); // | ( c&0x00ffffff)); LSB 
  171. }
  172. void _PutTft1Bit_800600(U32 x,U32 y,U32 c)
  173. {
  174.     if(x<SCR_XSIZE_TFT_800600 && y<SCR_YSIZE_TFT_800600)
  175.         frameBuffer1BitTft800600[(y)][(x)/32]=( frameBuffer1BitTft800600[(y)][x/32]
  176. & ~(0x80000000>>((x)%32)*1) ) | ( (c&0x00000001)<< ((32-1-((x)%32))*1) );
  177. }
  178. void _PutTft8Bit_800600(U32 x,U32 y,U32 c)
  179. {
  180.     if(x<SCR_XSIZE_TFT_800600 && y<SCR_YSIZE_TFT_800600)
  181.         frameBuffer8BitTft800600[(y)][(x)/4]=( frameBuffer8BitTft800600[(y)][x/4]
  182.         & ~(0xff000000>>((x)%4)*8) ) | ( (c&0x000000ff)<<((4-1-((x)%4))*8) );
  183. }
  184. void _PutTft16Bit_800600(U32 x,U32 y,U32 c)
  185. {
  186.     if(x<SCR_XSIZE_TFT_800600 && y<SCR_YSIZE_TFT_800600)
  187.         frameBuffer16BitTft800600[(y)][(x)/2]=( frameBuffer16BitTft800600[(y)][x/2]
  188.         & ~(0xffff0000>>((x)%2)*16) ) | ( (c&0x0000ffff)<<((2-1-((x)%2))*16) );
  189. }
  190. void Glib_Rectangle(int x1,int y1,int x2,int y2,int color)
  191. {
  192.     Glib_Line(x1,y1,x2,y1,color);
  193.     Glib_Line(x2,y1,x2,y2,color);
  194.     Glib_Line(x1,y2,x2,y2,color);
  195.     Glib_Line(x1,y1,x1,y2,color);
  196. }
  197. void Glib_FilledRectangle(int x1,int y1,int x2,int y2,int color)
  198. {
  199.     int i;
  200.     for(i=y1;i<=y2;i++)
  201. Glib_Line(x1,i,x2,i,color);
  202. }
  203. // LCD display is flipped vertically
  204. // But, think the algorithm by mathematics point.
  205. //   3I2
  206. //   4 I 1
  207. //  --+--   <-8 octants  mathematical cordinate
  208. //   5 I 8
  209. //   6I7
  210. void Glib_Line(int x1,int y1,int x2,int y2,int color)
  211. {
  212. int dx,dy,e;
  213. dx=x2-x1; 
  214. dy=y2-y1;
  215.     
  216. if(dx>=0)
  217. {
  218. if(dy >= 0) // dy>=0
  219. {
  220. if(dx>=dy) // 1/8 octant
  221. {
  222. e=dy-dx/2;
  223. while(x1<=x2)
  224. {
  225. PutPixel(x1,y1,color);
  226. if(e>0){y1+=1;e-=dx;}
  227. x1+=1;
  228. e+=dy;
  229. }
  230. }
  231. else // 2/8 octant
  232. {
  233. e=dx-dy/2;
  234. while(y1<=y2)
  235. {
  236. PutPixel(x1,y1,color);
  237. if(e>0){x1+=1;e-=dy;}
  238. y1+=1;
  239. e+=dx;
  240. }
  241. }
  242. }
  243. else    // dy<0
  244. {
  245. dy=-dy;   // dy=abs(dy)
  246. if(dx>=dy) // 8/8 octant
  247. {
  248. e=dy-dx/2;
  249. while(x1<=x2)
  250. {
  251. PutPixel(x1,y1,color);
  252. if(e>0){y1-=1;e-=dx;}
  253. x1+=1;
  254. e+=dy;
  255. }
  256. }
  257. else // 7/8 octant
  258. {
  259. e=dx-dy/2;
  260. while(y1>=y2)
  261. {
  262. PutPixel(x1,y1,color);
  263. if(e>0){x1+=1;e-=dy;}
  264. y1-=1;
  265. e+=dx;
  266. }
  267. }
  268. }
  269. }
  270. else //dx<0
  271. {
  272. dx=-dx; //dx=abs(dx)
  273. if(dy >= 0) // dy>=0
  274. {
  275. if(dx>=dy) // 4/8 octant
  276. {
  277. e=dy-dx/2;
  278. while(x1>=x2)
  279. {
  280. PutPixel(x1,y1,color);
  281. if(e>0){y1+=1;e-=dx;}
  282. x1-=1;
  283. e+=dy;
  284. }
  285. }
  286. else // 3/8 octant
  287. {
  288. e=dx-dy/2;
  289. while(y1<=y2)
  290. {
  291. PutPixel(x1,y1,color);
  292. if(e>0){x1-=1;e-=dy;}
  293. y1+=1;
  294. e+=dx;
  295. }
  296. }
  297. }
  298. else    // dy<0
  299. {
  300. dy=-dy;   // dy=abs(dy)
  301. if(dx>=dy) // 5/8 octant
  302. {
  303. e=dy-dx/2;
  304. while(x1>=x2)
  305. {
  306. PutPixel(x1,y1,color);
  307. if(e>0){y1-=1;e-=dx;}
  308. x1-=1;
  309. e+=dy;
  310. }
  311. }
  312. else // 6/8 octant
  313. {
  314. e=dx-dy/2;
  315. while(y1>=y2)
  316. {
  317. PutPixel(x1,y1,color);
  318. if(e>0){x1-=1;e-=dy;}
  319. y1-=1;
  320. e+=dx;
  321. }
  322. }
  323. }
  324. }
  325. }
  326. void Glib_ClearScr(U32 c, int type)
  327. {
  328.     //Very inefficient function.
  329.     int i,j;
  330.     //if((type==MODE_TFT_1BIT_800600)|(type==MODE_TFT_8BIT_800600)|(type==MODE_TFT_16BIT_800600))
  331.     if((type&0x4000)&&(type&0x400))
  332. for(j=0;j<SCR_YSIZE_TFT_800600;j++)
  333.             for(i=0;i<SCR_XSIZE_TFT_800600;i++)
  334.         PutPixel(i,j,c);
  335.     //else if((type==MODE_TFT_1BIT_640480)|(type==MODE_TFT_8BIT_640480)|(type==MODE_TFT_16BIT_640480))
  336.     else if((type&0x4000)&&(type&0x200))
  337. for(j=0;j<SCR_YSIZE_TFT_640480;j++)
  338.             for(i=0;i<SCR_XSIZE_TFT_640480;i++)
  339.         PutPixel(i,j,c);
  340.     //else if((type==MODE_TFT_1BIT_240320)|(type==MODE_TFT_8BIT_240320)|(type==MODE_TFT_16BIT_240320))
  341.     else if((type&0x4000)&&(type&0x100))
  342. for(j=0;j<SCR_YSIZE_TFT_240320;j++)
  343.             for(i=0;i<SCR_XSIZE_TFT_240320;i++)
  344.         PutPixel(i,j,c);
  345.     else if(type&0x2000)
  346.         for(j=0;j<SCR_YSIZE_CSTN;j++)
  347.          for(i=0;i<SCR_XSIZE_CSTN;i++)
  348.         PutPixel(i,j,c);
  349.     else
  350.         for(j=0;j<SCR_YSIZE_STN;j++)
  351.          for(i=0;i<SCR_XSIZE_STN;i++)
  352.         PutPixel(i,j,c);
  353. }