source: mainline/uspace/lib/libc/generic/io/console.c@ a47d49f

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a47d49f was 19528516, checked in by jirka <jirka@…>, 16 years ago

Rewrite command-line input routine. Adds capability to seek, insert and delete (left/right arrow keys, home, end, delete).

  • Property mode set to 100644
File size: 3.3 KB
RevLine 
[b27a97bb]1/*
[df4ed85]2 * Copyright (c) 2006 Josef Cejka
3 * Copyright (c) 2006 Jakub Vana
[2595dab]4 * Copyright (c) 2008 Jiri Svoboda
[b27a97bb]5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * - Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * - Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
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
17 * derived from this software without specific prior written permission.
18 *
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
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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
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
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
[a46da63]31/** @addtogroup libc
[b2951e2]32 * @{
33 */
34/** @file
35 */
36
[afa6e74]37#include <libc.h>
[b917098]38#include <async.h>
[2595dab]39#include <io/console.h>
40#include <ipc/console.h>
[afa6e74]41
[2595dab]42void console_clear(int phone)
[afa6e74]43{
[2595dab]44 async_msg_0(phone, CONSOLE_CLEAR);
45}
46
[8be2833]47int console_get_size(int phone, int *cols, int *rows)
[2595dab]48{
[8be2833]49 ipcarg_t cols_v;
50 ipcarg_t rows_v;
51 int rc;
52
53 rc = async_req_0_2(phone, CONSOLE_GET_SIZE, &cols_v, &rows_v);
54
55 *cols = (int) cols_v;
56 *rows = (int) rows_v;
57 return rc;
[2595dab]58}
59
60void console_set_style(int phone, int style)
61{
62 async_msg_1(phone, CONSOLE_SET_STYLE, style);
63}
64
65void console_set_color(int phone, int fg_color, int bg_color, int flags)
66{
67 async_msg_3(phone, CONSOLE_SET_COLOR, fg_color, bg_color, flags);
[d2cc7e1]68}
69
[2595dab]70void console_set_rgb_color(int phone, int fg_color, int bg_color)
[0b6d70d]71{
[2595dab]72 async_msg_2(phone, CONSOLE_SET_RGB_COLOR, fg_color, bg_color);
[0b6d70d]73}
74
[2595dab]75void console_cursor_visibility(int phone, bool show)
[1c03c17]76{
[2595dab]77 async_msg_1(phone, CONSOLE_CURSOR_VISIBILITY, show != false);
78}
79
[50cfa6c]80int console_get_color_cap(int phone, int *ccap)
81{
82 ipcarg_t ccap_tmp;
83 int rc;
84
85 rc = async_req_0_1(phone, CONSOLE_GET_COLOR_CAP, &ccap_tmp);
86 *ccap = ccap_tmp;
87
88 return rc;
89}
90
[2595dab]91void console_kcon_enable(int phone)
92{
93 async_msg_0(phone, CONSOLE_KCON_ENABLE);
94}
95
[19528516]96int console_get_pos(int phone, int *col, int *row)
97{
98 ipcarg_t col_v;
99 ipcarg_t row_v;
100 int rc;
101
102 rc = async_req_0_2(phone, CONSOLE_GET_POS, &col_v, &row_v);
103
104 *col = (int) col_v;
105 *row = (int) row_v;
106 return rc;
107}
108
[8be2833]109void console_goto(int phone, int col, int row)
[2595dab]110{
[9b11daef]111 async_msg_2(phone, CONSOLE_GOTO, col, row);
[2595dab]112}
113
114bool console_get_event(int phone, console_event_t *event)
115{
116 ipcarg_t type;
117 ipcarg_t key;
118 ipcarg_t mods;
119 ipcarg_t c;
120
121 int rc = async_req_0_4(phone, CONSOLE_GET_EVENT, &type, &key, &mods, &c);
122 if (rc < 0)
123 return false;
124
125 event->type = type;
126 event->key = key;
127 event->mods = mods;
128 event->c = c;
129
130 return true;
[1c03c17]131}
132
[a46da63]133/** @}
[b2951e2]134 */
Note: See TracBrowser for help on using the repository browser.