X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gfx%2Ftext.c;fp=gfx%2Ftext.c;h=28dbd8e33c521dba455ef08474d902633ce729df;hb=81ba34ccf5b8be398101bbcf54d5e6cc9d2eda05;hp=a9f653c4ad233e10965bfc3d6df20746ae0ce195;hpb=b4782974fb6cb394c6625da0f42f92e4e3a3b915;p=bertos.git diff --git a/gfx/text.c b/gfx/text.c index a9f653c4..28dbd8e3 100755 --- a/gfx/text.c +++ b/gfx/text.c @@ -15,6 +15,9 @@ /*#* *#* $Log$ + *#* Revision 1.10 2006/04/27 05:39:23 bernie + *#* Enhance text rendering to arbitrary x,y coords. + *#* *#* Revision 1.9 2006/04/11 00:08:24 bernie *#* text_offset(): New function, but I'm not quite confident with the design. *#* @@ -107,41 +110,35 @@ #include -/*! ANSI escape sequences flag: true for ESC state on */ +/** + * ANSI escape sequences flag: true for ESC state on. + * + * \fixme Move to Bitmap.flags. + */ static bool ansi_mode = false; -// FIXME: move in bitmap? -static coord_t text_xoff, text_yoff; - -void text_offset(Bitmap *bm, coord_t x, coord_t y) +/*! + * Move (imaginary) cursor to coordinates specified. + */ +void text_setCoord(struct Bitmap *bm, int x, int y) { - text_xoff = x; - text_yoff = y; + bm->penX = x; + bm->penY = y; } + /*! * Move (imaginary) cursor to column and row specified. * Next text write will start a that row and col. */ -void text_moveto(struct Bitmap *bm, int row, int col) +void text_moveTo(struct Bitmap *bm, int row, int col) { ASSERT(col >= 0); ASSERT(col < bm->width / bm->font->width); ASSERT(row >= 0); ASSERT(row < bm->height / bm->font->height); - bm->penX = col * bm->font->width + text_xoff; - bm->penY = row * bm->font->height + text_yoff; -} - - -/*! - * Move (imaginary) cursor to coordinates specified. - */ -void text_setcoord(struct Bitmap *bm, int x, int y) -{ - bm->penX = x; - bm->penY = y; + text_setCoord(bm, col * bm->font->width, row * bm->font->height); }