Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/console/console.c

    r111d2d6 r8a99c7e  
    3636#include <stdio.h>
    3737#include <adt/prodcons.h>
    38 #include <io/input.h>
     38#include <ipc/input.h>
    3939#include <ipc/console.h>
    4040#include <ipc/vfs.h>
     
    4343#include <loc.h>
    4444#include <event.h>
    45 #include <io/kbd_event.h>
    4645#include <io/keycode.h>
    47 #include <io/chargrid.h>
    48 #include <io/console.h>
    49 #include <io/output.h>
     46#include <screenbuffer.h>
     47#include <fb.h>
     48#include <imgmap.h>
    5049#include <align.h>
    5150#include <malloc.h>
    5251#include <as.h>
    5352#include <fibril_synch.h>
     53#include "images.h"
    5454#include "console.h"
    5555
     
    5757#define NAMESPACE  "term"
    5858
    59 #define UTF8_CHAR_BUFFER_SIZE  (STR_BOUNDS(1) + 1)
     59#define CONSOLE_TOP     66
     60#define CONSOLE_MARGIN  12
     61
     62#define STATE_START   100
     63#define STATE_TOP     8
     64#define STATE_SPACE   4
     65#define STATE_WIDTH   48
     66#define STATE_HEIGHT  48
     67
     68typedef enum {
     69        CONS_DISCONNECTED = 0,
     70        CONS_DISCONNECTED_SELECTED,
     71        CONS_SELECTED,
     72        CONS_IDLE,
     73        CONS_DATA,
     74        CONS_KERNEL,
     75        CONS_LAST
     76} console_state_t;
     77
     78#define UTF8_CHAR_BUFFER_SIZE (STR_BOUNDS(1) + 1)
    6079
    6180typedef struct {
    62         atomic_t refcnt;      /**< Connection reference count */
    63         prodcons_t input_pc;  /**< Incoming keyboard events */
    64        
    65         /**
    66          * Not yet sent bytes of last char event.
    67          */
    68         char char_remains[UTF8_CHAR_BUFFER_SIZE];
    69         size_t char_remains_len;  /**< Number of not yet sent bytes. */
    70        
    71         fibril_mutex_t mtx;  /**< Lock protecting mutable fields */
    72        
    73         size_t index;           /**< Console index */
    74         service_id_t dsid;      /**< Service handle */
    75        
    76         sysarg_t cols;         /**< Number of columns */
    77         sysarg_t rows;         /**< Number of rows */
    78         console_caps_t ccaps;  /**< Console capabilities */
    79        
    80         chargrid_t *frontbuf;    /**< Front buffer */
    81         frontbuf_handle_t fbid;  /**< Front buffer handle */
     81        atomic_t refcnt;           /**< Connection reference count */
     82        prodcons_t input_pc;       /**< Incoming keyboard events */
     83        char char_remains[UTF8_CHAR_BUFFER_SIZE]; /**< Not yet sent bytes of last char event. */
     84        size_t char_remains_len;   /**< Number of not yet sent bytes. */
     85       
     86        fibril_mutex_t mtx;        /**< Lock protecting mutable fields */
     87       
     88        size_t index;              /**< Console index */
     89        console_state_t state;     /**< Console state */
     90        service_id_t dsid;         /**< Service handle */
     91       
     92        vp_handle_t state_vp;      /**< State icon viewport */
     93        sysarg_t cols;             /**< Number of columns */
     94        sysarg_t rows;             /**< Number of rows */
     95        console_caps_t ccaps;      /**< Console capabilities */
     96       
     97        screenbuffer_t *frontbuf;  /**< Front buffer */
     98        frontbuf_handle_t fbid;    /**< Front buffer handle */
    8299} console_t;
    83100
    84 /** Input server proxy */
    85 static input_t *input;
    86 
    87 /** Session to the output server */
    88 static async_sess_t *output_sess;
    89 
    90 /** Output dimensions */
    91 static sysarg_t cols;
    92 static sysarg_t rows;
     101typedef enum {
     102        GRAPHICS_NONE = 0,
     103        GRAPHICS_BASIC = 1,
     104        GRAPHICS_FULL = 2
     105} graphics_state_t;
     106
     107/** Current console state */
     108static graphics_state_t graphics_state = GRAPHICS_NONE;
     109
     110/** State icons */
     111static imagemap_handle_t state_icons[CONS_LAST];
     112
     113/** Session to the input server */
     114static async_sess_t *input_sess;
     115
     116/** Session to the framebuffer server */
     117static async_sess_t *fb_sess;
     118
     119/** Framebuffer resolution */
     120static sysarg_t xres;
     121static sysarg_t yres;
    93122
    94123/** Array of data for virtual consoles */
     
    102131static console_t *kernel_console = &consoles[KERNEL_CONSOLE];
    103132
    104 static int input_ev_key(input_t *, kbd_event_type_t, keycode_t, keymod_t, wchar_t);
    105 static int input_ev_move(input_t *, int, int);
    106 static int input_ev_abs_move(input_t *, unsigned, unsigned, unsigned, unsigned);
    107 static int input_ev_button(input_t *, int, int);
    108 
    109 static input_ev_ops_t input_ev_ops = {
    110         .key = input_ev_key,
    111         .move = input_ev_move,
    112         .abs_move = input_ev_abs_move,
    113         .button = input_ev_button
    114 };
     133static imgmap_t *logo_img;
     134static imgmap_t *nameic_img;
     135
     136static imgmap_t *anim_1_img;
     137static imgmap_t *anim_2_img;
     138static imgmap_t *anim_3_img;
     139static imgmap_t *anim_4_img;
     140
     141static imagemap_handle_t anim_1;
     142static imagemap_handle_t anim_2;
     143static imagemap_handle_t anim_3;
     144static imagemap_handle_t anim_4;
     145
     146static sequence_handle_t anim_seq;
     147
     148static imgmap_t *cons_data_img;
     149static imgmap_t *cons_dis_img;
     150static imgmap_t *cons_dis_sel_img;
     151static imgmap_t *cons_idle_img;
     152static imgmap_t *cons_kernel_img;
     153static imgmap_t *cons_sel_img;
     154
     155static vp_handle_t logo_vp;
     156static imagemap_handle_t logo_handle;
     157
     158static vp_handle_t nameic_vp;
     159static imagemap_handle_t nameic_handle;
     160
     161static vp_handle_t screen_vp;
     162static vp_handle_t console_vp;
     163
     164struct {
     165        sysarg_t x;
     166        sysarg_t y;
     167       
     168        sysarg_t btn_x;
     169        sysarg_t btn_y;
     170       
     171        bool pressed;
     172} mouse;
     173
     174static void cons_redraw_state(console_t *cons)
     175{
     176        if (graphics_state == GRAPHICS_FULL) {
     177                fibril_mutex_lock(&cons->mtx);
     178               
     179                fb_vp_imagemap_damage(fb_sess, cons->state_vp,
     180                    state_icons[cons->state], 0, 0, STATE_WIDTH, STATE_HEIGHT);
     181               
     182                if ((cons->state != CONS_DISCONNECTED) &&
     183                    (cons->state != CONS_KERNEL) &&
     184                    (cons->state != CONS_DISCONNECTED_SELECTED)) {
     185                        char data[5];
     186                        snprintf(data, 5, "%zu", cons->index + 1);
     187                       
     188                        for (size_t i = 0; data[i] != 0; i++)
     189                                fb_vp_putchar(fb_sess, cons->state_vp, i + 2, 1, data[i]);
     190                }
     191               
     192                fibril_mutex_unlock(&cons->mtx);
     193        }
     194}
     195
     196static void cons_kernel_sequence_start(console_t *cons)
     197{
     198        if (graphics_state == GRAPHICS_FULL) {
     199                fibril_mutex_lock(&cons->mtx);
     200               
     201                fb_vp_sequence_start(fb_sess, cons->state_vp, anim_seq);
     202                fb_vp_imagemap_damage(fb_sess, cons->state_vp,
     203                    state_icons[cons->state], 0, 0, STATE_WIDTH, STATE_HEIGHT);
     204               
     205                fibril_mutex_unlock(&cons->mtx);
     206        }
     207}
     208
     209static void cons_update_state(console_t *cons, console_state_t state)
     210{
     211        bool update = false;
     212       
     213        fibril_mutex_lock(&cons->mtx);
     214       
     215        if (cons->state != state) {
     216                cons->state = state;
     217                update = true;
     218        }
     219       
     220        fibril_mutex_unlock(&cons->mtx);
     221       
     222        if (update)
     223                cons_redraw_state(cons);
     224}
     225
     226static void cons_notify_data(console_t *cons)
     227{
     228        fibril_mutex_lock(&switch_mtx);
     229       
     230        if (cons != active_console)
     231                cons_update_state(cons, CONS_DATA);
     232       
     233        fibril_mutex_unlock(&switch_mtx);
     234}
     235
     236static void cons_notify_connect(console_t *cons)
     237{
     238        fibril_mutex_lock(&switch_mtx);
     239       
     240        if (cons == active_console)
     241                cons_update_state(cons, CONS_SELECTED);
     242        else
     243                cons_update_state(cons, CONS_IDLE);
     244       
     245        fibril_mutex_unlock(&switch_mtx);
     246}
     247
     248static void cons_notify_disconnect(console_t *cons)
     249{
     250        fibril_mutex_lock(&switch_mtx);
     251       
     252        if (cons == active_console)
     253                cons_update_state(cons, CONS_DISCONNECTED_SELECTED);
     254        else
     255                cons_update_state(cons, CONS_DISCONNECTED);
     256       
     257        fibril_mutex_unlock(&switch_mtx);
     258}
    115259
    116260static void cons_update(console_t *cons)
     
    120264       
    121265        if ((cons == active_console) && (active_console != kernel_console)) {
    122                 output_update(output_sess, cons->fbid);
    123                 output_cursor_update(output_sess, cons->fbid);
     266                fb_vp_update(fb_sess, console_vp, cons->fbid);
     267                fb_vp_cursor_update(fb_sess, console_vp, cons->fbid);
    124268        }
    125269       
     
    134278       
    135279        if ((cons == active_console) && (active_console != kernel_console))
    136                 output_cursor_update(output_sess, cons->fbid);
     280                fb_vp_cursor_update(fb_sess, console_vp, cons->fbid);
    137281       
    138282        fibril_mutex_unlock(&cons->mtx);
     
    143287{
    144288        fibril_mutex_lock(&cons->mtx);
    145         chargrid_clear(cons->frontbuf);
     289        screenbuffer_clear(cons->frontbuf);
    146290        fibril_mutex_unlock(&cons->mtx);
    147291       
     
    149293}
    150294
    151 static void cons_damage(console_t *cons)
     295static void cons_damage_all(console_t *cons)
    152296{
    153297        fibril_mutex_lock(&switch_mtx);
     
    155299       
    156300        if ((cons == active_console) && (active_console != kernel_console)) {
    157                 output_damage(output_sess, cons->fbid, 0, 0, cons->cols,
     301                fb_vp_damage(fb_sess, console_vp, cons->fbid, 0, 0, cons->cols,
    158302                    cons->rows);
    159                 output_cursor_update(output_sess, cons->fbid);
     303                fb_vp_cursor_update(fb_sess, console_vp, cons->fbid);
    160304        }
    161305       
     
    174318       
    175319        if (cons == kernel_console) {
    176                 output_yield(output_sess);
     320                fb_yield(fb_sess);
    177321                if (!console_kcon()) {
    178                         output_claim(output_sess);
     322                        fb_claim(fb_sess);
    179323                        fibril_mutex_unlock(&switch_mtx);
    180324                        return;
     
    183327       
    184328        if (active_console == kernel_console)
    185                 output_claim(output_sess);
     329                fb_claim(fb_sess);
    186330       
    187331        prev_console = active_console;
    188332        active_console = cons;
    189333       
     334        if (prev_console->state == CONS_DISCONNECTED_SELECTED)
     335                cons_update_state(prev_console, CONS_DISCONNECTED);
     336        else
     337                cons_update_state(prev_console, CONS_IDLE);
     338       
     339        if ((cons->state == CONS_DISCONNECTED) ||
     340            (cons->state == CONS_DISCONNECTED_SELECTED))
     341                cons_update_state(cons, CONS_DISCONNECTED_SELECTED);
     342        else
     343                cons_update_state(cons, CONS_SELECTED);
     344       
    190345        fibril_mutex_unlock(&switch_mtx);
    191346       
    192         cons_damage(cons);
     347        cons_damage_all(cons);
    193348}
    194349
     
    196351{
    197352        fibril_mutex_lock(&switch_mtx);
    198        
     353
    199354        console_t *active_uspace = active_console;
    200         if (active_uspace == kernel_console)
     355        if (active_uspace == kernel_console) {
    201356                active_uspace = prev_console;
    202        
     357        }
    203358        assert(active_uspace != kernel_console);
    204        
     359
    205360        fibril_mutex_unlock(&switch_mtx);
    206        
     361
    207362        return active_uspace;
    208363}
    209364
    210 static int input_ev_key(input_t *input, kbd_event_type_t type, keycode_t key,
    211     keymod_t mods, wchar_t c)
    212 {
    213         if ((key >= KC_F1) && (key < KC_F1 + CONSOLE_COUNT) &&
    214             ((mods & KM_CTRL) == 0)) {
    215                 cons_switch(&consoles[key - KC_F1]);
    216         } else {
    217                 /* Got key press/release event */
    218                 kbd_event_t *event =
    219                     (kbd_event_t *) malloc(sizeof(kbd_event_t));
    220                 if (event == NULL) {
    221                         return ENOMEM;
    222                 }
    223                
    224                 link_initialize(&event->link);
    225                 event->type = type;
    226                 event->key = key;
    227                 event->mods = mods;
    228                 event->c = c;
    229                
    230                 /*
    231                  * Kernel console does not read events
    232                  * from us, so we will redirect them
    233                  * to the (last) active userspace console
    234                  * if necessary.
    235                  */
    236                 console_t *target_console = cons_get_active_uspace();
    237                
    238                 prodcons_produce(&target_console->input_pc,
    239                     &event->link);
    240         }
    241        
    242         return EOK;
    243 }
    244 
    245 static int input_ev_move(input_t *input, int dx, int dy)
    246 {
    247         return EOK;
    248 }
    249 
    250 static int input_ev_abs_move(input_t *input, unsigned x , unsigned y,
    251     unsigned max_x, unsigned max_y)
    252 {
    253         return EOK;
    254 }
    255 
    256 static int input_ev_button(input_t *input, int bnum, int bpress)
    257 {
    258         return EOK;
     365static ssize_t limit(ssize_t val, ssize_t lo, ssize_t hi)
     366{
     367        if (val > hi)
     368                return hi;
     369       
     370        if (val < lo)
     371                return lo;
     372       
     373        return val;
     374}
     375
     376static void cons_mouse_move(sysarg_t dx, sysarg_t dy)
     377{
     378        ssize_t sx = (ssize_t) dx;
     379        ssize_t sy = (ssize_t) dy;
     380       
     381        mouse.x = limit(mouse.x + sx, 0, xres);
     382        mouse.y = limit(mouse.y + sy, 0, yres);
     383       
     384        fb_pointer_update(fb_sess, mouse.x, mouse.y, true);
     385}
     386
     387static void cons_mouse_abs_move(sysarg_t x, sysarg_t y,
     388    sysarg_t max_x, sysarg_t max_y)
     389{
     390        if (max_x && max_y) {
     391                mouse.x = limit(x * xres / max_x, 0, xres);
     392                mouse.y = limit(y * yres / max_y, 0, yres);
     393               
     394                fb_pointer_update(fb_sess, mouse.x, mouse.y, true);
     395        }
     396}
     397
     398static console_t *cons_find_icon(sysarg_t x, sysarg_t y)
     399{
     400        sysarg_t status_start =
     401            STATE_START + (xres - 800) / 2 + CONSOLE_MARGIN;
     402       
     403        if ((y < STATE_TOP) || (y >= STATE_TOP + STATE_HEIGHT))
     404                return NULL;
     405       
     406        if (x < status_start)
     407                return NULL;
     408       
     409        if (x >= status_start + (STATE_WIDTH + STATE_SPACE) * CONSOLE_COUNT)
     410                return NULL;
     411       
     412        if (((x - status_start) % (STATE_WIDTH + STATE_SPACE)) >= STATE_WIDTH)
     413                return NULL;
     414       
     415        sysarg_t btn = (x - status_start) / (STATE_WIDTH + STATE_SPACE);
     416       
     417        if (btn < CONSOLE_COUNT)
     418                return consoles + btn;
     419       
     420        return NULL;
     421}
     422
     423/** Handle mouse click
     424 *
     425 * @param state Button state (true - pressed, false - depressed)
     426 *
     427 */
     428static console_t *cons_mouse_button(bool state)
     429{
     430        if (graphics_state != GRAPHICS_FULL)
     431                return NULL;
     432       
     433        if (state) {
     434                console_t *cons = cons_find_icon(mouse.x, mouse.y);
     435                if (cons != NULL) {
     436                        mouse.btn_x = mouse.x;
     437                        mouse.btn_y = mouse.y;
     438                        mouse.pressed = true;
     439                }
     440               
     441                return NULL;
     442        }
     443       
     444        if ((!state) && (!mouse.pressed))
     445                return NULL;
     446       
     447        console_t *cons = cons_find_icon(mouse.x, mouse.y);
     448        if (cons == cons_find_icon(mouse.btn_x, mouse.btn_y))
     449                return cons;
     450       
     451        mouse.pressed = false;
     452        return NULL;
     453}
     454
     455static void input_events(ipc_callid_t iid, ipc_call_t *icall, void *arg)
     456{
     457        /* Ignore parameters, the connection is already opened */
     458        while (true) {
     459                ipc_call_t call;
     460                ipc_callid_t callid = async_get_call(&call);
     461               
     462                if (!IPC_GET_IMETHOD(call)) {
     463                        /* TODO: Handle hangup */
     464                        async_hangup(input_sess);
     465                        return;
     466                }
     467               
     468                kbd_event_type_t type;
     469                keycode_t key;
     470                keymod_t mods;
     471                wchar_t c;
     472               
     473                switch (IPC_GET_IMETHOD(call)) {
     474                case INPUT_EVENT_KEY:
     475                        type = IPC_GET_ARG1(call);
     476                        key = IPC_GET_ARG2(call);
     477                        mods = IPC_GET_ARG3(call);
     478                        c = IPC_GET_ARG4(call);
     479                       
     480                        if ((key >= KC_F1) && (key < KC_F1 + CONSOLE_COUNT) &&
     481                            ((mods & KM_CTRL) == 0))
     482                                cons_switch(&consoles[key - KC_F1]);
     483                        else {
     484                                /* Got key press/release event */
     485                                kbd_event_t *event =
     486                                    (kbd_event_t *) malloc(sizeof(kbd_event_t));
     487                                if (event == NULL) {
     488                                        async_answer_0(callid, ENOMEM);
     489                                        break;
     490                                }
     491                               
     492                                link_initialize(&event->link);
     493                                event->type = type;
     494                                event->key = key;
     495                                event->mods = mods;
     496                                event->c = c;
     497                               
     498                                /*
     499                                 * Kernel console does not read events
     500                                 * from us, so we will redirect them
     501                                 * to the (last) active userspace console
     502                                 * if necessary.
     503                                 */
     504                                console_t *target_console = cons_get_active_uspace();
     505                               
     506                                prodcons_produce(&target_console->input_pc,
     507                                    &event->link);
     508                        }
     509                       
     510                        async_answer_0(callid, EOK);
     511                        break;
     512                case INPUT_EVENT_MOVE:
     513                        cons_mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
     514                        async_answer_0(callid, EOK);
     515                        break;
     516                case INPUT_EVENT_ABS_MOVE:
     517                        cons_mouse_abs_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call),
     518                            IPC_GET_ARG3(call), IPC_GET_ARG4(call));
     519                        async_answer_0(callid, EOK);
     520                        break;
     521                case INPUT_EVENT_BUTTON:
     522                        /* Got pointer button press/release event */
     523                        if (IPC_GET_ARG1(call) == 1) {
     524                                console_t *cons =
     525                                    cons_mouse_button((bool) IPC_GET_ARG2(call));
     526                                if (cons != NULL)
     527                                        cons_switch(cons);
     528                        }
     529                        async_answer_0(callid, EOK);
     530                        break;
     531                default:
     532                        async_answer_0(callid, EINVAL);
     533                }
     534        }
    259535}
    260536
     
    268544        switch (ch) {
    269545        case '\n':
    270                 updated = chargrid_newline(cons->frontbuf);
     546                updated = screenbuffer_newline(cons->frontbuf);
    271547                break;
    272548        case '\r':
    273549                break;
    274550        case '\t':
    275                 updated = chargrid_tabstop(cons->frontbuf, 8);
     551                updated = screenbuffer_tabstop(cons->frontbuf, 8);
    276552                break;
    277553        case '\b':
    278                 updated = chargrid_backspace(cons->frontbuf);
     554                updated = screenbuffer_backspace(cons->frontbuf);
    279555                break;
    280556        default:
    281                 updated = chargrid_putchar(cons->frontbuf, ch, true);
     557                updated = screenbuffer_putchar(cons->frontbuf, ch, true);
    282558        }
    283559       
     
    291567{
    292568        fibril_mutex_lock(&cons->mtx);
    293         chargrid_set_cursor(cons->frontbuf, col, row);
     569        screenbuffer_set_cursor(cons->frontbuf, col, row);
    294570        fibril_mutex_unlock(&cons->mtx);
    295571       
     
    300576{
    301577        fibril_mutex_lock(&cons->mtx);
    302         chargrid_set_cursor_visibility(cons->frontbuf, visible);
     578        screenbuffer_set_cursor_visibility(cons->frontbuf, visible);
    303579        fibril_mutex_unlock(&cons->mtx);
    304580       
     
    312588       
    313589        fibril_mutex_lock(&cons->mtx);
    314         chargrid_get_cursor(cons->frontbuf, &col, &row);
     590        screenbuffer_get_cursor(cons->frontbuf, &col, &row);
    315591        fibril_mutex_unlock(&cons->mtx);
    316592       
     
    335611        async_answer_1(iid, EOK, size);
    336612        free(buf);
     613       
     614        cons_notify_data(cons);
    337615}
    338616
     
    398676{
    399677        fibril_mutex_lock(&cons->mtx);
    400         chargrid_set_style(cons->frontbuf, style);
     678        screenbuffer_set_style(cons->frontbuf, style);
    401679        fibril_mutex_unlock(&cons->mtx);
    402680}
     
    406684{
    407685        fibril_mutex_lock(&cons->mtx);
    408         chargrid_set_color(cons->frontbuf, bgcolor, fgcolor, attr);
     686        screenbuffer_set_color(cons->frontbuf, bgcolor, fgcolor, attr);
    409687        fibril_mutex_unlock(&cons->mtx);
    410688}
     
    414692{
    415693        fibril_mutex_lock(&cons->mtx);
    416         chargrid_set_rgb_color(cons->frontbuf, bgcolor, fgcolor);
     694        screenbuffer_set_rgb_color(cons->frontbuf, bgcolor, fgcolor);
    417695        fibril_mutex_unlock(&cons->mtx);
    418696}
     
    446724        }
    447725       
    448         if (atomic_postinc(&cons->refcnt) == 0)
     726        if (atomic_postinc(&cons->refcnt) == 0) {
    449727                cons_set_cursor_visibility(cons, true);
     728                cons_notify_connect(cons);
     729        }
    450730       
    451731        /* Accept the connection */
     
    456736                ipc_callid_t callid = async_get_call(&call);
    457737               
    458                 if (!IPC_GET_IMETHOD(call))
     738                if (!IPC_GET_IMETHOD(call)) {
     739                        if (atomic_postdec(&cons->refcnt) == 1)
     740                                cons_notify_disconnect(cons);
     741                       
    459742                        return;
     743                }
    460744               
    461745                switch (IPC_GET_IMETHOD(call)) {
     
    513797}
    514798
    515 static int input_connect(const char *svc)
     799static async_sess_t *input_connect(const char *svc)
    516800{
    517801        async_sess_t *sess;
     
    519803       
    520804        int rc = loc_service_get_id(svc, &dsid, 0);
    521         if (rc != EOK) {
    522                 printf("%s: Input service %s not found\n", NAME, svc);
    523                 return rc;
    524         }
    525 
    526         sess = loc_service_connect(EXCHANGE_ATOMIC, dsid, 0);
    527         if (sess == NULL) {
    528                 printf("%s: Unable to connect to input service %s\n", NAME,
    529                     svc);
    530                 return EIO;
    531         }
    532        
    533         rc = input_open(sess, &input_ev_ops, NULL, &input);
     805        if (rc == EOK) {
     806                sess = loc_service_connect(EXCHANGE_ATOMIC, dsid, 0);
     807                if (sess == NULL) {
     808                        printf("%s: Unable to connect to input service %s\n", NAME,
     809                            svc);
     810                        return NULL;
     811                }
     812        } else
     813                return NULL;
     814       
     815        async_exch_t *exch = async_exchange_begin(sess);
     816        rc = async_connect_to_me(exch, 0, 0, 0, input_events, NULL);
     817        async_exchange_end(exch);
     818       
    534819        if (rc != EOK) {
    535820                async_hangup(sess);
    536                 printf("%s: Unable to communicate with service %s (%s)\n",
     821                printf("%s: Unable to create callback connection to service %s (%s)\n",
    537822                    NAME, svc, str_error(rc));
    538                 return rc;
    539         }
    540        
    541         return EOK;
     823                return NULL;
     824        }
     825       
     826        return sess;
    542827}
    543828
     
    547832}
    548833
    549 static async_sess_t *output_connect(const char *svc)
     834static async_sess_t *fb_connect(const char *svc)
    550835{
    551836        async_sess_t *sess;
     
    556841                sess = loc_service_connect(EXCHANGE_SERIALIZE, dsid, 0);
    557842                if (sess == NULL) {
    558                         printf("%s: Unable to connect to output service %s\n",
     843                        printf("%s: Unable to connect to framebuffer service %s\n",
    559844                            NAME, svc);
    560845                        return NULL;
     
    566851}
    567852
    568 static bool console_srv_init(char *input_svc, char *output_svc)
    569 {
    570         int rc;
     853static bool console_srv_init(char *input_svc, char *fb_svc)
     854{
     855        /* Avoid double initialization */
     856        if (graphics_state != GRAPHICS_NONE)
     857                return false;
    571858       
    572859        /* Connect to input service */
    573         rc = input_connect(input_svc);
    574         if (rc != EOK)
     860        input_sess = input_connect(input_svc);
     861        if (input_sess == NULL)
    575862                return false;
    576863       
    577         /* Connect to output service */
    578         output_sess = output_connect(output_svc);
    579         if (output_sess == NULL)
     864        /* Connect to framebuffer service */
     865        fb_sess = fb_connect(fb_svc);
     866        if (fb_sess == NULL)
    580867                return false;
    581868       
    582869        /* Register server */
    583870        async_set_client_connection(client_connection);
    584         rc = loc_server_register(NAME);
     871        int rc = loc_server_register(NAME);
    585872        if (rc != EOK) {
    586873                printf("%s: Unable to register server (%s)\n", NAME,
     
    589876        }
    590877       
    591         output_get_dimensions(output_sess, &cols, &rows);
    592         output_set_style(output_sess, STYLE_NORMAL);
     878        fb_get_resolution(fb_sess, &xres, &yres);
     879       
     880        /* Initialize the screen */
     881        screen_vp = fb_vp_create(fb_sess, 0, 0, xres, yres);
     882       
     883        if ((xres >= 800) && (yres >= 600)) {
     884                logo_vp = fb_vp_create(fb_sess, xres - 66, 2, 64, 60);
     885                logo_img = imgmap_decode_tga((void *) helenos_tga,
     886                    helenos_tga_size, IMGMAP_FLAG_SHARED);
     887                logo_handle = fb_imagemap_create(fb_sess, logo_img);
     888               
     889                nameic_vp = fb_vp_create(fb_sess, 5, 17, 100, 26);
     890                nameic_img = imgmap_decode_tga((void *) nameic_tga,
     891                    nameic_tga_size, IMGMAP_FLAG_SHARED);
     892                nameic_handle = fb_imagemap_create(fb_sess, nameic_img);
     893               
     894                cons_data_img = imgmap_decode_tga((void *) cons_data_tga,
     895                    cons_data_tga_size, IMGMAP_FLAG_SHARED);
     896                cons_dis_img = imgmap_decode_tga((void *) cons_dis_tga,
     897                    cons_dis_tga_size, IMGMAP_FLAG_SHARED);
     898                cons_dis_sel_img = imgmap_decode_tga((void *) cons_dis_sel_tga,
     899                    cons_dis_sel_tga_size, IMGMAP_FLAG_SHARED);
     900                cons_idle_img = imgmap_decode_tga((void *) cons_idle_tga,
     901                    cons_idle_tga_size, IMGMAP_FLAG_SHARED);
     902                cons_kernel_img = imgmap_decode_tga((void *) cons_kernel_tga,
     903                    cons_kernel_tga_size, IMGMAP_FLAG_SHARED);
     904                cons_sel_img = imgmap_decode_tga((void *) cons_sel_tga,
     905                    cons_sel_tga_size, IMGMAP_FLAG_SHARED);
     906               
     907                state_icons[CONS_DISCONNECTED] =
     908                    fb_imagemap_create(fb_sess, cons_dis_img);
     909                state_icons[CONS_DISCONNECTED_SELECTED] =
     910                    fb_imagemap_create(fb_sess, cons_dis_sel_img);
     911                state_icons[CONS_SELECTED] =
     912                    fb_imagemap_create(fb_sess, cons_sel_img);
     913                state_icons[CONS_IDLE] =
     914                    fb_imagemap_create(fb_sess, cons_idle_img);
     915                state_icons[CONS_DATA] =
     916                    fb_imagemap_create(fb_sess, cons_data_img);
     917                state_icons[CONS_KERNEL] =
     918                    fb_imagemap_create(fb_sess, cons_kernel_img);
     919               
     920                anim_1_img = imgmap_decode_tga((void *) anim_1_tga,
     921                    anim_1_tga_size, IMGMAP_FLAG_SHARED);
     922                anim_2_img = imgmap_decode_tga((void *) anim_2_tga,
     923                    anim_2_tga_size, IMGMAP_FLAG_SHARED);
     924                anim_3_img = imgmap_decode_tga((void *) anim_3_tga,
     925                    anim_3_tga_size, IMGMAP_FLAG_SHARED);
     926                anim_4_img = imgmap_decode_tga((void *) anim_4_tga,
     927                    anim_4_tga_size, IMGMAP_FLAG_SHARED);
     928               
     929                anim_1 = fb_imagemap_create(fb_sess, anim_1_img);
     930                anim_2 = fb_imagemap_create(fb_sess, anim_2_img);
     931                anim_3 = fb_imagemap_create(fb_sess, anim_3_img);
     932                anim_4 = fb_imagemap_create(fb_sess, anim_4_img);
     933               
     934                anim_seq = fb_sequence_create(fb_sess);
     935                fb_sequence_add_imagemap(fb_sess, anim_seq, anim_1);
     936                fb_sequence_add_imagemap(fb_sess, anim_seq, anim_2);
     937                fb_sequence_add_imagemap(fb_sess, anim_seq, anim_3);
     938                fb_sequence_add_imagemap(fb_sess, anim_seq, anim_4);
     939               
     940                console_vp = fb_vp_create(fb_sess, CONSOLE_MARGIN, CONSOLE_TOP,
     941                    xres - 2 * CONSOLE_MARGIN, yres - (CONSOLE_TOP + CONSOLE_MARGIN));
     942               
     943                fb_vp_clear(fb_sess, screen_vp);
     944                fb_vp_imagemap_damage(fb_sess, logo_vp, logo_handle,
     945                    0, 0, 64, 60);
     946                fb_vp_imagemap_damage(fb_sess, nameic_vp, nameic_handle,
     947                    0, 0, 100, 26);
     948               
     949                graphics_state = GRAPHICS_FULL;
     950        } else {
     951                console_vp = screen_vp;
     952                graphics_state = GRAPHICS_BASIC;
     953        }
     954       
     955        fb_vp_set_style(fb_sess, console_vp, STYLE_NORMAL);
     956        fb_vp_clear(fb_sess, console_vp);
     957       
     958        sysarg_t cols;
     959        sysarg_t rows;
     960        fb_vp_get_dimensions(fb_sess, console_vp, &cols, &rows);
    593961       
    594962        console_caps_t ccaps;
    595         output_get_caps(output_sess, &ccaps);
     963        fb_vp_get_caps(fb_sess, console_vp, &ccaps);
     964       
     965        mouse.x = xres / 2;
     966        mouse.y = yres / 2;
     967        mouse.pressed = false;
    596968       
    597969        /* Inititalize consoles */
     
    603975                consoles[i].char_remains_len = 0;
    604976               
    605                 if (i == KERNEL_CONSOLE)
     977                if (graphics_state == GRAPHICS_FULL) {
     978                        /* Create state buttons */
     979                        consoles[i].state_vp =
     980                            fb_vp_create(fb_sess, STATE_START + (xres - 800) / 2 +
     981                            CONSOLE_MARGIN + i * (STATE_WIDTH + STATE_SPACE),
     982                            STATE_TOP, STATE_WIDTH, STATE_HEIGHT);
     983                }
     984               
     985                if (i == KERNEL_CONSOLE) {
     986                        consoles[i].state = CONS_KERNEL;
     987                        cons_redraw_state(&consoles[i]);
     988                        cons_kernel_sequence_start(&consoles[i]);
    606989                        continue;
     990                }
     991               
     992                if (i == 0)
     993                        consoles[i].state = CONS_DISCONNECTED_SELECTED;
     994                else
     995                        consoles[i].state = CONS_DISCONNECTED;
    607996               
    608997                consoles[i].cols = cols;
     
    610999                consoles[i].ccaps = ccaps;
    6111000                consoles[i].frontbuf =
    612                     chargrid_create(cols, rows, CHARGRID_FLAG_SHARED);
     1001                    screenbuffer_create(cols, rows, SCREENBUFFER_FLAG_SHARED);
    6131002               
    6141003                if (consoles[i].frontbuf == NULL) {
     
    6171006                }
    6181007               
    619                 consoles[i].fbid = output_frontbuf_create(output_sess,
    620                     consoles[i].frontbuf);
     1008                consoles[i].fbid = fb_frontbuf_create(fb_sess, consoles[i].frontbuf);
    6211009                if (consoles[i].fbid == 0) {
    6221010                        printf("%s: Unable to create frontbuffer %zu\n", NAME, i);
     
    6241012                }
    6251013               
     1014                cons_redraw_state(&consoles[i]);
     1015               
    6261016                char vc[LOC_NAME_MAXLEN + 1];
    6271017                snprintf(vc, LOC_NAME_MAXLEN, "%s/vc%zu", NAMESPACE, i);
     
    6321022                }
    6331023        }
    634        
    635         cons_damage(active_console);
    6361024       
    6371025        /* Receive kernel notifications */
     
    6451033}
    6461034
    647 static void usage(char *name)
    648 {
    649         printf("Usage: %s <input_dev> <output_dev>\n", name);
     1035static void usage(void)
     1036{
     1037        printf("Usage: console <input_dev> <framebuffer_dev>\n");
    6501038}
    6511039
     
    6531041{
    6541042        if (argc < 3) {
    655                 usage(argv[0]);
     1043                usage();
    6561044                return -1;
    6571045        }
     
    6661054        async_manager();
    6671055       
    668         /* Never reached */
    6691056        return 0;
    6701057}
Note: See TracChangeset for help on using the changeset viewer.