Subversion Repositories HelenOS

Rev

Rev 1965 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1965 Rev 1968
1
/*
1
/*
2
 * Copyright (C) 2006 Ondrej Palkovsky
2
 * Copyright (C) 2006 Ondrej Palkovsky
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup console
29
/** @addtogroup console
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#include <ipc/fb.h>
35
#include <ipc/fb.h>
36
#include <ipc/ipc.h>
36
#include <ipc/ipc.h>
37
#include <async.h>
37
#include <async.h>
38
#include <stdio.h>
38
#include <stdio.h>
39
#include <sys/mman.h>
39
#include <sys/mman.h>
40
#include <string.h>
40
#include <string.h>
41
#include <align.h>
41
#include <align.h>
42
 
42
 
43
#include "console.h"
43
#include "console.h"
44
#include "gcons.h"
44
#include "gcons.h"
45
 
45
 
46
#define CONSOLE_TOP      66
46
#define CONSOLE_TOP      66
47
#define CONSOLE_MARGIN   6
47
#define CONSOLE_MARGIN   6
48
 
48
 
49
#define STATUS_START    110
49
#define STATUS_START    110
50
#define STATUS_TOP      8
50
#define STATUS_TOP      8
51
#define STATUS_SPACE    4
51
#define STATUS_SPACE    4
52
#define STATUS_WIDTH    48
52
#define STATUS_WIDTH    48
53
#define STATUS_HEIGHT   48
53
#define STATUS_HEIGHT   48
54
 
54
 
55
#define MAIN_COLOR      0xffffff
55
#define MAIN_COLOR      0xffffff
56
 
56
 
57
static int use_gcons = 0;
57
static int use_gcons = 0;
58
static ipcarg_t xres,yres;
58
static ipcarg_t xres,yres;
59
 
59
 
60
enum butstate {
60
enum butstate {
61
    CONS_DISCONNECTED = 0,
61
    CONS_DISCONNECTED = 0,
62
    CONS_SELECTED,
62
    CONS_SELECTED,
63
    CONS_IDLE,
63
    CONS_IDLE,
64
    CONS_HAS_DATA,
64
    CONS_HAS_DATA,
65
    CONS_KERNEL,
65
    CONS_KERNEL,
66
    CONS_DISCONNECTED_SEL,
66
    CONS_DISCONNECTED_SEL,
67
    CONS_LAST
67
    CONS_LAST
68
};
68
};
69
 
69
 
70
static int console_vp;
70
static int console_vp;
71
static int cstatus_vp[CONSOLE_COUNT];
71
static int cstatus_vp[CONSOLE_COUNT];
72
static int cstat_row, cstat_col; /* Size of cstatus buttons */
72
static int cstat_row, cstat_col; /* Size of cstatus buttons */
73
static enum butstate console_state[CONSOLE_COUNT];
73
static enum butstate console_state[CONSOLE_COUNT];
74
 
74
 
75
static int fbphone;
75
static int fbphone;
76
 
76
 
77
/** List of pixmaps identifying these icons */
77
/** List of pixmaps identifying these icons */
78
static int ic_pixmaps[CONS_LAST] = {-1,-1,-1,-1,-1,-1};
78
static int ic_pixmaps[CONS_LAST] = {-1,-1,-1,-1,-1,-1};
79
static int animation = -1;
79
static int animation = -1;
80
 
80
 
81
static int active_console = 0;
81
static int active_console = 0;
82
 
82
 
83
static void vp_switch(int vp)
83
static void vp_switch(int vp)
84
{
84
{
85
    async_msg(fbphone,FB_VIEWPORT_SWITCH, vp);
85
    async_msg(fbphone,FB_VIEWPORT_SWITCH, vp);
86
}
86
}
87
 
87
 
88
/** Create view port */
88
/** Create view port */
89
static int vp_create(unsigned int x, unsigned int y,
89
static int vp_create(unsigned int x, unsigned int y,
90
             unsigned int width, unsigned int height)
90
             unsigned int width, unsigned int height)
91
{
91
{
92
    return async_req_2(fbphone, FB_VIEWPORT_CREATE,
92
    return async_req_2(fbphone, FB_VIEWPORT_CREATE,
93
               (x << 16) | y, (width << 16) | height,
93
               (x << 16) | y, (width << 16) | height,
94
               NULL, NULL);
94
               NULL, NULL);
95
}
95
}
96
 
96
 
97
static void clear(void)
97
static void clear(void)
98
{
98
{
99
    async_msg(fbphone, FB_CLEAR, 0);
99
    async_msg(fbphone, FB_CLEAR, 0);
100
   
100
   
101
}
101
}
102
 
102
 
103
static void set_style(int fgcolor, int bgcolor)
103
static void set_style(int fgcolor, int bgcolor)
104
{
104
{
105
    async_msg_2(fbphone, FB_SET_STYLE, fgcolor, bgcolor);
105
    async_msg_2(fbphone, FB_SET_STYLE, fgcolor, bgcolor);
106
}
106
}
107
 
107
 
108
/** Transparent putchar */
108
/** Transparent putchar */
109
static void tran_putch(char c, int row, int col)
109
static void tran_putch(char c, int row, int col)
110
{
110
{
111
    async_msg_3(fbphone, FB_TRANS_PUTCHAR, c, row, col);
111
    async_msg_3(fbphone, FB_TRANS_PUTCHAR, c, row, col);
112
}
112
}
113
 
113
 
114
/** Redraw the button showing state of a given console */
114
/** Redraw the button showing state of a given console */
115
static void redraw_state(int consnum)
115
static void redraw_state(int consnum)
116
{
116
{
117
    char data[5];
117
    char data[5];
118
    int i;
118
    int i;
119
    enum butstate state = console_state[consnum];
119
    enum butstate state = console_state[consnum];
120
 
120
 
121
    vp_switch(cstatus_vp[consnum]);
121
    vp_switch(cstatus_vp[consnum]);
122
    if (ic_pixmaps[state] != -1)
122
    if (ic_pixmaps[state] != -1)
123
        async_msg_2(fbphone, FB_VP_DRAW_PIXMAP, cstatus_vp[consnum], ic_pixmaps[state]);
123
        async_msg_2(fbphone, FB_VP_DRAW_PIXMAP, cstatus_vp[consnum], ic_pixmaps[state]);
124
 
124
 
125
    if (state != CONS_DISCONNECTED && state != CONS_KERNEL && state != CONS_DISCONNECTED_SEL) {
125
    if (state != CONS_DISCONNECTED && state != CONS_KERNEL && state != CONS_DISCONNECTED_SEL) {
126
        snprintf(data, 5, "%d", consnum+1);
126
        snprintf(data, 5, "%d", consnum+1);
127
        for (i=0;data[i];i++)
127
        for (i=0;data[i];i++)
128
            tran_putch(data[i], 1, 2+i);
128
            tran_putch(data[i], 1, 2+i);
129
    }
129
    }
130
}
130
}
131
 
131
 
132
/** Notification run on changing console (except kernel console) */
132
/** Notification run on changing console (except kernel console) */
133
void gcons_change_console(int consnum)
133
void gcons_change_console(int consnum)
134
{
134
{
135
    int i;
135
    int i;
136
 
136
 
137
    if (!use_gcons)
137
    if (!use_gcons)
138
        return;
138
        return;
139
 
139
 
140
    if (active_console == KERNEL_CONSOLE) {
140
    if (active_console == KERNEL_CONSOLE) {
141
        for (i=0; i < CONSOLE_COUNT; i++)
141
        for (i=0; i < CONSOLE_COUNT; i++)
142
            redraw_state(i);
142
            redraw_state(i);
143
        if (animation != -1)
143
        if (animation != -1)
144
            async_msg(fbphone, FB_ANIM_START, animation);
144
            async_msg(fbphone, FB_ANIM_START, animation);
145
    } else {
145
    } else {
146
        if (console_state[active_console] == CONS_DISCONNECTED_SEL)
146
        if (console_state[active_console] == CONS_DISCONNECTED_SEL)
147
            console_state[active_console] = CONS_DISCONNECTED;
147
            console_state[active_console] = CONS_DISCONNECTED;
148
        else
148
        else
149
            console_state[active_console] = CONS_IDLE;
149
            console_state[active_console] = CONS_IDLE;
150
        redraw_state(active_console);
150
        redraw_state(active_console);
151
    }
151
    }
152
    active_console = consnum;
152
    active_console = consnum;
153
 
153
 
154
    if (console_state[consnum] == CONS_DISCONNECTED) {
154
    if (console_state[consnum] == CONS_DISCONNECTED) {
155
        console_state[consnum] = CONS_DISCONNECTED_SEL;
155
        console_state[consnum] = CONS_DISCONNECTED_SEL;
156
        redraw_state(consnum);
156
        redraw_state(consnum);
157
    } else
157
    } else
158
        console_state[consnum] = CONS_SELECTED;
158
        console_state[consnum] = CONS_SELECTED;
159
    redraw_state(consnum);
159
    redraw_state(consnum);
160
 
160
 
161
    vp_switch(console_vp);
161
    vp_switch(console_vp);
162
}
162
}
163
 
163
 
164
/** Notification function that gets called on new output to virtual console */
164
/** Notification function that gets called on new output to virtual console */
165
void gcons_notify_char(int consnum)
165
void gcons_notify_char(int consnum)
166
{
166
{
167
    if (!use_gcons)
167
    if (!use_gcons)
168
        return;
168
        return;
169
 
169
 
170
    if (consnum == active_console || console_state[consnum] == CONS_HAS_DATA)
170
    if (consnum == active_console || console_state[consnum] == CONS_HAS_DATA)
171
        return;
171
        return;
172
 
172
 
173
    console_state[consnum] = CONS_HAS_DATA;
173
    console_state[consnum] = CONS_HAS_DATA;
174
 
174
 
175
    if (active_console == KERNEL_CONSOLE)
175
    if (active_console == KERNEL_CONSOLE)
176
        return;
176
        return;
177
 
177
 
178
    redraw_state(consnum);
178
    redraw_state(consnum);
179
   
179
   
180
    vp_switch(console_vp);
180
    vp_switch(console_vp);
181
}
181
}
182
 
182
 
183
/** Notification function called on service disconnect from console */
183
/** Notification function called on service disconnect from console */
184
void gcons_notify_disconnect(int consnum)
184
void gcons_notify_disconnect(int consnum)
185
{
185
{
186
    if (!use_gcons)
186
    if (!use_gcons)
187
        return;
187
        return;
188
    if (active_console == consnum)
188
    if (active_console == consnum)
189
        console_state[consnum] = CONS_DISCONNECTED_SEL;
189
        console_state[consnum] = CONS_DISCONNECTED_SEL;
190
    else
190
    else
191
        console_state[consnum] = CONS_DISCONNECTED;
191
        console_state[consnum] = CONS_DISCONNECTED;
192
 
192
 
193
    if (active_console == KERNEL_CONSOLE)
193
    if (active_console == KERNEL_CONSOLE)
194
        return;
194
        return;
195
 
195
 
196
    redraw_state(consnum);
196
    redraw_state(consnum);
197
    vp_switch(console_vp);
197
    vp_switch(console_vp);
198
}
198
}
199
 
199
 
200
/** Notification function called on console connect */
200
/** Notification function called on console connect */
201
void gcons_notify_connect(int consnum)
201
void gcons_notify_connect(int consnum)
202
{
202
{
203
    if (!use_gcons)
203
    if (!use_gcons)
204
        return;
204
        return;
205
    if (active_console == consnum)
205
    if (active_console == consnum)
206
        console_state[consnum] = CONS_SELECTED;
206
        console_state[consnum] = CONS_SELECTED;
207
    else
207
    else
208
        console_state[consnum] = CONS_IDLE;
208
        console_state[consnum] = CONS_IDLE;
209
 
209
 
210
    if (active_console == KERNEL_CONSOLE)
210
    if (active_console == KERNEL_CONSOLE)
211
        return;
211
        return;
212
 
212
 
213
    redraw_state(consnum);
213
    redraw_state(consnum);
214
    vp_switch(console_vp);
214
    vp_switch(console_vp);
215
}
215
}
216
 
216
 
217
/** Change to kernel console */
217
/** Change to kernel console */
218
void gcons_in_kernel(void)
218
void gcons_in_kernel(void)
219
{
219
{
220
    if (console_state[active_console] == CONS_DISCONNECTED_SEL)
220
    if (console_state[active_console] == CONS_DISCONNECTED_SEL)
221
        console_state[active_console] = CONS_DISCONNECTED;
221
        console_state[active_console] = CONS_DISCONNECTED;
222
    else
222
    else
223
        console_state[active_console] = CONS_IDLE;
223
        console_state[active_console] = CONS_IDLE;
224
    redraw_state(active_console);
224
    redraw_state(active_console);
225
 
225
 
226
    if (animation != -1)
226
    if (animation != -1)
227
        async_msg(fbphone, FB_ANIM_STOP, animation);
227
        async_msg(fbphone, FB_ANIM_STOP, animation);
228
 
228
 
229
    active_console = KERNEL_CONSOLE; /* Set to kernel console */
229
    active_console = KERNEL_CONSOLE; /* Set to kernel console */
230
    vp_switch(0);
230
    vp_switch(0);
231
}
231
}
232
 
232
 
233
/** Draw a PPM pixmap to framebuffer
233
/** Draw a PPM pixmap to framebuffer
234
 *
234
 *
235
 * @param logo Pointer to PPM data
235
 * @param logo Pointer to PPM data
236
 * @param size Size of PPM data
236
 * @param size Size of PPM data
237
 * @param x Coordinate of upper left corner
237
 * @param x Coordinate of upper left corner
238
 * @param y Coordinate of upper left corner
238
 * @param y Coordinate of upper left corner
239
 */
239
 */
240
static void draw_pixmap(char *logo, size_t size, int x, int y)
240
static void draw_pixmap(char *logo, size_t size, int x, int y)
241
{
241
{
242
    char *shm;
242
    char *shm;
243
    int rc;
243
    int rc;
244
 
244
 
245
    /* Create area */
245
    /* Create area */
246
    shm = mmap(NULL, size, PROTO_READ | PROTO_WRITE, MAP_SHARED | MAP_ANONYMOUS, 0, 0);
246
    shm = mmap(NULL, size, PROTO_READ | PROTO_WRITE, MAP_SHARED | MAP_ANONYMOUS, 0, 0);
247
    if (shm == MAP_FAILED)
247
    if (shm == MAP_FAILED)
248
        return;
248
        return;
249
 
249
 
250
    memcpy(shm, logo, size);
250
    memcpy(shm, logo, size);
251
    /* Send area */
251
    /* Send area */
252
    rc = async_req_2(fbphone, FB_PREPARE_SHM, (ipcarg_t)shm, 0, NULL, NULL);
252
    rc = async_req_2(fbphone, FB_PREPARE_SHM, (ipcarg_t)shm, 0, NULL, NULL);
253
    if (rc)
253
    if (rc)
254
        goto exit;
254
        goto exit;
255
    rc = async_req_3(fbphone, IPC_M_AS_AREA_SEND, (ipcarg_t)shm, 0, PROTO_READ, NULL, NULL, NULL);
255
    rc = async_req_3(fbphone, IPC_M_AS_AREA_SEND, (ipcarg_t)shm, 0, PROTO_READ, NULL, NULL, NULL);
256
    if (rc)
256
    if (rc)
257
        goto drop;
257
        goto drop;
258
    /* Draw logo */
258
    /* Draw logo */
259
    async_msg_2(fbphone, FB_DRAW_PPM, x, y);
259
    async_msg_2(fbphone, FB_DRAW_PPM, x, y);
260
drop:
260
drop:
261
    /* Drop area */
261
    /* Drop area */
262
    async_msg(fbphone, FB_DROP_SHM, 0);
262
    async_msg(fbphone, FB_DROP_SHM, 0);
263
exit:      
263
exit:      
264
    /* Remove area */
264
    /* Remove area */
265
    munmap(shm, size);
265
    munmap(shm, size);
266
}
266
}
267
 
267
 
268
extern char _binary_helenos_ppm_start[0];
268
extern char _binary_helenos_ppm_start[0];
269
extern int _binary_helenos_ppm_size;
269
extern int _binary_helenos_ppm_size;
270
extern char _binary_nameic_ppm_start[0];
270
extern char _binary_nameic_ppm_start[0];
271
extern int _binary_nameic_ppm_size;
271
extern int _binary_nameic_ppm_size;
272
/** Redraws console graphics  */
272
/** Redraws console graphics  */
273
static void gcons_redraw_console(void)
273
static void gcons_redraw_console(void)
274
{
274
{
275
    int i;
275
    int i;
276
    size_t hsize = (size_t)&_binary_helenos_ppm_size;
276
    size_t hsize = (size_t)&_binary_helenos_ppm_size;
277
 
277
 
278
    if (!use_gcons)
278
    if (!use_gcons)
279
        return;
279
        return;
280
   
280
   
281
    vp_switch(0);
281
    vp_switch(0);
282
    set_style(MAIN_COLOR, MAIN_COLOR);
282
    set_style(MAIN_COLOR, MAIN_COLOR);
283
    clear();
283
    clear();
284
    draw_pixmap(_binary_helenos_ppm_start, (size_t)&_binary_helenos_ppm_size, xres-66, 2);
284
    draw_pixmap(_binary_helenos_ppm_start, (size_t)&_binary_helenos_ppm_size, xres-66, 2);
285
    draw_pixmap(_binary_nameic_ppm_start, (size_t)&_binary_nameic_ppm_size, 5, 17);
285
    draw_pixmap(_binary_nameic_ppm_start, (size_t)&_binary_nameic_ppm_size, 5, 17);
286
 
286
 
287
    for (i=0;i < CONSOLE_COUNT; i++)
287
    for (i=0;i < CONSOLE_COUNT; i++)
288
        redraw_state(i);
288
        redraw_state(i);
289
    vp_switch(console_vp);
289
    vp_switch(console_vp);
290
}
290
}
291
 
291
 
292
/** Creates a pixmap on framebuffer
292
/** Creates a pixmap on framebuffer
293
 *
293
 *
294
 * @param data PPM data
294
 * @param data PPM data
295
 * @param size PPM data size
295
 * @param size PPM data size
296
 * @return Pixmap identification
296
 * @return Pixmap identification
297
 */
297
 */
298
static int make_pixmap(char *data, int size)
298
static int make_pixmap(char *data, int size)
299
{
299
{
300
    char *shm;
300
    char *shm;
301
    int rc;
301
    int rc;
302
    int pxid = -1;
302
    int pxid = -1;
303
 
303
 
304
    /* Create area */
304
    /* Create area */
305
    shm = mmap(NULL, size, PROTO_READ | PROTO_WRITE, MAP_SHARED | MAP_ANONYMOUS, 0, 0);
305
    shm = mmap(NULL, size, PROTO_READ | PROTO_WRITE, MAP_SHARED | MAP_ANONYMOUS, 0, 0);
306
    if (shm == MAP_FAILED)
306
    if (shm == MAP_FAILED)
307
        return -1;
307
        return -1;
308
 
308
 
309
    memcpy(shm, data, size);
309
    memcpy(shm, data, size);
310
    /* Send area */
310
    /* Send area */
311
    rc = async_req_2(fbphone, FB_PREPARE_SHM, (ipcarg_t)shm, 0, NULL, NULL);
311
    rc = async_req_2(fbphone, FB_PREPARE_SHM, (ipcarg_t)shm, 0, NULL, NULL);
312
    if (rc)
312
    if (rc)
313
        goto exit;
313
        goto exit;
314
    rc = async_req_3(fbphone, IPC_M_AS_AREA_SEND, (ipcarg_t)shm, 0, PROTO_READ, NULL, NULL, NULL);
314
    rc = async_req_3(fbphone, IPC_M_AS_AREA_SEND, (ipcarg_t)shm, 0, PROTO_READ, NULL, NULL, NULL);
315
    if (rc)
315
    if (rc)
316
        goto drop;
316
        goto drop;
317
 
317
 
318
    /* Obtain pixmap */
318
    /* Obtain pixmap */
319
    rc = async_req(fbphone, FB_SHM2PIXMAP, 0, NULL);
319
    rc = async_req(fbphone, FB_SHM2PIXMAP, 0, NULL);
320
    if (rc < 0)
320
    if (rc < 0)
321
        goto drop;
321
        goto drop;
322
    pxid = rc;
322
    pxid = rc;
323
drop:
323
drop:
324
    /* Drop area */
324
    /* Drop area */
325
    async_msg(fbphone, FB_DROP_SHM, 0);
325
    async_msg(fbphone, FB_DROP_SHM, 0);
326
exit:      
326
exit:      
327
    /* Remove area */
327
    /* Remove area */
328
    munmap(shm, size);
328
    munmap(shm, size);
329
 
329
 
330
    return pxid;
330
    return pxid;
331
}
331
}
332
 
332
 
333
extern char _binary_anim_1_ppm_start[0];
333
extern char _binary_anim_1_ppm_start[0];
334
extern int _binary_anim_1_ppm_size;
334
extern int _binary_anim_1_ppm_size;
335
extern char _binary_anim_2_ppm_start[0];
335
extern char _binary_anim_2_ppm_start[0];
336
extern int _binary_anim_2_ppm_size;
336
extern int _binary_anim_2_ppm_size;
337
extern char _binary_anim_3_ppm_start[0];
337
extern char _binary_anim_3_ppm_start[0];
338
extern int _binary_anim_3_ppm_size;
338
extern int _binary_anim_3_ppm_size;
339
extern char _binary_anim_4_ppm_start[0];
339
extern char _binary_anim_4_ppm_start[0];
340
extern int _binary_anim_4_ppm_size;
340
extern int _binary_anim_4_ppm_size;
341
static void make_anim(void)
341
static void make_anim(void)
342
{
342
{
343
    int an;
343
    int an;
344
    int pm;
344
    int pm;
345
 
345
 
346
    an = async_req(fbphone, FB_ANIM_CREATE, cstatus_vp[KERNEL_CONSOLE], NULL);
346
    an = async_req(fbphone, FB_ANIM_CREATE, cstatus_vp[KERNEL_CONSOLE], NULL);
347
    if (an < 0)
347
    if (an < 0)
348
        return;
348
        return;
349
 
349
 
350
    pm = make_pixmap(_binary_anim_1_ppm_start, (int)&_binary_anim_1_ppm_size);
350
    pm = make_pixmap(_binary_anim_1_ppm_start, (int)&_binary_anim_1_ppm_size);
351
    async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
351
    async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
352
 
352
 
353
    pm = make_pixmap(_binary_anim_2_ppm_start, (int)&_binary_anim_2_ppm_size);
353
    pm = make_pixmap(_binary_anim_2_ppm_start, (int)&_binary_anim_2_ppm_size);
354
    async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
354
    async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
355
 
355
 
356
    pm = make_pixmap(_binary_anim_3_ppm_start, (int)&_binary_anim_3_ppm_size);
356
    pm = make_pixmap(_binary_anim_3_ppm_start, (int)&_binary_anim_3_ppm_size);
357
    async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
357
    async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
358
 
358
 
359
    pm = make_pixmap(_binary_anim_4_ppm_start, (int)&_binary_anim_4_ppm_size);
359
    pm = make_pixmap(_binary_anim_4_ppm_start, (int)&_binary_anim_4_ppm_size);
360
    async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
360
    async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
361
 
361
 
362
    async_msg(fbphone, FB_ANIM_START, an);
362
    async_msg(fbphone, FB_ANIM_START, an);
363
 
363
 
364
    animation = an;
364
    animation = an;
365
}
365
}
366
 
366
 
367
extern char _binary_cons_selected_ppm_start[0];
367
extern char _binary_cons_selected_ppm_start[0];
368
extern int _binary_cons_selected_ppm_size;
368
extern int _binary_cons_selected_ppm_size;
369
extern char _binary_cons_idle_ppm_start[0];
369
extern char _binary_cons_idle_ppm_start[0];
370
extern int _binary_cons_idle_ppm_size;
370
extern int _binary_cons_idle_ppm_size;
371
extern char _binary_cons_has_data_ppm_start[0];
371
extern char _binary_cons_has_data_ppm_start[0];
372
extern int _binary_cons_has_data_ppm_size;
372
extern int _binary_cons_has_data_ppm_size;
373
extern char _binary_cons_kernel_ppm_start[0];
373
extern char _binary_cons_kernel_ppm_start[0];
374
extern int _binary_cons_kernel_ppm_size;
374
extern int _binary_cons_kernel_ppm_size;
375
/** Initialize nice graphical console environment */
375
/** Initialize nice graphical console environment */
376
void gcons_init(int phone)
376
void gcons_init(int phone)
377
{
377
{
378
    int rc;
378
    int rc;
379
    int i;
379
    int i;
380
    int status_start = STATUS_START;
380
    int status_start = STATUS_START;
381
 
381
 
382
    fbphone = phone;
382
    fbphone = phone;
383
 
383
 
384
    rc = async_req_2(phone, FB_GET_RESOLUTION, 0, 0, &xres, &yres);
384
    rc = async_req_2(phone, FB_GET_RESOLUTION, 0, 0, &xres, &yres);
385
    if (rc)
385
    if (rc)
386
        return;
386
        return;
387
   
387
   
388
    if (xres < 800 || yres < 600)
388
    if (xres < 800 || yres < 600)
389
        return;
389
        return;
390
 
390
 
391
    /* create console viewport */
391
    /* create console viewport */
392
    /* Align width & height to character size */
392
    /* Align width & height to character size */
393
    console_vp = vp_create(CONSOLE_MARGIN, CONSOLE_TOP,
393
    console_vp = vp_create(CONSOLE_MARGIN, CONSOLE_TOP,
394
                   ALIGN_DOWN(xres-2*CONSOLE_MARGIN, 8),
394
                   ALIGN_DOWN(xres-2*CONSOLE_MARGIN, 8),
395
                   ALIGN_DOWN(yres-(CONSOLE_TOP+CONSOLE_MARGIN),16));
395
                   ALIGN_DOWN(yres-(CONSOLE_TOP+CONSOLE_MARGIN),16));
396
    if (console_vp < 0)
396
    if (console_vp < 0)
397
        return;
397
        return;
398
   
398
   
399
    /* Create status buttons */
399
    /* Create status buttons */
400
    status_start += (xres-800) / 2;
400
    status_start += (xres-800) / 2;
401
    for (i=0; i < CONSOLE_COUNT; i++) {
401
    for (i=0; i < CONSOLE_COUNT; i++) {
402
        cstatus_vp[i] = vp_create(status_start+CONSOLE_MARGIN+i*(STATUS_WIDTH+STATUS_SPACE),
402
        cstatus_vp[i] = vp_create(status_start+CONSOLE_MARGIN+i*(STATUS_WIDTH+STATUS_SPACE),
403
                      STATUS_TOP, STATUS_WIDTH, STATUS_HEIGHT);
403
                      STATUS_TOP, STATUS_WIDTH, STATUS_HEIGHT);
404
        if (cstatus_vp[i] < 0)
404
        if (cstatus_vp[i] < 0)
405
            return;
405
            return;
406
        vp_switch(cstatus_vp[i]);
406
        vp_switch(cstatus_vp[i]);
407
        set_style(0x202020, 0xffffff);
407
        set_style(0x202020, 0xffffff);
408
    }
408
    }
409
   
409
   
410
    /* Initialize icons */
410
    /* Initialize icons */
411
    ic_pixmaps[CONS_SELECTED] = make_pixmap(_binary_cons_selected_ppm_start,
411
    ic_pixmaps[CONS_SELECTED] = make_pixmap(_binary_cons_selected_ppm_start,
412
                          (int)&_binary_cons_selected_ppm_size);
412
                          (int)&_binary_cons_selected_ppm_size);
413
    ic_pixmaps[CONS_IDLE] = make_pixmap(_binary_cons_idle_ppm_start,
413
    ic_pixmaps[CONS_IDLE] = make_pixmap(_binary_cons_idle_ppm_start,
414
                          (int)&_binary_cons_idle_ppm_size);
414
                          (int)&_binary_cons_idle_ppm_size);
415
    ic_pixmaps[CONS_HAS_DATA] = make_pixmap(_binary_cons_has_data_ppm_start,
415
    ic_pixmaps[CONS_HAS_DATA] = make_pixmap(_binary_cons_has_data_ppm_start,
416
                        (int)&_binary_cons_has_data_ppm_size);
416
                        (int)&_binary_cons_has_data_ppm_size);
417
    ic_pixmaps[CONS_DISCONNECTED] = make_pixmap(_binary_cons_idle_ppm_start,
417
    ic_pixmaps[CONS_DISCONNECTED] = make_pixmap(_binary_cons_idle_ppm_start,
418
                          (int)&_binary_cons_idle_ppm_size);
418
                          (int)&_binary_cons_idle_ppm_size);
419
    ic_pixmaps[CONS_KERNEL] = make_pixmap(_binary_cons_kernel_ppm_start,
419
    ic_pixmaps[CONS_KERNEL] = make_pixmap(_binary_cons_kernel_ppm_start,
420
                          (int)&_binary_cons_kernel_ppm_size);
420
                          (int)&_binary_cons_kernel_ppm_size);
421
    ic_pixmaps[CONS_DISCONNECTED_SEL] = ic_pixmaps[CONS_SELECTED];
421
    ic_pixmaps[CONS_DISCONNECTED_SEL] = ic_pixmaps[CONS_SELECTED];
422
   
422
   
423
    make_anim();
423
    make_anim();
424
 
424
 
425
    use_gcons = 1;
425
    use_gcons = 1;
426
    console_state[0] = CONS_DISCONNECTED_SEL;
426
    console_state[0] = CONS_DISCONNECTED_SEL;
427
    console_state[KERNEL_CONSOLE] = CONS_KERNEL;
427
    console_state[KERNEL_CONSOLE] = CONS_KERNEL;
428
    gcons_redraw_console();
428
    gcons_redraw_console();
429
}
429
}
430
 
430
 
431
/** @}
431
/** @}
432
 */
432
 */
433
 
433
 
434
 
434