Subversion Repositories HelenOS

Rev

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

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