source: mainline/uspace/console/gcons.c@ 2def788

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 2def788 was 2def788, checked in by Jakub Jermar <jakub@…>, 19 years ago

Prototype for mmap() should be in mman.h.
Anyway, is there any common sense behind naming of mman.h and mman.c?

  • Property mode set to 100644
File size: 12.4 KB
RevLine 
[b1f51f0]1/*
2 * Copyright (C) 2006 Ondrej Palkovsky
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
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
15 * derived from this software without specific prior written permission.
16 *
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
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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
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
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[ce5bcb4]29/** @addtogroup console
30 * @{
31 */
32/** @file
33 */
34
[b1f51f0]35#include <ipc/fb.h>
36#include <ipc/ipc.h>
[e1c4849]37#include <async.h>
38#include <stdio.h>
[2def788]39#include <sys/mman.h>
[90f5d64]40#include <string.h>
[a7d2d78]41#include <align.h>
[b1f51f0]42
43#include "console.h"
[e1c4849]44#include "gcons.h"
[b1f51f0]45
[0a9a324]46#define CONSOLE_TOP 66
[a7d2d78]47#define CONSOLE_MARGIN 6
[b1f51f0]48
[a7d2d78]49#define STATUS_START 110
50#define STATUS_TOP 8
[0a9a324]51#define STATUS_SPACE 4
[a7d2d78]52#define STATUS_WIDTH 48
53#define STATUS_HEIGHT 48
[b1f51f0]54
[90f5d64]55#define MAIN_COLOR 0xffffff
[e1c4849]56
[b1f51f0]57static int use_gcons = 0;
58static ipcarg_t xres,yres;
59
[a7d2d78]60enum butstate {
61 CONS_DISCONNECTED = 0,
62 CONS_SELECTED,
63 CONS_IDLE,
64 CONS_HAS_DATA,
65 CONS_KERNEL,
66 CONS_DISCONNECTED_SEL,
67 CONS_LAST
68};
69
[b1f51f0]70static int console_vp;
71static int cstatus_vp[CONSOLE_COUNT];
[a7d2d78]72static enum butstate console_state[CONSOLE_COUNT];
[b1f51f0]73
74static int fbphone;
75
[a7d2d78]76/** List of pixmaps identifying these icons */
77static int ic_pixmaps[CONS_LAST] = {-1,-1,-1,-1,-1,-1};
[1fd7700]78static int animation = -1;
[e1c4849]79
80static int active_console = 0;
81
[b1f51f0]82static void vp_switch(int vp)
83{
[085bd54]84 async_msg(fbphone,FB_VIEWPORT_SWITCH, vp);
[b1f51f0]85}
86
[e1c4849]87/** Create view port */
[b1f51f0]88static int vp_create(unsigned int x, unsigned int y,
[e1c4849]89 unsigned int width, unsigned int height)
[b1f51f0]90{
[290c0db]91 return async_req_2(fbphone, FB_VIEWPORT_CREATE,
92 (x << 16) | y, (width << 16) | height,
93 NULL, NULL);
[b1f51f0]94}
95
[e1c4849]96static void clear(void)
[b1f51f0]97{
[085bd54]98 async_msg(fbphone, FB_CLEAR, 0);
[b1f51f0]99
100}
101
[e1c4849]102static void set_style(int fgcolor, int bgcolor)
103{
[085bd54]104 async_msg_2(fbphone, FB_SET_STYLE, fgcolor, bgcolor);
[e1c4849]105}
106
[d530237a]107/** Transparent putchar */
108static void tran_putch(char c, int row, int col)
[e1c4849]109{
[085bd54]110 async_msg_3(fbphone, FB_TRANS_PUTCHAR, c, row, col);
[e1c4849]111}
112
[d530237a]113/** Redraw the button showing state of a given console */
[a7d2d78]114static void redraw_state(int consnum)
[b1f51f0]115{
[e1c4849]116 char data[5];
117 int i;
[a7d2d78]118 enum butstate state = console_state[consnum];
119
[e1c4849]120 vp_switch(cstatus_vp[consnum]);
[a7d2d78]121 if (ic_pixmaps[state] != -1)
[085bd54]122 async_msg_2(fbphone, FB_VP_DRAW_PIXMAP, cstatus_vp[consnum], ic_pixmaps[state]);
[a7d2d78]123
124 if (state != CONS_DISCONNECTED && state != CONS_KERNEL && state != CONS_DISCONNECTED_SEL) {
125 snprintf(data, 5, "%d", consnum+1);
126 for (i=0;data[i];i++)
[d530237a]127 tran_putch(data[i], 1, 2+i);
[a7d2d78]128 }
[b1f51f0]129}
130
[a7d2d78]131/** Notification run on changing console (except kernel console) */
[b1f51f0]132void gcons_change_console(int consnum)
133{
[a7d2d78]134 int i;
135
[b1f51f0]136 if (!use_gcons)
137 return;
[429acb9]138
[a7d2d78]139 if (active_console == KERNEL_CONSOLE) {
140 for (i=0; i < CONSOLE_COUNT; i++)
141 redraw_state(i);
[70178b74]142 if (animation != -1)
143 async_msg(fbphone, FB_ANIM_START, animation);
[a7d2d78]144 } else {
145 if (console_state[active_console] == CONS_DISCONNECTED_SEL)
146 console_state[active_console] = CONS_DISCONNECTED;
147 else
148 console_state[active_console] = CONS_IDLE;
149 redraw_state(active_console);
150 }
[e1c4849]151 active_console = consnum;
[a7d2d78]152
153 if (console_state[consnum] == CONS_DISCONNECTED) {
154 console_state[consnum] = CONS_DISCONNECTED_SEL;
155 redraw_state(consnum);
156 } else
157 console_state[consnum] = CONS_SELECTED;
158 redraw_state(consnum);
[d6cc453]159
[b1f51f0]160 vp_switch(console_vp);
161}
162
[429acb9]163/** Notification function that gets called on new output to virtual console */
[b1f51f0]164void gcons_notify_char(int consnum)
165{
166 if (!use_gcons)
167 return;
168
[a7d2d78]169 if (consnum == active_console || console_state[consnum] == CONS_HAS_DATA)
[d6cc453]170 return;
171
[a7d2d78]172 console_state[consnum] = CONS_HAS_DATA;
[429acb9]173
[a7d2d78]174 if (active_console == KERNEL_CONSOLE)
[429acb9]175 return;
176
[a7d2d78]177 redraw_state(consnum);
[d6cc453]178
[b1f51f0]179 vp_switch(console_vp);
[a7d2d78]180}
[429acb9]181
[e9073f2]182/** Notification function called on service disconnect from console */
183void gcons_notify_disconnect(int consnum)
184{
185 if (!use_gcons)
186 return;
187 if (active_console == consnum)
188 console_state[consnum] = CONS_DISCONNECTED_SEL;
189 else
190 console_state[consnum] = CONS_DISCONNECTED;
191
192 if (active_console == KERNEL_CONSOLE)
193 return;
194
195 redraw_state(consnum);
196 vp_switch(console_vp);
197}
198
[d530237a]199/** Notification function called on console connect */
[a7d2d78]200void gcons_notify_connect(int consnum)
201{
202 if (!use_gcons)
203 return;
204 if (active_console == consnum)
205 console_state[consnum] = CONS_SELECTED;
206 else
207 console_state[consnum] = CONS_IDLE;
208
209 if (active_console == KERNEL_CONSOLE)
210 return;
211
212 redraw_state(consnum);
213 vp_switch(console_vp);
[b1f51f0]214}
215
[429acb9]216/** Change to kernel console */
217void gcons_in_kernel(void)
218{
[a78e273]219 if (console_state[active_console] == CONS_DISCONNECTED_SEL)
[a7d2d78]220 console_state[active_console] = CONS_DISCONNECTED;
221 else
222 console_state[active_console] = CONS_IDLE;
223 redraw_state(active_console);
224
[70178b74]225 if (animation != -1)
226 async_msg(fbphone, FB_ANIM_STOP, animation);
227
[a7d2d78]228 active_console = KERNEL_CONSOLE; /* Set to kernel console */
[429acb9]229 vp_switch(0);
230}
231
[d8b42fb2]232/** Return x, where left <= x <= right && |a-x|==min(|a-x|) is smallest */
[830ac99]233static inline int limit(int a,int left, int right)
234{
235 if (a < left)
236 a = left;
237 if (a >= right)
238 a = right - 1;
239 return a;
240}
241
[1f83244]242int mouse_x, mouse_y;
243int btn_pressed, btn_x, btn_y;
244
245/** Handle mouse move
246 *
247 * @param dx Delta X of mouse move
248 * @param dy Delta Y of mouse move
249 */
[830ac99]250void gcons_mouse_move(int dx, int dy)
251{
[1f83244]252 mouse_x = limit(mouse_x+dx, 0, xres);
253 mouse_y = limit(mouse_y+dy, 0, yres);
254
255 async_msg_2(fbphone, FB_POINTER_MOVE, mouse_x, mouse_y);
256}
257
258static int gcons_find_conbut(int x, int y)
259{
260 int status_start = STATUS_START + (xres-800) / 2;;
[830ac99]261
[1f83244]262 if (y < STATUS_TOP || y >= STATUS_TOP+STATUS_HEIGHT)
263 return -1;
264
265 if (x < status_start)
266 return -1;
267
268 if (x >= status_start + (STATUS_WIDTH+STATUS_SPACE)*CONSOLE_COUNT)
269 return -1;
[b34fab6]270 if (((x - status_start) % (STATUS_WIDTH+STATUS_SPACE)) < STATUS_SPACE)
[1f83244]271 return -1;
272
273 return (x-status_start) / (STATUS_WIDTH+STATUS_SPACE);
274}
[830ac99]275
[1f83244]276/** Handle mouse click
277 *
278 * @param state New state (1-pressed, 0-depressed)
279 */
280int gcons_mouse_btn(int state)
281{
282 int conbut;
283
284 if (state) {
285 conbut = gcons_find_conbut(mouse_x, mouse_y);
286 if (conbut != -1) {
287 btn_pressed = 1;
288 btn_x = mouse_x;
289 btn_y = mouse_y;
290 }
291 return -1;
292 }
293 if (!state && !btn_pressed)
294 return -1;
295 btn_pressed = 0;
296
297 conbut = gcons_find_conbut(mouse_x, mouse_y);
298 if (conbut == gcons_find_conbut(btn_x, btn_y))
299 return conbut;
300 return -1;
[830ac99]301}
302
303
[429acb9]304/** Draw a PPM pixmap to framebuffer
305 *
306 * @param logo Pointer to PPM data
307 * @param size Size of PPM data
308 * @param x Coordinate of upper left corner
309 * @param y Coordinate of upper left corner
310 */
[90f5d64]311static void draw_pixmap(char *logo, size_t size, int x, int y)
312{
313 char *shm;
314 int rc;
315
316 /* Create area */
317 shm = mmap(NULL, size, PROTO_READ | PROTO_WRITE, MAP_SHARED | MAP_ANONYMOUS, 0, 0);
318 if (shm == MAP_FAILED)
319 return;
320
321 memcpy(shm, logo, size);
322 /* Send area */
[085bd54]323 rc = async_req_2(fbphone, FB_PREPARE_SHM, (ipcarg_t)shm, 0, NULL, NULL);
[90f5d64]324 if (rc)
325 goto exit;
[085bd54]326 rc = async_req_3(fbphone, IPC_M_AS_AREA_SEND, (ipcarg_t)shm, 0, PROTO_READ, NULL, NULL, NULL);
[90f5d64]327 if (rc)
328 goto drop;
329 /* Draw logo */
[085bd54]330 async_msg_2(fbphone, FB_DRAW_PPM, x, y);
[90f5d64]331drop:
332 /* Drop area */
[085bd54]333 async_msg(fbphone, FB_DROP_SHM, 0);
[90f5d64]334exit:
335 /* Remove area */
336 munmap(shm, size);
337}
338
339extern char _binary_helenos_ppm_start[0];
340extern int _binary_helenos_ppm_size;
341extern char _binary_nameic_ppm_start[0];
342extern int _binary_nameic_ppm_size;
[d530237a]343/** Redraws console graphics */
[a7d2d78]344static void gcons_redraw_console(void)
[b1f51f0]345{
[e1c4849]346 int i;
347
[b1f51f0]348 if (!use_gcons)
349 return;
350
351 vp_switch(0);
[e1c4849]352 set_style(MAIN_COLOR, MAIN_COLOR);
353 clear();
[a7d2d78]354 draw_pixmap(_binary_helenos_ppm_start, (size_t)&_binary_helenos_ppm_size, xres-66, 2);
355 draw_pixmap(_binary_nameic_ppm_start, (size_t)&_binary_nameic_ppm_size, 5, 17);
[90f5d64]356
[e1c4849]357 for (i=0;i < CONSOLE_COUNT; i++)
[a7d2d78]358 redraw_state(i);
[b1f51f0]359 vp_switch(console_vp);
360}
361
[d530237a]362/** Creates a pixmap on framebuffer
363 *
364 * @param data PPM data
365 * @param size PPM data size
366 * @return Pixmap identification
367 */
[a7d2d78]368static int make_pixmap(char *data, int size)
369{
370 char *shm;
371 int rc;
372 int pxid = -1;
373
374 /* Create area */
375 shm = mmap(NULL, size, PROTO_READ | PROTO_WRITE, MAP_SHARED | MAP_ANONYMOUS, 0, 0);
376 if (shm == MAP_FAILED)
377 return -1;
378
379 memcpy(shm, data, size);
380 /* Send area */
[085bd54]381 rc = async_req_2(fbphone, FB_PREPARE_SHM, (ipcarg_t)shm, 0, NULL, NULL);
[a7d2d78]382 if (rc)
383 goto exit;
[085bd54]384 rc = async_req_3(fbphone, IPC_M_AS_AREA_SEND, (ipcarg_t)shm, 0, PROTO_READ, NULL, NULL, NULL);
[a7d2d78]385 if (rc)
386 goto drop;
387
388 /* Obtain pixmap */
[085bd54]389 rc = async_req(fbphone, FB_SHM2PIXMAP, 0, NULL);
[a7d2d78]390 if (rc < 0)
391 goto drop;
392 pxid = rc;
393drop:
394 /* Drop area */
[085bd54]395 async_msg(fbphone, FB_DROP_SHM, 0);
[a7d2d78]396exit:
397 /* Remove area */
398 munmap(shm, size);
399
400 return pxid;
401}
402
[1fd7700]403extern char _binary_anim_1_ppm_start[0];
404extern int _binary_anim_1_ppm_size;
405extern char _binary_anim_2_ppm_start[0];
406extern int _binary_anim_2_ppm_size;
407extern char _binary_anim_3_ppm_start[0];
408extern int _binary_anim_3_ppm_size;
409extern char _binary_anim_4_ppm_start[0];
410extern int _binary_anim_4_ppm_size;
411static void make_anim(void)
412{
413 int an;
414 int pm;
415
416 an = async_req(fbphone, FB_ANIM_CREATE, cstatus_vp[KERNEL_CONSOLE], NULL);
417 if (an < 0)
418 return;
419
420 pm = make_pixmap(_binary_anim_1_ppm_start, (int)&_binary_anim_1_ppm_size);
421 async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
422
423 pm = make_pixmap(_binary_anim_2_ppm_start, (int)&_binary_anim_2_ppm_size);
424 async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
425
426 pm = make_pixmap(_binary_anim_3_ppm_start, (int)&_binary_anim_3_ppm_size);
427 async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
428
429 pm = make_pixmap(_binary_anim_4_ppm_start, (int)&_binary_anim_4_ppm_size);
430 async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm);
431
432 async_msg(fbphone, FB_ANIM_START, an);
433
434 animation = an;
435}
436
[a7d2d78]437extern char _binary_cons_selected_ppm_start[0];
438extern int _binary_cons_selected_ppm_size;
439extern char _binary_cons_idle_ppm_start[0];
440extern int _binary_cons_idle_ppm_size;
441extern char _binary_cons_has_data_ppm_start[0];
442extern int _binary_cons_has_data_ppm_size;
443extern char _binary_cons_kernel_ppm_start[0];
444extern int _binary_cons_kernel_ppm_size;
[b1f51f0]445/** Initialize nice graphical console environment */
446void gcons_init(int phone)
447{
448 int rc;
449 int i;
[1fd7700]450 int status_start = STATUS_START;
[b1f51f0]451
452 fbphone = phone;
453
[290c0db]454 rc = async_req_2(phone, FB_GET_RESOLUTION, 0, 0, &xres, &yres);
[b1f51f0]455 if (rc)
456 return;
457
458 if (xres < 800 || yres < 600)
459 return;
460
461 /* create console viewport */
[a7d2d78]462 /* Align width & height to character size */
463 console_vp = vp_create(CONSOLE_MARGIN, CONSOLE_TOP,
464 ALIGN_DOWN(xres-2*CONSOLE_MARGIN, 8),
465 ALIGN_DOWN(yres-(CONSOLE_TOP+CONSOLE_MARGIN),16));
[b1f51f0]466 if (console_vp < 0)
467 return;
468
469 /* Create status buttons */
[1fd7700]470 status_start += (xres-800) / 2;
[b1f51f0]471 for (i=0; i < CONSOLE_COUNT; i++) {
[1fd7700]472 cstatus_vp[i] = vp_create(status_start+CONSOLE_MARGIN+i*(STATUS_WIDTH+STATUS_SPACE),
[a7d2d78]473 STATUS_TOP, STATUS_WIDTH, STATUS_HEIGHT);
[b1f51f0]474 if (cstatus_vp[i] < 0)
475 return;
[a7d2d78]476 vp_switch(cstatus_vp[i]);
477 set_style(0x202020, 0xffffff);
[b1f51f0]478 }
479
[a7d2d78]480 /* Initialize icons */
481 ic_pixmaps[CONS_SELECTED] = make_pixmap(_binary_cons_selected_ppm_start,
482 (int)&_binary_cons_selected_ppm_size);
483 ic_pixmaps[CONS_IDLE] = make_pixmap(_binary_cons_idle_ppm_start,
484 (int)&_binary_cons_idle_ppm_size);
485 ic_pixmaps[CONS_HAS_DATA] = make_pixmap(_binary_cons_has_data_ppm_start,
486 (int)&_binary_cons_has_data_ppm_size);
487 ic_pixmaps[CONS_DISCONNECTED] = make_pixmap(_binary_cons_idle_ppm_start,
488 (int)&_binary_cons_idle_ppm_size);
489 ic_pixmaps[CONS_KERNEL] = make_pixmap(_binary_cons_kernel_ppm_start,
490 (int)&_binary_cons_kernel_ppm_size);
491 ic_pixmaps[CONS_DISCONNECTED_SEL] = ic_pixmaps[CONS_SELECTED];
[1fd7700]492
493 make_anim();
[a7d2d78]494
[b1f51f0]495 use_gcons = 1;
[a7d2d78]496 console_state[0] = CONS_DISCONNECTED_SEL;
497 console_state[KERNEL_CONSOLE] = CONS_KERNEL;
[e1c4849]498 gcons_redraw_console();
[b1f51f0]499}
[ce5bcb4]500
501/** @}
502 */
503
Note: See TracBrowser for help on using the repository browser.