#pragma once #include "evil_portal_app.h" #include "evil_portal_custom_event.h" #include "evil_portal_uart.h" #include "scenes/evil_portal_scene.h" #include #include #include #include #include #include #define NUM_MENU_ITEMS (5) #define EVIL_PORTAL_TEXT_BOX_STORE_SIZE (4096) #define UART_CH (FuriHalUartIdUSART1) #define SET_HTML_CMD "sethtml" #define SET_AP_CMD "setap" #define RESET_CMD "reset" struct Evil_PortalApp { Gui *gui; ViewDispatcher *view_dispatcher; SceneManager *scene_manager; FuriString* portal_logs; const char *command_queue[1]; int command_index; bool has_command_queue; FuriString *text_box_store; size_t text_box_store_strlen; TextBox *text_box; VariableItemList *var_item_list; Evil_PortalUart *uart; TextInput* text_input; int selected_menu_index; int selected_option_index[NUM_MENU_ITEMS]; const char *selected_tx_string; bool is_command; bool is_custom_tx_string; bool focus_console_start; bool show_stopscan_tip; bool sent_ap; bool sent_html; bool sent_reset; int BAUDRATE; char text_store[2][128 + 1]; uint8_t *index_html; uint8_t *ap_name; }; typedef enum { Evil_PortalAppViewVarItemList, Evil_PortalAppViewConsoleOutput, Evil_PortalAppViewStartPortal, Evil_PortalAppViewTextInput, } Evil_PortalAppView;