Project

General

Profile

Statistics
| Revision:

root / proj / project / src / hltp.c @ 368

History | View | Annotate | Download (5.56 KB)

1 289 up20180642
#include <lcom/lcf.h>
2
3
#include "hltp.h"
4
5
#include "uart.h"
6
7
static void* hltp_interpret_string(const uint8_t *p, const size_t sz){
8
    void *ret = malloc((sz+1)*sizeof(char));
9 324 up20180642
    for(size_t i = 0; i < sz; ++i) ((char*)ret)[i] = (char)p[i];
10 289 up20180642
    ((char*)ret)[sz] = '\0';
11
    return ret;
12
}
13
int hltp_send_string(const char *p){
14
    uint8_t type = hltp_type_string;
15 324 up20180642
    const uint8_t* ptr[2]; ptr[0] = &type; ptr[1] = (const uint8_t*)p;
16
    size_t         sz[2]; sz [0] =     1; sz [1] = strlen(p);
17 289 up20180642
    return nctp_send(2, ptr, sz);
18
}
19
20 342 up20180655
static host_info_t* hltp_interpret_host_info(const uint8_t *p, const size_t sz) {
21 368 up20180655
    if (sz != sizeof(host_info_t)) return NULL;
22 311 up20180655
    host_info_t *ret = (host_info_t*)malloc(sizeof(host_info_t));
23 342 up20180655
    //size_t pos = 0;
24 311 up20180655
    // players information
25 342 up20180655
    memcpy(ret, p, sz);
26
    /*
27 329 up20180655
    pos += sizeof(int16_t)*10;
28 311 up20180655
    // size of arrays
29 327 up20180655
    memcpy(&(ret->no_bullets), p + pos, sizeof(uint8_t));
30
    pos += sizeof(uint8_t);
31 311 up20180655
    size_t sz = ret->no_bullets;
32
    // array containing the X positions of the bullets
33 329 up20180655
    (ret->bullets_x) = (int16_t*)malloc(sizeof(int16_t)*sz);
34
    memcpy((ret->bullets_x), p + pos, sizeof(int16_t)*sz);
35
    pos += sizeof(int16_t)*sz;
36 311 up20180655
    // array containing the Y positions of the bullets
37 329 up20180655
    (ret->bullets_y) = (int16_t*)malloc(sizeof(int16_t)*(ret->no_bullets));
38
    memcpy((ret->bullets_y), p + pos, sizeof(int16_t)*sz);
39
    pos += sizeof(int16_t)*sz;
40 311 up20180655
    // array containing the X velocity of the bullets
41 329 up20180655
    (ret->bullets_vx) = (int16_t*)malloc(sizeof(int16_t)*(ret->no_bullets));
42
    memcpy((ret->bullets_vx), p + pos, sizeof(int16_t)*sz);
43
    pos += sizeof(int16_t)*sz;
44 311 up20180655
    // array containing the Y velocity of the bullets
45 329 up20180655
    (ret->bullets_vy) = (int16_t*)malloc(sizeof(int16_t)*(ret->no_bullets));
46
    memcpy((ret->bullets_vy), p + pos, sizeof(int16_t)*sz);
47
    pos += sizeof(int16_t)*sz;
48 311 up20180655
    // array containing the shooter id of the bullets
49
    (ret->bullets_shooter) = (bool*)malloc(sizeof(bool)*(ret->no_bullets));
50
    memcpy((ret->bullets_shooter), p + pos, sizeof(bool)*sz);
51 342 up20180655
    */
52 311 up20180655
    return ret;
53
}
54 368 up20180655
int hltp_send_host_info(const host_info_t *p) { //printf("%s, %d\n",__func__, rand());
55 311 up20180655
56 350 up20180655
    //printf("    sending angle: 0x%04X\n", p->host_angle);
57 344 up20180642
58 311 up20180655
    uint8_t type = hltp_type_host;
59 342 up20180655
    const uint8_t* ptr[11]; size_t sz[11];
60 320 up20180655
    ptr[0]  = (uint8_t*)&   type                  ;     sz[0]   = 1;
61 329 up20180655
    ptr[1]  = (uint8_t*)&p->host_x                ;     sz[1]   = sizeof(int16_t);
62
    ptr[2]  = (uint8_t*)&p->host_y                ;     sz[2]   = sizeof(int16_t);
63 350 up20180655
    ptr[3]  = (uint8_t*)&p->host_angle            ;     sz[3]   = sizeof(float);
64 329 up20180655
    ptr[4]  = (uint8_t*)&p->host_health           ;     sz[4]   = sizeof(int16_t);
65
    ptr[5]  = (uint8_t*)&p->host_current_health   ;     sz[5]   = sizeof(int16_t);
66
    ptr[6]  = (uint8_t*)&p->remote_x              ;     sz[6]   = sizeof(int16_t);
67
    ptr[7]  = (uint8_t*)&p->remote_y              ;     sz[7]   = sizeof(int16_t);
68 350 up20180655
    ptr[8]  = (uint8_t*)&p->remote_angle          ;     sz[8]   = sizeof(float);
69 329 up20180655
    ptr[9]  = (uint8_t*)&p->remote_health         ;     sz[9]   = sizeof(int16_t);
70
    ptr[10] = (uint8_t*)&p->remote_current_health ;     sz[10]  = sizeof(int16_t);
71 342 up20180655
    /*
72 327 up20180655
    ptr[11] = (uint8_t*)&p->no_bullets            ;     sz[11]  = sizeof(uint8_t);
73 329 up20180655
    ptr[12] = (uint8_t*) p->bullets_x             ;     sz[12]  = sizeof(int16_t) * p->no_bullets;
74
    ptr[13] = (uint8_t*) p->bullets_y             ;     sz[13]  = sizeof(int16_t) * p->no_bullets;
75
    ptr[14] = (uint8_t*) p->bullets_vx            ;     sz[14]  = sizeof(int16_t) * p->no_bullets;
76
    ptr[15] = (uint8_t*) p->bullets_vy            ;     sz[15]  = sizeof(int16_t) * p->no_bullets;
77
    ptr[16] = (uint8_t*) p->bullets_shooter       ;     sz[16]  = sizeof(bool) * p->no_bullets;
78 342 up20180655
    */
79
    return nctp_send(11, ptr, sz);
80 311 up20180655
}
81
82
static remote_info_t* hltp_interpret_remote_info(const uint8_t *p) {
83
    remote_info_t *ret = (remote_info_t*)malloc(sizeof(remote_info_t));
84
    size_t pos = 0;
85
    // keys pressed
86
    memcpy(&(ret->remote_keys_pressed), p + pos, sizeof(keys_t));
87
    pos += sizeof(keys_t);
88
    // mouse positions
89 320 up20180655
    memcpy(&(ret->remote_angle), p + pos, sizeof(double));
90 311 up20180655
91
    return ret;
92
}
93
int hltp_send_remote_info(const remote_info_t *p) {
94
95
    uint8_t type = hltp_type_remote;
96 325 up20180642
    const uint8_t* ptr[3]; size_t sz[3];
97 368 up20180655
    ptr[0]  = (uint8_t*)&   type                    ;     sz[0] = 1;
98
    ptr[1]  = (uint8_t*)&(p->remote_keys_pressed)   ;     sz[1] = sizeof(keys_t);
99
    ptr[2]  = (uint8_t*)&(p->remote_angle)          ;     sz[2] = sizeof(double);
100 320 up20180655
    return nctp_send(3, ptr, sz);
101
}
102
103
static bullet_info_t* hltp_interpret_bullet_info(const uint8_t *p) {
104
    bullet_info_t *ret = (bullet_info_t*)malloc(sizeof(bullet_info_t));
105
    memcpy(&(ret->new_bullet), p, sizeof(bool));
106
107
    return ret;
108
}
109
110
int hltp_send_bullet_info(const bullet_info_t *p) {
111
    uint8_t type = hltp_type_bullet;
112 325 up20180642
    const uint8_t* ptr[2]; size_t sz[2];
113 320 up20180655
    ptr[0]  = (uint8_t*)&   type            ;     sz[0] = 1;
114
    ptr[1]  = (uint8_t*)&p->new_bullet      ;     sz[1] = sizeof(bool);
115 311 up20180655
    return nctp_send(2, ptr, sz);
116
}
117
118 368 up20180655
hltp_type hltp_interpret(const uint8_t *p, const size_t sz, void **dest){ //printf("%s %d\n",__func__, rand());
119 289 up20180642
    uint8_t ret = p[0];
120 368 up20180655
    //printf("    ret=%d\n", ret);
121 289 up20180642
    switch(ret){
122 320 up20180655
        case hltp_type_string: *dest = hltp_interpret_string     (p+1, sz-1);   break;
123 342 up20180655
        case hltp_type_host  : *dest = hltp_interpret_host_info  (p+1, sz-1);   break;
124
        case hltp_type_remote: *dest = hltp_interpret_remote_info(p+1);   break;
125
        case hltp_type_bullet: *dest = hltp_interpret_bullet_info(p+1);   break;
126 289 up20180642
        default: *dest = NULL; break;
127
    }
128
    return ret;
129
}