Project

General

Profile

Statistics
| Revision:

root / proj / src / proj.c @ 233

History | View | Annotate | Download (10.2 KB)

1 144 up20180655
#include <lcom/lcf.h>
2
#include <lcom/proj.h>
3
#include <lcom/liblm.h>
4 185 up20180655
#include <math.h>
5 144 up20180655
6 149 up20180655
#include "proj_macros.h"
7 179 up20180642
#include "proj_func.h"
8 147 up20180655
9 149 up20180655
#include "kbc.h"
10
#include "timer.h"
11
#include "keyboard.h"
12 150 up20180655
#include "mouse.h"
13 189 up20180655
#include "graph.h"
14 153 up20180655
#include "interrupts_func.h"
15 149 up20180655
16 179 up20180642
#include "graph.h"
17
#include "sprite.h"
18
#include "rectangle.h"
19 182 up20180642
#include "font.h"
20 192 up20180642
#include "ent.h"
21 168 up20180642
22 192 up20180642
#include "crosshair.h"
23
#include "shooter.h"
24
#include "pistol.h"
25
#include "nothing.h"
26 231 up20180655
//#include "bullet.h"
27 216 up20180642
#include "map1.h"
28 183 up20180642
29 226 up20180642
#include "list.h"
30
31 144 up20180655
int main(int argc, char* argv[]) {
32
33
    lcf_set_language("EN-US");
34
35
    //lcf_trace_calls("/home/lcom/labs/proj/trace.txt");
36
37 189 up20180655
    lcf_log_output("/home/lcom/labs/proj/output.txt");
38 144 up20180655
39
    if (lcf_start(argc, argv)) return 1;
40
41
    lcf_cleanup();
42
43
    return 0;
44
}
45 147 up20180655
46 149 up20180655
int(proj_main_loop)(int argc, char *argv[]) {
47 170 up20180642
48
    int r;
49
50 221 up20180642
    font_t *consolas = font_ctor("/home/lcom/labs/proj/media/font/Consolas/xpm2");
51 192 up20180642
    if(consolas == NULL){ printf("Failed to load consolas\n"); return 1; }
52
53 170 up20180642
    /// subscribe interrupts
54
    if (subscribe_all()) { return 1; }
55
56
    /// initialize graphics
57 166 up20180642
    if(graph_init(GRAPH_MODE)){
58
        printf("%s: failed to initalize graphics.\n", __func__);
59
        if (cleanup()) printf("%s: failed to cleanup.\n", __func__);
60 152 up20180642
        return 1;
61
    }
62
63 188 up20180642
    /// Load stuff
64 216 up20180642
    basic_sprite_t       *bsp_crosshair = NULL;
65
    basic_sprite_t       *bsp_shooter   = NULL;
66
    basic_sprite_t       *bsp_pistol    = NULL;
67
    basic_sprite_t       *bsp_nothing   = NULL;
68
    map_t                *map1      = NULL;
69
    sprite_t             *sp_crosshair  = NULL;
70 188 up20180642
    {
71
        graph_clear_screen();
72
        text_t *txt = text_ctor(consolas, "Loading...");
73
        text_draw(txt);
74
        text_dtor(txt);
75
        graph_draw();
76 192 up20180642
77
        bsp_crosshair = get_crosshair(); if(bsp_crosshair == NULL) printf("Failed to get crosshair\n");
78
        bsp_shooter   = get_shooter  (); if(bsp_shooter   == NULL) printf("Failed to get shooter\n");
79
        bsp_pistol    = get_pistol   (); if(bsp_pistol    == NULL) printf("Failed to get pistol\n");
80
        bsp_nothing   = get_nothing  (); if(bsp_nothing   == NULL) printf("Failed to get nothing\n");
81 216 up20180642
        map1          = get_map1     (); if(map1          == NULL) printf("Failed to get map1\n");
82 192 up20180642
83
        sp_crosshair = sprite_ctor(bsp_crosshair); if(sp_crosshair == NULL) printf("Failed to get crosshair sprite\n");
84 188 up20180642
    }
85 192 up20180642
86 159 up20180642
    #ifdef DIOGO
87 188 up20180642
        graph_clear_screen();
88 183 up20180642
89 188 up20180642
        rectangle_t *rect = rectangle_ctor(0,0,400,100);
90
        rectangle_set_pos(rect,
91
                          graph_get_XRes()/2    - rectangle_get_w(rect)/2,
92
                          graph_get_YRes()*0.25 - rectangle_get_h(rect)/2);
93
        rectangle_set_fill_color(rect, BLACK);
94 179 up20180642
        rectangle_set_outline_width(rect, 2);
95 188 up20180642
        rectangle_set_outline_color(rect, WHITE);
96 179 up20180642
        rectangle_draw(rect);
97
98 188 up20180642
        text_t *txt  = text_ctor(consolas, "Hello world!");
99
        text_set_color(txt, 0x888888);
100 182 up20180642
101 188 up20180642
        text_set_pos(txt, rectangle_get_x(rect)+rectangle_get_w(rect)/2,
102
                          rectangle_get_y(rect)+rectangle_get_h(rect)/2);
103
        text_set_valign(txt, text_valign_center);
104
        text_set_halign(txt, text_halign_center);
105 183 up20180642
        text_draw(txt);
106
        text_dtor(txt);
107
108
        graph_draw();
109 188 up20180642
        rectangle_dtor(rect);
110 183 up20180642
111 226 up20180642
        list_t *l = list_ctor();
112
        int *p = NULL;
113
        for(int i = 10; i < 20; ++i){
114
            p = malloc(sizeof(int));
115
            *p = i;
116
            printf("INSERTING %d\n", i);
117
            list_insert(l, list_end(l), p);
118
            printf("INSERTED, SIZE=%d\n", list_size(l));
119
        }
120
        list_node_t *it = list_begin(l);
121
        while(it != list_end(l)){
122
            printf("%d\n", **(int**)list_node_val(it));
123
            it = list_node_next(it);
124
        }
125
        while(list_size(l) > 0){
126
            printf("ERASING\n");
127
            void *p = list_erase(l, list_begin(l));
128
            printf("ERASED %d, SIZE=%d\n", *(int*)p, list_size(l));
129
            free(p);
130
        }
131
        printf("DONE\n");
132
        if(list_dtor(l)) printf("COULD NOT DESTRUCT LIST\n");
133
134
135 183 up20180642
        tickdelay(micros_to_ticks(1000000));
136
137 159 up20180642
    #endif
138 152 up20180642
139 171 up20180655
    #ifdef TELMO
140 216 up20180642
        ent_set_scale(DEFAULT_SCALE);
141 192 up20180642
142 201 up20180642
        gunner_t *shooter1 = gunner_ctor(bsp_shooter, bsp_pistol); if(shooter1 == NULL) printf("Failed to get shooter1\n");
143 232 up20180655
        gunner_set_spawn(shooter1, 75, 75);
144 222 up20180655
        gunner_set_pos(shooter1, 75, 75);
145 192 up20180642
146 201 up20180642
        gunner_t *shooter2 = gunner_ctor(bsp_shooter, bsp_nothing);
147 232 up20180655
        gunner_set_spawn(shooter2, 975, 75);
148 231 up20180655
        gunner_set_pos(shooter2, 775, 75);
149 192 up20180642
150 231 up20180655
        //bullet_t *bullet = bullet_ctor(get_bullet(), 400.0, 400.0, 2.0, -1.0);
151 202 up20180655
152 231 up20180655
        list_t *bullet_list = list_ctor();
153
154 216 up20180642
        ent_set_origin(gunner_get_x(shooter1)-ent_get_XLength()/2.0,
155
                       gunner_get_y(shooter1)-ent_get_YLength()/2.0);
156 214 up20180642
157 200 up20180655
        uint32_t refresh_count_value = sys_hz() / REFRESH_RATE;
158 231 up20180655
159
        uint8_t last_lb = 0;
160 171 up20180655
    #endif
161
162 149 up20180655
    /// loop stuff
163 170 up20180642
    int ipc_status;
164 149 up20180655
    message msg;
165 147 up20180655
    int good = 1;
166 168 up20180642
167 183 up20180642
    #ifdef DIOGO
168
        good = 0;
169
    #endif
170
171 147 up20180655
    while (good) {
172
        /* Get a request message. */
173
        if ((r = driver_receive(ANY, &msg, &ipc_status)) != 0) {
174
            printf("driver_receive failed with %d", r);
175
            continue;
176
        }
177
        if (is_ipc_notify(ipc_status)) { /* received notification */
178
            switch (_ENDPOINT_P(msg.m_source)) {
179
                case HARDWARE: /* hardware interrupt notification */
180 153 up20180655
                    for (uint32_t i = 0, n = 1; i < 32; i++, n <<= 1) {
181
                        if (msg.m_notify.interrupts & n) {
182
                            interrupt_handler(i);
183 167 up20180655
                            if ((scancode[0]) == ESC_BREAK_CODE) good = 0;
184 171 up20180655
                            #ifdef TELMO
185 187 up20180655
                            if (i == 0) {
186
                                if (no_interrupts % refresh_count_value == 0) {
187 233 up20180655
                                    update_movement(map1, shooter1, shooter2);
188 228 up20180655
                                    //bullet_update_movement(bullet);
189 232 up20180655
190
                                    if (no_interrupts % 180 == 0) gunner_set_pos(shooter2, 775, 75);
191
192 231 up20180655
                                    update_game_state(map1, shooter2, bullet_list);
193 216 up20180642
194 220 up20180655
                                    if(map_collides_gunner(map1, shooter1)){
195 216 up20180642
                                        printf("COLLIDING\n");
196
                                    }
197
198 231 up20180655
                                    /*if (gunner_collides_bullet(shooter1, bullet)) {
199 228 up20180655
                                        printf("Bullet Collide with Shooter\n");
200 230 up20180655
                                        gunner_set_curr_health(shooter1, gunner_get_curr_health(shooter1) - bullet_get_damage(bullet));
201 231 up20180655
                                    }*/
202 200 up20180655
                                    update_scale();
203 192 up20180642
204 216 up20180642
                                    ent_set_origin(gunner_get_x(shooter1)-ent_get_XLength()/2.0,
205
                                                   gunner_get_y(shooter1)-ent_get_YLength()/2.0);
206 214 up20180642
207 192 up20180642
                                    sprite_set_pos(sp_crosshair, get_mouse_X(), get_mouse_Y());
208 187 up20180655
                                    double angle = get_mouse_angle(shooter1);
209 201 up20180642
                                    gunner_set_angle(shooter1, angle - M_PI_2);
210 187 up20180655
                                    graph_clear_screen();
211 207 up20180642
212
                                    clock_t t = clock();
213
214 216 up20180642
                                    map_draw   (map1);
215 201 up20180642
                                    gunner_draw(shooter2);
216
                                    gunner_draw(shooter1);
217 231 up20180655
                                    bullet_draw_list(bullet_list);
218 207 up20180642
219 222 up20180655
                                    t = clock()-t; //printf("%d\n", (t*1000)/CLOCKS_PER_SEC);
220 207 up20180642
221 192 up20180642
                                    sprite_draw(sp_crosshair);
222 187 up20180655
                                    graph_draw();
223
                                }
224 184 up20180655
                            }
225 220 up20180655
                            if (i == 12) {
226
                                if (counter_mouse_ih >= 3) {
227
                                    struct packet pp = mouse_parse_packet(packet_mouse_ih);
228 231 up20180655
                                    update_mouse(&pp);
229 220 up20180655
                                    //printf("X: %d Y: %d\n", get_mouse_X(), get_mouse_Y());
230
                                    counter_mouse_ih = 0;
231 231 up20180655
232
                                    if (last_lb ^ get_key_presses()->lb_pressed && get_key_presses()->lb_pressed) {
233
                                        shoot_bullet(shooter1, bullet_list);
234
                                    }
235
236
                                    last_lb = get_key_presses()->lb_pressed;
237 220 up20180655
                                }
238
                            }
239 171 up20180655
                            #endif
240 153 up20180655
                        }
241 147 up20180655
                    }
242 167 up20180655
243 147 up20180655
                    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 149 up20180655
252 192 up20180642
    #ifdef TELMO
253 201 up20180642
        gunner_dtor(shooter1); shooter1 = NULL;
254 216 up20180642
        gunner_dtor(shooter2); shooter2 = NULL;
255 231 up20180655
256
        while(list_size(bullet_list) > 0){
257
            bullet_t *p = (bullet_t*)list_erase(bullet_list, list_begin(bullet_list));
258
            free(p);
259
        }
260
        if(list_dtor(bullet_list)) printf("COULD NOT DESTRUCT BULLET LIST\n");
261 192 up20180642
    #endif
262 188 up20180642
263 216 up20180642
    basic_sprite_dtor      (bsp_crosshair); bsp_crosshair = NULL;
264
    basic_sprite_dtor      (bsp_shooter  ); bsp_shooter   = NULL;
265
    sprite_dtor            (sp_crosshair ); sp_crosshair  = NULL;
266
    basic_sprite_dtor      (bsp_pistol   ); bsp_pistol    = NULL;
267
    basic_sprite_dtor      (bsp_nothing  ); bsp_nothing   = NULL;
268
    map_dtor               (map1         ); map1          = NULL;
269
    font_dtor              (consolas     ); consolas      = NULL;
270 192 up20180642
271 153 up20180655
    // Unsubscribe interrupts
272 155 up20180655
    if (unsubscribe_all()) {
273
        if (cleanup())
274
            printf("%s: failed to cleanup.\n", __func__);
275 152 up20180642
        return 1;
276
    }
277
278 155 up20180655
279
    if (cleanup()) {
280
        printf("%s: failed to cleanup.\n", __func__);
281 152 up20180642
        return 1;
282
    }
283
284 149 up20180655
    return 0;
285 147 up20180655
}