-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmetroflip_i.h
168 lines (140 loc) · 4.73 KB
/
metroflip_i.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
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
#pragma once
#include <furi.h>
#include <furi_hal.h>
#include <stdlib.h>
#include <gui/gui.h>
#include <gui/view.h>
#include <gui/modules/validators.h>
#include <gui/view_dispatcher.h>
#include <gui/scene_manager.h>
#include "api/nfc/mf_classic_key_cache.h"
#if __has_include(<assets_icons.h>)
#include <assets_icons.h>
#else
extern const Icon I_RFIDDolphinReceive_97x61;
#endif
#include <flipper_application/plugins/composite_resolver.h>
#include <loader/firmware_api/firmware_api.h>
#include <flipper_application/plugins/plugin_manager.h>
#include <loader/firmware_api/firmware_api.h>
#include <flipper_application/flipper_application.h>
#include <gui/modules/submenu.h>
#include <gui/modules/popup.h>
#include <gui/modules/loading.h>
#include <gui/modules/text_input.h>
#include <gui/modules/text_box.h>
#include <gui/modules/widget.h>
#include <gui/modules/byte_input.h>
#include <gui/modules/popup.h>
#include "scenes/metroflip_scene.h"
#include <lib/flipper_format/flipper_format.h>
#include <toolbox/name_generator.h>
#include <lib/nfc/protocols/mf_ultralight/mf_ultralight.h>
#include <lib/nfc/helpers/nfc_data_generator.h>
#include <furi_hal_bt.h>
#include <notification/notification_messages.h>
#include "scenes/desfire.h"
#include "scenes/nfc_detected_protocols.h"
#include "scenes/keys.h"
#include <lib/nfc/nfc.h>
#include <nfc/nfc_poller.h>
#include <nfc/nfc_scanner.h>
#include <datetime.h>
#include <dolphin/dolphin.h>
#include <locale/locale.h>
#include <stdio.h>
#include <strings.h>
#include <flipper_application/flipper_application.h>
#include <loader/firmware_api/firmware_api.h>
#include "scenes/metroflip_scene.h"
#include "api/calypso/calypso_i.h"
#define KEY_MASK_BIT_CHECK(key_mask_1, key_mask_2) (((key_mask_1) & (key_mask_2)) == (key_mask_1))
typedef struct {
Gui* gui;
SceneManager* scene_manager;
ViewDispatcher* view_dispatcher;
NotificationApp* notifications;
Submenu* submenu;
TextInput* text_input;
TextBox* text_box;
ByteInput* byte_input;
Popup* popup;
uint8_t mac_buf[GAP_MAC_ADDR_SIZE];
FuriString* text_box_store;
Widget* widget;
Nfc* nfc;
NfcPoller* poller;
NfcScanner* scanner;
NfcDevice* nfc_device;
MfClassicKeyCache* mfc_key_cache;
NfcDetectedProtocols* detected_protocols;
DesfireCardType desfire_card_type;
//plugin manager
PluginManager* plugin_manager;
//api
CompositeApiResolver* resolver;
// card details:
uint32_t balance_lari;
uint8_t balance_tetri;
uint32_t card_number;
size_t sec_num;
float value;
char currency[4];
const char* card_type;
bool auto_mode;
CardType mfc_card_type;
NfcProtocol protocol;
// Calypso specific context
CalypsoContext* calypso_context;
} Metroflip;
enum MetroflipCustomEvent {
// Reserve first 100 events for button types and indexes, starting from 0
MetroflipCustomEventReserved = 100,
MetroflipCustomEventViewExit,
MetroflipCustomEventByteInputDone,
MetroflipCustomEventTextInputDone,
MetroflipCustomEventWorkerExit,
MetroflipCustomEventPollerDetect,
MetroflipCustomEventPollerSuccess,
MetroflipCustomEventPollerFail,
MetroflipCustomEventPollerSelectFailed,
MetroflipCustomEventPollerFileNotFound,
MetroflipCustomEventCardLost,
MetroflipCustomEventCardDetected,
MetroflipCustomEventWrongCard
};
typedef enum {
MetroflipPollerEventTypeStart,
MetroflipPollerEventTypeCardDetect,
MetroflipPollerEventTypeSuccess,
MetroflipPollerEventTypeFail,
} MetroflipPollerEventType;
typedef enum {
MetroflipViewSubmenu,
MetroflipViewTextInput,
MetroflipViewByteInput,
MetroflipViewPopup,
MetroflipViewMenu,
MetroflipViewLoading,
MetroflipViewTextBox,
MetroflipViewWidget,
MetroflipViewUart,
} MetroflipView;
typedef enum {
SUCCESSFUL,
INCOMPLETE_KEYFILE,
MISSING_KEYFILE
} KeyfileManager;
CardType determine_card_type(Nfc* nfc);
#ifdef FW_ORIGIN_Official
#define submenu_add_lockable_item( \
submenu, label, index, callback, callback_context, locked, locked_message) \
if(!(locked)) submenu_add_item(submenu, label, index, callback, callback_context)
#endif
char* bit_slice(const char* bit_representation, int start, int end);
void metroflip_plugin_manager_alloc(Metroflip* app);
///////////////////////////////// Calypso / EN1545 /////////////////////////////////
#define Metroflip_POLLER_MAX_BUFFER_SIZE 1024
#define epoch 852073200
void locale_format_datetime_cat(FuriString* out, const DateTime* dt, bool time);
int binary_to_decimal(const char binary[]);