Project

General

Profile

Statistics
| Revision:

root / proj / proj.c @ 165

History | View | Annotate | Download (3.36 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 "graphics_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 "graphics.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

    
47
    if (vbe_get_mode_information(GRAPH_MODE)) {
48
        printf("%s: failed to get information for mode %x.\n", __func__, GRAPH_MODE);
49
        if (cleanup())
50
            printf("%s: failed to cleanup.\n", __func__);
51
        return 1;
52
    }
53

    
54
    graph_map_vram(); // if function fails it aborts program
55

    
56
    if (graph_set_mode(GRAPH_MODE)) {
57
        printf("%s: failed to set graphic mode %x.\n", __func__, GRAPH_MODE);
58
        if (cleanup())
59
            printf("%s: failed to cleanup.\n", __func__);
60
        return 1;
61
    };
62

    
63
    #ifdef DIOGO
64
        graph_paint_screen(0x777777);
65
        sprite_t *shooter1 = get_shooter(); sprite_set_pos(shooter1, 100, 100);
66
        for(double angle = 0; angle < 6.29; angle += 0.01){
67
             sprite_set_angle(shooter1, angle);
68
             //paint_screen(0x777777);
69
             sprite_draw(shooter1);
70
             tickdelay(micros_to_ticks(10000));
71
        }
72
        sprite_dtor(shooter1);
73
        graph_draw();
74
    #endif
75

    
76
    /// loop stuff
77
    int ipc_status, r;
78
    message msg;
79

    
80
    /// subscribe interrupts
81
    if (subscribe_all()) {
82
        if (cleanup())
83
            printf("%s: failed to cleanup.\n", __func__);
84
        return 1;
85
    }
86

    
87
    /// cycle
88
    int good = 1;
89
    while (good) {
90
        /* Get a request message. */
91
        if ((r = driver_receive(ANY, &msg, &ipc_status)) != 0) {
92
            printf("driver_receive failed with %d", r);
93
            continue;
94
        }
95
        if (is_ipc_notify(ipc_status)) { /* received notification */
96
            switch (_ENDPOINT_P(msg.m_source)) {
97
                case HARDWARE: /* hardware interrupt notification */
98
                    for (uint32_t i = 0, n = 1; i < 32; i++, n <<= 1) {
99
                        if (msg.m_notify.interrupts & n) {
100
                            interrupt_handler(i);
101
                        }
102
                    }
103
                    if (scancode[0] == ESC_BREAK_CODE) good = 0;
104
                    break;
105
                default:
106
                    break; /* no other notifications expected: do nothing */
107
            }
108
        } else { /* received standart message, not a notification */
109
            /* no standart message expected: do nothing */
110
        }
111
    }
112

    
113
    // Unsubscribe interrupts
114
    if (unsubscribe_all()) {
115
        if (cleanup())
116
            printf("%s: failed to cleanup.\n", __func__);
117
        return 1;
118
    }
119

    
120

    
121
    if (cleanup()) {
122
        printf("%s: failed to cleanup.\n", __func__);
123
        return 1;
124
    }
125

    
126
    return 0;
127
}