Rev 1740 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1363 | vana | 1 | /* |
| 2 | * Copyright (C) 2006 Jakub Vana |
||
| 1404 | palkovsky | 3 | * Copyright (C) 2006 Ondrej Palkovsky |
| 1363 | vana | 4 | * All rights reserved. |
| 5 | * |
||
| 6 | * Redistribution and use in source and binary forms, with or without |
||
| 7 | * modification, are permitted provided that the following conditions |
||
| 8 | * are met: |
||
| 9 | * |
||
| 10 | * - Redistributions of source code must retain the above copyright |
||
| 11 | * notice, this list of conditions and the following disclaimer. |
||
| 12 | * - Redistributions in binary form must reproduce the above copyright |
||
| 13 | * notice, this list of conditions and the following disclaimer in the |
||
| 14 | * documentation and/or other materials provided with the distribution. |
||
| 15 | * - The name of the author may not be used to endorse or promote products |
||
| 16 | * derived from this software without specific prior written permission. |
||
| 17 | * |
||
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 28 | */ |
||
| 29 | |||
| 1740 | jermar | 30 | /** |
| 31 | * @defgroup fb Graphical framebuffer |
||
| 32 | * @brief HelenOS graphical framebuffer. |
||
| 1649 | cejka | 33 | * @ingroup fbs |
| 34 | * @{ |
||
| 35 | */ |
||
| 36 | /** @file |
||
| 37 | */ |
||
| 38 | |||
| 39 | |||
| 1430 | jermar | 40 | #include <stdlib.h> |
| 41 | #include <unistd.h> |
||
| 42 | #include <string.h> |
||
| 1363 | vana | 43 | #include <ddi.h> |
| 44 | #include <sysinfo.h> |
||
| 45 | #include <align.h> |
||
| 46 | #include <as.h> |
||
| 47 | #include <ipc/fb.h> |
||
| 48 | #include <ipc/ipc.h> |
||
| 1430 | jermar | 49 | #include <ipc/ns.h> |
| 1363 | vana | 50 | #include <ipc/services.h> |
| 51 | #include <kernel/errno.h> |
||
| 1392 | palkovsky | 52 | #include <async.h> |
| 1505 | palkovsky | 53 | |
| 1404 | palkovsky | 54 | #include "font-8x16.h" |
| 1363 | vana | 55 | #include "fb.h" |
| 1505 | palkovsky | 56 | #include "main.h" |
| 57 | #include "../console/screenbuffer.h" |
||
| 1547 | palkovsky | 58 | #include "ppm.h" |
| 1363 | vana | 59 | |
| 1711 | palkovsky | 60 | #include "pointer.xbm" |
| 61 | #include "pointer_mask.xbm" |
||
| 62 | |||
| 1630 | palkovsky | 63 | #define DEFAULT_BGCOLOR 0xf0f0f0 |
| 64 | #define DEFAULT_FGCOLOR 0x0 |
||
| 1363 | vana | 65 | |
| 66 | /***************************************************************/ |
||
| 67 | /* Pixel specific fuctions */ |
||
| 68 | |||
| 1555 | palkovsky | 69 | typedef void (*conv2scr_fn_t)(void *, int); |
| 70 | typedef int (*conv2rgb_fn_t)(void *); |
||
| 1363 | vana | 71 | |
| 1485 | palkovsky | 72 | struct { |
| 1781 | jermar | 73 | uint8_t *fbaddress ; |
| 1363 | vana | 74 | |
| 75 | unsigned int xres ; |
||
| 76 | unsigned int yres ; |
||
| 77 | unsigned int scanline ; |
||
| 78 | unsigned int pixelbytes ; |
||
| 79 | |||
| 1555 | palkovsky | 80 | conv2scr_fn_t rgb2scr; |
| 81 | conv2rgb_fn_t scr2rgb; |
||
| 1485 | palkovsky | 82 | } screen; |
| 1363 | vana | 83 | |
| 1485 | palkovsky | 84 | typedef struct { |
| 85 | int initialized; |
||
| 86 | unsigned int x, y; |
||
| 87 | unsigned int width, height; |
||
| 1363 | vana | 88 | |
| 1485 | palkovsky | 89 | /* Text support in window */ |
| 90 | unsigned int rows, cols; |
||
| 91 | /* Style for text printing */ |
||
| 1509 | palkovsky | 92 | style_t style; |
| 1485 | palkovsky | 93 | /* Auto-cursor position */ |
| 1486 | palkovsky | 94 | int cursor_active, cur_col, cur_row; |
| 1500 | palkovsky | 95 | int cursor_shown; |
| 1672 | palkovsky | 96 | /* Double buffering */ |
| 1781 | jermar | 97 | uint8_t *dbdata; |
| 1672 | palkovsky | 98 | unsigned int dboffset; |
| 99 | unsigned int paused; |
||
| 1485 | palkovsky | 100 | } viewport_t; |
| 1363 | vana | 101 | |
| 1646 | palkovsky | 102 | #define MAX_ANIM_LEN 8 |
| 103 | #define MAX_ANIMATIONS 4 |
||
| 104 | typedef struct { |
||
| 105 | int initialized; |
||
| 106 | int enabled; |
||
| 107 | unsigned int vp; |
||
| 108 | |||
| 109 | unsigned int pos; |
||
| 110 | unsigned int animlen; |
||
| 111 | unsigned int pixmaps[MAX_ANIM_LEN]; |
||
| 112 | } animation_t; |
||
| 113 | static animation_t animations[MAX_ANIMATIONS]; |
||
| 114 | static int anims_enabled; |
||
| 115 | |||
| 1552 | palkovsky | 116 | /** Maximum number of saved pixmaps |
| 117 | * Pixmap is a saved rectangle |
||
| 118 | */ |
||
| 119 | #define MAX_PIXMAPS 256 |
||
| 120 | typedef struct { |
||
| 121 | unsigned int width; |
||
| 122 | unsigned int height; |
||
| 1781 | jermar | 123 | uint8_t *data; |
| 1552 | palkovsky | 124 | } pixmap_t; |
| 125 | static pixmap_t pixmaps[MAX_PIXMAPS]; |
||
| 126 | |||
| 127 | /* Viewport is a rectangular area on the screen */ |
||
| 1485 | palkovsky | 128 | #define MAX_VIEWPORTS 128 |
| 129 | static viewport_t viewports[128]; |
||
| 130 | |||
| 131 | /* Allow only 1 connection */ |
||
| 132 | static int client_connected = 0; |
||
| 133 | |||
| 1363 | vana | 134 | #define RED(x, bits) ((x >> (16 + 8 - bits)) & ((1 << bits) - 1)) |
| 135 | #define GREEN(x, bits) ((x >> (8 + 8 - bits)) & ((1 << bits) - 1)) |
||
| 136 | #define BLUE(x, bits) ((x >> (8 - bits)) & ((1 << bits) - 1)) |
||
| 137 | |||
| 1485 | palkovsky | 138 | #define COL_WIDTH 8 |
| 139 | #define ROW_BYTES (screen.scanline * FONT_SCANLINES) |
||
| 1363 | vana | 140 | |
| 1485 | palkovsky | 141 | #define POINTPOS(x, y) ((y) * screen.scanline + (x) * screen.pixelbytes) |
| 1363 | vana | 142 | |
| 1555 | palkovsky | 143 | /* Conversion routines between different color representations */ |
| 144 | static void rgb_4byte(void *dst, int rgb) |
||
| 1363 | vana | 145 | { |
| 1555 | palkovsky | 146 | *(int *)dst = rgb; |
| 1363 | vana | 147 | } |
| 148 | |||
| 1555 | palkovsky | 149 | static int byte4_rgb(void *src) |
| 1363 | vana | 150 | { |
| 1555 | palkovsky | 151 | return (*(int *)src) & 0xffffff; |
| 1363 | vana | 152 | } |
| 153 | |||
| 1555 | palkovsky | 154 | static void rgb_3byte(void *dst, int rgb) |
| 1363 | vana | 155 | { |
| 1781 | jermar | 156 | uint8_t *scr = dst; |
| 1363 | vana | 157 | #if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN)) |
| 1555 | palkovsky | 158 | scr[0] = RED(rgb, 8); |
| 159 | scr[1] = GREEN(rgb, 8); |
||
| 160 | scr[2] = BLUE(rgb, 8); |
||
| 1363 | vana | 161 | #else |
| 1555 | palkovsky | 162 | scr[2] = RED(rgb, 8); |
| 163 | scr[1] = GREEN(rgb, 8); |
||
| 164 | scr[0] = BLUE(rgb, 8); |
||
| 1363 | vana | 165 | #endif |
| 166 | |||
| 1555 | palkovsky | 167 | |
| 1363 | vana | 168 | } |
| 169 | |||
| 1555 | palkovsky | 170 | static int byte3_rgb(void *src) |
| 1363 | vana | 171 | { |
| 1781 | jermar | 172 | uint8_t *scr = src; |
| 1363 | vana | 173 | #if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN)) |
| 1555 | palkovsky | 174 | return scr[0] << 16 | scr[1] << 8 | scr[2]; |
| 1363 | vana | 175 | #else |
| 1555 | palkovsky | 176 | return scr[2] << 16 | scr[1] << 8 | scr[0]; |
| 177 | #endif |
||
| 1363 | vana | 178 | } |
| 179 | |||
| 1555 | palkovsky | 180 | /** 16-bit depth (5:6:5) */ |
| 181 | static void rgb_2byte(void *dst, int rgb) |
||
| 1363 | vana | 182 | { |
| 183 | /* 5-bit, 6-bits, 5-bits */ |
||
| 1781 | jermar | 184 | *((uint16_t *)(dst)) = RED(rgb, 5) << 11 | GREEN(rgb, 6) << 5 | BLUE(rgb, 5); |
| 1363 | vana | 185 | } |
| 186 | |||
| 1555 | palkovsky | 187 | /** 16-bit depth (5:6:5) */ |
| 188 | static int byte2_rgb(void *src) |
||
| 1363 | vana | 189 | { |
| 1781 | jermar | 190 | int color = *(uint16_t *)(src); |
| 1363 | vana | 191 | return (((color >> 11) & 0x1f) << (16 + 3)) | (((color >> 5) & 0x3f) << (8 + 2)) | ((color & 0x1f) << 3); |
| 192 | } |
||
| 193 | |||
| 194 | /** Put pixel - 8-bit depth (3:2:3) */ |
||
| 1555 | palkovsky | 195 | static void rgb_1byte(void *dst, int rgb) |
| 1363 | vana | 196 | { |
| 1781 | jermar | 197 | *(uint8_t *)dst = RED(rgb, 3) << 5 | GREEN(rgb, 2) << 3 | BLUE(rgb, 3); |
| 1363 | vana | 198 | } |
| 199 | |||
| 200 | /** Return pixel color - 8-bit depth (3:2:3) */ |
||
| 1555 | palkovsky | 201 | static int byte1_rgb(void *src) |
| 1363 | vana | 202 | { |
| 1781 | jermar | 203 | int color = *(uint8_t *)src; |
| 1363 | vana | 204 | return (((color >> 5) & 0x7) << (16 + 5)) | (((color >> 3) & 0x3) << (8 + 6)) | ((color & 0x7) << 5); |
| 205 | } |
||
| 206 | |||
| 1498 | palkovsky | 207 | /** Put pixel into viewport |
| 208 | * |
||
| 1709 | jermar | 209 | * @param vport Viewport identification |
| 1498 | palkovsky | 210 | * @param x X coord relative to viewport |
| 211 | * @param y Y coord relative to viewport |
||
| 212 | * @param color RGB color |
||
| 213 | */ |
||
| 1673 | palkovsky | 214 | static void putpixel(viewport_t *vport, unsigned int x, unsigned int y, int color) |
| 1485 | palkovsky | 215 | { |
| 1673 | palkovsky | 216 | int dx = vport->x + x; |
| 217 | int dy = vport->y + y; |
||
| 1672 | palkovsky | 218 | |
| 1673 | palkovsky | 219 | if (! (vport->paused && vport->dbdata)) |
| 1672 | palkovsky | 220 | (*screen.rgb2scr)(&screen.fbaddress[POINTPOS(dx,dy)],color); |
| 221 | |||
| 1673 | palkovsky | 222 | if (vport->dbdata) { |
| 223 | int dline = (y + vport->dboffset) % vport->height; |
||
| 224 | int doffset = screen.pixelbytes * (dline * vport->width + x); |
||
| 225 | (*screen.rgb2scr)(&vport->dbdata[doffset],color); |
||
| 1672 | palkovsky | 226 | } |
| 1485 | palkovsky | 227 | } |
| 1672 | palkovsky | 228 | |
| 1498 | palkovsky | 229 | /** Get pixel from viewport */ |
| 1673 | palkovsky | 230 | static int getpixel(viewport_t *vport, unsigned int x, unsigned int y) |
| 1485 | palkovsky | 231 | { |
| 1673 | palkovsky | 232 | int dx = vport->x + x; |
| 233 | int dy = vport->y + y; |
||
| 1555 | palkovsky | 234 | |
| 235 | return (*screen.scr2rgb)(&screen.fbaddress[POINTPOS(dx,dy)]); |
||
| 1485 | palkovsky | 236 | } |
| 237 | |||
| 1668 | palkovsky | 238 | static inline void putpixel_mem(char *mem, unsigned int x, unsigned int y, |
| 239 | int color) |
||
| 1363 | vana | 240 | { |
| 1668 | palkovsky | 241 | (*screen.rgb2scr)(&mem[POINTPOS(x,y)],color); |
| 1363 | vana | 242 | } |
| 243 | |||
| 1673 | palkovsky | 244 | static void draw_rectangle(viewport_t *vport, unsigned int sx, unsigned int sy, |
| 1559 | palkovsky | 245 | unsigned int width, unsigned int height, |
| 246 | int color) |
||
| 247 | { |
||
| 248 | unsigned int x, y; |
||
| 1668 | palkovsky | 249 | static void *tmpline; |
| 1559 | palkovsky | 250 | |
| 1668 | palkovsky | 251 | if (!tmpline) |
| 252 | tmpline = malloc(screen.scanline*screen.pixelbytes); |
||
| 253 | |||
| 1559 | palkovsky | 254 | /* Clear first line */ |
| 255 | for (x = 0; x < width; x++) |
||
| 1668 | palkovsky | 256 | putpixel_mem(tmpline, x, 0, color); |
| 1559 | palkovsky | 257 | |
| 1673 | palkovsky | 258 | if (!vport->paused) { |
| 1672 | palkovsky | 259 | /* Recompute to screen coords */ |
| 1673 | palkovsky | 260 | sx += vport->x; |
| 261 | sy += vport->y; |
||
| 1672 | palkovsky | 262 | /* Copy the rest */ |
| 263 | for (y = sy;y < sy+height; y++) |
||
| 264 | memcpy(&screen.fbaddress[POINTPOS(sx,y)], tmpline, |
||
| 265 | screen.pixelbytes * width); |
||
| 266 | } |
||
| 1673 | palkovsky | 267 | if (vport->dbdata) { |
| 1672 | palkovsky | 268 | for (y=sy;y < sy+height; y++) { |
| 1673 | palkovsky | 269 | int rline = (y + vport->dboffset) % vport->height; |
| 270 | int rpos = (rline * vport->width + sx) * screen.pixelbytes; |
||
| 271 | memcpy(&vport->dbdata[rpos], tmpline, screen.pixelbytes * width); |
||
| 1672 | palkovsky | 272 | } |
| 273 | } |
||
| 1559 | palkovsky | 274 | |
| 275 | } |
||
| 276 | |||
| 1485 | palkovsky | 277 | /** Fill viewport with background color */ |
| 1673 | palkovsky | 278 | static void clear_port(viewport_t *vport) |
| 1363 | vana | 279 | { |
| 1673 | palkovsky | 280 | draw_rectangle(vport, 0, 0, vport->width, vport->height, vport->style.bg_color); |
| 1363 | vana | 281 | } |
| 282 | |||
| 1672 | palkovsky | 283 | /** Scroll unbuffered viewport up/down |
| 1485 | palkovsky | 284 | * |
| 1709 | jermar | 285 | * @param vport Viewport to scroll |
| 286 | * @param lines Positive number - scroll up, negative - scroll down |
||
| 1485 | palkovsky | 287 | */ |
| 1673 | palkovsky | 288 | static void scroll_port_nodb(viewport_t *vport, int lines) |
| 1363 | vana | 289 | { |
| 1485 | palkovsky | 290 | int y; |
| 1672 | palkovsky | 291 | |
| 292 | if (lines > 0) { |
||
| 293 | for (y=vport->y; y < vport->y+vport->height - lines; y++) |
||
| 1559 | palkovsky | 294 | memcpy(&screen.fbaddress[POINTPOS(vport->x,y)], |
| 1672 | palkovsky | 295 | &screen.fbaddress[POINTPOS(vport->x,y + lines)], |
| 1559 | palkovsky | 296 | screen.pixelbytes * vport->width); |
| 1673 | palkovsky | 297 | draw_rectangle(vport, 0, vport->height - lines, |
| 1672 | palkovsky | 298 | vport->width, lines, vport->style.bg_color); |
| 299 | } else if (lines < 0) { |
||
| 300 | lines = -lines; |
||
| 301 | for (y=vport->y + vport->height-1; y >= vport->y + lines; y--) |
||
| 1559 | palkovsky | 302 | memcpy(&screen.fbaddress[POINTPOS(vport->x,y)], |
| 1672 | palkovsky | 303 | &screen.fbaddress[POINTPOS(vport->x,y - lines)], |
| 304 | screen.pixelbytes * vport->width); |
||
| 1673 | palkovsky | 305 | draw_rectangle(vport, 0, 0, vport->width, lines, vport->style.bg_color); |
| 1485 | palkovsky | 306 | } |
| 1363 | vana | 307 | } |
| 308 | |||
| 1672 | palkovsky | 309 | /** Refresh given viewport from double buffer */ |
| 1673 | palkovsky | 310 | static void refresh_viewport_db(viewport_t *vport) |
| 1672 | palkovsky | 311 | { |
| 312 | unsigned int y, srcy, srcoff, dsty, dstx; |
||
| 313 | |||
| 1673 | palkovsky | 314 | for (y = 0; y < vport->height; y++) { |
| 315 | srcy = (y + vport->dboffset) % vport->height; |
||
| 316 | srcoff = (vport->width * srcy) * screen.pixelbytes; |
||
| 1672 | palkovsky | 317 | |
| 1673 | palkovsky | 318 | dstx = vport->x; |
| 319 | dsty = vport->y + y; |
||
| 1672 | palkovsky | 320 | |
| 321 | memcpy(&screen.fbaddress[POINTPOS(dstx,dsty)], |
||
| 1673 | palkovsky | 322 | &vport->dbdata[srcoff], |
| 323 | vport->width*screen.pixelbytes); |
||
| 1672 | palkovsky | 324 | } |
| 325 | } |
||
| 326 | |||
| 327 | /** Scroll viewport that has double buffering enabled */ |
||
| 1673 | palkovsky | 328 | static void scroll_port_db(viewport_t *vport, int lines) |
| 1672 | palkovsky | 329 | { |
| 1673 | palkovsky | 330 | ++vport->paused; |
| 1672 | palkovsky | 331 | if (lines > 0) { |
| 1673 | palkovsky | 332 | draw_rectangle(vport, 0, 0, vport->width, lines, |
| 333 | vport->style.bg_color); |
||
| 334 | vport->dboffset += lines; |
||
| 335 | vport->dboffset %= vport->height; |
||
| 1672 | palkovsky | 336 | } else if (lines < 0) { |
| 337 | lines = -lines; |
||
| 1673 | palkovsky | 338 | draw_rectangle(vport, 0, vport->height-lines, |
| 339 | vport->width, lines, |
||
| 340 | vport->style.bg_color); |
||
| 1672 | palkovsky | 341 | |
| 1673 | palkovsky | 342 | if (vport->dboffset < lines) |
| 343 | vport->dboffset += vport->height; |
||
| 344 | vport->dboffset -= lines; |
||
| 1672 | palkovsky | 345 | } |
| 346 | |||
| 1673 | palkovsky | 347 | --vport->paused; |
| 1672 | palkovsky | 348 | |
| 1673 | palkovsky | 349 | refresh_viewport_db(vport); |
| 1672 | palkovsky | 350 | } |
| 351 | |||
| 352 | /** Scrolls viewport given number of lines */ |
||
| 1673 | palkovsky | 353 | static void scroll_port(viewport_t *vport, int lines) |
| 1672 | palkovsky | 354 | { |
| 1673 | palkovsky | 355 | if (vport->dbdata) |
| 356 | scroll_port_db(vport, lines); |
||
| 1672 | palkovsky | 357 | else |
| 1673 | palkovsky | 358 | scroll_port_nodb(vport, lines); |
| 1672 | palkovsky | 359 | |
| 360 | } |
||
| 361 | |||
| 1673 | palkovsky | 362 | static void invert_pixel(viewport_t *vport, unsigned int x, unsigned int y) |
| 1363 | vana | 363 | { |
| 1673 | palkovsky | 364 | putpixel(vport, x, y, ~getpixel(vport, x, y)); |
| 1363 | vana | 365 | } |
| 366 | |||
| 367 | |||
| 368 | /***************************************************************/ |
||
| 369 | /* Character-console functions */ |
||
| 370 | |||
| 1558 | palkovsky | 371 | /** Draw character at given position |
| 372 | * |
||
| 1709 | jermar | 373 | * @param vport Viewport where the character is printed |
| 1558 | palkovsky | 374 | * @param sx Coordinates of top-left of the character |
| 375 | * @param sy Coordinates of top-left of the character |
||
| 376 | * @param style Color of the character |
||
| 377 | * @param transparent If false, print background color |
||
| 378 | */ |
||
| 1781 | jermar | 379 | static void draw_glyph(viewport_t *vport,uint8_t glyph, unsigned int sx, unsigned int sy, |
| 1558 | palkovsky | 380 | style_t style, int transparent) |
| 1363 | vana | 381 | { |
| 1509 | palkovsky | 382 | int i; |
| 1363 | vana | 383 | unsigned int y; |
| 1509 | palkovsky | 384 | unsigned int glline; |
| 1363 | vana | 385 | |
| 1509 | palkovsky | 386 | for (y = 0; y < FONT_SCANLINES; y++) { |
| 387 | glline = fb_font[glyph * FONT_SCANLINES + y]; |
||
| 388 | for (i = 0; i < 8; i++) { |
||
| 389 | if (glline & (1 << (7 - i))) |
||
| 1673 | palkovsky | 390 | putpixel(vport, sx + i, sy + y, style.fg_color); |
| 1558 | palkovsky | 391 | else if (!transparent) |
| 1673 | palkovsky | 392 | putpixel(vport, sx + i, sy + y, style.bg_color); |
| 1509 | palkovsky | 393 | } |
| 394 | } |
||
| 1363 | vana | 395 | } |
| 396 | |||
| 397 | /** Invert character at given position */ |
||
| 1673 | palkovsky | 398 | static void invert_char(viewport_t *vport,unsigned int row, unsigned int col) |
| 1363 | vana | 399 | { |
| 400 | unsigned int x; |
||
| 401 | unsigned int y; |
||
| 402 | |||
| 403 | for (x = 0; x < COL_WIDTH; x++) |
||
| 404 | for (y = 0; y < FONT_SCANLINES; y++) |
||
| 1673 | palkovsky | 405 | invert_pixel(vport, col * COL_WIDTH + x, row * FONT_SCANLINES + y); |
| 1363 | vana | 406 | } |
| 407 | |||
| 408 | /***************************************************************/ |
||
| 409 | /* Stdout specific functions */ |
||
| 410 | |||
| 411 | |||
| 1485 | palkovsky | 412 | /** Create new viewport |
| 1363 | vana | 413 | * |
| 1485 | palkovsky | 414 | * @return New viewport number |
| 1363 | vana | 415 | */ |
| 1485 | palkovsky | 416 | static int viewport_create(unsigned int x, unsigned int y,unsigned int width, |
| 417 | unsigned int height) |
||
| 1363 | vana | 418 | { |
| 1485 | palkovsky | 419 | int i; |
| 420 | |||
| 1646 | palkovsky | 421 | for (i=0; i < MAX_VIEWPORTS; i++) { |
| 1485 | palkovsky | 422 | if (!viewports[i].initialized) |
| 1363 | vana | 423 | break; |
| 424 | } |
||
| 1485 | palkovsky | 425 | if (i == MAX_VIEWPORTS) |
| 426 | return ELIMIT; |
||
| 427 | |||
| 428 | viewports[i].x = x; |
||
| 429 | viewports[i].y = y; |
||
| 430 | viewports[i].width = width; |
||
| 431 | viewports[i].height = height; |
||
| 1363 | vana | 432 | |
| 1485 | palkovsky | 433 | viewports[i].rows = height / FONT_SCANLINES; |
| 434 | viewports[i].cols = width / COL_WIDTH; |
||
| 435 | |||
| 1509 | palkovsky | 436 | viewports[i].style.bg_color = DEFAULT_BGCOLOR; |
| 437 | viewports[i].style.fg_color = DEFAULT_FGCOLOR; |
||
| 1363 | vana | 438 | |
| 1489 | palkovsky | 439 | viewports[i].cur_col = 0; |
| 440 | viewports[i].cur_row = 0; |
||
| 441 | viewports[i].cursor_active = 0; |
||
| 442 | |||
| 1486 | palkovsky | 443 | viewports[i].initialized = 1; |
| 444 | |||
| 1485 | palkovsky | 445 | return i; |
| 1363 | vana | 446 | } |
| 447 | |||
| 448 | |||
| 449 | /** Initialize framebuffer as a chardev output device |
||
| 450 | * |
||
| 451 | * @param addr Address of theframebuffer |
||
| 1709 | jermar | 452 | * @param xres Screen width in pixels |
| 453 | * @param yres Screen height in pixels |
||
| 1363 | vana | 454 | * @param bpp Bits per pixel (8, 16, 24, 32) |
| 455 | * @param scan Bytes per one scanline |
||
| 456 | * |
||
| 457 | */ |
||
| 1501 | palkovsky | 458 | static void screen_init(void *addr, unsigned int xres, unsigned int yres, unsigned int bpp, unsigned int scan) |
| 1363 | vana | 459 | { |
| 460 | switch (bpp) { |
||
| 461 | case 8: |
||
| 1555 | palkovsky | 462 | screen.rgb2scr = rgb_1byte; |
| 463 | screen.scr2rgb = byte1_rgb; |
||
| 1485 | palkovsky | 464 | screen.pixelbytes = 1; |
| 1363 | vana | 465 | break; |
| 466 | case 16: |
||
| 1555 | palkovsky | 467 | screen.rgb2scr = rgb_2byte; |
| 468 | screen.scr2rgb = byte2_rgb; |
||
| 1485 | palkovsky | 469 | screen.pixelbytes = 2; |
| 1363 | vana | 470 | break; |
| 471 | case 24: |
||
| 1555 | palkovsky | 472 | screen.rgb2scr = rgb_3byte; |
| 473 | screen.scr2rgb = byte3_rgb; |
||
| 1485 | palkovsky | 474 | screen.pixelbytes = 3; |
| 1363 | vana | 475 | break; |
| 476 | case 32: |
||
| 1555 | palkovsky | 477 | screen.rgb2scr = rgb_4byte; |
| 478 | screen.scr2rgb = byte4_rgb; |
||
| 1485 | palkovsky | 479 | screen.pixelbytes = 4; |
| 1363 | vana | 480 | break; |
| 481 | } |
||
| 482 | |||
| 483 | |||
| 1485 | palkovsky | 484 | screen.fbaddress = (unsigned char *) addr; |
| 485 | screen.xres = xres; |
||
| 486 | screen.yres = yres; |
||
| 487 | screen.scanline = scan; |
||
| 1363 | vana | 488 | |
| 1485 | palkovsky | 489 | /* Create first viewport */ |
| 490 | viewport_create(0,0,xres,yres); |
||
| 491 | } |
||
| 1363 | vana | 492 | |
| 1552 | palkovsky | 493 | /** Hide cursor if it is shown */ |
| 1673 | palkovsky | 494 | static void cursor_hide(viewport_t *vport) |
| 1500 | palkovsky | 495 | { |
| 496 | if (vport->cursor_active && vport->cursor_shown) { |
||
| 1673 | palkovsky | 497 | invert_char(vport, vport->cur_row, vport->cur_col); |
| 1500 | palkovsky | 498 | vport->cursor_shown = 0; |
| 499 | } |
||
| 500 | } |
||
| 501 | |||
| 1552 | palkovsky | 502 | /** Show cursor if cursor showing is enabled */ |
| 1673 | palkovsky | 503 | static void cursor_print(viewport_t *vport) |
| 1500 | palkovsky | 504 | { |
| 505 | /* Do not check for cursor_shown */ |
||
| 506 | if (vport->cursor_active) { |
||
| 1673 | palkovsky | 507 | invert_char(vport, vport->cur_row, vport->cur_col); |
| 1500 | palkovsky | 508 | vport->cursor_shown = 1; |
| 509 | } |
||
| 510 | } |
||
| 511 | |||
| 1552 | palkovsky | 512 | /** Invert cursor, if it is enabled */ |
| 1673 | palkovsky | 513 | static void cursor_blink(viewport_t *vport) |
| 1500 | palkovsky | 514 | { |
| 515 | if (vport->cursor_shown) |
||
| 1673 | palkovsky | 516 | cursor_hide(vport); |
| 1500 | palkovsky | 517 | else |
| 1673 | palkovsky | 518 | cursor_print(vport); |
| 1500 | palkovsky | 519 | } |
| 520 | |||
| 1498 | palkovsky | 521 | /** Draw character at given position relative to viewport |
| 522 | * |
||
| 1709 | jermar | 523 | * @param vport Viewport identification |
| 1498 | palkovsky | 524 | * @param c Character to print |
| 525 | * @param row Screen position relative to viewport |
||
| 526 | * @param col Screen position relative to viewport |
||
| 1558 | palkovsky | 527 | * @param transparent If false, print background color with character |
| 1498 | palkovsky | 528 | */ |
| 1673 | palkovsky | 529 | static void draw_char(viewport_t *vport, char c, unsigned int row, unsigned int col, |
| 530 | style_t style, int transparent) |
||
| 1486 | palkovsky | 531 | { |
| 1500 | palkovsky | 532 | /* Optimize - do not hide cursor if we are going to overwrite it */ |
| 533 | if (vport->cursor_active && vport->cursor_shown && |
||
| 534 | (vport->cur_col != col || vport->cur_row != row)) |
||
| 1673 | palkovsky | 535 | invert_char(vport, vport->cur_row, vport->cur_col); |
| 1486 | palkovsky | 536 | |
| 1673 | palkovsky | 537 | draw_glyph(vport, c, col * COL_WIDTH, row * FONT_SCANLINES, style, transparent); |
| 1489 | palkovsky | 538 | |
| 539 | vport->cur_col = col; |
||
| 540 | vport->cur_row = row; |
||
| 541 | |||
| 542 | vport->cur_col++; |
||
| 543 | if (vport->cur_col>= vport->cols) { |
||
| 544 | vport->cur_col = 0; |
||
| 545 | vport->cur_row++; |
||
| 546 | if (vport->cur_row >= vport->rows) |
||
| 547 | vport->cur_row--; |
||
| 1486 | palkovsky | 548 | } |
| 1673 | palkovsky | 549 | cursor_print(vport); |
| 1486 | palkovsky | 550 | } |
| 551 | |||
| 1552 | palkovsky | 552 | /** Draw text data to viewport |
| 553 | * |
||
| 1709 | jermar | 554 | * @param vport Viewport id |
| 1552 | palkovsky | 555 | * @param data Text data fitting exactly into viewport |
| 556 | */ |
||
| 1673 | palkovsky | 557 | static void draw_text_data(viewport_t *vport, keyfield_t *data) |
| 1505 | palkovsky | 558 | { |
| 559 | int i; |
||
| 1515 | palkovsky | 560 | int col,row; |
| 1505 | palkovsky | 561 | |
| 1673 | palkovsky | 562 | clear_port(vport); |
| 1505 | palkovsky | 563 | for (i=0; i < vport->cols * vport->rows; i++) { |
| 1509 | palkovsky | 564 | if (data[i].character == ' ' && style_same(data[i].style,vport->style)) |
| 1505 | palkovsky | 565 | continue; |
| 1515 | palkovsky | 566 | col = i % vport->cols; |
| 567 | row = i / vport->cols; |
||
| 1673 | palkovsky | 568 | draw_glyph(vport, data[i].character, col * COL_WIDTH, row * FONT_SCANLINES, |
| 1558 | palkovsky | 569 | data[i].style, style_same(data[i].style,vport->style)); |
| 1505 | palkovsky | 570 | } |
| 1673 | palkovsky | 571 | cursor_print(vport); |
| 1505 | palkovsky | 572 | } |
| 573 | |||
| 1555 | palkovsky | 574 | |
| 575 | /** Return first free pixmap */ |
||
| 576 | static int find_free_pixmap(void) |
||
| 577 | { |
||
| 578 | int i; |
||
| 579 | |||
| 580 | for (i=0;i < MAX_PIXMAPS;i++) |
||
| 581 | if (!pixmaps[i].data) |
||
| 582 | return i; |
||
| 583 | return -1; |
||
| 584 | } |
||
| 585 | |||
| 586 | static void putpixel_pixmap(int pm, unsigned int x, unsigned int y, int color) |
||
| 587 | { |
||
| 588 | pixmap_t *pmap = &pixmaps[pm]; |
||
| 589 | int pos = (y * pmap->width + x) * screen.pixelbytes; |
||
| 590 | |||
| 591 | (*screen.rgb2scr)(&pmap->data[pos],color); |
||
| 592 | } |
||
| 593 | |||
| 594 | /** Create a new pixmap and return appropriate ID */ |
||
| 1720 | palkovsky | 595 | static int shm2pixmap(unsigned char *shm, size_t size) |
| 1555 | palkovsky | 596 | { |
| 597 | int pm; |
||
| 598 | pixmap_t *pmap; |
||
| 599 | |||
| 600 | pm = find_free_pixmap(); |
||
| 601 | if (pm == -1) |
||
| 602 | return ELIMIT; |
||
| 603 | pmap = &pixmaps[pm]; |
||
| 604 | |||
| 605 | if (ppm_get_data(shm, size, &pmap->width, &pmap->height)) |
||
| 606 | return EINVAL; |
||
| 607 | |||
| 608 | pmap->data = malloc(pmap->width * pmap->height * screen.pixelbytes); |
||
| 609 | if (!pmap->data) |
||
| 610 | return ENOMEM; |
||
| 611 | |||
| 612 | ppm_draw(shm, size, 0, 0, pmap->width, pmap->height, |
||
| 1673 | palkovsky | 613 | (putpixel_cb_t)putpixel_pixmap, (void *)pm); |
| 1555 | palkovsky | 614 | |
| 615 | return pm; |
||
| 616 | } |
||
| 617 | |||
| 1552 | palkovsky | 618 | /** Handle shared memory communication calls |
| 619 | * |
||
| 620 | * Protocol for drawing pixmaps: |
||
| 621 | * - FB_PREPARE_SHM(client shm identification) |
||
| 622 | * - IPC_M_SEND_AS_AREA |
||
| 623 | * - FB_DRAW_PPM(startx,starty) |
||
| 624 | * - FB_DROP_SHM |
||
| 625 | * |
||
| 626 | * Protocol for text drawing |
||
| 627 | * - IPC_M_SEND_AS_AREA |
||
| 628 | * - FB_DRAW_TEXT_DATA |
||
| 629 | * |
||
| 630 | * @param callid Callid of the current call |
||
| 631 | * @param call Current call data |
||
| 632 | * @param vp Active viewport |
||
| 633 | * @return 0 if the call was not handled byt this function, 1 otherwise |
||
| 634 | * |
||
| 635 | * note: this function is not threads safe, you would have |
||
| 636 | * to redefine static variables with __thread |
||
| 637 | */ |
||
| 1547 | palkovsky | 638 | static int shm_handle(ipc_callid_t callid, ipc_call_t *call, int vp) |
| 639 | { |
||
| 640 | static keyfield_t *interbuffer = NULL; |
||
| 641 | static size_t intersize = 0; |
||
| 1505 | palkovsky | 642 | |
| 1720 | palkovsky | 643 | static unsigned char *shm = NULL; |
| 1555 | palkovsky | 644 | static ipcarg_t shm_id = 0; |
| 645 | static size_t shm_size; |
||
| 1547 | palkovsky | 646 | |
| 647 | int handled = 1; |
||
| 648 | int retval = 0; |
||
| 649 | viewport_t *vport = &viewports[vp]; |
||
| 650 | unsigned int x,y; |
||
| 651 | |||
| 652 | switch (IPC_GET_METHOD(*call)) { |
||
| 653 | case IPC_M_AS_AREA_SEND: |
||
| 654 | /* We accept one area for data interchange */ |
||
| 1555 | palkovsky | 655 | if (IPC_GET_ARG1(*call) == shm_id) { |
| 1547 | palkovsky | 656 | void *dest = as_get_mappable_page(IPC_GET_ARG2(*call)); |
| 1555 | palkovsky | 657 | shm_size = IPC_GET_ARG2(*call); |
| 1547 | palkovsky | 658 | if (!ipc_answer_fast(callid, 0, (sysarg_t)dest, 0)) |
| 1555 | palkovsky | 659 | shm = dest; |
| 1547 | palkovsky | 660 | else |
| 1555 | palkovsky | 661 | shm_id = 0; |
| 662 | if (shm[0] != 'P') |
||
| 1547 | palkovsky | 663 | while (1) |
| 664 | ; |
||
| 665 | return 1; |
||
| 666 | } else { |
||
| 667 | intersize = IPC_GET_ARG2(*call); |
||
| 1720 | palkovsky | 668 | receive_comm_area(callid,call,(void *)&interbuffer); |
| 1547 | palkovsky | 669 | } |
| 670 | return 1; |
||
| 671 | case FB_PREPARE_SHM: |
||
| 1555 | palkovsky | 672 | if (shm_id) |
| 1547 | palkovsky | 673 | retval = EBUSY; |
| 674 | else |
||
| 1555 | palkovsky | 675 | shm_id = IPC_GET_ARG1(*call); |
| 1547 | palkovsky | 676 | break; |
| 677 | |||
| 678 | case FB_DROP_SHM: |
||
| 1555 | palkovsky | 679 | if (shm) { |
| 680 | as_area_destroy(shm); |
||
| 681 | shm = NULL; |
||
| 1547 | palkovsky | 682 | } |
| 1555 | palkovsky | 683 | shm_id = 0; |
| 1547 | palkovsky | 684 | break; |
| 1555 | palkovsky | 685 | |
| 686 | case FB_SHM2PIXMAP: |
||
| 687 | if (!shm) { |
||
| 688 | retval = EINVAL; |
||
| 689 | break; |
||
| 690 | } |
||
| 691 | retval = shm2pixmap(shm, shm_size); |
||
| 692 | break; |
||
| 1547 | palkovsky | 693 | case FB_DRAW_PPM: |
| 1555 | palkovsky | 694 | if (!shm) { |
| 1547 | palkovsky | 695 | retval = EINVAL; |
| 696 | break; |
||
| 697 | } |
||
| 698 | x = IPC_GET_ARG1(*call); |
||
| 699 | y = IPC_GET_ARG2(*call); |
||
| 700 | if (x > vport->width || y > vport->height) { |
||
| 701 | retval = EINVAL; |
||
| 702 | break; |
||
| 703 | } |
||
| 704 | |||
| 1555 | palkovsky | 705 | ppm_draw(shm, shm_size, IPC_GET_ARG1(*call), IPC_GET_ARG2(*call), |
| 1673 | palkovsky | 706 | vport->width - x, vport->height - y, (putpixel_cb_t)putpixel, vport); |
| 1547 | palkovsky | 707 | break; |
| 708 | case FB_DRAW_TEXT_DATA: |
||
| 709 | if (!interbuffer) { |
||
| 710 | retval = EINVAL; |
||
| 711 | break; |
||
| 712 | } |
||
| 713 | if (intersize < vport->cols*vport->rows*sizeof(*interbuffer)) { |
||
| 714 | retval = EINVAL; |
||
| 715 | break; |
||
| 716 | } |
||
| 1673 | palkovsky | 717 | draw_text_data(vport, interbuffer); |
| 1547 | palkovsky | 718 | break; |
| 719 | default: |
||
| 720 | handled = 0; |
||
| 721 | } |
||
| 722 | |||
| 723 | if (handled) |
||
| 724 | ipc_answer_fast(callid, retval, 0, 0); |
||
| 725 | return handled; |
||
| 726 | } |
||
| 727 | |||
| 1711 | palkovsky | 728 | static void copy_vp_to_pixmap(viewport_t *vport, pixmap_t *pmap) |
| 1552 | palkovsky | 729 | { |
| 1720 | palkovsky | 730 | int y; |
| 1552 | palkovsky | 731 | int rowsize; |
| 732 | int tmp; |
||
| 1711 | palkovsky | 733 | int width = vport->width; |
| 734 | int height = vport->height; |
||
| 1552 | palkovsky | 735 | |
| 1711 | palkovsky | 736 | if (width + vport->x > screen.xres) |
| 737 | width = screen.xres - vport->x; |
||
| 738 | if (height + vport->y > screen.yres) |
||
| 739 | height = screen.yres - vport->y; |
||
| 740 | |||
| 741 | rowsize = width * screen.pixelbytes; |
||
| 742 | |||
| 743 | for (y=0;y < height; y++) { |
||
| 744 | tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes; |
||
| 745 | memcpy(pmap->data + rowsize*y, screen.fbaddress + tmp, rowsize); |
||
| 746 | } |
||
| 747 | } |
||
| 748 | |||
| 749 | /** Save viewport to pixmap */ |
||
| 750 | static int save_vp_to_pixmap(viewport_t *vport) |
||
| 751 | { |
||
| 752 | int pm; |
||
| 753 | pixmap_t *pmap; |
||
| 754 | |||
| 1552 | palkovsky | 755 | pm = find_free_pixmap(); |
| 756 | if (pm == -1) |
||
| 757 | return ELIMIT; |
||
| 758 | |||
| 759 | pmap = &pixmaps[pm]; |
||
| 760 | pmap->data = malloc(screen.pixelbytes * vport->width * vport->height); |
||
| 761 | if (!pmap->data) |
||
| 762 | return ENOMEM; |
||
| 763 | |||
| 764 | pmap->width = vport->width; |
||
| 765 | pmap->height = vport->height; |
||
| 1711 | palkovsky | 766 | |
| 767 | copy_vp_to_pixmap(vport, pmap); |
||
| 1552 | palkovsky | 768 | |
| 769 | return pm; |
||
| 770 | } |
||
| 771 | |||
| 772 | /** Draw pixmap on screen |
||
| 773 | * |
||
| 774 | * @param vp Viewport to draw on |
||
| 775 | * @param pm Pixmap identifier |
||
| 776 | */ |
||
| 777 | static int draw_pixmap(int vp, int pm) |
||
| 778 | { |
||
| 779 | pixmap_t *pmap = &pixmaps[pm]; |
||
| 780 | viewport_t *vport = &viewports[vp]; |
||
| 1720 | palkovsky | 781 | int y; |
| 1552 | palkovsky | 782 | int tmp, srcrowsize; |
| 783 | int realwidth, realheight, realrowsize; |
||
| 1711 | palkovsky | 784 | int width = vport->width; |
| 785 | int height = vport->height; |
||
| 1552 | palkovsky | 786 | |
| 1711 | palkovsky | 787 | if (width + vport->x > screen.xres) |
| 788 | width = screen.xres - vport->x; |
||
| 789 | if (height + vport->y > screen.yres) |
||
| 790 | height = screen.yres - vport->y; |
||
| 791 | |||
| 1552 | palkovsky | 792 | if (!pmap->data) |
| 793 | return EINVAL; |
||
| 794 | |||
| 1711 | palkovsky | 795 | realwidth = pmap->width <= width ? pmap->width : width; |
| 796 | realheight = pmap->height <= height ? pmap->height : height; |
||
| 1552 | palkovsky | 797 | |
| 798 | srcrowsize = vport->width * screen.pixelbytes; |
||
| 799 | realrowsize = realwidth * screen.pixelbytes; |
||
| 800 | |||
| 801 | for (y=0; y < realheight; y++) { |
||
| 802 | tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes; |
||
| 803 | memcpy(screen.fbaddress + tmp, pmap->data + y * srcrowsize, realrowsize); |
||
| 804 | } |
||
| 1567 | palkovsky | 805 | return 0; |
| 1552 | palkovsky | 806 | } |
| 807 | |||
| 1646 | palkovsky | 808 | /** Tick animation one step forward */ |
| 809 | static void anims_tick(void) |
||
| 810 | { |
||
| 811 | int i; |
||
| 812 | static int counts = 0; |
||
| 813 | |||
| 814 | /* Limit redrawing */ |
||
| 815 | counts = (counts+1) % 8; |
||
| 816 | if (counts) |
||
| 817 | return; |
||
| 818 | |||
| 819 | for (i=0; i < MAX_ANIMATIONS; i++) { |
||
| 820 | if (!animations[i].animlen || !animations[i].initialized || !animations[i].enabled) |
||
| 821 | continue; |
||
| 822 | draw_pixmap(animations[i].vp, animations[i].pixmaps[animations[i].pos]); |
||
| 823 | animations[i].pos = (animations[i].pos+1) % animations[i].animlen; |
||
| 824 | } |
||
| 825 | } |
||
| 826 | |||
| 1711 | palkovsky | 827 | |
| 828 | static int pointer_x, pointer_y; |
||
| 1723 | palkovsky | 829 | static int pointer_shown, pointer_enabled; |
| 1711 | palkovsky | 830 | static int pointer_vport = -1; |
| 831 | static int pointer_pixmap = -1; |
||
| 832 | |||
| 833 | static void mouse_show(void) |
||
| 834 | { |
||
| 835 | int i,j; |
||
| 836 | int visibility; |
||
| 837 | int color; |
||
| 838 | int bytepos; |
||
| 839 | |||
| 1723 | palkovsky | 840 | if (pointer_shown || !pointer_enabled) |
| 841 | return; |
||
| 842 | |||
| 1711 | palkovsky | 843 | /* Save image under the cursor */ |
| 844 | if (pointer_vport == -1) { |
||
| 845 | pointer_vport = viewport_create(pointer_x, pointer_y, pointer_width, pointer_height); |
||
| 846 | if (pointer_vport < 0) |
||
| 847 | return; |
||
| 848 | } else { |
||
| 849 | viewports[pointer_vport].x = pointer_x; |
||
| 850 | viewports[pointer_vport].y = pointer_y; |
||
| 851 | } |
||
| 852 | |||
| 853 | if (pointer_pixmap == -1) |
||
| 854 | pointer_pixmap = save_vp_to_pixmap(&viewports[pointer_vport]); |
||
| 855 | else |
||
| 856 | copy_vp_to_pixmap(&viewports[pointer_vport], &pixmaps[pointer_pixmap]); |
||
| 857 | |||
| 858 | /* Draw cursor */ |
||
| 859 | for (i=0; i < pointer_height; i++) |
||
| 860 | for (j=0;j < pointer_width; j++) { |
||
| 861 | bytepos = i*((pointer_width-1)/8+1) + j/8; |
||
| 862 | visibility = pointer_mask_bits[bytepos] & (1 << (j % 8)); |
||
| 863 | if (visibility) { |
||
| 864 | color = pointer_bits[bytepos] & (1 << (j % 8)) ? 0 : 0xffffff; |
||
| 865 | if (pointer_x+j < screen.xres && pointer_y+i < screen.yres) |
||
| 866 | putpixel(&viewports[0], pointer_x+j, pointer_y+i, color); |
||
| 867 | } |
||
| 868 | } |
||
| 869 | pointer_shown = 1; |
||
| 870 | } |
||
| 871 | |||
| 872 | static void mouse_hide(void) |
||
| 873 | { |
||
| 874 | /* Restore image under the cursor */ |
||
| 875 | if (pointer_shown) { |
||
| 876 | draw_pixmap(pointer_vport, pointer_pixmap); |
||
| 877 | pointer_shown = 0; |
||
| 878 | } |
||
| 879 | } |
||
| 880 | |||
| 881 | static void mouse_move(unsigned int x, unsigned int y) |
||
| 882 | { |
||
| 883 | mouse_hide(); |
||
| 884 | pointer_x = x; |
||
| 885 | pointer_y = y; |
||
| 886 | mouse_show(); |
||
| 887 | } |
||
| 888 | |||
| 1646 | palkovsky | 889 | static int anim_handle(ipc_callid_t callid, ipc_call_t *call, int vp) |
| 890 | { |
||
| 891 | int handled = 1; |
||
| 892 | int retval = 0; |
||
| 893 | int i,nvp; |
||
| 894 | int newval; |
||
| 895 | |||
| 896 | switch (IPC_GET_METHOD(*call)) { |
||
| 897 | case FB_ANIM_CREATE: |
||
| 898 | nvp = IPC_GET_ARG1(*call); |
||
| 899 | if (nvp == -1) |
||
| 900 | nvp = vp; |
||
| 901 | if (nvp >= MAX_VIEWPORTS || nvp < 0 || !viewports[nvp].initialized) { |
||
| 902 | retval = EINVAL; |
||
| 903 | break; |
||
| 904 | } |
||
| 905 | for (i=0; i < MAX_ANIMATIONS; i++) { |
||
| 906 | if (! animations[i].initialized) |
||
| 907 | break; |
||
| 908 | } |
||
| 909 | if (i == MAX_ANIMATIONS) { |
||
| 910 | retval = ELIMIT; |
||
| 911 | break; |
||
| 912 | } |
||
| 913 | animations[i].initialized = 1; |
||
| 914 | animations[i].animlen = 0; |
||
| 915 | animations[i].pos = 0; |
||
| 916 | animations[i].enabled = 0; |
||
| 917 | animations[i].vp = nvp; |
||
| 918 | retval = i; |
||
| 919 | break; |
||
| 920 | case FB_ANIM_DROP: |
||
| 921 | i = IPC_GET_ARG1(*call); |
||
| 1720 | palkovsky | 922 | if (i >= MAX_ANIMATIONS || i < 0) { |
| 1646 | palkovsky | 923 | retval = EINVAL; |
| 924 | break; |
||
| 925 | } |
||
| 926 | animations[i].initialized = 0; |
||
| 927 | break; |
||
| 928 | case FB_ANIM_ADDPIXMAP: |
||
| 929 | i = IPC_GET_ARG1(*call); |
||
| 930 | if (i >= MAX_ANIMATIONS || i < 0 || !animations[i].initialized) { |
||
| 931 | retval = EINVAL; |
||
| 932 | break; |
||
| 933 | } |
||
| 934 | if (animations[i].animlen == MAX_ANIM_LEN) { |
||
| 935 | retval = ELIMIT; |
||
| 936 | break; |
||
| 937 | } |
||
| 938 | newval = IPC_GET_ARG2(*call); |
||
| 939 | if (newval < 0 || newval > MAX_PIXMAPS || !pixmaps[newval].data) { |
||
| 940 | retval = EINVAL; |
||
| 941 | break; |
||
| 942 | } |
||
| 943 | animations[i].pixmaps[animations[i].animlen++] = newval; |
||
| 944 | break; |
||
| 945 | case FB_ANIM_CHGVP: |
||
| 946 | i = IPC_GET_ARG1(*call); |
||
| 947 | if (i >= MAX_ANIMATIONS || i < 0) { |
||
| 948 | retval = EINVAL; |
||
| 949 | break; |
||
| 950 | } |
||
| 951 | nvp = IPC_GET_ARG2(*call); |
||
| 952 | if (nvp == -1) |
||
| 953 | nvp = vp; |
||
| 954 | if (nvp >= MAX_VIEWPORTS || nvp < 0 || !viewports[nvp].initialized) { |
||
| 955 | retval = EINVAL; |
||
| 956 | break; |
||
| 957 | } |
||
| 958 | animations[i].vp = nvp; |
||
| 959 | break; |
||
| 960 | case FB_ANIM_START: |
||
| 961 | case FB_ANIM_STOP: |
||
| 962 | i = IPC_GET_ARG1(*call); |
||
| 963 | if (i >= MAX_ANIMATIONS || i < 0) { |
||
| 964 | retval = EINVAL; |
||
| 965 | break; |
||
| 966 | } |
||
| 967 | newval = (IPC_GET_METHOD(*call) == FB_ANIM_START); |
||
| 968 | if (newval ^ animations[i].enabled) { |
||
| 969 | animations[i].enabled = newval; |
||
| 970 | anims_enabled += newval ? 1 : -1; |
||
| 971 | } |
||
| 972 | break; |
||
| 973 | default: |
||
| 974 | handled = 0; |
||
| 975 | } |
||
| 976 | if (handled) |
||
| 977 | ipc_answer_fast(callid, retval, 0, 0); |
||
| 978 | return handled; |
||
| 979 | } |
||
| 980 | |||
| 1552 | palkovsky | 981 | /** Handler for messages concerning pixmap handling */ |
| 982 | static int pixmap_handle(ipc_callid_t callid, ipc_call_t *call, int vp) |
||
| 983 | { |
||
| 984 | int handled = 1; |
||
| 985 | int retval = 0; |
||
| 986 | int i,nvp; |
||
| 987 | |||
| 988 | switch (IPC_GET_METHOD(*call)) { |
||
| 989 | case FB_VP_DRAW_PIXMAP: |
||
| 990 | nvp = IPC_GET_ARG1(*call); |
||
| 991 | if (nvp == -1) |
||
| 992 | nvp = vp; |
||
| 993 | if (nvp < 0 || nvp >= MAX_VIEWPORTS || !viewports[nvp].initialized) { |
||
| 994 | retval = EINVAL; |
||
| 995 | break; |
||
| 996 | } |
||
| 997 | i = IPC_GET_ARG2(*call); |
||
| 998 | retval = draw_pixmap(nvp, i); |
||
| 999 | break; |
||
| 1000 | case FB_VP2PIXMAP: |
||
| 1001 | nvp = IPC_GET_ARG1(*call); |
||
| 1002 | if (nvp == -1) |
||
| 1003 | nvp = vp; |
||
| 1004 | if (nvp < 0 || nvp >= MAX_VIEWPORTS || !viewports[nvp].initialized) |
||
| 1005 | retval = EINVAL; |
||
| 1006 | else |
||
| 1711 | palkovsky | 1007 | retval = save_vp_to_pixmap(&viewports[nvp]); |
| 1552 | palkovsky | 1008 | break; |
| 1009 | case FB_DROP_PIXMAP: |
||
| 1010 | i = IPC_GET_ARG1(*call); |
||
| 1011 | if (i >= MAX_PIXMAPS) { |
||
| 1012 | retval = EINVAL; |
||
| 1013 | break; |
||
| 1014 | } |
||
| 1015 | if (pixmaps[i].data) { |
||
| 1016 | free(pixmaps[i].data); |
||
| 1017 | pixmaps[i].data = NULL; |
||
| 1018 | } |
||
| 1019 | break; |
||
| 1020 | default: |
||
| 1021 | handled = 0; |
||
| 1022 | } |
||
| 1023 | |||
| 1024 | if (handled) |
||
| 1025 | ipc_answer_fast(callid, retval, 0, 0); |
||
| 1026 | return handled; |
||
| 1027 | |||
| 1028 | } |
||
| 1029 | |||
| 1498 | palkovsky | 1030 | /** Function for handling connections to FB |
| 1031 | * |
||
| 1032 | */ |
||
| 1490 | palkovsky | 1033 | static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall) |
| 1363 | vana | 1034 | { |
| 1485 | palkovsky | 1035 | ipc_callid_t callid; |
| 1036 | ipc_call_t call; |
||
| 1037 | int retval; |
||
| 1038 | int i; |
||
| 1039 | unsigned int row,col; |
||
| 1040 | char c; |
||
| 1486 | palkovsky | 1041 | |
| 1485 | palkovsky | 1042 | int vp = 0; |
| 1486 | palkovsky | 1043 | viewport_t *vport = &viewports[0]; |
| 1363 | vana | 1044 | |
| 1485 | palkovsky | 1045 | if (client_connected) { |
| 1046 | ipc_answer_fast(iid, ELIMIT, 0,0); |
||
| 1047 | return; |
||
| 1048 | } |
||
| 1486 | palkovsky | 1049 | client_connected = 1; |
| 1485 | palkovsky | 1050 | ipc_answer_fast(iid, 0, 0, 0); /* Accept connection */ |
| 1363 | vana | 1051 | |
| 1485 | palkovsky | 1052 | while (1) { |
| 1646 | palkovsky | 1053 | if (vport->cursor_active || anims_enabled) |
| 1640 | palkovsky | 1054 | callid = async_get_call_timeout(&call,250000); |
| 1055 | else |
||
| 1056 | callid = async_get_call(&call); |
||
| 1057 | |||
| 1713 | palkovsky | 1058 | mouse_hide(); |
| 1500 | palkovsky | 1059 | if (!callid) { |
| 1673 | palkovsky | 1060 | cursor_blink(vport); |
| 1646 | palkovsky | 1061 | anims_tick(); |
| 1723 | palkovsky | 1062 | mouse_show(); |
| 1500 | palkovsky | 1063 | continue; |
| 1064 | } |
||
| 1547 | palkovsky | 1065 | if (shm_handle(callid, &call, vp)) |
| 1066 | continue; |
||
| 1552 | palkovsky | 1067 | if (pixmap_handle(callid, &call, vp)) |
| 1068 | continue; |
||
| 1646 | palkovsky | 1069 | if (anim_handle(callid, &call, vp)) |
| 1070 | continue; |
||
| 1547 | palkovsky | 1071 | |
| 1485 | palkovsky | 1072 | switch (IPC_GET_METHOD(call)) { |
| 1073 | case IPC_M_PHONE_HUNGUP: |
||
| 1074 | client_connected = 0; |
||
| 1075 | /* cleanup other viewports */ |
||
| 1076 | for (i=1; i < MAX_VIEWPORTS; i++) |
||
| 1486 | palkovsky | 1077 | vport->initialized = 0; |
| 1485 | palkovsky | 1078 | return; /* Exit thread */ |
| 1505 | palkovsky | 1079 | |
| 1485 | palkovsky | 1080 | case FB_PUTCHAR: |
| 1558 | palkovsky | 1081 | case FB_TRANS_PUTCHAR: |
| 1485 | palkovsky | 1082 | c = IPC_GET_ARG1(call); |
| 1083 | row = IPC_GET_ARG2(call); |
||
| 1084 | col = IPC_GET_ARG3(call); |
||
| 1486 | palkovsky | 1085 | if (row >= vport->rows || col >= vport->cols) { |
| 1485 | palkovsky | 1086 | retval = EINVAL; |
| 1087 | break; |
||
| 1088 | } |
||
| 1089 | ipc_answer_fast(callid,0,0,0); |
||
| 1486 | palkovsky | 1090 | |
| 1673 | palkovsky | 1091 | draw_char(vport, c, row, col, vport->style, IPC_GET_METHOD(call) == FB_TRANS_PUTCHAR); |
| 1485 | palkovsky | 1092 | continue; /* msg already answered */ |
| 1093 | case FB_CLEAR: |
||
| 1673 | palkovsky | 1094 | clear_port(vport); |
| 1095 | cursor_print(vport); |
||
| 1485 | palkovsky | 1096 | retval = 0; |
| 1097 | break; |
||
| 1486 | palkovsky | 1098 | case FB_CURSOR_GOTO: |
| 1099 | row = IPC_GET_ARG1(call); |
||
| 1100 | col = IPC_GET_ARG2(call); |
||
| 1101 | if (row >= vport->rows || col >= vport->cols) { |
||
| 1102 | retval = EINVAL; |
||
| 1103 | break; |
||
| 1104 | } |
||
| 1105 | retval = 0; |
||
| 1673 | palkovsky | 1106 | cursor_hide(vport); |
| 1486 | palkovsky | 1107 | vport->cur_col = col; |
| 1108 | vport->cur_row = row; |
||
| 1673 | palkovsky | 1109 | cursor_print(vport); |
| 1486 | palkovsky | 1110 | break; |
| 1111 | case FB_CURSOR_VISIBILITY: |
||
| 1673 | palkovsky | 1112 | cursor_hide(vport); |
| 1500 | palkovsky | 1113 | vport->cursor_active = IPC_GET_ARG1(call); |
| 1673 | palkovsky | 1114 | cursor_print(vport); |
| 1486 | palkovsky | 1115 | retval = 0; |
| 1116 | break; |
||
| 1485 | palkovsky | 1117 | case FB_GET_CSIZE: |
| 1486 | palkovsky | 1118 | ipc_answer_fast(callid, 0, vport->rows, vport->cols); |
| 1485 | palkovsky | 1119 | continue; |
| 1486 | palkovsky | 1120 | case FB_SCROLL: |
| 1121 | i = IPC_GET_ARG1(call); |
||
| 1122 | if (i > vport->rows || i < (- (int)vport->rows)) { |
||
| 1123 | retval = EINVAL; |
||
| 1124 | break; |
||
| 1125 | } |
||
| 1673 | palkovsky | 1126 | cursor_hide(vport); |
| 1127 | scroll_port(vport, i*FONT_SCANLINES); |
||
| 1128 | cursor_print(vport); |
||
| 1486 | palkovsky | 1129 | retval = 0; |
| 1130 | break; |
||
| 1672 | palkovsky | 1131 | case FB_VIEWPORT_DB: |
| 1132 | /* Enable double buffering */ |
||
| 1133 | i = IPC_GET_ARG1(call); |
||
| 1134 | if (i == -1) |
||
| 1135 | i = vp; |
||
| 1136 | if (i < 0 || i >= MAX_VIEWPORTS) { |
||
| 1137 | retval = EINVAL; |
||
| 1138 | break; |
||
| 1139 | } |
||
| 1140 | if (! viewports[i].initialized ) { |
||
| 1141 | retval = EADDRNOTAVAIL; |
||
| 1142 | break; |
||
| 1143 | } |
||
| 1144 | viewports[i].dboffset = 0; |
||
| 1145 | if (IPC_GET_ARG2(call) == 1 && !viewports[i].dbdata) |
||
| 1146 | viewports[i].dbdata = malloc(screen.pixelbytes*viewports[i].width * viewports[i].height); |
||
| 1147 | else if (IPC_GET_ARG2(call) == 0 && viewports[i].dbdata) { |
||
| 1148 | free(viewports[i].dbdata); |
||
| 1149 | viewports[i].dbdata = NULL; |
||
| 1150 | } |
||
| 1151 | retval = 0; |
||
| 1152 | break; |
||
| 1486 | palkovsky | 1153 | case FB_VIEWPORT_SWITCH: |
| 1154 | i = IPC_GET_ARG1(call); |
||
| 1155 | if (i < 0 || i >= MAX_VIEWPORTS) { |
||
| 1156 | retval = EINVAL; |
||
| 1157 | break; |
||
| 1158 | } |
||
| 1159 | if (! viewports[i].initialized ) { |
||
| 1160 | retval = EADDRNOTAVAIL; |
||
| 1161 | break; |
||
| 1162 | } |
||
| 1673 | palkovsky | 1163 | cursor_hide(vport); |
| 1486 | palkovsky | 1164 | vp = i; |
| 1165 | vport = &viewports[vp]; |
||
| 1673 | palkovsky | 1166 | cursor_print(vport); |
| 1486 | palkovsky | 1167 | retval = 0; |
| 1168 | break; |
||
| 1169 | case FB_VIEWPORT_CREATE: |
||
| 1170 | retval = viewport_create(IPC_GET_ARG1(call) >> 16, |
||
| 1171 | IPC_GET_ARG1(call) & 0xffff, |
||
| 1172 | IPC_GET_ARG2(call) >> 16, |
||
| 1173 | IPC_GET_ARG2(call) & 0xffff); |
||
| 1174 | break; |
||
| 1175 | case FB_VIEWPORT_DELETE: |
||
| 1176 | i = IPC_GET_ARG1(call); |
||
| 1177 | if (i < 0 || i >= MAX_VIEWPORTS) { |
||
| 1178 | retval = EINVAL; |
||
| 1179 | break; |
||
| 1180 | } |
||
| 1181 | if (! viewports[i].initialized ) { |
||
| 1182 | retval = EADDRNOTAVAIL; |
||
| 1183 | break; |
||
| 1184 | } |
||
| 1185 | viewports[i].initialized = 0; |
||
| 1672 | palkovsky | 1186 | if (viewports[i].dbdata) { |
| 1187 | free(viewports[i].dbdata); |
||
| 1188 | viewports[i].dbdata = NULL; |
||
| 1189 | } |
||
| 1486 | palkovsky | 1190 | retval = 0; |
| 1191 | break; |
||
| 1192 | case FB_SET_STYLE: |
||
| 1509 | palkovsky | 1193 | vport->style.fg_color = IPC_GET_ARG1(call); |
| 1194 | vport->style.bg_color = IPC_GET_ARG2(call); |
||
| 1486 | palkovsky | 1195 | retval = 0; |
| 1196 | break; |
||
| 1197 | case FB_GET_RESOLUTION: |
||
| 1198 | ipc_answer_fast(callid, 0, screen.xres,screen.yres); |
||
| 1199 | continue; |
||
| 1707 | palkovsky | 1200 | case FB_POINTER_MOVE: |
| 1723 | palkovsky | 1201 | pointer_enabled = 1; |
| 1711 | palkovsky | 1202 | mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call)); |
| 1720 | palkovsky | 1203 | retval = 0; |
| 1707 | palkovsky | 1204 | break; |
| 1485 | palkovsky | 1205 | default: |
| 1206 | retval = ENOENT; |
||
| 1207 | } |
||
| 1208 | ipc_answer_fast(callid,retval,0,0); |
||
| 1363 | vana | 1209 | } |
| 1485 | palkovsky | 1210 | } |
| 1363 | vana | 1211 | |
| 1498 | palkovsky | 1212 | /** Initialization of framebuffer */ |
| 1490 | palkovsky | 1213 | int fb_init(void) |
| 1485 | palkovsky | 1214 | { |
| 1501 | palkovsky | 1215 | void *fb_ph_addr; |
| 1490 | palkovsky | 1216 | unsigned int fb_width; |
| 1217 | unsigned int fb_height; |
||
| 1218 | unsigned int fb_bpp; |
||
| 1219 | unsigned int fb_scanline; |
||
| 1501 | palkovsky | 1220 | void *fb_addr; |
| 1221 | size_t asz; |
||
| 1363 | vana | 1222 | |
| 1490 | palkovsky | 1223 | async_set_client_connection(fb_client_connection); |
| 1363 | vana | 1224 | |
| 1501 | palkovsky | 1225 | fb_ph_addr=(void *)sysinfo_value("fb.address.physical"); |
| 1490 | palkovsky | 1226 | fb_width=sysinfo_value("fb.width"); |
| 1227 | fb_height=sysinfo_value("fb.height"); |
||
| 1228 | fb_bpp=sysinfo_value("fb.bpp"); |
||
| 1229 | fb_scanline=sysinfo_value("fb.scanline"); |
||
| 1230 | |||
| 1501 | palkovsky | 1231 | asz = fb_scanline*fb_height; |
| 1232 | fb_addr = as_get_mappable_page(asz); |
||
| 1485 | palkovsky | 1233 | |
| 1501 | palkovsky | 1234 | map_physmem(fb_ph_addr, fb_addr, ALIGN_UP(asz,PAGE_SIZE) >>PAGE_WIDTH, |
| 1490 | palkovsky | 1235 | AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE); |
| 1236 | |||
| 1237 | screen_init(fb_addr, fb_width, fb_height, fb_bpp, fb_scanline); |
||
| 1363 | vana | 1238 | |
| 1485 | palkovsky | 1239 | return 0; |
| 1363 | vana | 1240 | } |
| 1490 | palkovsky | 1241 | |
| 1649 | cejka | 1242 | |
| 1243 | /** |
||
| 1244 | * @} |
||
| 1245 | */ |