Rev 4482 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4482 | Rev 4581 | ||
---|---|---|---|
1 | /* |
1 | /* |
2 | * Copyright (c) 2006 Josef Cejka |
2 | * Copyright (c) 2006 Josef Cejka |
3 | * Copyright (c) 2006 Jakub Vana |
3 | * Copyright (c) 2006 Jakub Vana |
4 | * Copyright (c) 2008 Jiri Svoboda |
4 | * Copyright (c) 2008 Jiri Svoboda |
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 | /** @addtogroup libc |
31 | /** @addtogroup libc |
32 | * @{ |
32 | * @{ |
33 | */ |
33 | */ |
34 | /** @file |
34 | /** @file |
35 | */ |
35 | */ |
36 | 36 | ||
37 | #include <libc.h> |
37 | #include <libc.h> |
38 | #include <async.h> |
38 | #include <async.h> |
39 | #include <io/console.h> |
39 | #include <io/console.h> |
40 | #include <ipc/console.h> |
40 | #include <ipc/console.h> |
41 | 41 | ||
42 | void console_clear(int phone) |
42 | void console_clear(int phone) |
43 | { |
43 | { |
44 | async_msg_0(phone, CONSOLE_CLEAR); |
44 | async_msg_0(phone, CONSOLE_CLEAR); |
45 | } |
45 | } |
46 | 46 | ||
47 | int console_get_size(int phone, ipcarg_t *rows, ipcarg_t *cols) |
47 | int console_get_size(int phone, ipcarg_t *rows, ipcarg_t *cols) |
48 | { |
48 | { |
49 | return async_req_0_2(phone, CONSOLE_GET_SIZE, rows, cols); |
49 | return async_req_0_2(phone, CONSOLE_GET_SIZE, rows, cols); |
50 | } |
50 | } |
51 | 51 | ||
52 | void console_set_style(int phone, int style) |
52 | void console_set_style(int phone, int style) |
53 | { |
53 | { |
54 | async_msg_1(phone, CONSOLE_SET_STYLE, style); |
54 | async_msg_1(phone, CONSOLE_SET_STYLE, style); |
55 | } |
55 | } |
56 | 56 | ||
57 | void console_set_color(int phone, int fg_color, int bg_color, int flags) |
57 | void console_set_color(int phone, int fg_color, int bg_color, int flags) |
58 | { |
58 | { |
59 | async_msg_3(phone, CONSOLE_SET_COLOR, fg_color, bg_color, flags); |
59 | async_msg_3(phone, CONSOLE_SET_COLOR, fg_color, bg_color, flags); |
60 | } |
60 | } |
61 | 61 | ||
62 | void console_set_rgb_color(int phone, int fg_color, int bg_color) |
62 | void console_set_rgb_color(int phone, int fg_color, int bg_color) |
63 | { |
63 | { |
64 | async_msg_2(phone, CONSOLE_SET_RGB_COLOR, fg_color, bg_color); |
64 | async_msg_2(phone, CONSOLE_SET_RGB_COLOR, fg_color, bg_color); |
65 | } |
65 | } |
66 | 66 | ||
67 | void console_cursor_visibility(int phone, bool show) |
67 | void console_cursor_visibility(int phone, bool show) |
68 | { |
68 | { |
69 | async_msg_1(phone, CONSOLE_CURSOR_VISIBILITY, show != false); |
69 | async_msg_1(phone, CONSOLE_CURSOR_VISIBILITY, show != false); |
70 | } |
70 | } |
71 | 71 | ||
72 | void console_kcon_enable(int phone) |
72 | void console_kcon_enable(int phone) |
73 | { |
73 | { |
74 | async_msg_0(phone, CONSOLE_KCON_ENABLE); |
74 | async_msg_0(phone, CONSOLE_KCON_ENABLE); |
75 | } |
75 | } |
76 | 76 | ||
77 | void console_goto(int phone, ipcarg_t row, ipcarg_t col) |
77 | void console_goto(int phone, ipcarg_t row, ipcarg_t col) |
78 | { |
78 | { |
79 | async_msg_2(phone, CONSOLE_GOTO, row, col); |
79 | async_msg_2(phone, CONSOLE_GOTO, row, col); |
80 | } |
80 | } |
81 | 81 | ||
82 | bool console_get_event(int phone, console_event_t *event) |
82 | bool console_get_event(int phone, console_event_t *event) |
83 | { |
83 | { |
84 | ipcarg_t type; |
84 | ipcarg_t type; |
85 | ipcarg_t key; |
85 | ipcarg_t key; |
86 | ipcarg_t mods; |
86 | ipcarg_t mods; |
87 | ipcarg_t c; |
87 | ipcarg_t c; |
88 | 88 | ||
89 | int rc = async_req_0_4(phone, CONSOLE_GET_EVENT, &type, &key, &mods, &c); |
89 | int rc = async_req_0_4(phone, CONSOLE_GET_EVENT, &type, &key, &mods, &c); |
90 | if (rc < 0) |
90 | if (rc < 0) |
91 | return false; |
91 | return false; |
92 | 92 | ||
93 | event->type = type; |
93 | event->type = type; |
94 | event->key = key; |
94 | event->key = key; |
95 | event->mods = mods; |
95 | event->mods = mods; |
96 | event->c = c; |
96 | event->c = c; |
97 | 97 | ||
98 | return true; |
98 | return true; |
99 | } |
99 | } |
100 | 100 | ||
101 | /** @} |
101 | /** @} |
102 | */ |
102 | */ |
103 | 103 |