123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923 |
- /*
- * File : dc.c
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2006 - 2009, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2009-10-16 Bernard first version
- * 2010-09-20 richard modified rtgui_dc_draw_round_rect
- * 2010-09-27 Bernard fix draw_mono_bmp issue
- * 2011-04-25 Bernard fix fill polygon issue, which found by loveic
- */
- /* for sin/cos etc */
- #include <math.h>
- #include <rtgui/dc.h>
- #include <rtgui/dc_hw.h>
- #include <rtgui/dc_client.h>
- #include <rtgui/rtgui_system.h>
- #include <rtgui/rtgui_server.h>
- #include <rtgui/widgets/window.h>
- #include <rtgui/widgets/title.h>
- #include <string.h> /* for strlen */
- #include <stdlib.h> /* fir qsort */
- static int _int_compare(const void *a, const void *b)
- {
- return (*(const int *) a) - (*(const int *) b);
- }
- void rtgui_dc_destory(struct rtgui_dc *dc)
- {
- if (dc == RT_NULL) return;
- dc->engine->fini(dc);
- rtgui_free(dc);
- }
- RTM_EXPORT(rtgui_dc_destory);
- void rtgui_dc_draw_line(struct rtgui_dc *dc, int x1, int y1, int x2, int y2)
- {
- if (dc == RT_NULL) return;
- if (y1 == y2)
- {
- rtgui_dc_draw_hline(dc, x1, x2, y1);
- }
- else if (x1 == x2)
- {
- rtgui_dc_draw_vline(dc, x1, y1, y2);
- }
- else
- {
- int dx, dy, sdx, sdy, dxabs, dyabs, x, y, px, py;
- register rt_base_t i;
- /* rtgui_rect_t rect; */
- dx = x2 - x1; /* the horizontal distance of the line */
- dy = y2 - y1; /* the vertical distance of the line */
- #define rtgui_sgn(x) ((x<0)?-1:((x>0)?1:0)) /* macro to return the sign of a number */
- dxabs = _UI_ABS(dx);
- dyabs = _UI_ABS(dy);
- sdx = rtgui_sgn(dx);
- sdy = rtgui_sgn(dy);
- x = dyabs >> 1;
- y = dxabs >> 1;
- px = x1;
- py = y1;
- if (dxabs >= dyabs) /* the line is more horizontal than vertical */
- {
- for (i = 0; i < dxabs; i++)
- {
- y += dyabs;
- if (y >= dxabs)
- {
- y -= dxabs;
- py += sdy;
- }
- px += sdx;
- /* draw this point */
- rtgui_dc_draw_point(dc, px, py);
- }
- }
- else /* the line is more vertical than horizontal */
- {
- for (i = 0; i < dyabs; i++)
- {
- x += dxabs;
- if (x >= dyabs)
- {
- x -= dyabs;
- px += sdx;
- }
- py += sdy;
- /* draw this point */
- rtgui_dc_draw_point(dc, px, py);
- }
- }
- }
- }
- RTM_EXPORT(rtgui_dc_draw_line);
- void rtgui_dc_draw_horizontal_line(struct rtgui_dc *dc, int x1, int x2, int y)
- {
- rtgui_color_t color;
- if (dc == RT_NULL) return ;
- /* save old color */
- color = RTGUI_DC_FC(dc);
- RTGUI_DC_FC(dc) = dark_grey;
- rtgui_dc_draw_hline(dc, x1, x2, y);
- y ++;
- RTGUI_DC_FC(dc) = high_light;
- rtgui_dc_draw_hline(dc, x1, x2, y);
- /* restore color */
- RTGUI_DC_FC(dc) = color;
- }
- RTM_EXPORT(rtgui_dc_draw_horizontal_line);
- void rtgui_dc_draw_vertical_line(struct rtgui_dc *dc, int x, int y1, int y2)
- {
- rtgui_color_t color;
- if (dc == RT_NULL) return ;
- /* save old color */
- color = RTGUI_DC_FC(dc);
- RTGUI_DC_FC(dc) = dark_grey;
- rtgui_dc_draw_vline(dc, x, y1, y2);
- x ++;
- RTGUI_DC_FC(dc) = high_light;
- rtgui_dc_draw_vline(dc, x, y1, y2);
- /* restore color */
- RTGUI_DC_FC(dc) = color;
- }
- RTM_EXPORT(rtgui_dc_draw_vertical_line);
- void rtgui_dc_draw_rect(struct rtgui_dc *dc, struct rtgui_rect *rect)
- {
- rtgui_dc_draw_hline(dc, rect->x1, rect->x2, rect->y1);
- rtgui_dc_draw_hline(dc, rect->x1, rect->x2, rect->y2 - 1);
- rtgui_dc_draw_vline(dc, rect->x1, rect->y1, rect->y2);
- rtgui_dc_draw_vline(dc, rect->x2 - 1, rect->y1, rect->y2);
- }
- RTM_EXPORT(rtgui_dc_draw_rect);
- void rtgui_dc_fill_rect_forecolor(struct rtgui_dc *dc, struct rtgui_rect *rect)
- {
- rtgui_color_t save_color;
- /*save the background color of dc*/
- save_color = RTGUI_DC_BC(dc);
- /*set the background color to fore color*/
- RTGUI_DC_BC(dc) = RTGUI_DC_FC(dc);
- dc->engine->fill_rect(dc, rect);
- /*restore the background color of dc*/
- RTGUI_DC_BC(dc) = save_color;
- }
- RTM_EXPORT(rtgui_dc_fill_rect_forecolor);
- void rtgui_dc_draw_round_rect(struct rtgui_dc *dc, struct rtgui_rect *rect, int r)
- {
- RT_ASSERT(((rect->x2 - rect->x1) / 2 >= r) && ((rect->y2 - rect->y1) / 2 >= r));
- if (r < 0)
- {
- return;
- }
- if (r == 0)
- {
- rtgui_dc_draw_rect(dc, rect);
- return;
- }
- if (((rect->x2 - rect->x1) / 2 >= r) && ((rect->y2 - rect->y1) / 2 >= r))
- {
- rtgui_dc_draw_arc(dc, rect->x1 + r, rect->y1 + r, r, 180, 270);
- rtgui_dc_draw_arc(dc, rect->x2 - r, rect->y1 + r, r, 270, 360);
- rtgui_dc_draw_arc(dc, rect->x1 + r, rect->y2 - r, r, 90, 180);
- rtgui_dc_draw_arc(dc, rect->x2 - r, rect->y2 - r, r, 0, 90);
- rtgui_dc_draw_hline(dc, rect->x1 + r, rect->x2 - r, rect->y1);
- rtgui_dc_draw_hline(dc, rect->x1 + r, rect->x2 - r, rect->y2);
- rtgui_dc_draw_vline(dc, rect->x1, rect->y1 + r, rect->y2 - r);
- rtgui_dc_draw_vline(dc, rect->x2, rect->y1 + r, rect->y2 - r);
- }
- }
- RTM_EXPORT(rtgui_dc_draw_round_rect);
- void rtgui_dc_fill_round_rect(struct rtgui_dc *dc, struct rtgui_rect *rect, int r)
- {
- struct rtgui_rect rect_temp;
- RT_ASSERT(((rect->x2 - rect->x1) / 2 >= r) && ((rect->y2 - rect->y1) / 2 >= r));
- if (((rect->x2 - rect->x1) / 2 >= r) && ((rect->y2 - rect->y1) / 2 >= r))
- {
- rect_temp.x1 = rect->x1 + r;
- rect_temp.y1 = rect->y1;
- rect_temp.x2 = rect->x2 - r;
- rect_temp.y2 = rect->y2;
- rtgui_dc_fill_rect_forecolor(dc, &rect_temp);//fill rect with foreground
- rect_temp.x1 = rect->x1;
- rect_temp.y1 = rect->y1 + r;
- rect_temp.x2 = rect->x1 + r;
- rect_temp.y2 = rect->y2 - r;
- rtgui_dc_fill_rect_forecolor(dc, &rect_temp);//fill rect with foreground
- rect_temp.x1 = rect->x2 - r;
- rect_temp.y1 = rect->y1 + r;
- rect_temp.x2 = rect->x2;
- rect_temp.y2 = rect->y2 - r;
- rtgui_dc_fill_rect_forecolor(dc, &rect_temp);//fill rect with foreground
- rtgui_dc_fill_circle(dc, rect->x1 + r, rect->y1 + r, r);
- rtgui_dc_fill_circle(dc, rect->x2 - r, rect->y2 - r, r);
- rtgui_dc_fill_circle(dc, rect->x2 - r, rect->y1 + r, r);
- rtgui_dc_fill_circle(dc, rect->x1 + r, rect->y2 - r, r);
- }
- }
- RTM_EXPORT(rtgui_dc_fill_round_rect);
- void rtgui_dc_draw_shaded_rect(struct rtgui_dc *dc, rtgui_rect_t *rect,
- rtgui_color_t c1, rtgui_color_t c2)
- {
- RT_ASSERT(dc != RT_NULL);
- RTGUI_DC_FC(dc) = c1;
- rtgui_dc_draw_vline(dc, rect->x1, rect->y1, rect->y2);
- rtgui_dc_draw_hline(dc, rect->x1 + 1, rect->x2, rect->y1);
- RTGUI_DC_FC(dc) = c2;
- rtgui_dc_draw_vline(dc, rect->x2 - 1, rect->y1, rect->y2);
- rtgui_dc_draw_hline(dc, rect->x1, rect->x2, rect->y2 - 1);
- }
- RTM_EXPORT(rtgui_dc_draw_shaded_rect);
- void rtgui_dc_fill_gradient_rectv(struct rtgui_dc *dc, rtgui_rect_t *rect,
- rtgui_color_t c1, rtgui_color_t c2)
- {
- int y, step;
- rtgui_color_t fc;
- RT_ASSERT(dc != RT_NULL);
- RT_ASSERT(rect != RT_NULL);
- step = rtgui_rect_height(*rect);
- fc = RTGUI_DC_FC(dc);
- for (y = rect->y1; y < rect->y2; y++)
- {
- RTGUI_DC_FC(dc) = RTGUI_ARGB(((int)RTGUI_RGB_A(c2) - RTGUI_RGB_A(c1)) * (y - rect->y1) / step + RTGUI_RGB_A(c1),
- ((int)RTGUI_RGB_R(c2) - RTGUI_RGB_R(c1)) * (y - rect->y1) / step + RTGUI_RGB_R(c1),
- ((int)RTGUI_RGB_G(c2) - RTGUI_RGB_G(c1)) * (y - rect->y1) / step + RTGUI_RGB_G(c1),
- ((int)RTGUI_RGB_B(c2) - RTGUI_RGB_B(c1)) * (y - rect->y1) / step + RTGUI_RGB_B(c1));
- rtgui_dc_draw_hline(dc, rect->x1, rect->x2, y);
- }
- RTGUI_DC_FC(dc) = fc;
- }
- RTM_EXPORT(rtgui_dc_fill_gradient_rectv);
- void rtgui_dc_draw_focus_rect(struct rtgui_dc *dc, rtgui_rect_t *rect)
- {
- int x, y;
- for (x = rect->x1; x < rect->x2 - 1; x += 2)
- {
- rtgui_dc_draw_point(dc, x, rect->y1);
- rtgui_dc_draw_point(dc, x, rect->y2 - 1);
- }
- for (y = rect->y1; y < rect->y2; y += 2)
- {
- rtgui_dc_draw_point(dc, rect->x1, y);
- rtgui_dc_draw_point(dc, rect->x2 - 1, y);
- }
- }
- RTM_EXPORT(rtgui_dc_draw_focus_rect);
- void rtgui_dc_draw_text(struct rtgui_dc *dc, const char *text, struct rtgui_rect *rect)
- {
- rt_uint32_t len;
- struct rtgui_font *font;
- struct rtgui_rect text_rect;
- RT_ASSERT(dc != RT_NULL);
- font = RTGUI_DC_FONT(dc);
- if (font == RT_NULL)
- {
- /* use system default font */
- font = rtgui_font_default();
- }
- /* text align */
- rtgui_font_get_metrics(font, text, &text_rect);
- rtgui_rect_moveto_align(rect, &text_rect, RTGUI_DC_TEXTALIGN(dc));
- len = strlen((const char *)text);
- rtgui_font_draw(font, dc, text, len, &text_rect);
- }
- RTM_EXPORT(rtgui_dc_draw_text);
- void rtgui_dc_draw_text_stroke(struct rtgui_dc *dc, const char *text, struct rtgui_rect *rect,
- rtgui_color_t color_stroke, rtgui_color_t color_core)
- {
- int x, y;
- rtgui_rect_t r;
- rtgui_color_t fc;
- RT_ASSERT(dc != RT_NULL);
- fc = RTGUI_DC_FC(dc);
- RTGUI_DC_FC(dc) = color_stroke;
- for (x = -1; x < 2; x++)
- {
- for (y = -1; y < 2; y++)
- {
- r = *rect;
- rtgui_rect_moveto(&r, x, y);
- rtgui_dc_draw_text(dc, text, &r);
- }
- }
- RTGUI_DC_FC(dc) = color_core;
- rtgui_dc_draw_text(dc, text, rect);
- RTGUI_DC_FC(dc) = fc;
- }
- RTM_EXPORT(rtgui_dc_draw_text_stroke);
- /*
- * draw a monochrome color bitmap data
- */
- void rtgui_dc_draw_mono_bmp(struct rtgui_dc *dc, int x, int y, int w, int h, const rt_uint8_t *data)
- {
- int i, j, k;
- /* get word bytes */
- w = (w + 7) / 8;
- /* draw mono bitmap data */
- for (i = 0; i < h; i ++)
- for (j = 0; j < w; j++)
- for (k = 0; k < 8; k++)
- if (((data[i * w + j] >> (7 - k)) & 0x01) != 0)
- rtgui_dc_draw_point(dc, x + 8 * j + k, y + i);
- }
- RTM_EXPORT(rtgui_dc_draw_mono_bmp);
- void rtgui_dc_draw_byte(struct rtgui_dc *dc, int x, int y, int h, const rt_uint8_t *data)
- {
- rtgui_dc_draw_mono_bmp(dc, x, y, 8, h, data);
- }
- RTM_EXPORT(rtgui_dc_draw_byte);
- void rtgui_dc_draw_word(struct rtgui_dc *dc, int x, int y, int h, const rt_uint8_t *data)
- {
- rtgui_dc_draw_mono_bmp(dc, x, y, 16, h, data);
- }
- RTM_EXPORT(rtgui_dc_draw_word);
- void rtgui_dc_draw_border(struct rtgui_dc *dc, rtgui_rect_t *rect, int flag)
- {
- rtgui_rect_t r;
- rtgui_color_t color;
- if (dc == RT_NULL) return ;
- /* save old color */
- color = RTGUI_DC_FC(dc);
- r = *rect;
- switch (flag)
- {
- case RTGUI_BORDER_RAISE:
- rtgui_dc_draw_shaded_rect(dc, &r, high_light, black);
- rtgui_rect_inflate(&r, -1);
- rtgui_dc_draw_shaded_rect(dc, &r, light_grey, dark_grey);
- break;
- case RTGUI_BORDER_SUNKEN:
- rtgui_dc_draw_shaded_rect(dc, &r, dark_grey, high_light);
- rtgui_rect_inflate(&r, -1);
- rtgui_dc_draw_shaded_rect(dc, &r, black, light_grey);
- break;
- case RTGUI_BORDER_BOX:
- rtgui_dc_draw_shaded_rect(dc, &r, dark_grey, high_light);
- rtgui_rect_inflate(&r, -1);
- rtgui_dc_draw_shaded_rect(dc, &r, high_light, dark_grey);
- break;
- case RTGUI_BORDER_STATIC:
- rtgui_dc_draw_shaded_rect(dc, &r, dark_grey, high_light);
- break;
- case RTGUI_BORDER_EXTRA:
- RTGUI_DC_FC(dc) = light_grey;
- rtgui_dc_draw_rect(dc, &r);
- break;
- case RTGUI_BORDER_SIMPLE:
- RTGUI_DC_FC(dc) = black;
- rtgui_dc_draw_rect(dc, &r);
- break;
- default:
- break;
- }
- /* restore color */
- RTGUI_DC_FC(dc) = color;
- }
- RTM_EXPORT(rtgui_dc_draw_border);
- void rtgui_dc_draw_polygon(struct rtgui_dc *dc, const int *vx, const int *vy, int count)
- {
- int i;
- const int *x1, *y1, *x2, *y2;
- /*
- * Sanity check
- */
- if (count < 3) return;
- /*
- * Pointer setup
- */
- x1 = x2 = vx;
- y1 = y2 = vy;
- x2++;
- y2++;
- /*
- * Draw
- */
- for (i = 1; i < count; i++)
- {
- rtgui_dc_draw_line(dc, *x1, *y1, *x2, *y2);
- x1 = x2;
- y1 = y2;
- x2++;
- y2++;
- }
- rtgui_dc_draw_line(dc, *x1, *y1, *vx, *vy);
- }
- RTM_EXPORT(rtgui_dc_draw_polygon);
- void rtgui_dc_fill_polygon(struct rtgui_dc *dc, const int *vx, const int *vy, int count)
- {
- int i;
- int y, xa, xb;
- int miny, maxy;
- int x1, y1;
- int x2, y2;
- int ind1, ind2;
- int ints;
- int *poly_ints = RT_NULL;
- /*
- * Sanity check number of edges
- */
- if (count < 3) return;
- /*
- * Allocate temp array, only grow array
- */
- poly_ints = (int *) rtgui_malloc(sizeof(int) * count);
- if (poly_ints == RT_NULL) return ; /* no memory, failed */
- /*
- * Determine Y maximal
- */
- miny = vy[0];
- maxy = vy[0];
- for (i = 1; (i < count); i++)
- {
- if (vy[i] < miny) miny = vy[i];
- else if (vy[i] > maxy) maxy = vy[i];
- }
- /*
- * Draw, scanning y
- */
- for (y = miny; (y <= maxy); y++)
- {
- ints = 0;
- for (i = 0; (i < count); i++)
- {
- if (!i)
- {
- ind1 = count - 1;
- ind2 = 0;
- }
- else
- {
- ind1 = i - 1;
- ind2 = i;
- }
- y1 = vy[ind1];
- y2 = vy[ind2];
- if (y1 < y2)
- {
- x1 = vx[ind1];
- x2 = vx[ind2];
- }
- else if (y1 > y2)
- {
- y2 = vy[ind1];
- y1 = vy[ind2];
- x2 = vx[ind1];
- x1 = vx[ind2];
- }
- else
- {
- continue;
- }
- if (((y >= y1) && (y < y2)) || ((y == maxy) && (y > y1) && (y <= y2)))
- {
- poly_ints[ints++] = ((65536 * (y - y1)) / (y2 - y1)) * (x2 - x1) + (65536 * x1);
- }
- }
- qsort(poly_ints, ints, sizeof(int), _int_compare);
- for (i = 0; (i < ints); i += 2)
- {
- xa = poly_ints[i] + 1;
- xa = (xa >> 16) + ((xa & 32768) >> 15);
- xb = poly_ints[i + 1] - 1;
- xb = (xb >> 16) + ((xb & 32768) >> 15);
- rtgui_dc_draw_hline(dc, xa, xb, y);
- }
- }
- /* release memory */
- rtgui_free(poly_ints);
- }
- RTM_EXPORT(rtgui_dc_fill_polygon);
- void rtgui_dc_draw_circle(struct rtgui_dc *dc, int x, int y, int r)
- {
- rtgui_dc_draw_ellipse(dc, x, y, r, r);
- }
- RTM_EXPORT(rtgui_dc_draw_circle);
- enum
- {
- QUARTER_BTM,
- QUARTER_BTM_LEFT,
- QUARTER_BTM_RIGHT,
- QUARTER_TOP,
- QUARTER_TOP_LEFT,
- QUARTER_TOP_RIGHT,
- QUARTER_FULL,
- };
- static void _fill_quarter_circle(struct rtgui_dc *dc,
- rt_int16_t ox, rt_int16_t oy,
- rt_int16_t rad, int quadrant)
- {
- /* Midpoint circle algorithm. */
- int dk, x, y;
- dk = 1 - rad;
- x = 0;
- y = rad;
- while (x <= y)
- {
- switch (quadrant)
- {
- case QUARTER_BTM:
- rtgui_dc_draw_hline(dc, ox - x, ox + x, oy + y);
- rtgui_dc_draw_hline(dc, ox - y, ox + y, oy + x);
- break;
- case QUARTER_BTM_LEFT:
- rtgui_dc_draw_hline(dc, ox, ox + x, oy + y);
- rtgui_dc_draw_hline(dc, ox, ox + y, oy + x);
- break;
- case QUARTER_BTM_RIGHT:
- rtgui_dc_draw_hline(dc, ox, ox - x, oy + y);
- rtgui_dc_draw_hline(dc, ox, ox - y, oy + x);
- break;
- case QUARTER_TOP_RIGHT:
- rtgui_dc_draw_hline(dc, ox, ox - x, oy - y);
- rtgui_dc_draw_hline(dc, ox, ox - y, oy - x);
- break;
- case QUARTER_TOP_LEFT:
- rtgui_dc_draw_hline(dc, ox, ox + x, oy - y);
- rtgui_dc_draw_hline(dc, ox, ox + y, oy - x);
- break;
- case QUARTER_TOP:
- rtgui_dc_draw_hline(dc, ox - x, ox + x, oy - y);
- rtgui_dc_draw_hline(dc, ox - y, ox + y, oy - x);
- break;
- case QUARTER_FULL:
- rtgui_dc_draw_hline(dc, ox - x, ox + x, oy + y);
- rtgui_dc_draw_hline(dc, ox - y, ox + y, oy + x);
- rtgui_dc_draw_hline(dc, ox - x, ox + x, oy - y);
- rtgui_dc_draw_hline(dc, ox - y, ox + y, oy - x);
- break;
- default:
- RT_ASSERT(0);
- };
- if (dk > 0)
- {
- y--;
- dk += 2 * (x - y) + 5;
- }
- else
- {
- dk += 2 * x + 3;
- }
- x++;
- }
- }
- void rtgui_dc_fill_circle(struct rtgui_dc *dc, rt_int16_t x, rt_int16_t y, rt_int16_t r)
- {
- /*
- * Sanity check radius
- */
- if (r < 0)
- return;
- /*
- * Special case for r=0 - draw a point
- */
- if (r == 0)
- {
- rtgui_dc_draw_point(dc, x, y);
- return;
- }
- _fill_quarter_circle(dc, x, y, r, QUARTER_FULL);
- }
- RTM_EXPORT(rtgui_dc_fill_circle);
- void rtgui_dc_draw_arc(struct rtgui_dc *dc, rt_int16_t x, rt_int16_t y, rt_int16_t r, rt_int16_t start, rt_int16_t end)
- {
- rt_int16_t cx = 0;
- rt_int16_t cy = r;
- rt_int16_t df = 1 - r;
- rt_int16_t d_e = 3;
- rt_int16_t d_se = -2 * r + 5;
- rt_int16_t xpcx, xmcx, xpcy, xmcy;
- rt_int16_t ypcy, ymcy, ypcx, ymcx;
- rt_uint8_t drawoct;
- int startoct, endoct, oct, stopval_start, stopval_end;
- double temp;
- stopval_start = 0;
- stopval_end = 0;
- temp = 0;
- /* Sanity check radius */
- if (r < 0) return ;
- /* Special case for r=0 - draw a point */
- if (r == 0)
- {
- rtgui_dc_draw_point(dc, x, y);
- return;
- }
- /*
- * Draw arc
- */
- // Octant labelling
- //
- // \ 5 | 6 /
- // \ | /
- // 4 \ | / 7
- // \|/
- //------+------ +x
- // /|\
- // 3 / | \ 0
- // / | \
- // / 2 | 1 \
- // +y
- drawoct = 0; // 0x00000000
- // whether or not to keep drawing a given octant.
- // For example: 0x00111100 means we're drawing in octants 2-5
- // 0 <= start & end < 360; note that sometimes start > end - if so, arc goes back through 0.
- while (start < 0) start += 360;
- while (end < 0) end += 360;
- /* Fixup angles */
- start = start % 360;
- end = end % 360;
- // now, we find which octants we're drawing in.
- startoct = start / 45;
- endoct = end / 45;
- oct = startoct - 1; // we increment as first step in loop
- //stopval_start, stopval_end; // what values of cx to stop at.
- do
- {
- oct = (oct + 1) % 8;
- if (oct == startoct)
- {
- // need to compute stopval_start for this octant. Look at picture above if this is unclear
- switch (oct)
- {
- case 0:
- case 3:
- temp = sin(start * M_PI / 180);
- break;
- case 1:
- case 6:
- temp = cos(start * M_PI / 180);
- break;
- case 2:
- case 5:
- temp = -cos(start * M_PI / 180);
- break;
- case 4:
- case 7:
- temp = -sin(start * M_PI / 180);
- break;
- }
- temp *= r;
- stopval_start = (int)temp; // always round down.
- // This isn't arbitrary, but requires graph paper to explain well.
- // The basic idea is that we're always changing drawoct after we draw, so we
- // stop immediately after we render the last sensible pixel at x = ((int)temp).
- // and whether to draw in this octant initially
- if (oct % 2) drawoct |= (1 << oct); // this is basically like saying drawoct[oct] = true, if drawoct were a bool array
- else drawoct &= 255 - (1 << oct); // this is basically like saying drawoct[oct] = false
- }
- if (oct == endoct)
- {
- // need to compute stopval_end for this octant
- switch (oct)
- {
- case 0:
- case 3:
- temp = sin(end * M_PI / 180);
- break;
- case 1:
- case 6:
- temp = cos(end * M_PI / 180);
- break;
- case 2:
- case 5:
- temp = -cos(end * M_PI / 180);
- break;
- case 4:
- case 7:
- temp = -sin(end * M_PI / 180);
- break;
- }
- temp *= r;
- stopval_end = (int)temp;
- // and whether to draw in this octant initially
- if (startoct == endoct)
- {
- // note: we start drawing, stop, then start again in this case
- // otherwise: we only draw in this octant, so initialize it to false, it will get set back to true
- if (start > end)
- {
- // unfortunately, if we're in the same octant and need to draw over the whole circle,
- // we need to set the rest to true, because the while loop will end at the bottom.
- drawoct = 255;
- }
- else
- {
- drawoct &= 255 - (1 << oct);
- }
- }
- else if (oct % 2) drawoct &= 255 - (1 << oct);
- else drawoct |= (1 << oct);
- }
- else if (oct != startoct) // already verified that it's != endoct
- {
- drawoct |= (1 << oct); // draw this entire segment
- }
- }
- while (oct != endoct);
- // so now we have what octants to draw and when to draw them. all that's left is the actual raster code.
- do
- {
- ypcy = y + cy;
- ymcy = y - cy;
- if (cx > 0)
- {
- xpcx = x + cx;
- xmcx = x - cx;
- // always check if we're drawing a certain octant before adding a pixel to that octant.
- if (drawoct & 4) rtgui_dc_draw_point(dc, xmcx, ypcy); // drawoct & 4 = 22; drawoct[2]
- if (drawoct & 2) rtgui_dc_draw_point(dc, xpcx, ypcy);
- if (drawoct & 32) rtgui_dc_draw_point(dc, xmcx, ymcy);
- if (drawoct & 64) rtgui_dc_draw_point(dc, xpcx, ymcy);
- }
- else
- {
- if (drawoct & 6) rtgui_dc_draw_point(dc, x, ypcy); // 4 + 2; drawoct[2] || drawoct[1]
- if (drawoct & 96) rtgui_dc_draw_point(dc, x, ymcy); // 32 + 64
- }
- xpcy = x + cy;
- xmcy = x - cy;
- if (cx > 0 && cx != cy)
- {
- ypcx = y + cx;
- ymcx = y - cx;
- if (drawoct & 8) rtgui_dc_draw_point(dc, xmcy, ypcx);
- if (drawoct & 1) rtgui_dc_draw_point(dc, xpcy, ypcx);
- if (drawoct & 16) rtgui_dc_draw_point(dc, xmcy, ymcx);
- if (drawoct & 128) rtgui_dc_draw_point(dc, xpcy, ymcx);
- }
- else if (cx == 0)
- {
- if (drawoct & 24) rtgui_dc_draw_point(dc, xmcy, y); // 8 + 16
- if (drawoct & 129) rtgui_dc_draw_point(dc, xpcy, y); // 1 + 128
- }
- /*
- * Update whether we're drawing an octant
- */
- if (stopval_start == cx)
- {
- // works like an on-off switch because start & end may be in the same octant.
- if (drawoct & (1 << startoct)) drawoct &= 255 - (1 << startoct);
- else drawoct |= (1 << startoct);
- }
- if (stopval_end == cx)
- {
- if (drawoct & (1 << endoct)) drawoct &= 255 - (1 << endoct);
- else drawoct |= (1 << endoct);
- }
- /*
- * Update pixels
- */
- if (df < 0)
- {
- df += d_e;
- d_e += 2;
- d_se += 2;
- }
- else
- {
- df += d_se;
- d_e += 2;
- d_se += 4;
- cy--;
- }
- cx++;
- }
- while (cx <= cy);
- }
- RTM_EXPORT(rtgui_dc_draw_arc);
- void rtgui_dc_draw_annulus(struct rtgui_dc *dc, rt_int16_t x, rt_int16_t y, rt_int16_t r1, rt_int16_t r2, rt_int16_t start, rt_int16_t end)
- {
- rt_int16_t start_x, start_y;
- rt_int16_t end_x, end_y;
- double temp;
- rt_int16_t temp_val = 0;
- /* Sanity check radius */
- if ((r1 < 0) || (r2 < 0)) return ;
- /* Special case for r=0 - draw a point */
- if ((r1 == 0) && (r2 == 0))
- {
- rtgui_dc_draw_point(dc, x, y);
- return;
- }
- while (start < 0) start += 360;
- while (end < 0) end += 360;
- rtgui_dc_draw_arc(dc, x, y, r1, start, end);
- rtgui_dc_draw_arc(dc, x, y, r2, start, end);
- temp = cos(start * M_PI / 180);
- temp_val = (int)(temp * r1);
- start_x = x + temp_val;
- temp_val = (int)(temp * r2);
- end_x = x + temp_val;
- temp = sin(start * M_PI / 180);
- temp_val = (int)(temp * r1);
- start_y = y + temp_val;
- temp_val = (int)(temp * r2);
- end_y = y + temp_val;
- rtgui_dc_draw_line(dc, start_x, start_y, end_x, end_y);
- temp = cos(end * M_PI / 180);
- temp_val = (int)(temp * r1);
- start_x = x + temp_val;
- temp_val = (int)(temp * r2);
- end_x = x + temp_val;
- temp = sin(end * M_PI / 180);
- temp_val = (int)(temp * r1);
- start_y = y + temp_val;
- temp_val = (int)(temp * r2);
- end_y = y + temp_val;
- rtgui_dc_draw_line(dc, start_x, start_y, end_x, end_y);
- }
- RTM_EXPORT(rtgui_dc_draw_annulus);
- void rtgui_dc_draw_ellipse(struct rtgui_dc *dc, rt_int16_t x, rt_int16_t y, rt_int16_t rx, rt_int16_t ry)
- {
- int ix, iy;
- int h, i, j, k;
- int oh, oi, oj, ok;
- int xmh, xph, ypk, ymk;
- int xmi, xpi, ymj, ypj;
- int xmj, xpj, ymi, ypi;
- int xmk, xpk, ymh, yph;
- /*
- * Sanity check radii
- */
- if ((rx < 0) || (ry < 0)) return;
- /*
- * Special case for rx=0 - draw a vline
- */
- if (rx == 0)
- {
- rtgui_dc_draw_vline(dc, x, y - ry, y + ry);
- return;
- }
- /*
- * Special case for ry=0 - draw a hline
- */
- if (ry == 0)
- {
- rtgui_dc_draw_hline(dc, x - rx, x + rx, y);
- return;
- }
- /*
- * Init vars
- */
- oh = oi = oj = ok = 0xFFFF;
- if (rx > ry)
- {
- ix = 0;
- iy = rx * 64;
- do
- {
- h = (ix + 32) >> 6;
- i = (iy + 32) >> 6;
- j = (h * ry) / rx;
- k = (i * ry) / rx;
- if (((ok != k) && (oj != k)) || ((oj != j) && (ok != j)) || (k != j))
- {
- xph = x + h;
- xmh = x - h;
- if (k > 0)
- {
- ypk = y + k;
- ymk = y - k;
- rtgui_dc_draw_point(dc, xmh, ypk);
- rtgui_dc_draw_point(dc, xph, ypk);
- rtgui_dc_draw_point(dc, xmh, ymk);
- rtgui_dc_draw_point(dc, xph, ymk);
- }
- else
- {
- rtgui_dc_draw_point(dc, xmh, y);
- rtgui_dc_draw_point(dc, xph, y);
- }
- ok = k;
- xpi = x + i;
- xmi = x - i;
- if (j > 0)
- {
- ypj = y + j;
- ymj = y - j;
- rtgui_dc_draw_point(dc, xmi, ypj);
- rtgui_dc_draw_point(dc, xpi, ypj);
- rtgui_dc_draw_point(dc, xmi, ymj);
- rtgui_dc_draw_point(dc, xpi, ymj);
- }
- else
- {
- rtgui_dc_draw_point(dc, xmi, y);
- rtgui_dc_draw_point(dc, xpi, y);
- }
- oj = j;
- }
- ix = ix + iy / rx;
- iy = iy - ix / rx;
- }
- while (i > h);
- }
- else
- {
- ix = 0;
- iy = ry * 64;
- do
- {
- h = (ix + 32) >> 6;
- i = (iy + 32) >> 6;
- j = (h * rx) / ry;
- k = (i * rx) / ry;
- if (((oi != i) && (oh != i)) || ((oh != h) && (oi != h) && (i != h)))
- {
- xmj = x - j;
- xpj = x + j;
- if (i > 0)
- {
- ypi = y + i;
- ymi = y - i;
- rtgui_dc_draw_point(dc, xmj, ypi);
- rtgui_dc_draw_point(dc, xpj, ypi);
- rtgui_dc_draw_point(dc, xmj, ymi);
- rtgui_dc_draw_point(dc, xpj, ymi);
- }
- else
- {
- rtgui_dc_draw_point(dc, xmj, y);
- rtgui_dc_draw_point(dc, xpj, y);
- }
- oi = i;
- xmk = x - k;
- xpk = x + k;
- if (h > 0)
- {
- yph = y + h;
- ymh = y - h;
- rtgui_dc_draw_point(dc, xmk, yph);
- rtgui_dc_draw_point(dc, xpk, yph);
- rtgui_dc_draw_point(dc, xmk, ymh);
- rtgui_dc_draw_point(dc, xpk, ymh);
- }
- else
- {
- rtgui_dc_draw_point(dc, xmk, y);
- rtgui_dc_draw_point(dc, xpk, y);
- }
- oh = h;
- }
- ix = ix + iy / ry;
- iy = iy - ix / ry;
- }
- while (i > h);
- }
- }
- RTM_EXPORT(rtgui_dc_draw_ellipse);
- void rtgui_dc_fill_ellipse(struct rtgui_dc *dc, rt_int16_t x, rt_int16_t y, rt_int16_t rx, rt_int16_t ry)
- {
- int ix, iy;
- int h, i, j, k;
- int oh, oi, oj, ok;
- int xmh, xph;
- int xmi, xpi;
- int xmj, xpj;
- int xmk, xpk;
- /*
- * Special case for rx=0 - draw a vline
- */
- if (rx == 0)
- {
- rtgui_dc_draw_vline(dc, x, y - ry, y + ry);
- return;
- }
- /* special case for ry=0 - draw a hline */
- if (ry == 0)
- {
- rtgui_dc_draw_hline(dc, x - rx, x + rx, y);
- return;
- }
- /*
- * Init vars
- */
- oh = oi = oj = ok = 0xFFFF;
- /*
- * Draw
- */
- if (rx > ry)
- {
- ix = 0;
- iy = rx * 64;
- do
- {
- h = (ix + 32) >> 6;
- i = (iy + 32) >> 6;
- j = (h * ry) / rx;
- k = (i * ry) / rx;
- if ((ok != k) && (oj != k))
- {
- xph = x + h;
- xmh = x - h;
- if (k > 0)
- {
- rtgui_dc_draw_hline(dc, xmh, xph, y + k);
- rtgui_dc_draw_hline(dc, xmh, xph, y - k);
- }
- else
- {
- rtgui_dc_draw_hline(dc, xmh, xph, y);
- }
- ok = k;
- }
- if ((oj != j) && (ok != j) && (k != j))
- {
- xmi = x - i;
- xpi = x + i;
- if (j > 0)
- {
- rtgui_dc_draw_hline(dc, xmi, xpi, y + j);
- rtgui_dc_draw_hline(dc, xmi, xpi, y - j);
- }
- else
- {
- rtgui_dc_draw_hline(dc, xmi, xpi, y);
- }
- oj = j;
- }
- ix = ix + iy / rx;
- iy = iy - ix / rx;
- }
- while (i > h);
- }
- else
- {
- ix = 0;
- iy = ry * 64;
- do
- {
- h = (ix + 32) >> 6;
- i = (iy + 32) >> 6;
- j = (h * rx) / ry;
- k = (i * rx) / ry;
- if ((oi != i) && (oh != i))
- {
- xmj = x - j;
- xpj = x + j;
- if (i > 0)
- {
- rtgui_dc_draw_hline(dc, xmj, xpj, y + i);
- rtgui_dc_draw_hline(dc, xmj, xpj, y - i);
- }
- else
- {
- rtgui_dc_draw_hline(dc, xmj, xpj, y);
- }
- oi = i;
- }
- if ((oh != h) && (oi != h) && (i != h))
- {
- xmk = x - k;
- xpk = x + k;
- if (h > 0)
- {
- rtgui_dc_draw_hline(dc, xmk, xpk, y + h);
- rtgui_dc_draw_hline(dc, xmk, xpk, y - h);
- }
- else
- {
- rtgui_dc_draw_hline(dc, xmk, xpk, y);
- }
- oh = h;
- }
- ix = ix + iy / ry;
- iy = iy - ix / ry;
- }
- while (i > h);
- }
- }
- RTM_EXPORT(rtgui_dc_fill_ellipse);
- void rtgui_dc_draw_pie(struct rtgui_dc *dc, rt_int16_t x, rt_int16_t y, rt_int16_t rad, rt_int16_t start, rt_int16_t end)
- {
- double angle, start_angle, end_angle;
- double deltaAngle;
- double dr;
- int numpoints, i;
- int *vx, *vy;
- /* Sanity check radii */
- if (rad < 0) return ;
- /*
- * Fixup angles
- */
- start = start % 360;
- end = end % 360;
- /*
- * Special case for rad=0 - draw a point
- */
- if (rad == 0)
- {
- rtgui_dc_draw_point(dc, x, y);
- return;
- }
- /*
- * Variable setup
- */
- dr = (double) rad;
- deltaAngle = 3.0 / dr;
- start_angle = (double) start * (2.0 * M_PI / 360.0);
- end_angle = (double) end * (2.0 * M_PI / 360.0);
- if (start > end)
- {
- end_angle += (2.0 * M_PI);
- }
- /* We will always have at least 2 points */
- numpoints = 2;
- /* Count points (rather than calculating it) */
- angle = start_angle;
- while (angle < end_angle)
- {
- angle += deltaAngle;
- numpoints++;
- }
- /* Allocate combined vertex array */
- vx = vy = (int *) rtgui_malloc(2 * sizeof(int) * numpoints);
- if (vx == RT_NULL) return ;
- /* Update point to start of vy */
- vy += numpoints;
- /* Center */
- vx[0] = x;
- vy[0] = y;
- /* First vertex */
- angle = start_angle;
- vx[1] = x + (int)(dr * cos(angle));
- vy[1] = y + (int)(dr * sin(angle));
- if (numpoints < 3)
- {
- rtgui_dc_draw_line(dc, vx[0], vy[0], vx[1], vy[1]);
- }
- else
- {
- /* Calculate other vertices */
- i = 2;
- angle = start_angle;
- while (angle < end_angle)
- {
- angle += deltaAngle;
- if (angle > end_angle)
- {
- angle = end_angle;
- }
- vx[i] = x + (int)(dr * cos(angle));
- vy[i] = y + (int)(dr * sin(angle));
- i++;
- }
- /* Draw */
- rtgui_dc_draw_polygon(dc, vx, vy, numpoints);
- }
- /* Free combined vertex array */
- rtgui_free(vx);
- return;
- }
- RTM_EXPORT(rtgui_dc_draw_pie);
- // Octant labelling
- //
- // \ 5 | 6 /
- // \ | /
- // 4 \ | / 7
- // \|/
- //------+------ +x
- // /|\
- // 3 / | \ 0
- // / | \
- // / 2 | 1 \
- // +y
- static void _draw_octant(struct rtgui_dc *dc,
- rt_int16_t ox, rt_int16_t oy,
- rt_int16_t y1, rt_int16_t y2, rt_int16_t x, int oct)
- {
- switch (oct % 8)
- {
- case 0:
- rtgui_dc_draw_line(dc, ox + x, oy + y1, ox + x, oy + y2);
- break;
- case 1:
- /* Ugly hack to get the edge right. */
- y2 += 1;
- y1 += 1;
- x -= 1;
- rtgui_dc_draw_line(dc, ox + y1, oy + x, ox + y2, oy + x);
- break;
- case 2:
- y2 -= 1;
- y1 -= 1;
- x -= 1;
- rtgui_dc_draw_line(dc, ox - y2, oy + x, ox - y1, oy + x);
- break;
- case 3:
- x -= 1;
- rtgui_dc_draw_line(dc, ox - x, oy + y1, ox - x, oy + y2);
- break;
- case 4:
- x -= 1;
- rtgui_dc_draw_line(dc, ox - x, oy - y2, ox - x, oy - y1);
- break;
- case 5:
- y2 -= 1;
- y1 -= 1;
- rtgui_dc_draw_line(dc, ox - y2, oy - x, ox - y1, oy - x);
- break;
- case 6:
- y2 += 1;
- y1 += 1;
- rtgui_dc_draw_line(dc, ox + y1, oy - x, ox + y2, oy - x);
- break;
- case 7:
- rtgui_dc_draw_line(dc, ox + x, oy - y2, ox + x, oy - y1);
- break;
- };
- }
- static void _fill_small_pie(struct rtgui_dc *dc,
- rt_int16_t ox, rt_int16_t oy,
- rt_int16_t rad, rt_int16_t start, rt_int16_t end,
- int oct)
- {
- /* Midpoint circle algorithm. */
- int dk, x, y;
- /* Start X, end X, */
- rt_int16_t sx, ex, ty, my;
- enum {ST_NONE, ST_ARC, ST_TRI} st;
- RT_ASSERT(0 <= start && start <= 45);
- RT_ASSERT(0 <= end && end <= 45);
- if (start == end)
- return;
- RT_ASSERT(start < end);
- RT_ASSERT(rad > 0);
- /* cos(90 - start) == sin(start) */
- sx = rad * sin(start * M_PI / 180);
- ex = rad * sin(end * M_PI / 180);
- dk = 1 - rad;
- x = 0;
- y = rad;
- st = ST_NONE;
- my = ex;
- while (x <= y)
- {
- rt_int16_t lx;
- if (x < sx)
- {
- }
- else if (x == sx)
- {
- /* Start point. */
- st = ST_ARC;
- ty = y;
- }
- else if (x <= ex)
- {
- /* Between the pie. */
- RT_ASSERT(st == ST_ARC);
- }
- else /* x > ex */
- {
- /* End. */
- st = ST_TRI;
- my = y;
- break;
- }
- /* Drawing. */
- if (st == ST_ARC)
- {
- lx = y * sx / ty;
- /* Change from math coordinate to plot coordinate. */
- _draw_octant(dc, ox, oy, lx, x, y, oct);
- }
- /* Midpoint increment. */
- if (dk > 0)
- {
- y--;
- dk += 2 * (x - y) + 5;
- }
- else
- {
- dk += 2 * x + 3;
- }
- x++;
- }
- /* Draw bottom part. */
- for (; y >= 0; y--)
- {
- rt_int16_t lx, rx;
- lx = y * sx / ty;
- rx = y * ex / my;
- _draw_octant(dc, ox, oy, lx, rx, y, oct);
- }
- }
- void rtgui_dc_fill_pie(struct rtgui_dc *dc,
- rt_int16_t x, rt_int16_t y, rt_int16_t rad,
- rt_int16_t start, rt_int16_t end)
- {
- /* Sanity check radii */
- if (rad < 0)
- return;
- if (rad == 0)
- {
- rtgui_dc_draw_point(dc, x, y);
- return;
- }
- if (end - start >= 360)
- {
- rtgui_dc_fill_circle(dc, x, y, rad);
- return;
- }
- if (start == end)
- return;
- /*
- * Fixup angles
- */
- while (start < 0)
- {
- start += 360;
- end += 360;
- }
- while (start >= 360)
- {
- start -= 360;
- end -= 360;
- }
- if (end < start)
- end += 360;
- while (start / 45 != end / 45)
- {
- /* The start and end are not in the same piece. */
- if ((start / 45) % 2)
- {
- _fill_small_pie(dc, x, y, rad,
- 0, 45 - start % 45, start / 45);
- start += 45 - start % 45;
- }
- else
- {
- _fill_small_pie(dc, x, y, rad,
- start % 45, 45, start / 45);
- start += 45 - start % 45;
- }
- }
- if ((start / 45) % 2)
- {
- _fill_small_pie(dc, x, y, rad,
- 90 - end % 90, 90 - start % 90, start / 45);
- }
- else
- {
- _fill_small_pie(dc, x, y, rad,
- start % 45, end % 45, start / 45);
- }
- return;
- }
- RTM_EXPORT(rtgui_dc_fill_pie);
- /*
- * set gc of dc
- */
- void rtgui_dc_set_gc(struct rtgui_dc *dc, rtgui_gc_t *gc)
- {
- RT_ASSERT(dc != RT_NULL);
- switch (dc->type)
- {
- case RTGUI_DC_CLIENT:
- {
- rtgui_widget_t *owner;
- /* get owner */
- owner = RTGUI_CONTAINER_OF(dc, struct rtgui_widget, dc_type);
- owner->gc = *gc;
- break;
- }
- case RTGUI_DC_HW:
- {
- struct rtgui_dc_hw *dc_hw;
- dc_hw = (struct rtgui_dc_hw *) dc;
- RT_ASSERT(dc_hw->owner != RT_NULL);
- dc_hw->owner->gc = *gc;
- break;
- }
- case RTGUI_DC_BUFFER:
- {
- struct rtgui_dc_buffer *dc_buffer;
- dc_buffer = (struct rtgui_dc_buffer *)dc;
- dc_buffer->gc = *gc;
- break;
- }
- }
- }
- RTM_EXPORT(rtgui_dc_set_gc);
- /*
- * get gc of dc
- */
- rtgui_gc_t *rtgui_dc_get_gc(struct rtgui_dc *dc)
- {
- rtgui_gc_t *gc = RT_NULL;
- RT_ASSERT(dc != RT_NULL);
- switch (dc->type)
- {
- case RTGUI_DC_CLIENT:
- {
- rtgui_widget_t *owner;
- /* get owner */
- owner = RTGUI_CONTAINER_OF(dc, struct rtgui_widget, dc_type);
- gc = &owner->gc;
- break;
- }
- case RTGUI_DC_HW:
- {
- struct rtgui_dc_hw *dc_hw;
- dc_hw = (struct rtgui_dc_hw *) dc;
- RT_ASSERT(dc_hw->owner != RT_NULL);
- gc = &dc_hw->owner->gc;
- break;
- }
- case RTGUI_DC_BUFFER:
- {
- struct rtgui_dc_buffer *dc_buffer;
- dc_buffer = (struct rtgui_dc_buffer *)dc;
- gc = &dc_buffer->gc;
- break;
- }
- }
- return gc;
- }
- RTM_EXPORT(rtgui_dc_get_gc);
- /*
- * get visible status of dc
- */
- rt_bool_t rtgui_dc_get_visible(struct rtgui_dc *dc)
- {
- rt_bool_t result = RT_TRUE;
- RT_ASSERT(dc != RT_NULL);
- if (rtgui_graphic_driver_is_vmode())
- return RT_TRUE;
- switch (dc->type)
- {
- case RTGUI_DC_CLIENT:
- {
- rtgui_widget_t *owner;
- /* get owner */
- owner = RTGUI_CONTAINER_OF(dc, struct rtgui_widget, dc_type);
- if (!RTGUI_WIDGET_IS_DC_VISIBLE(owner)) result = RT_FALSE;
- break;
- }
- case RTGUI_DC_HW:
- {
- struct rtgui_dc_hw *dc_hw;
- dc_hw = (struct rtgui_dc_hw *) dc;
- if (!RTGUI_WIDGET_IS_DC_VISIBLE(dc_hw->owner)) result = RT_FALSE;
- break;
- }
- default:
- /* use default value */
- break;
- }
- return result;
- }
- RTM_EXPORT(rtgui_dc_get_visible);
- /*
- * get rect of dc
- */
- void rtgui_dc_get_rect(struct rtgui_dc *dc, rtgui_rect_t *rect)
- {
- RT_ASSERT(dc != RT_NULL);
- switch (dc->type)
- {
- case RTGUI_DC_CLIENT:
- {
- rtgui_widget_t *owner;
- /* get owner */
- owner = RTGUI_CONTAINER_OF(dc, struct rtgui_widget, dc_type);
- /* we should return the clipped rectangular information */
- rect->x1 = owner->clip.extents.x1 - owner->extent.x1;
- rect->y1 = owner->clip.extents.y1 - owner->extent.y1;
- rect->x2 = rect->x1 + owner->clip.extents.x2 - owner->clip.extents.x1;
- rect->y2 = rect->y1 + owner->clip.extents.y2 - owner->clip.extents.y1;
- // rtgui_widget_get_rect(owner, rect);
- break;
- }
- case RTGUI_DC_HW:
- {
- rtgui_widget_t *owner;
- struct rtgui_dc_hw *dc_hw;
- dc_hw = (struct rtgui_dc_hw *) dc;
- owner = dc_hw->owner;
- rtgui_widget_get_rect(owner, rect);
- break;
- }
- case RTGUI_DC_BUFFER:
- {
- struct rtgui_dc_buffer *dc_buffer;
- dc_buffer = (struct rtgui_dc_buffer *)dc;
- rtgui_rect_init(rect, 0, 0, dc_buffer->width, dc_buffer->height);
- break;
- }
- }
- return;
- }
- RTM_EXPORT(rtgui_dc_get_rect);
- rt_uint8_t rtgui_dc_get_pixel_format(struct rtgui_dc *dc)
- {
- rt_uint8_t pixel_fmt;
- RT_ASSERT(dc != RT_NULL);
- switch (dc->type)
- {
- case RTGUI_DC_CLIENT:
- case RTGUI_DC_HW:
- {
- struct rtgui_graphic_driver *hw_driver;
- hw_driver = rtgui_graphic_driver_get_default();
- pixel_fmt = hw_driver->pixel_format;
- break;
- }
- case RTGUI_DC_BUFFER:
- {
- struct rtgui_dc_buffer *dc_buffer;
- dc_buffer = (struct rtgui_dc_buffer *)dc;
- pixel_fmt = dc_buffer->pixel_format;
- break;
- }
- default:
- RT_ASSERT(0);
- }
- return pixel_fmt;
- }
- RTM_EXPORT(rtgui_dc_get_pixel_format);
- void rtgui_dc_logic_to_device(struct rtgui_dc *dc, struct rtgui_point *point)
- {
- switch (dc->type)
- {
- case RTGUI_DC_CLIENT:
- {
- rtgui_widget_t *owner;
- /* get owner */
- owner = RTGUI_CONTAINER_OF(dc, struct rtgui_widget, dc_type);
- point->x += owner->extent.x1;
- point->y += owner->extent.y1;
- break;
- }
- case RTGUI_DC_HW:
- {
- rtgui_widget_t *owner;
- struct rtgui_dc_hw *dc_hw;
- dc_hw = (struct rtgui_dc_hw *) dc;
- owner = dc_hw->owner;
- point->x += owner->extent.x1;
- point->y += owner->extent.y1;
- break;
- }
- case RTGUI_DC_BUFFER: /* no conversion */
- break;
- }
- }
- RTM_EXPORT(rtgui_dc_logic_to_device);
- void rtgui_dc_rect_to_device(struct rtgui_dc *dc, struct rtgui_rect *rect)
- {
- switch (dc->type)
- {
- case RTGUI_DC_CLIENT:
- {
- rtgui_widget_t *owner;
- /* get owner */
- owner = RTGUI_CONTAINER_OF(dc, struct rtgui_widget, dc_type);
- rtgui_rect_moveto(rect, owner->extent.x1, owner->extent.y1);
- break;
- }
- case RTGUI_DC_HW:
- {
- rtgui_widget_t *owner;
- struct rtgui_dc_hw *dc_hw;
- dc_hw = (struct rtgui_dc_hw *) dc;
- owner = dc_hw->owner;
- rtgui_rect_moveto(rect, owner->extent.x1, owner->extent.y1);
- break;
- }
- case RTGUI_DC_BUFFER: /* no conversion */
- break;
- }
- }
- RTM_EXPORT(rtgui_dc_rect_to_device);
- extern struct rt_mutex cursor_mutex;
- extern void rtgui_mouse_show_cursor(void);
- extern void rtgui_mouse_hide_cursor(void);
- struct rtgui_dc *rtgui_dc_begin_drawing(rtgui_widget_t *owner)
- {
- struct rtgui_dc *dc;
- struct rtgui_widget *widget;
- struct rtgui_win *win;
- RT_ASSERT(owner != RT_NULL);
- win = owner->toplevel;
- if (win == RT_NULL)
- return RT_NULL;
- if (!(win->flag & RTGUI_WIN_FLAG_ACTIVATE) &&
- (win->outer_clip.extents.x1 == win->outer_clip.extents.x2 ||
- win->outer_clip.extents.y1 == win->outer_clip.extents.y2))
- return RT_NULL;
- /* increase drawing count */
- win->drawing ++;
- /* always drawing on the virtual mode */
- if (rtgui_graphic_driver_is_vmode() == RT_FALSE)
- {
- /* set the initial visible as true */
- RTGUI_WIDGET_DC_SET_VISIBLE(owner);
- /* check the visible of widget */
- widget = owner;
- while (widget != RT_NULL)
- {
- if (RTGUI_WIDGET_IS_HIDE(widget))
- {
- RTGUI_WIDGET_DC_SET_UNVISIBLE(owner);
- win->drawing --;
- return RT_NULL;
- }
- widget = widget->parent;
- }
- }
- rtgui_screen_lock(RT_WAITING_FOREVER);
- /* create client or hardware DC */
- if ((rtgui_region_is_flat(&owner->clip) == RT_EOK) &&
- rtgui_rect_is_equal(&(owner->extent), &(owner->clip.extents)) == RT_EOK)
- dc = rtgui_dc_hw_create(owner);
- else
- dc = rtgui_dc_client_create(owner);
- if (dc == RT_NULL)
- {
- /* restore drawing counter */
- win->drawing--;
- rtgui_screen_unlock();
- }
- else if (win->drawing == 1 && rtgui_graphic_driver_is_vmode() == RT_FALSE)
- {
- #ifdef RTGUI_USING_MOUSE_CURSOR
- rt_mutex_take(&cursor_mutex, RT_WAITING_FOREVER);
- rtgui_mouse_hide_cursor();
- #endif
- if (! RTGUI_IS_WINTITLE(win))
- {
- /* send draw begin to server */
- struct rtgui_event_update_begin eupdate;
- RTGUI_EVENT_UPDATE_BEGIN_INIT(&(eupdate));
- eupdate.rect = RTGUI_WIDGET(win)->extent;
- rtgui_server_post_event((struct rtgui_event *)&eupdate, sizeof(eupdate));
- }
- }
- return dc;
- }
- RTM_EXPORT(rtgui_dc_begin_drawing);
- void rtgui_dc_end_drawing(struct rtgui_dc *dc)
- {
- struct rtgui_widget *owner;
- struct rtgui_win *win;
- RT_ASSERT(dc != RT_NULL);
- /* get owner */
- if (dc->type == RTGUI_DC_CLIENT)
- owner = RTGUI_CONTAINER_OF(dc, struct rtgui_widget, dc_type);
- else if (dc->type == RTGUI_DC_HW)
- owner = ((struct rtgui_dc_hw *)dc)->owner;
- else return ; /* bad DC type */
- /* get window */
- win = owner->toplevel;
- /* decrease drawing counter */
- win->drawing --;
- if (win->drawing == 0 && rtgui_graphic_driver_is_vmode() == RT_FALSE)
- {
- #ifdef RTGUI_USING_MOUSE_CURSOR
- rt_mutex_release(&cursor_mutex);
- /* show cursor */
- rtgui_mouse_show_cursor();
- #endif
- if (RTGUI_IS_WINTITLE(win))
- {
- /* update screen */
- rtgui_graphic_driver_screen_update(rtgui_graphic_driver_get_default(),
- &(owner->extent));
- }
- else
- {
- /* send to server for window update */
- struct rtgui_event_update_end eupdate;
- RTGUI_EVENT_UPDATE_END_INIT(&(eupdate));
- eupdate.rect = owner->extent;
- rtgui_server_post_event((struct rtgui_event *)&eupdate, sizeof(eupdate));
- }
- }
- dc->engine->fini(dc);
- rtgui_screen_unlock();
- }
- RTM_EXPORT(rtgui_dc_end_drawing);
|