/* $Id$ ****************************************************************************** Graphics library for GGI. Horizontal lines. Copyright (C) 1995 Andreas Beck [becka@ggi-project.org] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************** */ #include #include "lin4lib.h" /**********************************/ /* draw/get/put a horizontal line */ /**********************************/ static inline void do_drawhline(ggi_visual *vis, int x, int y, int w) { uint8_t *fb; uint8_t fg; PREPARE_FB(vis); fb = (uint8_t *) LIBGGI_CURWRITE(vis)+y*LIBGGI_FB_W_STRIDE(vis)+(x/2); fg = (uint8_t) LIBGGI_GC_FGCOLOR(vis) | (LIBGGI_GC_FGCOLOR(vis)<<4); /* x is odd. Read-modify-write left pixel. */ if (x & 0x01) { *fb = (*fb & 0xF0) | (fg & 0x0F); fb++; w--; } memset(fb, fg, (size_t)(w/2)); /* Dangling right pixel. */ if (w & 0x01) { *(fb+(w/2)) = (*(fb+(w/2)) & 0x0F) | (fg & 0xF0); } } int GGI_lin4_drawhline(ggi_visual *vis, int x, int y, int w) { LIBGGICLIP_XYW(vis, x, y, w); do_drawhline(vis, x, y, w); return 0; } int GGI_lin4_drawhline_nc(ggi_visual *vis, int x, int y, int w) { do_drawhline(vis, x, y, w); return 0; } int GGI_lin4_puthline(ggi_visual *vis, int x, int y, int w, const void *buffer) { uint8_t *fb; uint16_t color; const uint8_t *buf = (const uint8_t *)buffer; LIBGGICLIP_XYW_BUFMOD(vis, x, y, w, buf, /2); PREPARE_FB(vis); fb = (uint8_t*)LIBGGI_CURWRITE(vis)+y*LIBGGI_FB_W_STRIDE(vis)+(x/2); /* Might as well take the memcpy speed up (multiple byte copy). */ if (!(x & 0x01)) { memcpy(fb,buf, (size_t)(w>>1)); if (w & 0x01) *(fb+(w>>1)) = ( *(fb+(w>>1)) & 0x0F) | (*(buf+(w>>1)) & 0xF0); return 0; } /* x is odd. */ /* Color is a 12-bit quantity. Upper 8 bits hold the memory to copy. * Lower 4 bits hold the lower 4 bits of the buffer byte read; we'll * need it next loop. */ /* Could be optimized for multiple-byte copy. */ color = *fb >> 4; for (; w > 0; w -= 2) { color <<= 8; color |= *(buf++); *(fb++) = color >> 4; } if (!w) { *fb = (color << 4) | (*fb & 0x0F); } return 0; } int GGI_lin4_gethline(ggi_visual *vis,int x,int y,int w,void *buffer) { uint8_t *fb; uint16_t color; uint8_t *buf = (uint8_t *)buffer; PREPARE_FB(vis); fb = (uint8_t*)LIBGGI_CURREAD(vis)+y*LIBGGI_FB_R_STRIDE(vis)+(x/2); /* If width is odd, the last 4 bits of the buffer's last * byte will hold an extraneous pixel. No big deal. */ if (!(x & 0x01)) { memcpy(buf, fb, (size_t)((w>>1) + (w & 0x01))); return 0; } /* x is odd. */ color = *fb & 0x0F; for (; w > 1; w -= 2) { color <<= 8; color |= *(++fb); *(buf++) = color >> 4; } if (w) { *(buf++) = color << 4; } return 0; }