Subversion Repositories HelenOS

Rev

Rev 4347 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4347 Rev 4348
1
/*
1
/*
2
 * Copyright (c) 2008 Martin Decky
2
 * Copyright (c) 2008 Martin Decky
3
 * Copyright (c) 2006 Jakub Vana
3
 * Copyright (c) 2006 Jakub Vana
4
 * Copyright (c) 2006 Ondrej Palkovsky
4
 * Copyright (c) 2006 Ondrej Palkovsky
5
 * All rights reserved.
5
 * All rights reserved.
6
 *
6
 *
7
 * Redistribution and use in source and binary forms, with or without
7
 * Redistribution and use in source and binary forms, with or without
8
 * modification, are permitted provided that the following conditions
8
 * modification, are permitted provided that the following conditions
9
 * are met:
9
 * are met:
10
 *
10
 *
11
 * - Redistributions of source code must retain the above copyright
11
 * - Redistributions of source code must retain the above copyright
12
 *   notice, this list of conditions and the following disclaimer.
12
 *   notice, this list of conditions and the following disclaimer.
13
 * - Redistributions in binary form must reproduce the above copyright
13
 * - Redistributions in binary form must reproduce the above copyright
14
 *   notice, this list of conditions and the following disclaimer in the
14
 *   notice, this list of conditions and the following disclaimer in the
15
 *   documentation and/or other materials provided with the distribution.
15
 *   documentation and/or other materials provided with the distribution.
16
 * - The name of the author may not be used to endorse or promote products
16
 * - The name of the author may not be used to endorse or promote products
17
 *   derived from this software without specific prior written permission.
17
 *   derived from this software without specific prior written permission.
18
 *
18
 *
19
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
 */
29
 */
30
 
30
 
31
/**
31
/**
32
 * @defgroup fb Graphical framebuffer
32
 * @defgroup fb Graphical framebuffer
33
 * @brief   HelenOS graphical framebuffer.
33
 * @brief HelenOS graphical framebuffer.
34
 * @ingroup fbs
34
 * @ingroup fbs
35
 * @{
35
 * @{
36
 */
36
 */
37
 
37
 
38
/** @file
38
/** @file
39
 */
39
 */
40
 
40
 
41
#include <stdlib.h>
41
#include <stdlib.h>
42
#include <unistd.h>
42
#include <unistd.h>
43
#include <string.h>
43
#include <string.h>
44
#include <ddi.h>
44
#include <ddi.h>
45
#include <sysinfo.h>
45
#include <sysinfo.h>
46
#include <align.h>
46
#include <align.h>
47
#include <as.h>
47
#include <as.h>
48
#include <ipc/fb.h>
48
#include <ipc/fb.h>
49
#include <ipc/ipc.h>
49
#include <ipc/ipc.h>
50
#include <ipc/ns.h>
50
#include <ipc/ns.h>
51
#include <ipc/services.h>
51
#include <ipc/services.h>
52
#include <kernel/errno.h>
52
#include <kernel/errno.h>
53
#include <kernel/genarch/fb/visuals.h>
53
#include <kernel/genarch/fb/visuals.h>
54
#include <console/color.h>
54
#include <console/color.h>
55
#include <console/style.h>
55
#include <console/style.h>
56
#include <async.h>
56
#include <async.h>
57
#include <bool.h>
57
#include <bool.h>
58
 
58
 
59
#include "font-8x16.h"
59
#include "font-8x16.h"
60
#include "fb.h"
60
#include "fb.h"
61
#include "main.h"
61
#include "main.h"
62
#include "../console/screenbuffer.h"
62
#include "../console/screenbuffer.h"
63
#include "ppm.h"
63
#include "ppm.h"
64
 
64
 
65
#include "pointer.xbm"
65
#include "pointer.xbm"
66
#include "pointer_mask.xbm"
66
#include "pointer_mask.xbm"
67
 
67
 
68
#define DEFAULT_BGCOLOR  0xf0f0f0
68
#define DEFAULT_BGCOLOR  0xf0f0f0
69
#define DEFAULT_FGCOLOR  0x000000
69
#define DEFAULT_FGCOLOR  0x000000
70
 
70
 
-
 
71
#define GLYPH_UNAVAIL    '?'
-
 
72
 
71
#define MAX_ANIM_LEN     8
73
#define MAX_ANIM_LEN     8
72
#define MAX_ANIMATIONS   4
74
#define MAX_ANIMATIONS   4
73
#define MAX_PIXMAPS      256  /**< Maximum number of saved pixmaps */
75
#define MAX_PIXMAPS      256  /**< Maximum number of saved pixmaps */
74
#define MAX_VIEWPORTS    128  /**< Viewport is a rectangular area on the screen */
76
#define MAX_VIEWPORTS    128  /**< Viewport is a rectangular area on the screen */
75
 
77
 
76
/** Function to render a pixel from a RGB value. */
78
/** Function to render a pixel from a RGB value. */
77
typedef void (*rgb_conv_t)(void *, uint32_t);
79
typedef void (*rgb_conv_t)(void *, uint32_t);
78
 
80
 
-
 
81
/** Function to render a bit mask. */
-
 
82
typedef void (*mask_conv_t)(void *, bool);
-
 
83
 
79
/** Function to draw a glyph. */
84
/** Function to draw a glyph. */
80
typedef void (*dg_t)(unsigned int x, unsigned int y, bool cursor,
85
typedef void (*dg_t)(unsigned int x, unsigned int y, bool cursor,
81
    uint8_t *glyphs, uint8_t glyph, uint32_t fg_color, uint32_t bg_color);
86
    uint8_t *glyphs, uint32_t glyph, uint32_t fg_color, uint32_t bg_color);
82
 
87
 
83
struct {
88
struct {
84
    uint8_t *fb_addr;
89
    uint8_t *fb_addr;
85
   
90
   
86
    unsigned int xres;
91
    unsigned int xres;
87
    unsigned int yres;
92
    unsigned int yres;
88
   
93
   
89
    unsigned int scanline;
94
    unsigned int scanline;
90
    unsigned int glyphscanline;
95
    unsigned int glyphscanline;
91
   
96
   
92
    unsigned int pixelbytes;
97
    unsigned int pixelbytes;
93
    unsigned int glyphbytes;
98
    unsigned int glyphbytes;
94
   
99
   
-
 
100
    /** Pre-rendered mask for rendering glyphs. Specific for the visual. */
-
 
101
    uint8_t *glyphs;
-
 
102
   
95
    rgb_conv_t rgb_conv;
103
    rgb_conv_t rgb_conv;
-
 
104
    mask_conv_t mask_conv;
96
} screen;
105
} screen;
97
 
106
 
98
/** Backbuffer character cell. */
107
/** Backbuffer character cell. */
99
typedef struct {
108
typedef struct {
100
    uint8_t glyph;
109
    uint32_t glyph;
101
    uint32_t fg_color;
110
    uint32_t fg_color;
102
    uint32_t bg_color;
111
    uint32_t bg_color;
103
} bb_cell_t;
112
} bb_cell_t;
104
 
113
 
105
typedef struct {
114
typedef struct {
106
    bool initialized;
115
    bool initialized;
107
    unsigned int x;
116
    unsigned int x;
108
    unsigned int y;
117
    unsigned int y;
109
    unsigned int width;
118
    unsigned int width;
110
    unsigned int height;
119
    unsigned int height;
111
   
120
   
112
    /* Text support in window */
121
    /* Text support in window */
113
    unsigned int cols;
122
    unsigned int cols;
114
    unsigned int rows;
123
    unsigned int rows;
115
   
124
   
116
    /*
125
    /*
117
     * Style and glyphs for text printing
126
     * Style and glyphs for text printing
118
     */
127
     */
119
 
128
   
120
    /** Current attributes. */
129
    /** Current attributes. */
121
    attr_rgb_t attr;
130
    attr_rgb_t attr;
122
 
131
   
123
    /** Pre-rendered mask for rendering glyphs. Different viewports
-
 
124
     * might use different drawing functions depending on whether their
-
 
125
     * scanlines are aligned on a word boundary.*/
-
 
126
    uint8_t *glyphs;
-
 
127
 
-
 
128
    uint8_t *bgpixel;
132
    uint8_t *bgpixel;
129
 
133
   
-
 
134
    /**
130
    /** Glyph drawing function for this viewport. */
135
     * Glyph drawing function for this viewport.  Different viewports
-
 
136
     * might use different drawing functions depending on whether their
-
 
137
     * scanlines are aligned on a word boundary.
-
 
138
     */
131
    dg_t dglyph;
139
    dg_t dglyph;
132
   
140
   
133
    /* Auto-cursor position */
141
    /* Auto-cursor position */
134
    bool cursor_active;
142
    bool cursor_active;
135
    unsigned int cur_col;
143
    unsigned int cur_col;
136
    unsigned int cur_row;
144
    unsigned int cur_row;
137
    bool cursor_shown;
145
    bool cursor_shown;
138
   
146
   
139
    /* Back buffer */
147
    /* Back buffer */
140
    bb_cell_t *backbuf;
148
    bb_cell_t *backbuf;
141
    unsigned int bbsize;
149
    unsigned int bbsize;
142
} viewport_t;
150
} viewport_t;
143
 
151
 
144
typedef struct {
152
typedef struct {
145
    bool initialized;
153
    bool initialized;
146
    bool enabled;
154
    bool enabled;
147
    unsigned int vp;
155
    unsigned int vp;
148
   
156
   
149
    unsigned int pos;
157
    unsigned int pos;
150
    unsigned int animlen;
158
    unsigned int animlen;
151
    unsigned int pixmaps[MAX_ANIM_LEN];
159
    unsigned int pixmaps[MAX_ANIM_LEN];
152
} animation_t;
160
} animation_t;
153
 
161
 
154
static animation_t animations[MAX_ANIMATIONS];
162
static animation_t animations[MAX_ANIMATIONS];
155
static bool anims_enabled;
163
static bool anims_enabled;
156
 
164
 
157
typedef struct {
165
typedef struct {
158
    unsigned int width;
166
    unsigned int width;
159
    unsigned int height;
167
    unsigned int height;
160
    uint8_t *data;
168
    uint8_t *data;
161
} pixmap_t;
169
} pixmap_t;
162
 
170
 
163
static pixmap_t pixmaps[MAX_PIXMAPS];
171
static pixmap_t pixmaps[MAX_PIXMAPS];
164
static viewport_t viewports[128];
172
static viewport_t viewports[128];
165
 
173
 
166
static bool client_connected = false;  /**< Allow only 1 connection */
174
static bool client_connected = false;  /**< Allow only 1 connection */
167
 
175
 
168
static uint32_t color_table[16] = {
176
static uint32_t color_table[16] = {
169
    [COLOR_BLACK]       = 0x000000,
177
    [COLOR_BLACK]       = 0x000000,
170
    [COLOR_BLUE]        = 0x0000f0,
178
    [COLOR_BLUE]        = 0x0000f0,
171
    [COLOR_GREEN]       = 0x00f000,
179
    [COLOR_GREEN]       = 0x00f000,
172
    [COLOR_CYAN]        = 0x00f0f0,
180
    [COLOR_CYAN]        = 0x00f0f0,
173
    [COLOR_RED]     = 0xf00000,
181
    [COLOR_RED]         = 0xf00000,
174
    [COLOR_MAGENTA]     = 0xf000f0,
182
    [COLOR_MAGENTA]     = 0xf000f0,
175
    [COLOR_YELLOW]      = 0xf0f000,
183
    [COLOR_YELLOW]      = 0xf0f000,
176
    [COLOR_WHITE]       = 0xf0f0f0,
184
    [COLOR_WHITE]       = 0xf0f0f0,
177
 
185
   
178
    [8 + COLOR_BLACK]   = 0x000000,
186
    [8 + COLOR_BLACK]   = 0x000000,
179
    [8 + COLOR_BLUE]    = 0x0000ff,
187
    [8 + COLOR_BLUE]    = 0x0000ff,
180
    [8 + COLOR_GREEN]   = 0x00ff00,
188
    [8 + COLOR_GREEN]   = 0x00ff00,
181
    [8 + COLOR_CYAN]    = 0x00ffff,
189
    [8 + COLOR_CYAN]    = 0x00ffff,
182
    [8 + COLOR_RED]     = 0xff0000,
190
    [8 + COLOR_RED]     = 0xff0000,
183
    [8 + COLOR_MAGENTA] = 0xff00ff,
191
    [8 + COLOR_MAGENTA] = 0xff00ff,
184
    [8 + COLOR_YELLOW]  = 0xffff00,
192
    [8 + COLOR_YELLOW]  = 0xffff00,
185
    [8 + COLOR_WHITE]   = 0xffffff,
193
    [8 + COLOR_WHITE]   = 0xffffff,
186
};
194
};
187
 
195
 
188
static int rgb_from_attr(attr_rgb_t *rgb, const attrs_t *a);
196
static int rgb_from_attr(attr_rgb_t *rgb, const attrs_t *a);
189
static int rgb_from_style(attr_rgb_t *rgb, int style);
197
static int rgb_from_style(attr_rgb_t *rgb, int style);
190
static int rgb_from_idx(attr_rgb_t *rgb, ipcarg_t fg_color,
198
static int rgb_from_idx(attr_rgb_t *rgb, ipcarg_t fg_color,
191
    ipcarg_t bg_color, ipcarg_t flags);
199
    ipcarg_t bg_color, ipcarg_t flags);
192
 
200
 
193
static int fb_set_color(viewport_t *vport, ipcarg_t fg_color,
201
static int fb_set_color(viewport_t *vport, ipcarg_t fg_color,
194
    ipcarg_t bg_color, ipcarg_t attr);
202
    ipcarg_t bg_color, ipcarg_t attr);
195
 
203
 
196
static void draw_glyph_aligned(unsigned int x, unsigned int y, bool cursor,
204
static void draw_glyph_aligned(unsigned int x, unsigned int y, bool cursor,
197
    uint8_t *glyphs, uint8_t glyph, uint32_t fg_color, uint32_t bg_color);
205
    uint8_t *glyphs, uint32_t glyph, uint32_t fg_color, uint32_t bg_color);
198
static void draw_glyph_fallback(unsigned int x, unsigned int y, bool cursor,
206
static void draw_glyph_fallback(unsigned int x, unsigned int y, bool cursor,
199
    uint8_t *glyphs, uint8_t glyph, uint32_t fg_color, uint32_t bg_color);
207
    uint8_t *glyphs, uint32_t glyph, uint32_t fg_color, uint32_t bg_color);
200
 
208
 
201
static void draw_vp_glyph(viewport_t *vport, bool cursor, unsigned int col,
209
static void draw_vp_glyph(viewport_t *vport, bool cursor, unsigned int col,
202
    unsigned int row);
210
    unsigned int row);
203
 
211
 
204
 
212
 
205
#define RED(x, bits)                 ((x >> (8 + 8 + 8 - bits)) & ((1 << bits) - 1))
213
#define RED(x, bits)                 ((x >> (8 + 8 + 8 - bits)) & ((1 << bits) - 1))
206
#define GREEN(x, bits)               ((x >> (8 + 8 - bits)) & ((1 << bits) - 1))
214
#define GREEN(x, bits)               ((x >> (8 + 8 - bits)) & ((1 << bits) - 1))
207
#define BLUE(x, bits)                ((x >> (8 - bits)) & ((1 << bits) - 1))
215
#define BLUE(x, bits)                ((x >> (8 - bits)) & ((1 << bits) - 1))
208
 
216
 
209
#define COL2X(col)                   ((col) * FONT_WIDTH)
217
#define COL2X(col)                   ((col) * FONT_WIDTH)
210
#define ROW2Y(row)                   ((row) * FONT_SCANLINES)
218
#define ROW2Y(row)                   ((row) * FONT_SCANLINES)
211
 
219
 
212
#define X2COL(x)                     ((x) / FONT_WIDTH)
220
#define X2COL(x)                     ((x) / FONT_WIDTH)
213
#define Y2ROW(y)                     ((y) / FONT_SCANLINES)
221
#define Y2ROW(y)                     ((y) / FONT_SCANLINES)
214
 
222
 
215
#define FB_POS(x, y)                 ((y) * screen.scanline + (x) * screen.pixelbytes)
223
#define FB_POS(x, y)                 ((y) * screen.scanline + (x) * screen.pixelbytes)
216
#define BB_POS(vport, col, row)      ((row) * vport->cols + (col))
224
#define BB_POS(vport, col, row)      ((row) * vport->cols + (col))
217
#define GLYPH_POS(glyph, y, cursor)  (((glyph) + (cursor) * FONT_GLYPHS) * screen.glyphbytes + (y) * screen.glyphscanline)
225
#define GLYPH_POS(glyph, y, cursor)  (((glyph) + (cursor) * FONT_GLYPHS) * screen.glyphbytes + (y) * screen.glyphscanline)
218
 
226
 
219
 
227
 
220
/** ARGB 8:8:8:8 conversion
228
/** ARGB 8:8:8:8 conversion
221
 *
229
 *
222
 */
230
 */
223
static void rgb_0888(void *dst, uint32_t rgb)
231
static void rgb_0888(void *dst, uint32_t rgb)
224
{
232
{
225
    *((uint32_t *) dst) = rgb & 0xffffff;
233
    *((uint32_t *) dst) = rgb & 0x00ffffff;
-
 
234
}
-
 
235
 
-
 
236
static void mask_0888(void *dst, bool mask)
-
 
237
{
-
 
238
    *((uint32_t *) dst) = (mask ? 0x00ffffff : 0);
226
}
239
}
227
 
240
 
228
 
241
 
229
/** ABGR 8:8:8:8 conversion
242
/** ABGR 8:8:8:8 conversion
230
 *
243
 *
231
 */
244
 */
232
static void bgr_0888(void *dst, uint32_t rgb)
245
static void bgr_0888(void *dst, uint32_t rgb)
233
{
246
{
234
    *((uint32_t *) dst)
247
    *((uint32_t *) dst)
235
        = (BLUE(rgb, 8) << 16) | (GREEN(rgb, 8) << 8) | RED(rgb, 8);
248
        = (BLUE(rgb, 8) << 16) | (GREEN(rgb, 8) << 8) | RED(rgb, 8);
236
}
249
}
237
 
250
 
238
 
251
 
239
/** RGB 8:8:8 conversion
252
/** RGB 8:8:8 conversion
240
 *
253
 *
241
 */
254
 */
242
static void rgb_888(void *dst, uint32_t rgb)
255
static void rgb_888(void *dst, uint32_t rgb)
243
{
256
{
244
    ((uint8_t *) dst)[0] = BLUE(rgb, 8);
257
    ((uint8_t *) dst)[0] = BLUE(rgb, 8);
245
    ((uint8_t *) dst)[1] = GREEN(rgb, 8);
258
    ((uint8_t *) dst)[1] = GREEN(rgb, 8);
246
    ((uint8_t *) dst)[2] = RED(rgb, 8);
259
    ((uint8_t *) dst)[2] = RED(rgb, 8);
247
}
260
}
248
 
261
 
-
 
262
static void mask_888(void *dst, bool mask)
-
 
263
{
-
 
264
    if (mask) {
-
 
265
        ((uint8_t *) dst)[0] = 0xff;
-
 
266
        ((uint8_t *) dst)[1] = 0xff;
-
 
267
        ((uint8_t *) dst)[2] = 0xff;
-
 
268
    } else {
-
 
269
        ((uint8_t *) dst)[0] = 0;
-
 
270
        ((uint8_t *) dst)[1] = 0;
-
 
271
        ((uint8_t *) dst)[2] = 0;
-
 
272
    }
-
 
273
}
-
 
274
 
249
 
275
 
250
/** BGR 8:8:8 conversion
276
/** BGR 8:8:8 conversion
251
 *
277
 *
252
 */
278
 */
253
static void bgr_888(void *dst, uint32_t rgb)
279
static void bgr_888(void *dst, uint32_t rgb)
254
{
280
{
255
    ((uint8_t *) dst)[0] = RED(rgb, 8);
281
    ((uint8_t *) dst)[0] = RED(rgb, 8);
256
    ((uint8_t *) dst)[1] = GREEN(rgb, 8);
282
    ((uint8_t *) dst)[1] = GREEN(rgb, 8);
257
    ((uint8_t *) dst)[2] = BLUE(rgb, 8);
283
    ((uint8_t *) dst)[2] = BLUE(rgb, 8);
258
}
284
}
259
 
285
 
260
 
286
 
261
/** RGB 5:5:5 conversion
287
/** RGB 5:5:5 conversion
262
 *
288
 *
263
 */
289
 */
264
static void rgb_555(void *dst, uint32_t rgb)
290
static void rgb_555(void *dst, uint32_t rgb)
265
{
291
{
266
    *((uint16_t *) dst)
292
    *((uint16_t *) dst)
267
        = (RED(rgb, 5) << 10) | (GREEN(rgb, 5) << 5) | BLUE(rgb, 5);
293
        = (RED(rgb, 5) << 10) | (GREEN(rgb, 5) << 5) | BLUE(rgb, 5);
268
}
294
}
269
 
295
 
-
 
296
static void mask_555(void *dst, bool mask)
-
 
297
{
-
 
298
    *((uint16_t *) dst) = (mask ? 0x7fff : 0);
-
 
299
}
-
 
300
 
270
 
301
 
271
/** RGB 5:6:5 conversion
302
/** RGB 5:6:5 conversion
272
 *
303
 *
273
 */
304
 */
274
static void rgb_565(void *dst, uint32_t rgb)
305
static void rgb_565(void *dst, uint32_t rgb)
275
{
306
{
276
    *((uint16_t *) dst)
307
    *((uint16_t *) dst)
277
        = (RED(rgb, 5) << 11) | (GREEN(rgb, 6) << 5) | BLUE(rgb, 5);
308
        = (RED(rgb, 5) << 11) | (GREEN(rgb, 6) << 5) | BLUE(rgb, 5);
278
}
309
}
279
 
310
 
-
 
311
static void mask_565(void *dst, bool mask)
-
 
312
{
-
 
313
    *((uint16_t *) dst) = (mask ? 0xffff : 0);
-
 
314
}
-
 
315
 
280
 
316
 
281
/** RGB 3:2:3
317
/** RGB 3:2:3
282
 *
318
 *
283
 */
319
 */
284
static void rgb_323(void *dst, uint32_t rgb)
320
static void rgb_323(void *dst, uint32_t rgb)
285
{
321
{
286
    *((uint8_t *) dst)
322
    *((uint8_t *) dst)
287
        = ~((RED(rgb, 3) << 5) | (GREEN(rgb, 2) << 3) | BLUE(rgb, 3));
323
        = ~((RED(rgb, 3) << 5) | (GREEN(rgb, 2) << 3) | BLUE(rgb, 3));
288
}
324
}
289
 
325
 
-
 
326
static void mask_323(void *dst, bool mask)
-
 
327
{
-
 
328
    *((uint8_t *) dst) = (mask ? 0xff : 0);
-
 
329
}
-
 
330
 
290
/** Draw a filled rectangle.
331
/** Draw a filled rectangle.
291
 *
332
 *
292
 * @note Need real implementation that does not access VRAM twice.
333
 * @note Need real implementation that does not access VRAM twice.
-
 
334
 *
293
 */
335
 */
294
static void draw_filled_rect(unsigned int x0, unsigned int y0, unsigned int x1,
336
static void draw_filled_rect(unsigned int x0, unsigned int y0, unsigned int x1,
295
    unsigned int y1, uint32_t color)
337
    unsigned int y1, uint32_t color)
296
{
338
{
-
 
339
    unsigned int x;
297
    unsigned int x, y;
340
    unsigned int y;
298
    unsigned int copy_bytes;
341
    unsigned int copy_bytes;
299
 
342
   
300
    uint8_t *sp, *dp;
343
    uint8_t *sp;
-
 
344
    uint8_t *dp;
301
    uint8_t cbuf[4];
345
    uint8_t cbuf[4];
302
 
346
   
303
    if (y0 >= y1 || x0 >= x1) return;
347
    if ((y0 >= y1) || (x0 >= x1))
-
 
348
        return;
-
 
349
   
304
    screen.rgb_conv(cbuf, color);
350
    screen.rgb_conv(cbuf, color);
305
 
351
   
306
    sp = &screen.fb_addr[FB_POS(x0, y0)];
352
    sp = &screen.fb_addr[FB_POS(x0, y0)];
307
    dp = sp;
353
    dp = sp;
308
 
354
   
309
    /* Draw the first line. */
355
    /* Draw the first line. */
310
    for (x = x0; x < x1; x++) {
356
    for (x = x0; x < x1; x++) {
311
        memcpy(dp, cbuf, screen.pixelbytes);
357
        memcpy(dp, cbuf, screen.pixelbytes);
312
        dp += screen.pixelbytes;
358
        dp += screen.pixelbytes;
313
    }
359
    }
314
 
360
   
315
    dp = sp + screen.scanline;
361
    dp = sp + screen.scanline;
316
    copy_bytes = (x1 - x0) * screen.pixelbytes;
362
    copy_bytes = (x1 - x0) * screen.pixelbytes;
317
 
363
   
318
    /* Draw the remaining lines by copying. */
364
    /* Draw the remaining lines by copying. */
319
    for (y = y0 + 1; y < y1; y++) {
365
    for (y = y0 + 1; y < y1; y++) {
320
        memcpy(dp, sp, copy_bytes);
366
        memcpy(dp, sp, copy_bytes);
321
        dp += screen.scanline;
367
        dp += screen.scanline;
322
    }
368
    }
323
}
369
}
324
 
370
 
325
/** Redraw viewport.
371
/** Redraw viewport.
326
 *
372
 *
327
 * @param vport Viewport to redraw
373
 * @param vport Viewport to redraw
328
 *
374
 *
329
 */
375
 */
330
static void vport_redraw(viewport_t *vport)
376
static void vport_redraw(viewport_t *vport)
331
{
377
{
-
 
378
    unsigned int row;
332
    unsigned int row, col;
379
    unsigned int col;
333
 
380
   
334
    for (row = 0; row < vport->rows; row++) {
381
    for (row = 0; row < vport->rows; row++) {
335
        for (col = 0; col < vport->cols; col++) {
382
        for (col = 0; col < vport->cols; col++) {
336
            draw_vp_glyph(vport, false, col, row);
383
            draw_vp_glyph(vport, false, col, row);
337
        }
384
        }
338
    }
385
    }
339
 
386
   
340
    if (COL2X(vport->cols) < vport->width) {
387
    if (COL2X(vport->cols) < vport->width) {
341
        draw_filled_rect(
388
        draw_filled_rect(
342
            vport->x + COL2X(vport->cols), vport->y,
389
            vport->x + COL2X(vport->cols), vport->y,
343
            vport->x + vport->width, vport->y + vport->height,
390
            vport->x + vport->width, vport->y + vport->height,
344
            vport->attr.bg_color);
391
            vport->attr.bg_color);
345
    }
392
    }
346
 
393
   
347
    if (ROW2Y(vport->rows) < vport->height) {
394
    if (ROW2Y(vport->rows) < vport->height) {
348
        draw_filled_rect(
395
        draw_filled_rect(
349
            vport->x, vport->y + ROW2Y(vport->rows),
396
            vport->x, vport->y + ROW2Y(vport->rows),
350
            vport->x + vport->width, vport->y + vport->height,
397
            vport->x + vport->width, vport->y + vport->height,
351
            vport->attr.bg_color);
398
            vport->attr.bg_color);
352
    }
399
    }
353
}
400
}
354
 
401
 
355
static void backbuf_clear(bb_cell_t *backbuf, size_t len, uint32_t fg_color,
402
static void backbuf_clear(bb_cell_t *backbuf, size_t len, uint32_t fg_color,
356
    uint32_t bg_color)
403
    uint32_t bg_color)
357
{
404
{
358
    unsigned i;
405
    size_t i;
359
 
406
   
360
    for (i = 0; i < len; i++) {
407
    for (i = 0; i < len; i++) {
361
        backbuf[i].glyph = 0;
408
        backbuf[i].glyph = 0;
362
        backbuf[i].fg_color = fg_color;
409
        backbuf[i].fg_color = fg_color;
363
        backbuf[i].bg_color = bg_color;
410
        backbuf[i].bg_color = bg_color;
364
    }
411
    }
365
}
412
}
366
 
413
 
367
/** Clear viewport.
414
/** Clear viewport.
368
 *
415
 *
369
 * @param vport Viewport to clear
416
 * @param vport Viewport to clear
370
 *
417
 *
371
 */
418
 */
372
static void vport_clear(viewport_t *vport)
419
static void vport_clear(viewport_t *vport)
373
{
420
{
374
    backbuf_clear(vport->backbuf, vport->cols * vport->rows,
421
    backbuf_clear(vport->backbuf, vport->cols * vport->rows,
375
        vport->attr.fg_color, vport->attr.bg_color);
422
        vport->attr.fg_color, vport->attr.bg_color);
376
    vport_redraw(vport);
423
    vport_redraw(vport);
377
}
424
}
378
 
425
 
379
/** Scroll viewport by the specified number of lines.
426
/** Scroll viewport by the specified number of lines.
380
 *
427
 *
381
 * @param vport Viewport to scroll
428
 * @param vport Viewport to scroll
382
 * @param lines Number of lines to scroll
429
 * @param lines Number of lines to scroll
383
 *
430
 *
384
 */
431
 */
385
static void vport_scroll(viewport_t *vport, int lines)
432
static void vport_scroll(viewport_t *vport, int lines)
386
{
433
{
-
 
434
    unsigned int row;
387
    unsigned int row, col;
435
    unsigned int col;
-
 
436
    unsigned int x;
388
    unsigned int x, y;
437
    unsigned int y;
389
    uint8_t glyph;
438
    uint32_t glyph;
390
    uint32_t fg_color;
439
    uint32_t fg_color;
391
    uint32_t bg_color;
440
    uint32_t bg_color;
-
 
441
    bb_cell_t *bbp;
392
    bb_cell_t *bbp, *xbp;
442
    bb_cell_t *xbp;
393
 
443
   
394
    /*
444
    /*
395
     * Redraw.
445
     * Redraw.
396
     */
446
     */
397
 
447
   
398
    y = vport->y;
448
    y = vport->y;
399
    for (row = 0; row < vport->rows; row++) {
449
    for (row = 0; row < vport->rows; row++) {
400
        x = vport->x;
450
        x = vport->x;
401
        for (col = 0; col < vport->cols; col++) {
451
        for (col = 0; col < vport->cols; col++) {
402
            if ((row + lines >= 0) && (row + lines < vport->rows)) {
452
            if ((row + lines >= 0) && (row + lines < vport->rows)) {
403
                xbp = &vport->backbuf[BB_POS(vport, col, row + lines)];
453
                xbp = &vport->backbuf[BB_POS(vport, col, row + lines)];
404
                bbp = &vport->backbuf[BB_POS(vport, col, row)];
454
                bbp = &vport->backbuf[BB_POS(vport, col, row)];
405
 
455
               
406
                glyph = xbp->glyph;
456
                glyph = xbp->glyph;
407
                fg_color = xbp->fg_color;
457
                fg_color = xbp->fg_color;
408
                bg_color = xbp->bg_color;
458
                bg_color = xbp->bg_color;
409
 
459
               
410
                if (bbp->glyph == glyph &&
460
                if ((bbp->glyph == glyph)
411
                    bbp->fg_color == xbp->fg_color &&
461
                   && (bbp->fg_color == xbp->fg_color)
412
                    bbp->bg_color == xbp->bg_color) {
462
                   && (bbp->bg_color == xbp->bg_color)) {
413
                    x += FONT_WIDTH;
463
                    x += FONT_WIDTH;
414
                    continue;
464
                    continue;
415
                }
465
                }
416
            } else {
466
            } else {
417
                glyph = 0;
467
                glyph = 0;
418
                fg_color = vport->attr.fg_color;
468
                fg_color = vport->attr.fg_color;
419
                bg_color = vport->attr.bg_color;
469
                bg_color = vport->attr.bg_color;
420
            }
470
            }
421
 
471
           
422
            (*vport->dglyph)(x, y, false, vport->glyphs, glyph,
472
            (*vport->dglyph)(x, y, false, screen.glyphs, glyph,
423
                fg_color, bg_color);
473
                fg_color, bg_color);
424
            x += FONT_WIDTH;
474
            x += FONT_WIDTH;
425
        }
475
        }
426
        y += FONT_SCANLINES;
476
        y += FONT_SCANLINES;
427
    }
477
    }
428
 
478
   
429
    /*
479
    /*
430
     * Scroll backbuffer.
480
     * Scroll backbuffer.
431
     */
481
     */
432
 
482
   
433
    if (lines > 0) {
483
    if (lines > 0) {
434
        memmove(vport->backbuf, vport->backbuf + vport->cols * lines,
484
        memmove(vport->backbuf, vport->backbuf + vport->cols * lines,
435
            vport->cols * (vport->rows - lines) * sizeof(bb_cell_t));
485
            vport->cols * (vport->rows - lines) * sizeof(bb_cell_t));
436
        backbuf_clear(&vport->backbuf[BB_POS(vport, 0, vport->rows - lines)],
486
        backbuf_clear(&vport->backbuf[BB_POS(vport, 0, vport->rows - lines)],
437
            vport->cols * lines, vport->attr.fg_color, vport->attr.bg_color);
487
            vport->cols * lines, vport->attr.fg_color, vport->attr.bg_color);
438
    } else {
488
    } else {
439
        memmove(vport->backbuf - vport->cols * lines, vport->backbuf,
489
        memmove(vport->backbuf - vport->cols * lines, vport->backbuf,
440
            vport->cols * (vport->rows + lines) * sizeof(bb_cell_t));
490
            vport->cols * (vport->rows + lines) * sizeof(bb_cell_t));
441
        backbuf_clear(vport->backbuf, - vport->cols * lines,
491
        backbuf_clear(vport->backbuf, - vport->cols * lines,
442
            vport->attr.fg_color, vport->attr.bg_color);
492
            vport->attr.fg_color, vport->attr.bg_color);
443
    }
493
    }
444
}
494
}
445
 
495
 
446
/** Render glyphs
496
/** Render glyphs
447
 *
497
 *
448
 * Convert glyphs from device independent font
498
 * Convert glyphs from device independent font
449
 * description to current visual representation.
499
 * description to current visual representation.
450
 *
500
 *
451
 * @param vport Viewport
-
 
452
 *
-
 
453
 */
501
 */
454
static void render_glyphs(viewport_t* vport)
502
static void render_glyphs(void)
455
{
503
{
456
    unsigned int glyph;
504
    unsigned int glyph;
457
   
505
   
458
    for (glyph = 0; glyph < FONT_GLYPHS; glyph++) {
506
    for (glyph = 0; glyph < FONT_GLYPHS; glyph++) {
459
        unsigned int y;
507
        unsigned int y;
460
       
508
       
461
        for (y = 0; y < FONT_SCANLINES; y++) {
509
        for (y = 0; y < FONT_SCANLINES; y++) {
462
            unsigned int x;
510
            unsigned int x;
463
           
511
           
464
            for (x = 0; x < FONT_WIDTH; x++) {
512
            for (x = 0; x < FONT_WIDTH; x++) {
465
                screen.rgb_conv(&vport->glyphs[GLYPH_POS(glyph, y, false) + x * screen.pixelbytes],
513
                screen.mask_conv(&screen.glyphs[GLYPH_POS(glyph, y, false) + x * screen.pixelbytes],
466
                    (fb_font[glyph * FONT_SCANLINES + y] & (1 << (7 - x)))
514
                    (fb_font[glyph][y] & (1 << (7 - x))) ? true : false);
467
                    ? 0xffffff : 0x000000);
-
 
468
               
515
               
469
                screen.rgb_conv(&vport->glyphs[GLYPH_POS(glyph, y, true) + x * screen.pixelbytes],
516
                screen.mask_conv(&screen.glyphs[GLYPH_POS(glyph, y, true) + x * screen.pixelbytes],
470
                    (fb_font[glyph * FONT_SCANLINES + y] & (1 << (7 - x)))
517
                    (fb_font[glyph][y] & (1 << (7 - x))) ? false : true);
471
                    ? 0x000000 : 0xffffff);
-
 
472
            }
518
            }
473
        }
519
        }
474
    }
520
    }
475
   
-
 
476
    screen.rgb_conv(vport->bgpixel, vport->attr.bg_color);
-
 
477
}
521
}
478
 
522
 
479
 
-
 
480
/** Create new viewport
523
/** Create new viewport
481
 *
524
 *
482
 * @param x      Origin of the viewport (x).
525
 * @param x      Origin of the viewport (x).
483
 * @param y      Origin of the viewport (y).
526
 * @param y      Origin of the viewport (y).
484
 * @param width  Width of the viewport.
527
 * @param width  Width of the viewport.
485
 * @param height Height of the viewport.
528
 * @param height Height of the viewport.
486
 *
529
 *
487
 * @return New viewport number.
530
 * @return New viewport number.
488
 *
531
 *
489
 */
532
 */
490
static int vport_create(unsigned int x, unsigned int y,
533
static int vport_create(unsigned int x, unsigned int y,
491
    unsigned int width, unsigned int height)
534
    unsigned int width, unsigned int height)
492
{
535
{
493
    unsigned int i;
536
    unsigned int i;
494
   
537
   
495
    for (i = 0; i < MAX_VIEWPORTS; i++) {
538
    for (i = 0; i < MAX_VIEWPORTS; i++) {
496
        if (!viewports[i].initialized)
539
        if (!viewports[i].initialized)
497
            break;
540
            break;
498
    }
541
    }
-
 
542
   
499
    if (i == MAX_VIEWPORTS)
543
    if (i == MAX_VIEWPORTS)
500
        return ELIMIT;
544
        return ELIMIT;
501
   
545
   
502
    unsigned int cols = width / FONT_WIDTH;
546
    unsigned int cols = width / FONT_WIDTH;
503
    unsigned int rows = height / FONT_SCANLINES;
547
    unsigned int rows = height / FONT_SCANLINES;
504
    unsigned int bbsize = cols * rows * sizeof(bb_cell_t);
548
    unsigned int bbsize = cols * rows * sizeof(bb_cell_t);
505
    unsigned int glyphsize = 2 * FONT_GLYPHS * screen.glyphbytes;
-
 
506
    unsigned int word_size = sizeof(unsigned long);
549
    unsigned int word_size = sizeof(unsigned long);
507
   
550
   
508
    bb_cell_t *backbuf = (bb_cell_t *) malloc(bbsize);
551
    bb_cell_t *backbuf = (bb_cell_t *) malloc(bbsize);
509
    if (!backbuf)
552
    if (!backbuf)
510
        return ENOMEM;
553
        return ENOMEM;
511
   
554
   
512
    uint8_t *glyphs = (uint8_t *) malloc(glyphsize);
-
 
513
    if (!glyphs) {
-
 
514
        free(backbuf);
-
 
515
        return ENOMEM;
-
 
516
    }
-
 
517
   
-
 
518
    uint8_t *bgpixel = (uint8_t *) malloc(screen.pixelbytes);
555
    uint8_t *bgpixel = (uint8_t *) malloc(screen.pixelbytes);
519
    if (!bgpixel) {
556
    if (!bgpixel) {
520
        free(glyphs);
-
 
521
        free(backbuf);
557
        free(backbuf);
522
        return ENOMEM;
558
        return ENOMEM;
523
    }
559
    }
524
 
560
   
525
    backbuf_clear(backbuf, cols * rows, DEFAULT_FGCOLOR, DEFAULT_BGCOLOR);
561
    backbuf_clear(backbuf, cols * rows, DEFAULT_FGCOLOR, DEFAULT_BGCOLOR);
526
    memset(glyphs, 0, glyphsize);
-
 
527
    memset(bgpixel, 0, screen.pixelbytes);
562
    memset(bgpixel, 0, screen.pixelbytes);
528
   
563
   
529
    viewports[i].x = x;
564
    viewports[i].x = x;
530
    viewports[i].y = y;
565
    viewports[i].y = y;
531
    viewports[i].width = width;
566
    viewports[i].width = width;
532
    viewports[i].height = height;
567
    viewports[i].height = height;
533
   
568
   
534
    viewports[i].cols = cols;
569
    viewports[i].cols = cols;
535
    viewports[i].rows = rows;
570
    viewports[i].rows = rows;
536
   
571
   
537
    viewports[i].attr.bg_color = DEFAULT_BGCOLOR;
572
    viewports[i].attr.bg_color = DEFAULT_BGCOLOR;
538
    viewports[i].attr.fg_color = DEFAULT_FGCOLOR;
573
    viewports[i].attr.fg_color = DEFAULT_FGCOLOR;
539
   
574
   
540
    viewports[i].glyphs = glyphs;
-
 
541
    viewports[i].bgpixel = bgpixel;
575
    viewports[i].bgpixel = bgpixel;
542
 
576
   
543
    /*
577
    /*
544
     * Conditions necessary  to select aligned version:
578
     * Conditions necessary to select aligned version:
-
 
579
     *  - word size is divisible by pixelbytes
-
 
580
     *  - cell scanline size is divisible by word size
-
 
581
     *  - cell scanlines are word-aligned
545
     *
582
     *
546
     *   - word size is divisible by pixelbytes
-
 
547
     *   - cell scanline size is divisible by word size
-
 
548
     *   - cell scanlines are word-aligned
-
 
549
     */
583
     */
550
    if ((word_size % screen.pixelbytes) == 0 &&
584
    if (((word_size % screen.pixelbytes) == 0)
551
        (FONT_WIDTH * screen.pixelbytes) % word_size == 0 &&
585
        && ((FONT_WIDTH * screen.pixelbytes) % word_size == 0)
552
        (x * screen.pixelbytes) % word_size == 0 &&
586
        && ((x * screen.pixelbytes) % word_size == 0)
553
        screen.scanline % word_size == 0) {
587
        && (screen.scanline % word_size == 0)) {
554
 
-
 
555
        viewports[i].dglyph = draw_glyph_aligned;
588
        viewports[i].dglyph = draw_glyph_aligned;
556
    } else {
589
    } else {
557
        viewports[i].dglyph = draw_glyph_fallback;
590
        viewports[i].dglyph = draw_glyph_fallback;
558
    }
591
    }
559
 
592
   
560
    viewports[i].cur_col = 0;
593
    viewports[i].cur_col = 0;
561
    viewports[i].cur_row = 0;
594
    viewports[i].cur_row = 0;
562
    viewports[i].cursor_active = false;
595
    viewports[i].cursor_active = false;
563
    viewports[i].cursor_shown = false;
596
    viewports[i].cursor_shown = false;
564
   
597
   
565
    viewports[i].bbsize = bbsize;
598
    viewports[i].bbsize = bbsize;
566
    viewports[i].backbuf = backbuf;
599
    viewports[i].backbuf = backbuf;
567
   
600
   
568
    viewports[i].initialized = true;
601
    viewports[i].initialized = true;
569
   
602
   
570
    render_glyphs(&viewports[i]);
603
    screen.rgb_conv(viewports[i].bgpixel, viewports[i].attr.bg_color);
571
   
604
   
572
    return i;
605
    return i;
573
}
606
}
574
 
607
 
575
 
608
 
576
/** Initialize framebuffer as a chardev output device
609
/** Initialize framebuffer as a chardev output device
577
 *
610
 *
578
 * @param addr   Address of the framebuffer
611
 * @param addr   Address of the framebuffer
579
 * @param xres   Screen width in pixels
612
 * @param xres   Screen width in pixels
580
 * @param yres   Screen height in pixels
613
 * @param yres   Screen height in pixels
581
 * @param visual Bits per pixel (8, 16, 24, 32)
614
 * @param visual Bits per pixel (8, 16, 24, 32)
582
 * @param scan   Bytes per one scanline
615
 * @param scan   Bytes per one scanline
583
 *
616
 *
584
 */
617
 */
585
static bool screen_init(void *addr, unsigned int xres, unsigned int yres,
618
static bool screen_init(void *addr, unsigned int xres, unsigned int yres,
586
    unsigned int scan, unsigned int visual)
619
    unsigned int scan, unsigned int visual)
587
{
620
{
-
 
621
   
-
 
622
   
588
    switch (visual) {
623
    switch (visual) {
589
    case VISUAL_INDIRECT_8:
624
    case VISUAL_INDIRECT_8:
590
        screen.rgb_conv = rgb_323;
625
        screen.rgb_conv = rgb_323;
-
 
626
        screen.mask_conv = mask_323;
591
        screen.pixelbytes = 1;
627
        screen.pixelbytes = 1;
592
        break;
628
        break;
593
    case VISUAL_RGB_5_5_5:
629
    case VISUAL_RGB_5_5_5:
594
        screen.rgb_conv = rgb_555;
630
        screen.rgb_conv = rgb_555;
-
 
631
        screen.mask_conv = mask_555;
595
        screen.pixelbytes = 2;
632
        screen.pixelbytes = 2;
596
        break;
633
        break;
597
    case VISUAL_RGB_5_6_5:
634
    case VISUAL_RGB_5_6_5:
598
        screen.rgb_conv = rgb_565;
635
        screen.rgb_conv = rgb_565;
-
 
636
        screen.mask_conv = mask_565;
599
        screen.pixelbytes = 2;
637
        screen.pixelbytes = 2;
600
        break;
638
        break;
601
    case VISUAL_RGB_8_8_8:
639
    case VISUAL_RGB_8_8_8:
602
        screen.rgb_conv = rgb_888;
640
        screen.rgb_conv = rgb_888;
-
 
641
        screen.mask_conv = mask_888;
603
        screen.pixelbytes = 3;
642
        screen.pixelbytes = 3;
604
        break;
643
        break;
605
    case VISUAL_BGR_8_8_8:
644
    case VISUAL_BGR_8_8_8:
606
        screen.rgb_conv = bgr_888;
645
        screen.rgb_conv = bgr_888;
-
 
646
        screen.mask_conv = mask_888;
607
        screen.pixelbytes = 3;
647
        screen.pixelbytes = 3;
608
        break;
648
        break;
609
    case VISUAL_RGB_8_8_8_0:
649
    case VISUAL_RGB_8_8_8_0:
610
        screen.rgb_conv = rgb_888;
650
        screen.rgb_conv = rgb_888;
-
 
651
        screen.mask_conv = mask_888;
611
        screen.pixelbytes = 4;
652
        screen.pixelbytes = 4;
612
        break;
653
        break;
613
    case VISUAL_RGB_0_8_8_8:
654
    case VISUAL_RGB_0_8_8_8:
614
        screen.rgb_conv = rgb_0888;
655
        screen.rgb_conv = rgb_0888;
-
 
656
        screen.mask_conv = mask_0888;
615
        screen.pixelbytes = 4;
657
        screen.pixelbytes = 4;
616
        break;
658
        break;
617
    case VISUAL_BGR_0_8_8_8:
659
    case VISUAL_BGR_0_8_8_8:
618
        screen.rgb_conv = bgr_0888;
660
        screen.rgb_conv = bgr_0888;
-
 
661
        screen.mask_conv = mask_0888;
619
        screen.pixelbytes = 4;
662
        screen.pixelbytes = 4;
620
        break;
663
        break;
621
    default:
664
    default:
622
        return false;
665
        return false;
623
    }
666
    }
624
 
667
   
625
    screen.fb_addr = (unsigned char *) addr;
668
    screen.fb_addr = (unsigned char *) addr;
626
    screen.xres = xres;
669
    screen.xres = xres;
627
    screen.yres = yres;
670
    screen.yres = yres;
628
    screen.scanline = scan;
671
    screen.scanline = scan;
629
   
672
   
630
    screen.glyphscanline = FONT_WIDTH * screen.pixelbytes;
673
    screen.glyphscanline = FONT_WIDTH * screen.pixelbytes;
631
    screen.glyphbytes = screen.glyphscanline * FONT_SCANLINES;
674
    screen.glyphbytes = screen.glyphscanline * FONT_SCANLINES;
632
   
675
   
-
 
676
    size_t glyphsize = 2 * FONT_GLYPHS * screen.glyphbytes;
-
 
677
    uint8_t *glyphs = (uint8_t *) malloc(glyphsize);
-
 
678
    if (!glyphs)
-
 
679
        return false;
-
 
680
   
-
 
681
    memset(glyphs, 0, glyphsize);
-
 
682
    screen.glyphs = glyphs;
-
 
683
   
-
 
684
    render_glyphs();
-
 
685
   
633
    /* Create first viewport */
686
    /* Create first viewport */
634
    vport_create(0, 0, xres, yres);
687
    vport_create(0, 0, xres, yres);
635
   
688
   
636
    return true;
689
    return true;
637
}
690
}
638
 
691
 
639
 
692
 
640
/** Draw a glyph, takes advantage of alignment.
693
/** Draw a glyph, takes advantage of alignment.
641
 *
694
 *
642
 * This version can only be used if the following conditions are met:
695
 * This version can only be used if the following conditions are met:
643
 *
696
 *
644
 *   - word size is divisible by pixelbytes
697
 *   - word size is divisible by pixelbytes
645
 *   - cell scanline size is divisible by word size
698
 *   - cell scanline size is divisible by word size
646
 *   - cell scanlines are word-aligned
699
 *   - cell scanlines are word-aligned
647
 *
700
 *
648
 * It makes use of the pre-rendered mask to process (possibly) several
701
 * It makes use of the pre-rendered mask to process (possibly) several
649
 * pixels at once (word size / pixelbytes pixels at a time are processed)
702
 * pixels at once (word size / pixelbytes pixels at a time are processed)
650
 * making it very fast. Most notably this version is not applicable at 24 bits
703
 * making it very fast. Most notably this version is not applicable at 24 bits
651
 * per pixel.
704
 * per pixel.
652
 *
705
 *
653
 * @param x     x coordinate of top-left corner on screen.
706
 * @param x        x coordinate of top-left corner on screen.
654
 * @param y     y coordinate of top-left corner on screen.
707
 * @param y        y coordinate of top-left corner on screen.
655
 * @param cursor    Draw glyph with cursor
708
 * @param cursor   Draw glyph with cursor
656
 * @param glyphs    Pointer to font bitmap.
709
 * @param glyphs   Pointer to font bitmap.
657
 * @param glyph     Code of the glyph to draw.
710
 * @param glyph    Code of the glyph to draw.
658
 * @param fg_color  Foreground color.
711
 * @param fg_color Foreground color.
659
 * @param bg_color  Backgroudn color.
712
 * @param bg_color Backgroudn color.
-
 
713
 *
660
 */
714
 */
661
static void draw_glyph_aligned(unsigned int x, unsigned int y, bool cursor,
715
static void draw_glyph_aligned(unsigned int x, unsigned int y, bool cursor,
662
    uint8_t *glyphs, uint8_t glyph, uint32_t fg_color, uint32_t bg_color)
716
    uint8_t *glyphs, uint32_t glyph, uint32_t fg_color, uint32_t bg_color)
663
{
717
{
-
 
718
    unsigned int i;
664
    unsigned int i, yd;
719
    unsigned int yd;
665
    unsigned long fg_buf, bg_buf;
720
    unsigned long fg_buf;
666
    unsigned long *maskp, *dp;
721
    unsigned long bg_buf;
667
    unsigned long mask;
722
    unsigned long mask;
668
    unsigned int ww, d_add;
-
 
669
 
723
   
670
    /*
724
    /*
671
     * Prepare a pair of words, one filled with foreground-color
725
     * Prepare a pair of words, one filled with foreground-color
672
     * pattern and the other filled with background-color pattern.
726
     * pattern and the other filled with background-color pattern.
673
     */
727
     */
674
    for (i = 0; i < sizeof(unsigned long) / screen.pixelbytes; i++) {
728
    for (i = 0; i < sizeof(unsigned long) / screen.pixelbytes; i++) {
675
        screen.rgb_conv(&((uint8_t *)&fg_buf)[i * screen.pixelbytes],
729
        screen.rgb_conv(&((uint8_t *) &fg_buf)[i * screen.pixelbytes],
676
            fg_color);
730
            fg_color);
677
        screen.rgb_conv(&((uint8_t *)&bg_buf)[i * screen.pixelbytes],
731
        screen.rgb_conv(&((uint8_t *) &bg_buf)[i * screen.pixelbytes],
678
            bg_color);
732
            bg_color);
679
    }
733
    }
680
 
-
 
681
 
734
   
682
    /* Pointer to the current position in the mask. */
735
    /* Pointer to the current position in the mask. */
683
    maskp = (unsigned long *) &glyphs[GLYPH_POS(glyph, 0, cursor)];
736
    unsigned long *maskp = (unsigned long *) &glyphs[GLYPH_POS(glyph, 0, cursor)];
684
 
737
   
685
    /* Pointer to the current position on the screen. */
738
    /* Pointer to the current position on the screen. */
686
    dp = (unsigned long *) &screen.fb_addr[FB_POS(x, y)];
739
    unsigned long *dp = (unsigned long *) &screen.fb_addr[FB_POS(x, y)];
687
 
740
   
688
    /* Width of the character cell in words. */
741
    /* Width of the character cell in words. */
689
    ww = FONT_WIDTH * screen.pixelbytes / sizeof(unsigned long);
742
    unsigned int ww = FONT_WIDTH * screen.pixelbytes / sizeof(unsigned long);
690
 
743
   
691
    /* Offset to add when moving to another screen scanline. */
744
    /* Offset to add when moving to another screen scanline. */
692
    d_add = screen.scanline - FONT_WIDTH * screen.pixelbytes;
745
    unsigned int d_add = screen.scanline - FONT_WIDTH * screen.pixelbytes;
693
 
746
   
694
    for (yd = 0; yd < FONT_SCANLINES; yd++) {
747
    for (yd = 0; yd < FONT_SCANLINES; yd++) {
695
        /*
748
        /*
696
         * Now process the cell scanline, combining foreground
749
         * Now process the cell scanline, combining foreground
697
         * and background color patters using the pre-rendered mask.
750
         * and background color patters using the pre-rendered mask.
698
         */
751
         */
699
        for (i = 0; i < ww; i++) {
752
        for (i = 0; i < ww; i++) {
700
            mask = *maskp++;
753
            mask = *maskp++;
701
            *dp++ = (fg_buf & mask) | (bg_buf & ~mask);
754
            *dp++ = (fg_buf & mask) | (bg_buf & ~mask);
702
        }
755
        }
703
 
756
       
704
        /* Move to the beginning of the next scanline of the cell. */
757
        /* Move to the beginning of the next scanline of the cell. */
705
        dp = (unsigned long *) ((uint8_t *) dp + d_add);
758
        dp = (unsigned long *) ((uint8_t *) dp + d_add);
706
    }
759
    }
707
}
760
}
708
 
761
 
709
/** Draw a glyph, fallback version.
762
/** Draw a glyph, fallback version.
710
 *
763
 *
711
 * This version does not make use of the pre-rendered mask, it uses
764
 * This version does not make use of the pre-rendered mask, it uses
712
 * the font bitmap directly. It works always, but it is slower.
765
 * the font bitmap directly. It works always, but it is slower.
713
 *
766
 *
714
 * @param x     x coordinate of top-left corner on screen.
767
 * @param x        x coordinate of top-left corner on screen.
715
 * @param y     y coordinate of top-left corner on screen.
768
 * @param y        y coordinate of top-left corner on screen.
716
 * @param cursor    Draw glyph with cursor
769
 * @param cursor   Draw glyph with cursor
717
 * @param glyphs    Pointer to font bitmap.
770
 * @param glyphs   Pointer to font bitmap.
718
 * @param glyph     Code of the glyph to draw.
771
 * @param glyph    Code of the glyph to draw.
719
 * @param fg_color  Foreground color.
772
 * @param fg_color Foreground color.
720
 * @param bg_color  Backgroudn color.
773
 * @param bg_color Backgroudn color.
-
 
774
 *
721
 */
775
 */
722
void draw_glyph_fallback(unsigned int x, unsigned int y, bool cursor,
776
void draw_glyph_fallback(unsigned int x, unsigned int y, bool cursor,
723
    uint8_t *glyphs, uint8_t glyph, uint32_t fg_color, uint32_t bg_color)
777
    uint8_t *glyphs, uint32_t glyph, uint32_t fg_color, uint32_t bg_color)
724
{
778
{
-
 
779
    unsigned int i;
-
 
780
    unsigned int j;
725
    unsigned int i, j, yd;
781
    unsigned int yd;
726
    uint8_t fg_buf[4], bg_buf[4];
782
    uint8_t fg_buf[4];
727
    uint8_t *dp, *sp;
783
    uint8_t bg_buf[4];
728
    unsigned int d_add;
784
    uint8_t *sp;
729
    uint8_t b;
785
    uint8_t b;
730
 
786
   
731
    /* Pre-render 1x the foreground and background color pixels. */
787
    /* Pre-render 1x the foreground and background color pixels. */
732
    if (cursor) {
788
    if (cursor) {
733
        screen.rgb_conv(fg_buf, bg_color);
789
        screen.rgb_conv(fg_buf, bg_color);
734
        screen.rgb_conv(bg_buf, fg_color);
790
        screen.rgb_conv(bg_buf, fg_color);
735
    } else {
791
    } else {
736
        screen.rgb_conv(fg_buf, fg_color);
792
        screen.rgb_conv(fg_buf, fg_color);
737
        screen.rgb_conv(bg_buf, bg_color);
793
        screen.rgb_conv(bg_buf, bg_color);
738
    }
794
    }
739
 
795
   
740
    /* Pointer to the current position on the screen. */
796
    /* Pointer to the current position on the screen. */
741
    dp = (uint8_t *) &screen.fb_addr[FB_POS(x, y)];
797
    uint8_t *dp = (uint8_t *) &screen.fb_addr[FB_POS(x, y)];
742
 
798
   
743
    /* Offset to add when moving to another screen scanline. */
799
    /* Offset to add when moving to another screen scanline. */
744
    d_add = screen.scanline - FONT_WIDTH * screen.pixelbytes;
800
    unsigned int d_add = screen.scanline - FONT_WIDTH * screen.pixelbytes;
745
 
801
   
746
    for (yd = 0; yd < FONT_SCANLINES; yd++) {
802
    for (yd = 0; yd < FONT_SCANLINES; yd++) {
747
        /* Byte containing bits of the glyph scanline. */
803
        /* Byte containing bits of the glyph scanline. */
748
        b = fb_font[glyph * FONT_SCANLINES + yd];
804
        b = fb_font[glyph][yd];
749
 
805
       
750
        for (i = 0; i < FONT_WIDTH; i++) {
806
        for (i = 0; i < FONT_WIDTH; i++) {
751
            /* Choose color based on the current bit. */
807
            /* Choose color based on the current bit. */
752
            sp = (b & 0x80) ? fg_buf : bg_buf;
808
            sp = (b & 0x80) ? fg_buf : bg_buf;
753
 
809
           
754
            /* Copy the pixel. */
810
            /* Copy the pixel. */
755
            for (j = 0; j < screen.pixelbytes; j++) {
811
            for (j = 0; j < screen.pixelbytes; j++) {
756
                *dp++ = *sp++;
812
                *dp++ = *sp++;
757
            }
813
            }
758
 
814
           
759
            /* Move to the next bit. */
815
            /* Move to the next bit. */
760
            b = b << 1;
816
            b = b << 1;
761
        }
817
        }
762
       
818
       
763
        /* Move to the beginning of the next scanline of the cell. */
819
        /* Move to the beginning of the next scanline of the cell. */
764
        dp += d_add;
820
        dp += d_add;
765
    }
821
    }
766
}
822
}
767
 
823
 
768
/** Draw glyph at specified position in viewport.
824
/** Draw glyph at specified position in viewport.
769
 *
825
 *
770
 * @param vport  Viewport identification
826
 * @param vport  Viewport identification
771
 * @param cursor Draw glyph with cursor
827
 * @param cursor Draw glyph with cursor
772
 * @param col    Screen position relative to viewport
828
 * @param col    Screen position relative to viewport
773
 * @param row    Screen position relative to viewport
829
 * @param row    Screen position relative to viewport
774
 *
830
 *
775
 */
831
 */
776
static void draw_vp_glyph(viewport_t *vport, bool cursor, unsigned int col,
832
static void draw_vp_glyph(viewport_t *vport, bool cursor, unsigned int col,
777
    unsigned int row)
833
    unsigned int row)
778
{
834
{
779
    unsigned int x = vport->x + COL2X(col);
835
    unsigned int x = vport->x + COL2X(col);
780
    unsigned int y = vport->y + ROW2Y(row);
836
    unsigned int y = vport->y + ROW2Y(row);
781
 
-
 
782
    uint8_t glyph;
-
 
783
    uint32_t fg_color;
-
 
784
    uint32_t bg_color;
-
 
785
   
837
   
786
    glyph = vport->backbuf[BB_POS(vport, col, row)].glyph;
838
    uint32_t glyph = vport->backbuf[BB_POS(vport, col, row)].glyph;
787
    fg_color = vport->backbuf[BB_POS(vport, col, row)].fg_color;
839
    uint32_t fg_color = vport->backbuf[BB_POS(vport, col, row)].fg_color;
788
    bg_color = vport->backbuf[BB_POS(vport, col, row)].bg_color;
840
    uint32_t bg_color = vport->backbuf[BB_POS(vport, col, row)].bg_color;
789
 
841
   
790
    (*vport->dglyph)(x, y, cursor, vport->glyphs, glyph,
842
    (*vport->dglyph)(x, y, cursor, screen.glyphs, glyph,
791
        fg_color, bg_color);
843
        fg_color, bg_color);
792
}
844
}
793
 
845
 
794
/** Hide cursor if it is shown
846
/** Hide cursor if it is shown
795
 *
847
 *
796
 */
848
 */
797
static void cursor_hide(viewport_t *vport)
849
static void cursor_hide(viewport_t *vport)
798
{
850
{
799
    if ((vport->cursor_active) && (vport->cursor_shown)) {
851
    if ((vport->cursor_active) && (vport->cursor_shown)) {
800
        draw_vp_glyph(vport, false, vport->cur_col, vport->cur_row);
852
        draw_vp_glyph(vport, false, vport->cur_col, vport->cur_row);
801
        vport->cursor_shown = false;
853
        vport->cursor_shown = false;
802
    }
854
    }
803
}
855
}
804
 
856
 
805
 
857
 
806
/** Show cursor if cursor showing is enabled
858
/** Show cursor if cursor showing is enabled
807
 *
859
 *
808
 */
860
 */
809
static void cursor_show(viewport_t *vport)
861
static void cursor_show(viewport_t *vport)
810
{
862
{
811
    /* Do not check for cursor_shown */
863
    /* Do not check for cursor_shown */
812
    if (vport->cursor_active) {
864
    if (vport->cursor_active) {
813
        draw_vp_glyph(vport, true, vport->cur_col, vport->cur_row);
865
        draw_vp_glyph(vport, true, vport->cur_col, vport->cur_row);
814
        vport->cursor_shown = true;
866
        vport->cursor_shown = true;
815
    }
867
    }
816
}
868
}
817
 
869
 
818
 
870
 
819
/** Invert cursor, if it is enabled
871
/** Invert cursor, if it is enabled
820
 *
872
 *
821
 */
873
 */
822
static void cursor_blink(viewport_t *vport)
874
static void cursor_blink(viewport_t *vport)
823
{
875
{
824
    if (vport->cursor_shown)
876
    if (vport->cursor_shown)
825
        cursor_hide(vport);
877
        cursor_hide(vport);
826
    else
878
    else
827
        cursor_show(vport);
879
        cursor_show(vport);
828
}
880
}
829
 
881
 
830
 
882
 
831
/** Draw character at given position relative to viewport
883
/** Draw character at given position relative to viewport
832
 *
884
 *
833
 * @param vport  Viewport identification
885
 * @param vport  Viewport identification
834
 * @param c      Character to draw
886
 * @param c      Character to draw
835
 * @param col    Screen position relative to viewport
887
 * @param col    Screen position relative to viewport
836
 * @param row    Screen position relative to viewport
888
 * @param row    Screen position relative to viewport
837
 *
889
 *
838
 */
890
 */
839
static void draw_char(viewport_t *vport, uint8_t c, unsigned int col, unsigned int row)
891
static void draw_char(viewport_t *vport, wchar_t c, unsigned int col, unsigned int row)
840
{
892
{
841
    bb_cell_t *bbp;
893
    bb_cell_t *bbp;
842
 
894
   
843
    /* Do not hide cursor if we are going to overwrite it */
895
    /* Do not hide cursor if we are going to overwrite it */
844
    if ((vport->cursor_active) && (vport->cursor_shown) &&
896
    if ((vport->cursor_active) && (vport->cursor_shown) &&
845
        ((vport->cur_col != col) || (vport->cur_row != row)))
897
        ((vport->cur_col != col) || (vport->cur_row != row)))
846
        cursor_hide(vport);
898
        cursor_hide(vport);
847
 
899
   
848
    bbp = &vport->backbuf[BB_POS(vport, col, row)];
900
    bbp = &vport->backbuf[BB_POS(vport, col, row)];
849
    bbp->glyph = c;
901
    bbp->glyph = fb_font_glyph(c);
850
    bbp->fg_color = vport->attr.fg_color;
902
    bbp->fg_color = vport->attr.fg_color;
851
    bbp->bg_color = vport->attr.bg_color;
903
    bbp->bg_color = vport->attr.bg_color;
852
 
904
   
853
    draw_vp_glyph(vport, false, col, row);
905
    draw_vp_glyph(vport, false, col, row);
854
   
906
   
855
    vport->cur_col = col;
907
    vport->cur_col = col;
856
    vport->cur_row = row;
908
    vport->cur_row = row;
857
   
909
   
858
    vport->cur_col++;
910
    vport->cur_col++;
859
    if (vport->cur_col >= vport->cols) {
911
    if (vport->cur_col >= vport->cols) {
860
        vport->cur_col = 0;
912
        vport->cur_col = 0;
861
        vport->cur_row++;
913
        vport->cur_row++;
862
        if (vport->cur_row >= vport->rows)
914
        if (vport->cur_row >= vport->rows)
863
            vport->cur_row--;
915
            vport->cur_row--;
864
    }
916
    }
865
   
917
   
866
    cursor_show(vport);
918
    cursor_show(vport);
867
}
919
}
868
 
920
 
869
/** Draw text data to viewport.
921
/** Draw text data to viewport.
870
 *
922
 *
871
 * @param vport Viewport id
923
 * @param vport Viewport id
872
 * @param data  Text data.
924
 * @param data  Text data.
873
 * @param x Leftmost column of the area.
925
 * @param x     Leftmost column of the area.
874
 * @param y Topmost row of the area.
926
 * @param y     Topmost row of the area.
875
 * @param w Number of rows.
927
 * @param w     Number of rows.
876
 * @param h Number of columns.
928
 * @param h     Number of columns.
-
 
929
 *
877
 */
930
 */
878
static void draw_text_data(viewport_t *vport, keyfield_t *data, unsigned int x,
931
static void draw_text_data(viewport_t *vport, keyfield_t *data, unsigned int x,
879
    unsigned int y, unsigned int w, unsigned int h)
932
    unsigned int y, unsigned int w, unsigned int h)
880
{
933
{
-
 
934
    unsigned int i;
881
    unsigned int i, j;
935
    unsigned int j;
882
    bb_cell_t *bbp;
936
    bb_cell_t *bbp;
883
    attrs_t *a;
937
    attrs_t *a;
884
    attr_rgb_t rgb;
938
    attr_rgb_t rgb;
885
 
939
   
886
    for (j = 0; j < h; j++) {
940
    for (j = 0; j < h; j++) {
887
        for (i = 0; i < w; i++) {
941
        for (i = 0; i < w; i++) {
888
            unsigned int col = x + i;
942
            unsigned int col = x + i;
889
            unsigned int row = y + j;
943
            unsigned int row = y + j;
890
 
944
           
891
            bbp = &vport->backbuf[BB_POS(vport, col, row)];
945
            bbp = &vport->backbuf[BB_POS(vport, col, row)];
892
            uint8_t glyph = bbp->glyph;
-
 
893
 
946
           
894
            a = &data[j * w + i].attrs;
947
            a = &data[j * w + i].attrs;
895
            rgb_from_attr(&rgb, a);
948
            rgb_from_attr(&rgb, a);
896
 
949
           
897
            bbp->glyph = data[j * w + i].character;
950
            bbp->glyph = fb_font_glyph(data[j * w + i].character);
898
            bbp->fg_color = rgb.fg_color;
951
            bbp->fg_color = rgb.fg_color;
899
            bbp->bg_color = rgb.bg_color;
952
            bbp->bg_color = rgb.bg_color;
900
 
953
           
901
            draw_vp_glyph(vport, false, col, row);
954
            draw_vp_glyph(vport, false, col, row);
902
        }
955
        }
903
    }
956
    }
904
    cursor_show(vport);
957
    cursor_show(vport);
905
}
958
}
906
 
959
 
907
 
960
 
908
static void putpixel_pixmap(void *data, unsigned int x, unsigned int y, uint32_t color)
961
static void putpixel_pixmap(void *data, unsigned int x, unsigned int y, uint32_t color)
909
{
962
{
910
    int pm = *((int *) data);
963
    int pm = *((int *) data);
911
    pixmap_t *pmap = &pixmaps[pm];
964
    pixmap_t *pmap = &pixmaps[pm];
912
    unsigned int pos = (y * pmap->width + x) * screen.pixelbytes;
965
    unsigned int pos = (y * pmap->width + x) * screen.pixelbytes;
913
   
966
   
914
    screen.rgb_conv(&pmap->data[pos], color);
967
    screen.rgb_conv(&pmap->data[pos], color);
915
}
968
}
916
 
969
 
917
 
970
 
918
static void putpixel(void *data, unsigned int x, unsigned int y, uint32_t color)
971
static void putpixel(void *data, unsigned int x, unsigned int y, uint32_t color)
919
{
972
{
920
    viewport_t *vport = (viewport_t *) data;
973
    viewport_t *vport = (viewport_t *) data;
921
    unsigned int dx = vport->x + x;
974
    unsigned int dx = vport->x + x;
922
    unsigned int dy = vport->y + y;
975
    unsigned int dy = vport->y + y;
923
   
976
   
924
    screen.rgb_conv(&screen.fb_addr[FB_POS(dx, dy)], color);
977
    screen.rgb_conv(&screen.fb_addr[FB_POS(dx, dy)], color);
925
}
978
}
926
 
979
 
927
 
980
 
928
/** Return first free pixmap
981
/** Return first free pixmap
929
 *
982
 *
930
 */
983
 */
931
static int find_free_pixmap(void)
984
static int find_free_pixmap(void)
932
{
985
{
933
    unsigned int i;
986
    unsigned int i;
934
   
987
   
935
    for (i = 0; i < MAX_PIXMAPS; i++)
988
    for (i = 0; i < MAX_PIXMAPS; i++)
936
        if (!pixmaps[i].data)
989
        if (!pixmaps[i].data)
937
            return i;
990
            return i;
938
   
991
   
939
    return -1;
992
    return -1;
940
}
993
}
941
 
994
 
942
 
995
 
943
/** Create a new pixmap and return appropriate ID
996
/** Create a new pixmap and return appropriate ID
944
 *
997
 *
945
 */
998
 */
946
static int shm2pixmap(unsigned char *shm, size_t size)
999
static int shm2pixmap(unsigned char *shm, size_t size)
947
{
1000
{
948
    int pm;
1001
    int pm;
949
    pixmap_t *pmap;
1002
    pixmap_t *pmap;
950
   
1003
   
951
    pm = find_free_pixmap();
1004
    pm = find_free_pixmap();
952
    if (pm == -1)
1005
    if (pm == -1)
953
        return ELIMIT;
1006
        return ELIMIT;
954
   
1007
   
955
    pmap = &pixmaps[pm];
1008
    pmap = &pixmaps[pm];
956
   
1009
   
957
    if (ppm_get_data(shm, size, &pmap->width, &pmap->height))
1010
    if (ppm_get_data(shm, size, &pmap->width, &pmap->height))
958
        return EINVAL;
1011
        return EINVAL;
959
   
1012
   
960
    pmap->data = malloc(pmap->width * pmap->height * screen.pixelbytes);
1013
    pmap->data = malloc(pmap->width * pmap->height * screen.pixelbytes);
961
    if (!pmap->data)
1014
    if (!pmap->data)
962
        return ENOMEM;
1015
        return ENOMEM;
963
   
1016
   
964
    ppm_draw(shm, size, 0, 0, pmap->width, pmap->height, putpixel_pixmap, (void *) &pm);
1017
    ppm_draw(shm, size, 0, 0, pmap->width, pmap->height, putpixel_pixmap, (void *) &pm);
965
   
1018
   
966
    return pm;
1019
    return pm;
967
}
1020
}
968
 
1021
 
969
 
1022
 
970
/** Handle shared memory communication calls
1023
/** Handle shared memory communication calls
971
 *
1024
 *
972
 * Protocol for drawing pixmaps:
1025
 * Protocol for drawing pixmaps:
973
 * - FB_PREPARE_SHM(client shm identification)
1026
 * - FB_PREPARE_SHM(client shm identification)
974
 * - IPC_M_AS_AREA_SEND
1027
 * - IPC_M_AS_AREA_SEND
975
 * - FB_DRAW_PPM(startx, starty)
1028
 * - FB_DRAW_PPM(startx, starty)
976
 * - FB_DROP_SHM
1029
 * - FB_DROP_SHM
977
 *
1030
 *
978
 * Protocol for text drawing
1031
 * Protocol for text drawing
979
 * - IPC_M_AS_AREA_SEND
1032
 * - IPC_M_AS_AREA_SEND
980
 * - FB_DRAW_TEXT_DATA
1033
 * - FB_DRAW_TEXT_DATA
981
 *
1034
 *
982
 * @param callid Callid of the current call
1035
 * @param callid Callid of the current call
983
 * @param call   Current call data
1036
 * @param call   Current call data
984
 * @param vp     Active viewport
1037
 * @param vp     Active viewport
985
 *
1038
 *
986
 * @return false if the call was not handled byt this function, true otherwise
1039
 * @return false if the call was not handled byt this function, true otherwise
987
 *
1040
 *
988
 * Note: this function is not threads safe, you would have
1041
 * Note: this function is not threads safe, you would have
989
 * to redefine static variables with __thread
1042
 * to redefine static variables with __thread
990
 *
1043
 *
991
 */
1044
 */
992
static bool shm_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
1045
static bool shm_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
993
{
1046
{
994
    static keyfield_t *interbuffer = NULL;
1047
    static keyfield_t *interbuffer = NULL;
995
    static size_t intersize = 0;
1048
    static size_t intersize = 0;
996
   
1049
   
997
    static unsigned char *shm = NULL;
1050
    static unsigned char *shm = NULL;
998
    static ipcarg_t shm_id = 0;
1051
    static ipcarg_t shm_id = 0;
999
    static size_t shm_size;
1052
    static size_t shm_size;
1000
   
1053
   
1001
    bool handled = true;
1054
    bool handled = true;
1002
    int retval = EOK;
1055
    int retval = EOK;
1003
    viewport_t *vport = &viewports[vp];
1056
    viewport_t *vport = &viewports[vp];
1004
    unsigned int x;
1057
    unsigned int x;
1005
    unsigned int y;
1058
    unsigned int y;
1006
    unsigned int w;
1059
    unsigned int w;
1007
    unsigned int h;
1060
    unsigned int h;
1008
   
1061
   
1009
    switch (IPC_GET_METHOD(*call)) {
1062
    switch (IPC_GET_METHOD(*call)) {
1010
    case IPC_M_SHARE_OUT:
1063
    case IPC_M_SHARE_OUT:
1011
        /* We accept one area for data interchange */
1064
        /* We accept one area for data interchange */
1012
        if (IPC_GET_ARG1(*call) == shm_id) {
1065
        if (IPC_GET_ARG1(*call) == shm_id) {
1013
            void *dest = as_get_mappable_page(IPC_GET_ARG2(*call));
1066
            void *dest = as_get_mappable_page(IPC_GET_ARG2(*call));
1014
            shm_size = IPC_GET_ARG2(*call);
1067
            shm_size = IPC_GET_ARG2(*call);
1015
            if (!ipc_answer_1(callid, EOK, (sysarg_t) dest))
1068
            if (!ipc_answer_1(callid, EOK, (sysarg_t) dest))
1016
                shm = dest;
1069
                shm = dest;
1017
            else
1070
            else
1018
                shm_id = 0;
1071
                shm_id = 0;
1019
           
1072
           
1020
            if (shm[0] != 'P')
1073
            if (shm[0] != 'P')
1021
                return false;
1074
                return false;
1022
           
1075
           
1023
            return true;
1076
            return true;
1024
        } else {
1077
        } else {
1025
            intersize = IPC_GET_ARG2(*call);
1078
            intersize = IPC_GET_ARG2(*call);
1026
            receive_comm_area(callid, call, (void *) &interbuffer);
1079
            receive_comm_area(callid, call, (void *) &interbuffer);
1027
        }
1080
        }
1028
        return true;
1081
        return true;
1029
    case FB_PREPARE_SHM:
1082
    case FB_PREPARE_SHM:
1030
        if (shm_id)
1083
        if (shm_id)
1031
            retval = EBUSY;
1084
            retval = EBUSY;
1032
        else
1085
        else
1033
            shm_id = IPC_GET_ARG1(*call);
1086
            shm_id = IPC_GET_ARG1(*call);
1034
        break;
1087
        break;
1035
       
1088
       
1036
    case FB_DROP_SHM:
1089
    case FB_DROP_SHM:
1037
        if (shm) {
1090
        if (shm) {
1038
            as_area_destroy(shm);
1091
            as_area_destroy(shm);
1039
            shm = NULL;
1092
            shm = NULL;
1040
        }
1093
        }
1041
        shm_id = 0;
1094
        shm_id = 0;
1042
        break;
1095
        break;
1043
       
1096
       
1044
    case FB_SHM2PIXMAP:
1097
    case FB_SHM2PIXMAP:
1045
        if (!shm) {
1098
        if (!shm) {
1046
            retval = EINVAL;
1099
            retval = EINVAL;
1047
            break;
1100
            break;
1048
        }
1101
        }
1049
        retval = shm2pixmap(shm, shm_size);
1102
        retval = shm2pixmap(shm, shm_size);
1050
        break;
1103
        break;
1051
    case FB_DRAW_PPM:
1104
    case FB_DRAW_PPM:
1052
        if (!shm) {
1105
        if (!shm) {
1053
            retval = EINVAL;
1106
            retval = EINVAL;
1054
            break;
1107
            break;
1055
        }
1108
        }
1056
        x = IPC_GET_ARG1(*call);
1109
        x = IPC_GET_ARG1(*call);
1057
        y = IPC_GET_ARG2(*call);
1110
        y = IPC_GET_ARG2(*call);
1058
       
1111
       
1059
        if ((x > vport->width) || (y > vport->height)) {
1112
        if ((x > vport->width) || (y > vport->height)) {
1060
            retval = EINVAL;
1113
            retval = EINVAL;
1061
            break;
1114
            break;
1062
        }
1115
        }
1063
       
1116
       
1064
        ppm_draw(shm, shm_size, IPC_GET_ARG1(*call),
1117
        ppm_draw(shm, shm_size, IPC_GET_ARG1(*call),
1065
            IPC_GET_ARG2(*call), vport->width - x, vport->height - y, putpixel, (void *) vport);
1118
            IPC_GET_ARG2(*call), vport->width - x, vport->height - y, putpixel, (void *) vport);
1066
        break;
1119
        break;
1067
    case FB_DRAW_TEXT_DATA:
1120
    case FB_DRAW_TEXT_DATA:
1068
        x = IPC_GET_ARG1(*call);
1121
        x = IPC_GET_ARG1(*call);
1069
        y = IPC_GET_ARG2(*call);
1122
        y = IPC_GET_ARG2(*call);
1070
        w = IPC_GET_ARG3(*call);
1123
        w = IPC_GET_ARG3(*call);
1071
        h = IPC_GET_ARG4(*call);
1124
        h = IPC_GET_ARG4(*call);
1072
        if (!interbuffer) {
1125
        if (!interbuffer) {
1073
            retval = EINVAL;
1126
            retval = EINVAL;
1074
            break;
1127
            break;
1075
        }
1128
        }
1076
        if (x + w > vport->cols || y + h > vport->rows) {
1129
        if (x + w > vport->cols || y + h > vport->rows) {
1077
            retval = EINVAL;
1130
            retval = EINVAL;
1078
            break;
1131
            break;
1079
        }
1132
        }
1080
        if (intersize < w * h * sizeof(*interbuffer)) {
1133
        if (intersize < w * h * sizeof(*interbuffer)) {
1081
            retval = EINVAL;
1134
            retval = EINVAL;
1082
            break;
1135
            break;
1083
        }
1136
        }
1084
        draw_text_data(vport, interbuffer, x, y, w, h);
1137
        draw_text_data(vport, interbuffer, x, y, w, h);
1085
        break;
1138
        break;
1086
    default:
1139
    default:
1087
        handled = false;
1140
        handled = false;
1088
    }
1141
    }
1089
   
1142
   
1090
    if (handled)
1143
    if (handled)
1091
        ipc_answer_0(callid, retval);
1144
        ipc_answer_0(callid, retval);
1092
    return handled;
1145
    return handled;
1093
}
1146
}
1094
 
1147
 
1095
 
1148
 
1096
static void copy_vp_to_pixmap(viewport_t *vport, pixmap_t *pmap)
1149
static void copy_vp_to_pixmap(viewport_t *vport, pixmap_t *pmap)
1097
{
1150
{
1098
    unsigned int width = vport->width;
1151
    unsigned int width = vport->width;
1099
    unsigned int height = vport->height;
1152
    unsigned int height = vport->height;
1100
   
1153
   
1101
    if (width + vport->x > screen.xres)
1154
    if (width + vport->x > screen.xres)
1102
        width = screen.xres - vport->x;
1155
        width = screen.xres - vport->x;
1103
    if (height + vport->y > screen.yres)
1156
    if (height + vport->y > screen.yres)
1104
        height = screen.yres - vport->y;
1157
        height = screen.yres - vport->y;
1105
   
1158
   
1106
    unsigned int realwidth = pmap->width <= width ? pmap->width : width;
1159
    unsigned int realwidth = pmap->width <= width ? pmap->width : width;
1107
    unsigned int realheight = pmap->height <= height ? pmap->height : height;
1160
    unsigned int realheight = pmap->height <= height ? pmap->height : height;
1108
   
1161
   
1109
    unsigned int srcrowsize = vport->width * screen.pixelbytes;
1162
    unsigned int srcrowsize = vport->width * screen.pixelbytes;
1110
    unsigned int realrowsize = realwidth * screen.pixelbytes;
1163
    unsigned int realrowsize = realwidth * screen.pixelbytes;
1111
   
1164
   
1112
    unsigned int y;
1165
    unsigned int y;
1113
    for (y = 0; y < realheight; y++) {
1166
    for (y = 0; y < realheight; y++) {
1114
        unsigned int tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
1167
        unsigned int tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
1115
        memcpy(pmap->data + srcrowsize * y, screen.fb_addr + tmp, realrowsize);
1168
        memcpy(pmap->data + srcrowsize * y, screen.fb_addr + tmp, realrowsize);
1116
    }
1169
    }
1117
}
1170
}
1118
 
1171
 
1119
 
1172
 
1120
/** Save viewport to pixmap
1173
/** Save viewport to pixmap
1121
 *
1174
 *
1122
 */
1175
 */
1123
static int save_vp_to_pixmap(viewport_t *vport)
1176
static int save_vp_to_pixmap(viewport_t *vport)
1124
{
1177
{
1125
    int pm;
1178
    int pm;
1126
    pixmap_t *pmap;
1179
    pixmap_t *pmap;
1127
   
1180
   
1128
    pm = find_free_pixmap();
1181
    pm = find_free_pixmap();
1129
    if (pm == -1)
1182
    if (pm == -1)
1130
        return ELIMIT;
1183
        return ELIMIT;
1131
   
1184
   
1132
    pmap = &pixmaps[pm];
1185
    pmap = &pixmaps[pm];
1133
    pmap->data = malloc(screen.pixelbytes * vport->width * vport->height);
1186
    pmap->data = malloc(screen.pixelbytes * vport->width * vport->height);
1134
    if (!pmap->data)
1187
    if (!pmap->data)
1135
        return ENOMEM;
1188
        return ENOMEM;
1136
   
1189
   
1137
    pmap->width = vport->width;
1190
    pmap->width = vport->width;
1138
    pmap->height = vport->height;
1191
    pmap->height = vport->height;
1139
   
1192
   
1140
    copy_vp_to_pixmap(vport, pmap);
1193
    copy_vp_to_pixmap(vport, pmap);
1141
   
1194
   
1142
    return pm;
1195
    return pm;
1143
}
1196
}
1144
 
1197
 
1145
 
1198
 
1146
/** Draw pixmap on screen
1199
/** Draw pixmap on screen
1147
 *
1200
 *
1148
 * @param vp Viewport to draw on
1201
 * @param vp Viewport to draw on
1149
 * @param pm Pixmap identifier
1202
 * @param pm Pixmap identifier
1150
 *
1203
 *
1151
 */
1204
 */
1152
static int draw_pixmap(int vp, int pm)
1205
static int draw_pixmap(int vp, int pm)
1153
{
1206
{
1154
    pixmap_t *pmap = &pixmaps[pm];
1207
    pixmap_t *pmap = &pixmaps[pm];
1155
    viewport_t *vport = &viewports[vp];
1208
    viewport_t *vport = &viewports[vp];
1156
   
1209
   
1157
    unsigned int width = vport->width;
1210
    unsigned int width = vport->width;
1158
    unsigned int height = vport->height;
1211
    unsigned int height = vport->height;
1159
   
1212
   
1160
    if (width + vport->x > screen.xres)
1213
    if (width + vport->x > screen.xres)
1161
        width = screen.xres - vport->x;
1214
        width = screen.xres - vport->x;
1162
    if (height + vport->y > screen.yres)
1215
    if (height + vport->y > screen.yres)
1163
        height = screen.yres - vport->y;
1216
        height = screen.yres - vport->y;
1164
   
1217
   
1165
    if (!pmap->data)
1218
    if (!pmap->data)
1166
        return EINVAL;
1219
        return EINVAL;
1167
   
1220
   
1168
    unsigned int realwidth = pmap->width <= width ? pmap->width : width;
1221
    unsigned int realwidth = pmap->width <= width ? pmap->width : width;
1169
    unsigned int realheight = pmap->height <= height ? pmap->height : height;
1222
    unsigned int realheight = pmap->height <= height ? pmap->height : height;
1170
   
1223
   
1171
    unsigned int srcrowsize = vport->width * screen.pixelbytes;
1224
    unsigned int srcrowsize = vport->width * screen.pixelbytes;
1172
    unsigned int realrowsize = realwidth * screen.pixelbytes;
1225
    unsigned int realrowsize = realwidth * screen.pixelbytes;
1173
   
1226
   
1174
    unsigned int y;
1227
    unsigned int y;
1175
    for (y = 0; y < realheight; y++) {
1228
    for (y = 0; y < realheight; y++) {
1176
        unsigned int tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
1229
        unsigned int tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
1177
        memcpy(screen.fb_addr + tmp, pmap->data + y * srcrowsize, realrowsize);
1230
        memcpy(screen.fb_addr + tmp, pmap->data + y * srcrowsize, realrowsize);
1178
    }
1231
    }
1179
   
1232
   
1180
    return EOK;
1233
    return EOK;
1181
}
1234
}
1182
 
1235
 
1183
 
1236
 
1184
/** Tick animation one step forward
1237
/** Tick animation one step forward
1185
 *
1238
 *
1186
 */
1239
 */
1187
static void anims_tick(void)
1240
static void anims_tick(void)
1188
{
1241
{
1189
    unsigned int i;
1242
    unsigned int i;
1190
    static int counts = 0;
1243
    static int counts = 0;
1191
   
1244
   
1192
    /* Limit redrawing */
1245
    /* Limit redrawing */
1193
    counts = (counts + 1) % 8;
1246
    counts = (counts + 1) % 8;
1194
    if (counts)
1247
    if (counts)
1195
        return;
1248
        return;
1196
 
1249
   
1197
    for (i = 0; i < MAX_ANIMATIONS; i++) {
1250
    for (i = 0; i < MAX_ANIMATIONS; i++) {
1198
        if ((!animations[i].animlen) || (!animations[i].initialized) ||
1251
        if ((!animations[i].animlen) || (!animations[i].initialized) ||
1199
            (!animations[i].enabled))
1252
            (!animations[i].enabled))
1200
            continue;
1253
            continue;
1201
       
1254
       
1202
        draw_pixmap(animations[i].vp, animations[i].pixmaps[animations[i].pos]);
1255
        draw_pixmap(animations[i].vp, animations[i].pixmaps[animations[i].pos]);
1203
        animations[i].pos = (animations[i].pos + 1) % animations[i].animlen;
1256
        animations[i].pos = (animations[i].pos + 1) % animations[i].animlen;
1204
    }
1257
    }
1205
}
1258
}
1206
 
1259
 
1207
 
1260
 
1208
static unsigned int pointer_x;
1261
static unsigned int pointer_x;
1209
static unsigned int pointer_y;
1262
static unsigned int pointer_y;
1210
static bool pointer_shown, pointer_enabled;
1263
static bool pointer_shown, pointer_enabled;
1211
static int pointer_vport = -1;
1264
static int pointer_vport = -1;
1212
static int pointer_pixmap = -1;
1265
static int pointer_pixmap = -1;
1213
 
1266
 
1214
 
1267
 
1215
static void mouse_show(void)
1268
static void mouse_show(void)
1216
{
1269
{
1217
    int i, j;
1270
    int i, j;
1218
    int visibility;
1271
    int visibility;
1219
    int color;
1272
    int color;
1220
    int bytepos;
1273
    int bytepos;
1221
   
1274
   
1222
    if ((pointer_shown) || (!pointer_enabled))
1275
    if ((pointer_shown) || (!pointer_enabled))
1223
        return;
1276
        return;
1224
   
1277
   
1225
    /* Save image under the pointer. */
1278
    /* Save image under the pointer. */
1226
    if (pointer_vport == -1) {
1279
    if (pointer_vport == -1) {
1227
        pointer_vport = vport_create(pointer_x, pointer_y, pointer_width, pointer_height);
1280
        pointer_vport = vport_create(pointer_x, pointer_y, pointer_width, pointer_height);
1228
        if (pointer_vport < 0)
1281
        if (pointer_vport < 0)
1229
            return;
1282
            return;
1230
    } else {
1283
    } else {
1231
        viewports[pointer_vport].x = pointer_x;
1284
        viewports[pointer_vport].x = pointer_x;
1232
        viewports[pointer_vport].y = pointer_y;
1285
        viewports[pointer_vport].y = pointer_y;
1233
    }
1286
    }
1234
   
1287
   
1235
    if (pointer_pixmap == -1)
1288
    if (pointer_pixmap == -1)
1236
        pointer_pixmap = save_vp_to_pixmap(&viewports[pointer_vport]);
1289
        pointer_pixmap = save_vp_to_pixmap(&viewports[pointer_vport]);
1237
    else
1290
    else
1238
        copy_vp_to_pixmap(&viewports[pointer_vport], &pixmaps[pointer_pixmap]);
1291
        copy_vp_to_pixmap(&viewports[pointer_vport], &pixmaps[pointer_pixmap]);
1239
   
1292
   
1240
    /* Draw mouse pointer. */
1293
    /* Draw mouse pointer. */
1241
    for (i = 0; i < pointer_height; i++)
1294
    for (i = 0; i < pointer_height; i++)
1242
        for (j = 0; j < pointer_width; j++) {
1295
        for (j = 0; j < pointer_width; j++) {
1243
            bytepos = i * ((pointer_width - 1) / 8 + 1) + j / 8;
1296
            bytepos = i * ((pointer_width - 1) / 8 + 1) + j / 8;
1244
            visibility = pointer_mask_bits[bytepos] &
1297
            visibility = pointer_mask_bits[bytepos] &
1245
                (1 << (j % 8));
1298
                (1 << (j % 8));
1246
            if (visibility) {
1299
            if (visibility) {
1247
                color = pointer_bits[bytepos] &
1300
                color = pointer_bits[bytepos] &
1248
                    (1 << (j % 8)) ? 0 : 0xffffff;
1301
                    (1 << (j % 8)) ? 0 : 0xffffff;
1249
                if (pointer_x + j < screen.xres && pointer_y +
1302
                if (pointer_x + j < screen.xres && pointer_y +
1250
                    i < screen.yres)
1303
                    i < screen.yres)
1251
                    putpixel(&viewports[0], pointer_x + j,
1304
                    putpixel(&viewports[0], pointer_x + j,
1252
                        pointer_y + i, color);
1305
                        pointer_y + i, color);
1253
            }
1306
            }
1254
        }
1307
        }
1255
    pointer_shown = 1;
1308
    pointer_shown = 1;
1256
}
1309
}
1257
 
1310
 
1258
 
1311
 
1259
static void mouse_hide(void)
1312
static void mouse_hide(void)
1260
{
1313
{
1261
    /* Restore image under the pointer. */
1314
    /* Restore image under the pointer. */
1262
    if (pointer_shown) {
1315
    if (pointer_shown) {
1263
        draw_pixmap(pointer_vport, pointer_pixmap);
1316
        draw_pixmap(pointer_vport, pointer_pixmap);
1264
        pointer_shown = 0;
1317
        pointer_shown = 0;
1265
    }
1318
    }
1266
}
1319
}
1267
 
1320
 
1268
 
1321
 
1269
static void mouse_move(unsigned int x, unsigned int y)
1322
static void mouse_move(unsigned int x, unsigned int y)
1270
{
1323
{
1271
    mouse_hide();
1324
    mouse_hide();
1272
    pointer_x = x;
1325
    pointer_x = x;
1273
    pointer_y = y;
1326
    pointer_y = y;
1274
    mouse_show();
1327
    mouse_show();
1275
}
1328
}
1276
 
1329
 
1277
 
1330
 
1278
static int anim_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
1331
static int anim_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
1279
{
1332
{
1280
    bool handled = true;
1333
    bool handled = true;
1281
    int retval = EOK;
1334
    int retval = EOK;
1282
    int i, nvp;
1335
    int i, nvp;
1283
    int newval;
1336
    int newval;
1284
   
1337
   
1285
    switch (IPC_GET_METHOD(*call)) {
1338
    switch (IPC_GET_METHOD(*call)) {
1286
    case FB_ANIM_CREATE:
1339
    case FB_ANIM_CREATE:
1287
        nvp = IPC_GET_ARG1(*call);
1340
        nvp = IPC_GET_ARG1(*call);
1288
        if (nvp == -1)
1341
        if (nvp == -1)
1289
            nvp = vp;
1342
            nvp = vp;
1290
        if (nvp >= MAX_VIEWPORTS || nvp < 0 ||
1343
        if (nvp >= MAX_VIEWPORTS || nvp < 0 ||
1291
            !viewports[nvp].initialized) {
1344
            !viewports[nvp].initialized) {
1292
            retval = EINVAL;
1345
            retval = EINVAL;
1293
            break;
1346
            break;
1294
        }
1347
        }
1295
        for (i = 0; i < MAX_ANIMATIONS; i++) {
1348
        for (i = 0; i < MAX_ANIMATIONS; i++) {
1296
            if (!animations[i].initialized)
1349
            if (!animations[i].initialized)
1297
                break;
1350
                break;
1298
        }
1351
        }
1299
        if (i == MAX_ANIMATIONS) {
1352
        if (i == MAX_ANIMATIONS) {
1300
            retval = ELIMIT;
1353
            retval = ELIMIT;
1301
            break;
1354
            break;
1302
        }
1355
        }
1303
        animations[i].initialized = 1;
1356
        animations[i].initialized = 1;
1304
        animations[i].animlen = 0;
1357
        animations[i].animlen = 0;
1305
        animations[i].pos = 0;
1358
        animations[i].pos = 0;
1306
        animations[i].enabled = 0;
1359
        animations[i].enabled = 0;
1307
        animations[i].vp = nvp;
1360
        animations[i].vp = nvp;
1308
        retval = i;
1361
        retval = i;
1309
        break;
1362
        break;
1310
    case FB_ANIM_DROP:
1363
    case FB_ANIM_DROP:
1311
        i = IPC_GET_ARG1(*call);
1364
        i = IPC_GET_ARG1(*call);
1312
        if (i >= MAX_ANIMATIONS || i < 0) {
1365
        if (i >= MAX_ANIMATIONS || i < 0) {
1313
            retval = EINVAL;
1366
            retval = EINVAL;
1314
            break;
1367
            break;
1315
        }
1368
        }
1316
        animations[i].initialized = 0;
1369
        animations[i].initialized = 0;
1317
        break;
1370
        break;
1318
    case FB_ANIM_ADDPIXMAP:
1371
    case FB_ANIM_ADDPIXMAP:
1319
        i = IPC_GET_ARG1(*call);
1372
        i = IPC_GET_ARG1(*call);
1320
        if (i >= MAX_ANIMATIONS || i < 0 ||
1373
        if (i >= MAX_ANIMATIONS || i < 0 ||
1321
            !animations[i].initialized) {
1374
            !animations[i].initialized) {
1322
            retval = EINVAL;
1375
            retval = EINVAL;
1323
            break;
1376
            break;
1324
        }
1377
        }
1325
        if (animations[i].animlen == MAX_ANIM_LEN) {
1378
        if (animations[i].animlen == MAX_ANIM_LEN) {
1326
            retval = ELIMIT;
1379
            retval = ELIMIT;
1327
            break;
1380
            break;
1328
        }
1381
        }
1329
        newval = IPC_GET_ARG2(*call);
1382
        newval = IPC_GET_ARG2(*call);
1330
        if (newval < 0 || newval > MAX_PIXMAPS ||
1383
        if (newval < 0 || newval > MAX_PIXMAPS ||
1331
            !pixmaps[newval].data) {
1384
            !pixmaps[newval].data) {
1332
            retval = EINVAL;
1385
            retval = EINVAL;
1333
            break;
1386
            break;
1334
        }
1387
        }
1335
        animations[i].pixmaps[animations[i].animlen++] = newval;
1388
        animations[i].pixmaps[animations[i].animlen++] = newval;
1336
        break;
1389
        break;
1337
    case FB_ANIM_CHGVP:
1390
    case FB_ANIM_CHGVP:
1338
        i = IPC_GET_ARG1(*call);
1391
        i = IPC_GET_ARG1(*call);
1339
        if (i >= MAX_ANIMATIONS || i < 0) {
1392
        if (i >= MAX_ANIMATIONS || i < 0) {
1340
            retval = EINVAL;
1393
            retval = EINVAL;
1341
            break;
1394
            break;
1342
        }
1395
        }
1343
        nvp = IPC_GET_ARG2(*call);
1396
        nvp = IPC_GET_ARG2(*call);
1344
        if (nvp == -1)
1397
        if (nvp == -1)
1345
            nvp = vp;
1398
            nvp = vp;
1346
        if (nvp >= MAX_VIEWPORTS || nvp < 0 ||
1399
        if (nvp >= MAX_VIEWPORTS || nvp < 0 ||
1347
            !viewports[nvp].initialized) {
1400
            !viewports[nvp].initialized) {
1348
            retval = EINVAL;
1401
            retval = EINVAL;
1349
            break;
1402
            break;
1350
        }
1403
        }
1351
        animations[i].vp = nvp;
1404
        animations[i].vp = nvp;
1352
        break;
1405
        break;
1353
    case FB_ANIM_START:
1406
    case FB_ANIM_START:
1354
    case FB_ANIM_STOP:
1407
    case FB_ANIM_STOP:
1355
        i = IPC_GET_ARG1(*call);
1408
        i = IPC_GET_ARG1(*call);
1356
        if (i >= MAX_ANIMATIONS || i < 0) {
1409
        if (i >= MAX_ANIMATIONS || i < 0) {
1357
            retval = EINVAL;
1410
            retval = EINVAL;
1358
            break;
1411
            break;
1359
        }
1412
        }
1360
        newval = (IPC_GET_METHOD(*call) == FB_ANIM_START);
1413
        newval = (IPC_GET_METHOD(*call) == FB_ANIM_START);
1361
        if (newval ^ animations[i].enabled) {
1414
        if (newval ^ animations[i].enabled) {
1362
            animations[i].enabled = newval;
1415
            animations[i].enabled = newval;
1363
            anims_enabled += newval ? 1 : -1;
1416
            anims_enabled += newval ? 1 : -1;
1364
        }
1417
        }
1365
        break;
1418
        break;
1366
    default:
1419
    default:
1367
        handled = 0;
1420
        handled = 0;
1368
    }
1421
    }
1369
    if (handled)
1422
    if (handled)
1370
        ipc_answer_0(callid, retval);
1423
        ipc_answer_0(callid, retval);
1371
    return handled;
1424
    return handled;
1372
}
1425
}
1373
 
1426
 
1374
 
1427
 
1375
/** Handler for messages concerning pixmap handling
1428
/** Handler for messages concerning pixmap handling
1376
 *
1429
 *
1377
 */
1430
 */
1378
static int pixmap_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
1431
static int pixmap_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
1379
{
1432
{
1380
    bool handled = true;
1433
    bool handled = true;
1381
    int retval = EOK;
1434
    int retval = EOK;
1382
    int i, nvp;
1435
    int i, nvp;
1383
   
1436
   
1384
    switch (IPC_GET_METHOD(*call)) {
1437
    switch (IPC_GET_METHOD(*call)) {
1385
    case FB_VP_DRAW_PIXMAP:
1438
    case FB_VP_DRAW_PIXMAP:
1386
        nvp = IPC_GET_ARG1(*call);
1439
        nvp = IPC_GET_ARG1(*call);
1387
        if (nvp == -1)
1440
        if (nvp == -1)
1388
            nvp = vp;
1441
            nvp = vp;
1389
        if (nvp < 0 || nvp >= MAX_VIEWPORTS ||
1442
        if (nvp < 0 || nvp >= MAX_VIEWPORTS ||
1390
            !viewports[nvp].initialized) {
1443
            !viewports[nvp].initialized) {
1391
            retval = EINVAL;
1444
            retval = EINVAL;
1392
            break;
1445
            break;
1393
        }
1446
        }
1394
        i = IPC_GET_ARG2(*call);
1447
        i = IPC_GET_ARG2(*call);
1395
        retval = draw_pixmap(nvp, i);
1448
        retval = draw_pixmap(nvp, i);
1396
        break;
1449
        break;
1397
    case FB_VP2PIXMAP:
1450
    case FB_VP2PIXMAP:
1398
        nvp = IPC_GET_ARG1(*call);
1451
        nvp = IPC_GET_ARG1(*call);
1399
        if (nvp == -1)
1452
        if (nvp == -1)
1400
            nvp = vp;
1453
            nvp = vp;
1401
        if (nvp < 0 || nvp >= MAX_VIEWPORTS ||
1454
        if (nvp < 0 || nvp >= MAX_VIEWPORTS ||
1402
            !viewports[nvp].initialized)
1455
            !viewports[nvp].initialized)
1403
            retval = EINVAL;
1456
            retval = EINVAL;
1404
        else
1457
        else
1405
            retval = save_vp_to_pixmap(&viewports[nvp]);
1458
            retval = save_vp_to_pixmap(&viewports[nvp]);
1406
        break;
1459
        break;
1407
    case FB_DROP_PIXMAP:
1460
    case FB_DROP_PIXMAP:
1408
        i = IPC_GET_ARG1(*call);
1461
        i = IPC_GET_ARG1(*call);
1409
        if (i >= MAX_PIXMAPS) {
1462
        if (i >= MAX_PIXMAPS) {
1410
            retval = EINVAL;
1463
            retval = EINVAL;
1411
            break;
1464
            break;
1412
        }
1465
        }
1413
        if (pixmaps[i].data) {
1466
        if (pixmaps[i].data) {
1414
            free(pixmaps[i].data);
1467
            free(pixmaps[i].data);
1415
            pixmaps[i].data = NULL;
1468
            pixmaps[i].data = NULL;
1416
        }
1469
        }
1417
        break;
1470
        break;
1418
    default:
1471
    default:
1419
        handled = 0;
1472
        handled = 0;
1420
    }
1473
    }
1421
   
1474
   
1422
    if (handled)
1475
    if (handled)
1423
        ipc_answer_0(callid, retval);
1476
        ipc_answer_0(callid, retval);
1424
    return handled;
1477
    return handled;
1425
   
1478
   
1426
}
1479
}
1427
 
1480
 
1428
static int rgb_from_style(attr_rgb_t *rgb, int style)
1481
static int rgb_from_style(attr_rgb_t *rgb, int style)
1429
{
1482
{
1430
    switch (style) {
1483
    switch (style) {
1431
    case STYLE_NORMAL:
1484
    case STYLE_NORMAL:
1432
        rgb->fg_color = color_table[COLOR_BLACK];
1485
        rgb->fg_color = color_table[COLOR_BLACK];
1433
        rgb->bg_color = color_table[COLOR_WHITE];
1486
        rgb->bg_color = color_table[COLOR_WHITE];
1434
        break;
1487
        break;
1435
    case STYLE_EMPHASIS:
1488
    case STYLE_EMPHASIS:
1436
        rgb->fg_color = color_table[COLOR_RED];
1489
        rgb->fg_color = color_table[COLOR_RED];
1437
        rgb->bg_color = color_table[COLOR_WHITE];
1490
        rgb->bg_color = color_table[COLOR_WHITE];
1438
        break;
1491
        break;
1439
    default:
1492
    default:
1440
        return EINVAL;
1493
        return EINVAL;
1441
    }
1494
    }
1442
 
1495
 
1443
    return EOK;
1496
    return EOK;
1444
}
1497
}
1445
 
1498
 
1446
static int rgb_from_idx(attr_rgb_t *rgb, ipcarg_t fg_color,
1499
static int rgb_from_idx(attr_rgb_t *rgb, ipcarg_t fg_color,
1447
    ipcarg_t bg_color, ipcarg_t flags)
1500
    ipcarg_t bg_color, ipcarg_t flags)
1448
{
1501
{
1449
    fg_color = (fg_color & 7) | ((flags & CATTR_BRIGHT) ? 8 : 0);
1502
    fg_color = (fg_color & 7) | ((flags & CATTR_BRIGHT) ? 8 : 0);
1450
    bg_color = (bg_color & 7) | ((flags & CATTR_BRIGHT) ? 8 : 0);
1503
    bg_color = (bg_color & 7) | ((flags & CATTR_BRIGHT) ? 8 : 0);
1451
 
1504
 
1452
    rgb->fg_color = color_table[fg_color];
1505
    rgb->fg_color = color_table[fg_color];
1453
    rgb->bg_color = color_table[bg_color];
1506
    rgb->bg_color = color_table[bg_color];
1454
 
1507
 
1455
    return EOK;
1508
    return EOK;
1456
}
1509
}
1457
 
1510
 
1458
static int rgb_from_attr(attr_rgb_t *rgb, const attrs_t *a)
1511
static int rgb_from_attr(attr_rgb_t *rgb, const attrs_t *a)
1459
{
1512
{
1460
    int rc;
1513
    int rc;
1461
 
1514
 
1462
    switch (a->t) {
1515
    switch (a->t) {
1463
    case at_style:
1516
    case at_style:
1464
        rc = rgb_from_style(rgb, a->a.s.style);
1517
        rc = rgb_from_style(rgb, a->a.s.style);
1465
        break;
1518
        break;
1466
    case at_idx:
1519
    case at_idx:
1467
        rc = rgb_from_idx(rgb, a->a.i.fg_color,
1520
        rc = rgb_from_idx(rgb, a->a.i.fg_color,
1468
            a->a.i.bg_color, a->a.i.flags);
1521
            a->a.i.bg_color, a->a.i.flags);
1469
        break;
1522
        break;
1470
    case at_rgb:
1523
    case at_rgb:
1471
        *rgb = a->a.r;
1524
        *rgb = a->a.r;
1472
        rc = EOK;
1525
        rc = EOK;
1473
        break;
1526
        break;
1474
    }
1527
    }
1475
 
1528
 
1476
    return rc;
1529
    return rc;
1477
}
1530
}
1478
 
1531
 
1479
static int fb_set_style(viewport_t *vport, ipcarg_t style)
1532
static int fb_set_style(viewport_t *vport, ipcarg_t style)
1480
{
1533
{
1481
    return rgb_from_style(&vport->attr, (int) style);
1534
    return rgb_from_style(&vport->attr, (int) style);
1482
}
1535
}
1483
 
1536
 
1484
static int fb_set_color(viewport_t *vport, ipcarg_t fg_color,
1537
static int fb_set_color(viewport_t *vport, ipcarg_t fg_color,
1485
    ipcarg_t bg_color, ipcarg_t flags)
1538
    ipcarg_t bg_color, ipcarg_t flags)
1486
{
1539
{
1487
    return rgb_from_idx(&vport->attr, fg_color, bg_color, flags);
1540
    return rgb_from_idx(&vport->attr, fg_color, bg_color, flags);
1488
}
1541
}
1489
 
1542
 
1490
/** Function for handling connections to FB
1543
/** Function for handling connections to FB
1491
 *
1544
 *
1492
 */
1545
 */
1493
static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall)
1546
static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall)
1494
{
1547
{
1495
    unsigned int vp = 0;
1548
    unsigned int vp = 0;
1496
    viewport_t *vport = &viewports[vp];
1549
    viewport_t *vport = &viewports[vp];
1497
   
1550
   
1498
    if (client_connected) {
1551
    if (client_connected) {
1499
        ipc_answer_0(iid, ELIMIT);
1552
        ipc_answer_0(iid, ELIMIT);
1500
        return;
1553
        return;
1501
    }
1554
    }
1502
   
1555
   
1503
    /* Accept connection */
1556
    /* Accept connection */
1504
    client_connected = true;
1557
    client_connected = true;
1505
    ipc_answer_0(iid, EOK);
1558
    ipc_answer_0(iid, EOK);
1506
   
1559
   
1507
    while (true) {
1560
    while (true) {
1508
        ipc_callid_t callid;
1561
        ipc_callid_t callid;
1509
        ipc_call_t call;
1562
        ipc_call_t call;
1510
        int retval;
1563
        int retval;
1511
        unsigned int i;
1564
        unsigned int i;
1512
        int scroll;
1565
        int scroll;
1513
        uint8_t glyph;
1566
        wchar_t ch;
1514
        unsigned int row, col;
1567
        unsigned int row, col;
1515
       
1568
       
1516
        if ((vport->cursor_active) || (anims_enabled))
1569
        if ((vport->cursor_active) || (anims_enabled))
1517
            callid = async_get_call_timeout(&call, 250000);
1570
            callid = async_get_call_timeout(&call, 250000);
1518
        else
1571
        else
1519
            callid = async_get_call(&call);
1572
            callid = async_get_call(&call);
1520
       
1573
       
1521
        mouse_hide();
1574
        mouse_hide();
1522
        if (!callid) {
1575
        if (!callid) {
1523
            cursor_blink(vport);
1576
            cursor_blink(vport);
1524
            anims_tick();
1577
            anims_tick();
1525
            mouse_show();
1578
            mouse_show();
1526
            continue;
1579
            continue;
1527
        }
1580
        }
1528
       
1581
       
1529
        if (shm_handle(callid, &call, vp))
1582
        if (shm_handle(callid, &call, vp))
1530
            continue;
1583
            continue;
1531
       
1584
       
1532
        if (pixmap_handle(callid, &call, vp))
1585
        if (pixmap_handle(callid, &call, vp))
1533
            continue;
1586
            continue;
1534
       
1587
       
1535
        if (anim_handle(callid, &call, vp))
1588
        if (anim_handle(callid, &call, vp))
1536
            continue;
1589
            continue;
1537
       
1590
       
1538
        switch (IPC_GET_METHOD(call)) {
1591
        switch (IPC_GET_METHOD(call)) {
1539
        case IPC_M_PHONE_HUNGUP:
1592
        case IPC_M_PHONE_HUNGUP:
1540
            client_connected = false;
1593
            client_connected = false;
1541
           
1594
           
1542
            /* Cleanup other viewports */
1595
            /* Cleanup other viewports */
1543
            for (i = 1; i < MAX_VIEWPORTS; i++)
1596
            for (i = 1; i < MAX_VIEWPORTS; i++)
1544
                vport->initialized = false;
1597
                vport->initialized = false;
1545
           
1598
           
1546
            /* Exit thread */
1599
            /* Exit thread */
1547
            return;
1600
            return;
1548
       
1601
       
1549
        case FB_PUTCHAR:
1602
        case FB_PUTCHAR:
1550
            glyph = IPC_GET_ARG1(call);
1603
            ch = IPC_GET_ARG1(call);
1551
            row = IPC_GET_ARG2(call);
1604
            row = IPC_GET_ARG2(call);
1552
            col = IPC_GET_ARG3(call);
1605
            col = IPC_GET_ARG3(call);
1553
           
1606
           
1554
            if ((col >= vport->cols) || (row >= vport->rows)) {
1607
            if ((col >= vport->cols) || (row >= vport->rows)) {
1555
                retval = EINVAL;
1608
                retval = EINVAL;
1556
                break;
1609
                break;
1557
            }
1610
            }
1558
            ipc_answer_0(callid, EOK);
1611
            ipc_answer_0(callid, EOK);
1559
           
1612
           
1560
            draw_char(vport, glyph, col, row);
1613
            draw_char(vport, ch, col, row);
1561
           
1614
           
1562
            /* Message already answered */
1615
            /* Message already answered */
1563
            continue;
1616
            continue;
1564
        case FB_CLEAR:
1617
        case FB_CLEAR:
1565
            vport_clear(vport);
1618
            vport_clear(vport);
1566
            cursor_show(vport);
1619
            cursor_show(vport);
1567
            retval = EOK;
1620
            retval = EOK;
1568
            break;
1621
            break;
1569
        case FB_CURSOR_GOTO:
1622
        case FB_CURSOR_GOTO:
1570
            row = IPC_GET_ARG1(call);
1623
            row = IPC_GET_ARG1(call);
1571
            col = IPC_GET_ARG2(call);
1624
            col = IPC_GET_ARG2(call);
1572
           
1625
           
1573
            if ((col >= vport->cols) || (row >= vport->rows)) {
1626
            if ((col >= vport->cols) || (row >= vport->rows)) {
1574
                retval = EINVAL;
1627
                retval = EINVAL;
1575
                break;
1628
                break;
1576
            }
1629
            }
1577
            retval = EOK;
1630
            retval = EOK;
1578
           
1631
           
1579
            cursor_hide(vport);
1632
            cursor_hide(vport);
1580
            vport->cur_col = col;
1633
            vport->cur_col = col;
1581
            vport->cur_row = row;
1634
            vport->cur_row = row;
1582
            cursor_show(vport);
1635
            cursor_show(vport);
1583
            break;
1636
            break;
1584
        case FB_CURSOR_VISIBILITY:
1637
        case FB_CURSOR_VISIBILITY:
1585
            cursor_hide(vport);
1638
            cursor_hide(vport);
1586
            vport->cursor_active = IPC_GET_ARG1(call);
1639
            vport->cursor_active = IPC_GET_ARG1(call);
1587
            cursor_show(vport);
1640
            cursor_show(vport);
1588
            retval = EOK;
1641
            retval = EOK;
1589
            break;
1642
            break;
1590
        case FB_GET_CSIZE:
1643
        case FB_GET_CSIZE:
1591
            ipc_answer_2(callid, EOK, vport->rows, vport->cols);
1644
            ipc_answer_2(callid, EOK, vport->rows, vport->cols);
1592
            continue;
1645
            continue;
1593
        case FB_SCROLL:
1646
        case FB_SCROLL:
1594
            scroll = IPC_GET_ARG1(call);
1647
            scroll = IPC_GET_ARG1(call);
1595
            if ((scroll > (int) vport->rows) || (scroll < (-(int) vport->rows))) {
1648
            if ((scroll > (int) vport->rows) || (scroll < (-(int) vport->rows))) {
1596
                retval = EINVAL;
1649
                retval = EINVAL;
1597
                break;
1650
                break;
1598
            }
1651
            }
1599
            cursor_hide(vport);
1652
            cursor_hide(vport);
1600
            vport_scroll(vport, scroll);
1653
            vport_scroll(vport, scroll);
1601
            cursor_show(vport);
1654
            cursor_show(vport);
1602
            retval = EOK;
1655
            retval = EOK;
1603
            break;
1656
            break;
1604
        case FB_VIEWPORT_SWITCH:
1657
        case FB_VIEWPORT_SWITCH:
1605
            i = IPC_GET_ARG1(call);
1658
            i = IPC_GET_ARG1(call);
1606
            if (i >= MAX_VIEWPORTS) {
1659
            if (i >= MAX_VIEWPORTS) {
1607
                retval = EINVAL;
1660
                retval = EINVAL;
1608
                break;
1661
                break;
1609
            }
1662
            }
1610
            if (!viewports[i].initialized) {
1663
            if (!viewports[i].initialized) {
1611
                retval = EADDRNOTAVAIL;
1664
                retval = EADDRNOTAVAIL;
1612
                break;
1665
                break;
1613
            }
1666
            }
1614
            cursor_hide(vport);
1667
            cursor_hide(vport);
1615
            vp = i;
1668
            vp = i;
1616
            vport = &viewports[vp];
1669
            vport = &viewports[vp];
1617
            cursor_show(vport);
1670
            cursor_show(vport);
1618
            retval = EOK;
1671
            retval = EOK;
1619
            break;
1672
            break;
1620
        case FB_VIEWPORT_CREATE:
1673
        case FB_VIEWPORT_CREATE:
1621
            retval = vport_create(IPC_GET_ARG1(call) >> 16,
1674
            retval = vport_create(IPC_GET_ARG1(call) >> 16,
1622
                IPC_GET_ARG1(call) & 0xffff,
1675
                IPC_GET_ARG1(call) & 0xffff,
1623
                IPC_GET_ARG2(call) >> 16,
1676
                IPC_GET_ARG2(call) >> 16,
1624
                IPC_GET_ARG2(call) & 0xffff);
1677
                IPC_GET_ARG2(call) & 0xffff);
1625
            break;
1678
            break;
1626
        case FB_VIEWPORT_DELETE:
1679
        case FB_VIEWPORT_DELETE:
1627
            i = IPC_GET_ARG1(call);
1680
            i = IPC_GET_ARG1(call);
1628
            if (i >= MAX_VIEWPORTS) {
1681
            if (i >= MAX_VIEWPORTS) {
1629
                retval = EINVAL;
1682
                retval = EINVAL;
1630
                break;
1683
                break;
1631
            }
1684
            }
1632
            if (!viewports[i].initialized) {
1685
            if (!viewports[i].initialized) {
1633
                retval = EADDRNOTAVAIL;
1686
                retval = EADDRNOTAVAIL;
1634
                break;
1687
                break;
1635
            }
1688
            }
1636
            viewports[i].initialized = false;
1689
            viewports[i].initialized = false;
1637
            if (viewports[i].glyphs)
-
 
1638
                free(viewports[i].glyphs);
-
 
1639
            if (viewports[i].bgpixel)
1690
            if (viewports[i].bgpixel)
1640
                free(viewports[i].bgpixel);
1691
                free(viewports[i].bgpixel);
1641
            if (viewports[i].backbuf)
1692
            if (viewports[i].backbuf)
1642
                free(viewports[i].backbuf);
1693
                free(viewports[i].backbuf);
1643
            retval = EOK;
1694
            retval = EOK;
1644
            break;
1695
            break;
1645
        case FB_SET_STYLE:
1696
        case FB_SET_STYLE:
1646
            retval = fb_set_style(vport, IPC_GET_ARG1(call));
1697
            retval = fb_set_style(vport, IPC_GET_ARG1(call));
1647
            break;
1698
            break;
1648
        case FB_SET_COLOR:
1699
        case FB_SET_COLOR:
1649
            retval = fb_set_color(vport, IPC_GET_ARG1(call),
1700
            retval = fb_set_color(vport, IPC_GET_ARG1(call),
1650
                IPC_GET_ARG2(call), IPC_GET_ARG3(call));
1701
                IPC_GET_ARG2(call), IPC_GET_ARG3(call));
1651
            break;
1702
            break;
1652
        case FB_SET_RGB_COLOR:
1703
        case FB_SET_RGB_COLOR:
1653
            vport->attr.fg_color = IPC_GET_ARG1(call);
1704
            vport->attr.fg_color = IPC_GET_ARG1(call);
1654
            vport->attr.bg_color = IPC_GET_ARG2(call);
1705
            vport->attr.bg_color = IPC_GET_ARG2(call);
1655
            retval = EOK;
1706
            retval = EOK;
1656
            break;
1707
            break;
1657
        case FB_GET_RESOLUTION:
1708
        case FB_GET_RESOLUTION:
1658
            ipc_answer_2(callid, EOK, screen.xres, screen.yres);
1709
            ipc_answer_2(callid, EOK, screen.xres, screen.yres);
1659
            continue;
1710
            continue;
1660
        case FB_POINTER_MOVE:
1711
        case FB_POINTER_MOVE:
1661
            pointer_enabled = true;
1712
            pointer_enabled = true;
1662
            mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
1713
            mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
1663
            retval = EOK;
1714
            retval = EOK;
-
 
1715
            break;
-
 
1716
        case FB_SCREEN_YIELD:
-
 
1717
        case FB_SCREEN_RECLAIM:
-
 
1718
            retval = EOK;
1664
            break;
1719
            break;
1665
        default:
1720
        default:
1666
            retval = ENOENT;
1721
            retval = ENOENT;
1667
        }
1722
        }
1668
        ipc_answer_0(callid, retval);
1723
        ipc_answer_0(callid, retval);
1669
    }
1724
    }
1670
}
1725
}
1671
 
1726
 
1672
/** Initialization of framebuffer
1727
/** Initialization of framebuffer
1673
 *
1728
 *
1674
 */
1729
 */
1675
int fb_init(void)
1730
int fb_init(void)
1676
{
1731
{
1677
    async_set_client_connection(fb_client_connection);
1732
    async_set_client_connection(fb_client_connection);
1678
   
1733
   
1679
    void *fb_ph_addr = (void *) sysinfo_value("fb.address.physical");
1734
    void *fb_ph_addr = (void *) sysinfo_value("fb.address.physical");
1680
    unsigned int fb_offset = sysinfo_value("fb.offset");
1735
    unsigned int fb_offset = sysinfo_value("fb.offset");
1681
    unsigned int fb_width = sysinfo_value("fb.width");
1736
    unsigned int fb_width = sysinfo_value("fb.width");
1682
    unsigned int fb_height = sysinfo_value("fb.height");
1737
    unsigned int fb_height = sysinfo_value("fb.height");
1683
    unsigned int fb_scanline = sysinfo_value("fb.scanline");
1738
    unsigned int fb_scanline = sysinfo_value("fb.scanline");
1684
    unsigned int fb_visual = sysinfo_value("fb.visual");
1739
    unsigned int fb_visual = sysinfo_value("fb.visual");
1685
   
1740
   
1686
    unsigned int fbsize = fb_scanline * fb_height;
1741
    unsigned int fbsize = fb_scanline * fb_height;
1687
    void *fb_addr = as_get_mappable_page(fbsize);
1742
    void *fb_addr = as_get_mappable_page(fbsize);
1688
   
1743
   
1689
    if (physmem_map(fb_ph_addr + fb_offset, fb_addr,
1744
    if (physmem_map(fb_ph_addr + fb_offset, fb_addr,
1690
        ALIGN_UP(fbsize, PAGE_SIZE) >> PAGE_WIDTH, AS_AREA_READ | AS_AREA_WRITE) != 0)
1745
        ALIGN_UP(fbsize, PAGE_SIZE) >> PAGE_WIDTH, AS_AREA_READ | AS_AREA_WRITE) != 0)
1691
        return -1;
1746
        return -1;
1692
   
1747
   
1693
    if (screen_init(fb_addr, fb_width, fb_height, fb_scanline, fb_visual))
1748
    if (screen_init(fb_addr, fb_width, fb_height, fb_scanline, fb_visual))
1694
        return 0;
1749
        return 0;
1695
   
1750
   
1696
    return -1;
1751
    return -1;
1697
}
1752
}
1698
 
1753
 
1699
/**
1754
/**
1700
 * @}
1755
 * @}
1701
 */
1756
 */
1702
 
1757