forked from laamaa/m8c
-
Notifications
You must be signed in to change notification settings - Fork 1
/
command.c
140 lines (111 loc) · 4.01 KB
/
command.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// Copyright 2021 Jonne Kokkonen
// Released under the MIT licence, https://opensource.org/licenses/MIT
#include <SDL_log.h>
#include "command.h"
#include "render.h"
// Convert 2 little-endian 8bit bytes to a 16bit integer
static uint16_t decodeInt16(uint8_t *data, uint8_t start) {
return data[start] | (uint16_t)data[start + 1] << 8;
}
enum m8_command_bytes {
draw_rectangle_command = 0xFE,
draw_rectangle_command_datalength = 12,
draw_character_command = 0xFD,
draw_character_command_datalength = 12,
draw_oscilloscope_waveform_command = 0xFC,
draw_oscilloscope_waveform_command_mindatalength = 1 + 3,
draw_oscilloscope_waveform_command_maxdatalength = 1 + 3 + 320,
joypad_keypressedstate_command = 0xFB,
joypad_keypressedstate_command_datalength = 2
};
static inline void dump_packet(uint32_t size, uint8_t *recv_buf) {
for (uint16_t a = 0; a < size; a++) {
SDL_LogDebug(SDL_LOG_CATEGORY_APPLICATION, "0x%02X ", recv_buf[a]);
}
SDL_LogDebug(SDL_LOG_CATEGORY_APPLICATION, "\n");
}
int process_command(uint8_t *data, uint32_t size) {
uint8_t recv_buf[size + 1];
memcpy(recv_buf, data, size);
recv_buf[size] = 0;
switch (recv_buf[0]) {
case draw_rectangle_command:
if (size != draw_rectangle_command_datalength) {
SDL_LogError(
SDL_LOG_CATEGORY_ERROR,
"Invalid draw rectangle packet: expected length %d, got %d\n",
draw_rectangle_command_datalength, size);
dump_packet(size, recv_buf);
return 0;
break;
} else {
struct draw_rectangle_command rectcmd = {
{decodeInt16(recv_buf, 1), decodeInt16(recv_buf, 3)}, // position x/y
{decodeInt16(recv_buf, 5), decodeInt16(recv_buf, 7)}, // size w/h
{recv_buf[9], recv_buf[10], recv_buf[11]}}; // color r/g/b
draw_rectangle(&rectcmd);
return 1;
}
break;
case draw_character_command:
if (size != draw_character_command_datalength) {
SDL_LogError(
SDL_LOG_CATEGORY_ERROR,
"Invalid draw character packet: expected length %d, got %d\n",
draw_character_command_datalength, size);
dump_packet(size, recv_buf);
return 0;
break;
} else {
struct draw_character_command charcmd = {
recv_buf[1], // char
{decodeInt16(recv_buf, 2), decodeInt16(recv_buf, 4)}, // position x/y
{recv_buf[6], recv_buf[7], recv_buf[8]}, // foreground r/g/b
{recv_buf[9], recv_buf[10], recv_buf[11]}}; // background r/g/b
draw_character(&charcmd);
return 1;
}
break;
case draw_oscilloscope_waveform_command:
if (size < draw_oscilloscope_waveform_command_mindatalength ||
size > draw_oscilloscope_waveform_command_maxdatalength) {
SDL_LogError(
SDL_LOG_CATEGORY_ERROR,
"Invalid draw oscilloscope packet: expected length between %d "
"and %d, got "
"%d\n",
draw_oscilloscope_waveform_command_mindatalength,
draw_oscilloscope_waveform_command_maxdatalength, size);
dump_packet(size, recv_buf);
return 0;
break;
} else {
struct draw_oscilloscope_waveform_command osccmd;
osccmd.color =
(struct color){recv_buf[1], recv_buf[2], recv_buf[3]}; // color r/g/b
memcpy(osccmd.waveform, &recv_buf[4], size - 4);
osccmd.waveform_size = size - 4;
draw_waveform(&osccmd);
return 1;
}
break;
case joypad_keypressedstate_command:
/*
if (size != joypad_keypressedstate_command_datalength) {
SDL_LogError(SDL_LOG_CATEGORY_ERROR,
"Invalid joypad keypressed state packet: expected length %d, "
"got %d\n",
joypad_keypressedstate_command_datalength, size);
dump_packet(size, recv_buf);
break;
} */
// nothing is done with joypad key pressed packets for now
return 1;
break;
default:
SDL_LogError(SDL_LOG_CATEGORY_ERROR, "Invalid packet\n");
dump_packet(size, recv_buf);
return 0;
break;
}
}