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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
use super::Error;
use std::cmp::Ordering;
pub fn decode(adc: &str) -> Result<DeserializedDeck, Error> {
let stripped_adc = if adc.starts_with("ADC") {
adc.get(3..).unwrap()
} else {
adc
};
let fixed_adc: String = stripped_adc
.chars()
.map(|x| match x {
'-' => '/',
'_' => '=',
_ => x,
})
.collect();
let decoded = base64::decode(&fixed_adc).unwrap();
parse_deck(&decoded)
}
#[derive(Serialize, Deserialize, Debug, Eq, Default)]
pub struct DeserializedHero {
pub id: u32,
pub turn: u32,
}
impl Ord for DeserializedHero {
fn cmp(&self, other: &DeserializedHero) -> Ordering {
self.id.cmp(&other.id)
}
}
impl PartialOrd for DeserializedHero {
fn partial_cmp(&self, other: &DeserializedHero) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl PartialEq for DeserializedHero {
fn eq(&self, other: &DeserializedHero) -> bool {
self.id == other.id
}
}
#[derive(Serialize, Deserialize, Debug, Eq, Default)]
pub struct DeserializedCard {
pub id: u32,
pub count: u32,
}
impl Ord for DeserializedCard {
fn cmp(&self, other: &DeserializedCard) -> Ordering {
self.id.cmp(&other.id)
}
}
impl PartialOrd for DeserializedCard {
fn partial_cmp(&self, other: &DeserializedCard) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl PartialEq for DeserializedCard {
fn eq(&self, other: &DeserializedCard) -> bool {
self.id == other.id
}
}
#[derive(Serialize, Deserialize, Debug, Default)]
pub struct DeserializedDeck {
pub heroes: Vec<DeserializedHero>,
pub cards: Vec<DeserializedCard>,
pub name: String,
}
impl DeserializedDeck {
pub fn new() -> Self {
Self {
heroes: Vec::new(),
cards: Vec::new(),
name: String::from(""),
}
}
}
fn parse_deck(deck_bytes: &[u8]) -> Result<DeserializedDeck, Error> {
let total_bytes = deck_bytes.len();
let mut current_byte_index = 0 as usize;
let version_and_heroes = deck_bytes[0];
current_byte_index += 1;
let version = version_and_heroes >> 4;
let _checksum = deck_bytes[1];
current_byte_index += 1;
let total_card_bytes = if version > 1u8 {
current_byte_index += 1;
total_bytes - deck_bytes[2] as usize
} else {
total_bytes
};
let mut num_heroes = 0;
read_encoded_u32(
u32::from(version_and_heroes),
3,
deck_bytes,
&mut current_byte_index,
total_card_bytes,
&mut num_heroes,
);
let mut heroes = Vec::<DeserializedHero>::new();
let mut prev_card_base = 0;
for _curr_hero in 0..num_heroes {
let mut hero_turn = 0 as u32;
let mut hero_card_id = 0 as u32;
if !read_serialized_card(
deck_bytes,
&mut current_byte_index,
total_card_bytes,
&mut prev_card_base,
&mut hero_turn,
&mut hero_card_id,
) {
return Err(Error::Decode(
"error during read_serialized_card, this is a bug if your ADC is confirmed to be valid"
));
}
heroes.push(DeserializedHero {
id: hero_card_id,
turn: hero_turn,
});
}
let mut cards = Vec::<DeserializedCard>::new();
prev_card_base = 0;
while current_byte_index < total_card_bytes {
let mut card_count = 0;
let mut card_id = 0;
if !read_serialized_card(
deck_bytes,
&mut current_byte_index,
total_card_bytes,
&mut prev_card_base,
&mut card_count,
&mut card_id,
) {
println!(
"out of card_bytes, current_byte_index: {}",
current_byte_index
);
break;
}
cards.push(DeserializedCard {
id: card_id,
count: card_count,
});
}
let name = if current_byte_index <= total_card_bytes {
let bytes = &deck_bytes[total_card_bytes..];
let out: String = bytes.iter().map(|x| *x as char).collect();
out
} else {
String::from("")
};
Ok(DeserializedDeck {
heroes,
cards,
name,
})
}
fn read_bits_chunk(n_chunk: u32, n_bits: u32, n_curr_shift: u32, n_out_bits: &mut u32) -> bool {
let continue_bit = 1 << n_bits;
let new_bits = n_chunk & (continue_bit - 1);
*n_out_bits |= (new_bits << n_curr_shift) as u32;
n_chunk & continue_bit != 0
}
fn read_encoded_u32(
base_value: u32,
base_bits: u32,
deck_bytes: &[u8],
start_index: &mut usize,
end_index: usize,
out_value: &mut u32,
) {
*out_value = 0;
let mut delta_shift = 0;
if base_bits == 0 || read_bits_chunk(base_value, base_bits, delta_shift, out_value) {
delta_shift += base_bits;
loop {
if *start_index > end_index {
break;
}
let next_byte = deck_bytes[*start_index];
*start_index += 1;
if !read_bits_chunk(u32::from(next_byte), 7, delta_shift, out_value) {
break;
}
delta_shift += 7;
}
}
}
fn read_serialized_card(
deck_bytes: &[u8],
start_index: &mut usize,
end_index: usize,
prev_card_base: &mut u32,
out_count: &mut u32,
out_id: &mut u32,
) -> bool {
if *start_index > end_index {
return false;
}
let header = deck_bytes[*start_index];
*start_index += 1;
let has_extended_count = (header >> 6) == 0x03u8;
let mut card_delta = 0;
read_encoded_u32(
u32::from(header),
5,
&deck_bytes,
start_index,
end_index,
&mut card_delta,
);
*out_id = *prev_card_base + card_delta;
if has_extended_count {
read_encoded_u32(0, 0, &deck_bytes, start_index, end_index, &mut (*out_count));
} else {
*out_count = u32::from(header >> 6) + 1;
}
*prev_card_base = *out_id;
true
}