Project

General

Profile

Statistics
| Revision:

root / lab5 / lab5.c @ 121

History | View | Annotate | Download (9.4 KB)

1
#include <lcom/lcf.h>
2

    
3
#include <lcom/lab5.h>
4

    
5
#include <stdint.h>
6
#include <stdio.h>
7

    
8
#include "graphics.h"
9
#include "graphics_macros.h"
10
#include "keyboard.h"
11
#include "kbc.h"
12
#include "kbc_macros.h"
13

    
14
// Any header files included below this line should have been created by you
15

    
16
int main(int argc, char *argv[]) {
17
    // sets the language of LCF messages (can be either EN-US or PT-PT)
18
    lcf_set_language("EN-US");
19

    
20
    // enables to log function invocations that are being "wrapped" by LCF
21
    // [comment this out if you don't want/need it]
22
    lcf_trace_calls("/home/lcom/labs/lab5/trace.txt");
23

    
24
    // enables to save the output of printf function calls on a file
25
    // [comment this out if you don't want/need it]
26
    lcf_log_output("/home/lcom/labs/lab5/output.txt");
27

    
28
    // handles control over to LCF
29
    // [LCF handles command line arguments and invokes the right function]
30
    if (lcf_start(argc, argv))
31
    return 1;
32

    
33
    // LCF clean up tasks
34
    // [must be the last statement before return]
35
    lcf_cleanup();
36

    
37
    return 0;
38
}
39

    
40
int(video_test_init)(uint16_t mode, uint8_t delay) {
41
    //int r;
42
    //if ((r = get_permissions_first_mbyte()))
43
    //    panic("%s: sys_privctl (ADD MEM) failed: %d\n", __func__, r);
44

    
45
    if (vbe_get_mode_information(mode)) {
46
        printf("%s: failed to get information for mode %x.\n", __func__, mode);
47
        if (vg_exit())
48
            printf("%s: vg_exit failed to exit to text mode.\n", __func__);
49
        return 1;
50
    }
51

    
52
    map_vram(); // if function fails it aborts program
53

    
54
    if (set_graphics_mode(mode)) {
55
        printf("%s: failed to set graphic mode %x.\n", __func__, mode);
56
        if (vg_exit())
57
            printf("%s: vg_exit failed to exit to text mode.\n", __func__);
58
        return 1;
59
    };
60

    
61
    tickdelay(micros_to_ticks(delay*1e6));
62

    
63
    if (vg_exit()) {
64
        printf("%s: vg_exit failed to exit to text mode.\n", __func__);
65
        if (free_memory())
66
            printf("%s: lm_free failed\n", __func__);
67
        return 1;
68
    }
69

    
70
    if (free_memory()) {
71
        printf("%s: lm_free failed\n", __func__);
72
        return 1;
73
    }
74

    
75
    return 0;
76
}
77

    
78
// lcom_run lab5 "rectangle 105 100 100 100 100 1"
79
// lcom_run lab5 "rectangle 115 100 100 100 100 FF0000"
80
int(video_test_rectangle)(uint16_t mode, uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint32_t color) {
81
    int r;
82
    //if ((r = get_permissions_first_mbyte()))
83
    //    panic("%s: sys_privctl (ADD MEM) failed: %d\n", __func__, r);
84

    
85
    if (vbe_get_mode_information(mode)) {
86
        printf("%s: failed to get information for mode %x.\n", __func__, mode);
87
        if (vg_exit())
88
            printf("%s: vg_exit failed to exit to text mode.\n", __func__);
89
        return 1;
90
    }
91

    
92
    map_vram(); // if function fails it aborts program
93

    
94
    if (set_graphics_mode(mode)) {
95
        printf("%s: failed to set graphic mode %x.\n", __func__, mode);
96
        if (vg_exit()) printf("%s: vg_exit failed to exit to text mode.\n", __func__);
97
        return 1;
98
    };
99

    
100
    if (draw_rectangle(x, y, width, height, color)) {
101
        if (vg_exit()) {
102
            printf("%s: vg_exit failed to exit to text mode.\n", __func__);
103
            if (free_memory()) printf("%s: lm_free failed\n", __func__);
104
        }
105
        return 1;
106
    }
107

    
108
    /// loop stuff
109
    int ipc_status;
110
    message msg;
111
    /// Keyboard interrupt handling
112
    uint8_t kbc_irq_bit = KBC_IRQ;
113
    int kbc_id = 0;
114
    int kbc_irq = BIT(kbc_irq_bit);
115
    if (subscribe_kbc_interrupt(kbc_irq_bit, &kbc_id)) {
116
        if (vg_exit()) {
117
            printf("%s: vg_exit failed to exit to text mode.\n", __func__);
118
            if (free_memory()) printf("%s: lm_free failed\n", __func__);
119
        }
120
        return 1;
121
    }
122
    /// cycle
123
    int good = 1;
124
    while (good) {
125
        /* Get a request message. */
126
        if ((r = driver_receive(ANY, &msg, &ipc_status)) != 0) {
127
            printf("driver_receive failed with %d", r);
128
            continue;
129
        }
130
        if (is_ipc_notify(ipc_status)) { /* received notification */
131
            switch (_ENDPOINT_P(msg.m_source)) {
132
                case HARDWARE: /* hardware interrupt notification */
133
                    if (msg.m_notify.interrupts & kbc_irq) { /* subscribed interrupt */
134
                        kbc_ih();
135
                        if (scancode[0] == ESC_BREAK_CODE) good = 0;
136
                    }
137
                    break;
138
                default:
139
                    break; /* no other notifications expected: do nothing */
140
            }
141
        } else { /* received standart message, not a notification */
142
            /* no standart message expected: do nothing */
143
        }
144
    }
145

    
146
    if (unsubscribe_interrupt(&kbc_id)) {
147
        if (vg_exit()) {
148
            printf("%s: vg_exit failed to exit to text mode.\n", __func__);
149
            if (free_memory()) printf("%s: lm_free failed\n", __func__);
150
        }
151
        return 1;
152
    };
153

    
154
    if (vg_exit()) {
155
        printf("%s: vg_exit failed to exit to text mode.\n", __func__);
156
        if (free_memory()) printf("%s: lm_free failed\n", __func__);
157
        return 1;
158
    }
159

    
160
    if (free_memory()) {
161
        printf("%s: lm_free failed\n", __func__);
162
        return 1;
163
    }
164

    
165
    return 0;
166
}
167

    
168
int(video_test_pattern)(uint16_t mode, uint8_t no_rectangles, uint32_t first, uint8_t step) {
169
    int r;
170
    //if ((r = get_permissions_first_mbyte()))
171
    //    panic("%s: sys_privctl (ADD MEM) failed: %d\n", __func__, r);
172

    
173
    if (vbe_get_mode_information(mode)) {
174
        printf("%s: failed to get information for mode %x.\n", __func__, mode);
175
        if (vg_exit())
176
            printf("%s: vg_exit failed to exit to text mode.\n", __func__);
177
        return 1;
178
    }
179

    
180
    map_vram(); // if function fails it aborts program
181

    
182
    if (set_graphics_mode(mode)) {
183
        printf("%s: failed to set graphic mode %x.\n", __func__, mode);
184
        if (vg_exit()) printf("%s: vg_exit failed to exit to text mode.\n", __func__);
185
        return 1;
186
    };
187

    
188

    
189

    
190

    
191
    uint16_t W = get_XRes()/no_rectangles;
192
    uint16_t H = get_YRes()/no_rectangles;
193

    
194
    uint32_t color, R, G, B;
195
    for(uint8_t row = 0; row < no_rectangles; ++row){
196
        for(uint8_t col = 0; col < no_rectangles; ++col){
197
            if(get_bytes_pixel() == 1){
198
                color = (first + (row * no_rectangles + col) * step) % (1 << get_bits_pixel());
199
            }else{
200
                R = (GET_RED(first) + col*step) % (1 << get_RedMaskSize());
201
                G = (GET_GRE(first) + row*step) % (1 << get_GreenMaskSize());
202
                B = (GET_BLU(first) + (col+row)*step) % (1 << get_BlueMaskSize());
203
                color = SET_COLOR(R,G,B);
204
            }
205
            if (draw_rectangle(col*W,row*H,W,H,color)) {
206
                if (vg_exit()) {
207
                    printf("%s: vg_exit failed to exit to text mode.\n", __func__);
208
                    if (free_memory()) printf("%s: lm_free failed\n", __func__);
209
                }
210
                return 1;
211
            }
212
        }
213
    }
214
    /// loop stuff
215
    int ipc_status;
216
    message msg;
217
    /// Keyboard interrupt handling
218
    uint8_t kbc_irq_bit = KBC_IRQ;
219
    int kbc_id = 0;
220
    int kbc_irq = BIT(kbc_irq_bit);
221
    if (subscribe_kbc_interrupt(kbc_irq_bit, &kbc_id)) {
222
        if (vg_exit()) {
223
            printf("%s: vg_exit failed to exit to text mode.\n", __func__);
224
            if (free_memory()) printf("%s: lm_free failed\n", __func__);
225
        }
226
        return 1;
227
    }
228
    /// cycle
229
    int good = 1;
230
    while (good) {
231
        /* Get a request message. */
232
        if ((r = driver_receive(ANY, &msg, &ipc_status)) != 0) {
233
            printf("driver_receive failed with %d", r);
234
            continue;
235
        }
236
        if (is_ipc_notify(ipc_status)) { /* received notification */
237
            switch (_ENDPOINT_P(msg.m_source)) {
238
                case HARDWARE: /* hardware interrupt notification */
239
                    if (msg.m_notify.interrupts & kbc_irq) { /* subscribed interrupt */
240
                        kbc_ih();
241
                        if (scancode[0] == ESC_BREAK_CODE) good = 0;
242
                    }
243
                    break;
244
                default:
245
                    break; /* no other notifications expected: do nothing */
246
            }
247
        } else { /* received standart message, not a notification */
248
            /* no standart message expected: do nothing */
249
        }
250
    }
251

    
252
    if (unsubscribe_interrupt(&kbc_id)) {
253
        if (vg_exit()) {
254
            printf("%s: vg_exit failed to exit to text mode.\n", __func__);
255
            if (free_memory()) printf("%s: lm_free failed\n", __func__);
256
        }
257
        return 1;
258
    };
259

    
260
    if (vg_exit()) {
261
        printf("%s: vg_exit failed to exit to text mode.\n", __func__);
262
        if (free_memory()) printf("%s: lm_free failed\n", __func__);
263
        return 1;
264
    }
265

    
266
    if (free_memory()) {
267
        printf("%s: lm_free failed\n", __func__);
268
        return 1;
269
    }
270

    
271
    return 0;
272
}
273

    
274
int(video_test_xpm)(xpm_map_t xpm, uint16_t x, uint16_t y) {
275
    /* To be completed */
276
    printf("%s(%8p, %u, %u): under construction\n", __func__, xpm, x, y);
277

    
278
    return 1;
279
}
280

    
281
int(video_test_move)(xpm_map_t xpm, uint16_t xi, uint16_t yi, uint16_t xf, uint16_t yf, int16_t speed, uint8_t fr_rate) {
282

    
283
    return 1;
284
}
285

    
286
int(video_test_controller)() {
287
    /* To be completed */
288
    printf("%s(): under construction\n", __func__);
289

    
290
    return 1;
291
}