-
Notifications
You must be signed in to change notification settings - Fork 1
/
tweak_bytes.h
91 lines (84 loc) · 1.83 KB
/
tweak_bytes.h
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
#ifndef TWEAK_BYTES_H
#define TWEAK_BYTES_H
#include <QJsonObject>
struct J1656 {
uint8_t objclip;
bool canbejumped;
bool diesjumped;
bool hopin;
bool disapp;
J1656() = default;
void from_json(const QJsonObject& byte);
void from_byte(uint8_t byte);
uint8_t to_byte() const;
QJsonObject to_json() const;
};
struct J1662 {
uint8_t sprclip;
bool deathframe;
bool strdown;
J1662() = default;
void from_json(const QJsonObject& byte);
void from_byte(uint8_t byte);
uint8_t to_byte() const;
QJsonObject to_json() const;
};
struct J166E {
bool secondpage;
uint8_t palette;
bool fireball;
bool cape;
bool splash;
bool lay2;
J166E() = default;
void from_json(const QJsonObject& byte);
void from_byte(uint8_t byte);
uint8_t to_byte() const;
QJsonObject to_json() const;
};
struct J167A {
bool star;
bool blk;
bool offscr;
bool stunn;
bool kick;
bool everyframe;
bool powerup;
bool defaultint;
J167A() = default;
void from_json(const QJsonObject& byte);
void from_byte(uint8_t byte);
uint8_t to_byte() const;
QJsonObject to_json() const;
};
struct J1686 {
bool inedible;
bool mouth;
bool ground;
bool nosprint;
bool direc;
bool goalpass;
bool newspr;
bool noobjint;
J1686() = default;
void from_json(const QJsonObject& byte);
void from_byte(uint8_t byte);
uint8_t to_byte() const;
QJsonObject to_json() const;
};
struct J190F {
bool below;
bool goal;
bool slidekill;
bool fivefire;
bool yupsp;
bool deathframe;
bool nosilver;
bool nostuck;
J190F() = default;
void from_json(const QJsonObject& byte);
void from_byte(uint8_t byte);
uint8_t to_byte() const;
QJsonObject to_json() const;
};
#endif // TWEAK_BYTES_H