root / proj / proj.c @ 167
History | View | Annotate | Download (3.47 KB)
1 |
#include <lcom/lcf.h> |
---|---|
2 |
#include <lcom/proj.h> |
3 |
#include <lcom/liblm.h> |
4 |
|
5 |
#include <stdbool.h> |
6 |
#include <stdint.h> |
7 |
|
8 |
#include "i8254.h" |
9 |
#include "kbc_macros.h" |
10 |
#include "graph_macros.h" |
11 |
#include "mouse_macros.h" |
12 |
#include "proj_macros.h" |
13 |
#include "errors.h" |
14 |
|
15 |
#include "sprite.h" |
16 |
#include "kbc.h" |
17 |
#include "graph.h" |
18 |
#include "timer.h" |
19 |
#include "keyboard.h" |
20 |
#include "mouse.h" |
21 |
#include "utils.h" |
22 |
#include "interrupts_func.h" |
23 |
#include "proj_func.h" |
24 |
|
25 |
#ifdef DIOGO
|
26 |
#include "shooter.h" |
27 |
#include "pistol.xpm" |
28 |
#endif
|
29 |
|
30 |
int main(int argc, char* argv[]) { |
31 |
|
32 |
lcf_set_language("EN-US");
|
33 |
|
34 |
//lcf_trace_calls("/home/lcom/labs/proj/trace.txt");
|
35 |
|
36 |
//lcf_log_output("/home/lcom/labs/proj/output.txt");
|
37 |
|
38 |
if (lcf_start(argc, argv)) return 1; |
39 |
|
40 |
lcf_cleanup(); |
41 |
|
42 |
return 0; |
43 |
} |
44 |
|
45 |
int(proj_main_loop)(int argc, char *argv[]) { |
46 |
if(graph_init(GRAPH_MODE)){
|
47 |
printf("%s: failed to initalize graphics.\n", __func__);
|
48 |
if (cleanup()) printf("%s: failed to cleanup.\n", __func__); |
49 |
return 1; |
50 |
} |
51 |
|
52 |
#ifdef DIOGO
|
53 |
graph_paint_screen(0x777777);
|
54 |
sprite_t *shooter1 = get_shooter(); sprite_set_pos(shooter1, 100, 100); |
55 |
for(double angle = 0; angle < 6.29; angle += 0.01){ |
56 |
sprite_set_angle(shooter1, angle); |
57 |
//paint_screen(0x777777);
|
58 |
sprite_draw(shooter1); |
59 |
tickdelay(micros_to_ticks(10000));
|
60 |
} |
61 |
sprite_dtor(shooter1); |
62 |
graph_draw(); |
63 |
#endif
|
64 |
|
65 |
/// loop stuff
|
66 |
int ipc_status, r;
|
67 |
message msg; |
68 |
|
69 |
/// subscribe interrupts
|
70 |
if (subscribe_all()) {
|
71 |
if (cleanup())
|
72 |
printf("%s: failed to cleanup.\n", __func__);
|
73 |
return 1; |
74 |
} |
75 |
|
76 |
/// cycle
|
77 |
int good = 1; |
78 |
while (good) {
|
79 |
/* Get a request message. */
|
80 |
if ((r = driver_receive(ANY, &msg, &ipc_status)) != 0) { |
81 |
printf("driver_receive failed with %d", r);
|
82 |
continue;
|
83 |
} |
84 |
if (is_ipc_notify(ipc_status)) { /* received notification */ |
85 |
switch (_ENDPOINT_P(msg.m_source)) {
|
86 |
case HARDWARE: /* hardware interrupt notification */ |
87 |
for (uint32_t i = 0, n = 1; i < 32; i++, n <<= 1) { |
88 |
if (msg.m_notify.interrupts & n) {
|
89 |
interrupt_handler(i); |
90 |
if ((scancode[0]) == ESC_BREAK_CODE) good = 0; |
91 |
} |
92 |
} |
93 |
|
94 |
break;
|
95 |
default:
|
96 |
break; /* no other notifications expected: do nothing */ |
97 |
} |
98 |
} else { /* received standart message, not a notification */ |
99 |
/* no standart message expected: do nothing */
|
100 |
} |
101 |
|
102 |
switch (get_hor_movement()) {
|
103 |
case LEFT:
|
104 |
printf("GOING LEFT.\n");
|
105 |
break;
|
106 |
case RIGHT:
|
107 |
printf("GOING RIGHT.\n");
|
108 |
break;
|
109 |
} |
110 |
switch (get_ver_movement()) {
|
111 |
case UP:
|
112 |
printf("GOING UP.\n");
|
113 |
break;
|
114 |
case DOWN:
|
115 |
printf("GOING DOWN.\n");
|
116 |
break;
|
117 |
} |
118 |
} |
119 |
|
120 |
// Unsubscribe interrupts
|
121 |
if (unsubscribe_all()) {
|
122 |
if (cleanup())
|
123 |
printf("%s: failed to cleanup.\n", __func__);
|
124 |
return 1; |
125 |
} |
126 |
|
127 |
|
128 |
if (cleanup()) {
|
129 |
printf("%s: failed to cleanup.\n", __func__);
|
130 |
return 1; |
131 |
} |
132 |
|
133 |
return 0; |
134 |
} |