1 | /*
|
---|
2 | * Copyright (c) 2019 Jiri Svoboda
|
---|
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 |
|
---|
29 | /** @addtogroup display
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /**
|
---|
33 | * @file Display server output
|
---|
34 | */
|
---|
35 |
|
---|
36 | #include <errno.h>
|
---|
37 | #include <gfx/context.h>
|
---|
38 | #include <guigfx/canvas.h>
|
---|
39 | #include <io/kbd_event.h>
|
---|
40 | #include <io/pos_event.h>
|
---|
41 | #include <stdio.h>
|
---|
42 | #include <stdlib.h>
|
---|
43 | #include <window.h>
|
---|
44 | #include "output.h"
|
---|
45 |
|
---|
46 | static void (*kbd_ev_handler)(void *, kbd_event_t *);
|
---|
47 | static void *kbd_ev_arg;
|
---|
48 | static void (*pos_ev_handler)(void *, pos_event_t *);
|
---|
49 | static void *pos_ev_arg;
|
---|
50 |
|
---|
51 | static void on_keyboard_event(widget_t *widget, void *data)
|
---|
52 | {
|
---|
53 | printf("Keyboard event\n");
|
---|
54 | kbd_ev_handler(kbd_ev_arg, (kbd_event_t *) data);
|
---|
55 | }
|
---|
56 |
|
---|
57 | static void on_position_event(widget_t *widget, void *data)
|
---|
58 | {
|
---|
59 | pos_ev_handler(pos_ev_arg, (pos_event_t *) data);
|
---|
60 | }
|
---|
61 |
|
---|
62 | errno_t output_init(void (*kbd_event_handler)(void *, kbd_event_t *),
|
---|
63 | void *karg, void (*pos_event_handler)(void *, pos_event_t *),
|
---|
64 | void *parg, gfx_context_t **rgc)
|
---|
65 | {
|
---|
66 | canvas_gc_t *cgc = NULL;
|
---|
67 | window_t *window = NULL;
|
---|
68 | pixel_t *pixbuf = NULL;
|
---|
69 | surface_t *surface = NULL;
|
---|
70 | canvas_t *canvas = NULL;
|
---|
71 | gfx_coord_t vw, vh;
|
---|
72 | errno_t rc;
|
---|
73 |
|
---|
74 | printf("Init canvas..\n");
|
---|
75 | kbd_ev_handler = kbd_event_handler;
|
---|
76 | kbd_ev_arg = karg;
|
---|
77 |
|
---|
78 | pos_ev_handler = pos_event_handler;
|
---|
79 | pos_ev_arg = parg;
|
---|
80 |
|
---|
81 | window = window_open("comp:0/winreg", NULL,
|
---|
82 | WINDOW_MAIN | WINDOW_DECORATED, "Display Server");
|
---|
83 | if (window == NULL) {
|
---|
84 | printf("Error creating window.\n");
|
---|
85 | return -1;
|
---|
86 | }
|
---|
87 |
|
---|
88 | vw = 800;
|
---|
89 | vh = 600;
|
---|
90 |
|
---|
91 | pixbuf = calloc(vw * vh, sizeof(pixel_t));
|
---|
92 | if (pixbuf == NULL) {
|
---|
93 | printf("Error allocating memory for pixel buffer.\n");
|
---|
94 | return ENOMEM;
|
---|
95 | }
|
---|
96 |
|
---|
97 | surface = surface_create(vw, vh, pixbuf, 0);
|
---|
98 | if (surface == NULL) {
|
---|
99 | printf("Error creating surface.\n");
|
---|
100 | return EIO;
|
---|
101 | }
|
---|
102 |
|
---|
103 | canvas = create_canvas(window_root(window), NULL, vw, vh,
|
---|
104 | surface);
|
---|
105 | if (canvas == NULL) {
|
---|
106 | printf("Error creating canvas.\n");
|
---|
107 | return EIO;
|
---|
108 | }
|
---|
109 |
|
---|
110 | sig_connect(&canvas->keyboard_event, NULL, on_keyboard_event);
|
---|
111 | sig_connect(&canvas->position_event, NULL, on_position_event);
|
---|
112 |
|
---|
113 | window_resize(window, 0, 0, vw + 10, vh + 30, WINDOW_PLACEMENT_ANY);
|
---|
114 | window_exec(window);
|
---|
115 |
|
---|
116 | printf("Create canvas GC\n");
|
---|
117 | rc = canvas_gc_create(canvas, surface, &cgc);
|
---|
118 | if (rc != EOK)
|
---|
119 | return rc;
|
---|
120 |
|
---|
121 | *rgc = canvas_gc_get_ctx(cgc);
|
---|
122 | return EOK;
|
---|
123 | }
|
---|
124 |
|
---|
125 | /** @}
|
---|
126 | */
|
---|