Assets: add more menu icons, add stubs to menu. (#241)
* Assets: add more menu icons, add stubs to menu. * Format sources
| @ -1,12 +1,14 @@ | |||||||
| #include "flipper_v2.h" | #include "flipper_v2.h" | ||||||
| #include <gui/gui.h> | #include <gui/gui.h> | ||||||
| #include "menu/menu.h" | #include "menu/menu.h" | ||||||
|  | #include "menu/menu_item.h" | ||||||
| #include "applications.h" | #include "applications.h" | ||||||
| #include <assets_icons.h> | #include <assets_icons.h> | ||||||
| 
 | 
 | ||||||
| typedef struct { | typedef struct { | ||||||
|     FuriApp* handler; |     FuriApp* handler; | ||||||
|     Widget* widget; |     Widget* widget; | ||||||
|  |     MenuItem* menu_plugins; | ||||||
|     const FlipperStartupApp* current_app; |     const FlipperStartupApp* current_app; | ||||||
| } AppLoaderState; | } AppLoaderState; | ||||||
| 
 | 
 | ||||||
| @ -62,6 +64,8 @@ void app_loader(void* p) { | |||||||
|     widget_draw_callback_set(state.widget, render_callback, &state); |     widget_draw_callback_set(state.widget, render_callback, &state); | ||||||
|     widget_input_callback_set(state.widget, input_callback, &state); |     widget_input_callback_set(state.widget, input_callback, &state); | ||||||
| 
 | 
 | ||||||
|  |     state.menu_plugins = menu_item_alloc_menu("Plugins", assets_icons_get(A_Plugins_14)); | ||||||
|  | 
 | ||||||
|     ValueMutex* menu_mutex = furi_open("menu"); |     ValueMutex* menu_mutex = furi_open("menu"); | ||||||
|     if(menu_mutex == NULL) { |     if(menu_mutex == NULL) { | ||||||
|         printf("menu is not available\n"); |         printf("menu is not available\n"); | ||||||
| @ -77,8 +81,6 @@ void app_loader(void* p) { | |||||||
|     gui->add_widget(gui, state.widget, GuiLayerFullscreen); |     gui->add_widget(gui, state.widget, GuiLayerFullscreen); | ||||||
| 
 | 
 | ||||||
|     { |     { | ||||||
|         Menu* menu = acquire_mutex_block(menu_mutex); |  | ||||||
| 
 |  | ||||||
|         // FURI startup
 |         // FURI startup
 | ||||||
|         const size_t flipper_app_count = sizeof(FLIPPER_APPS) / sizeof(FLIPPER_APPS[0]); |         const size_t flipper_app_count = sizeof(FLIPPER_APPS) / sizeof(FLIPPER_APPS[0]); | ||||||
| 
 | 
 | ||||||
| @ -87,8 +89,8 @@ void app_loader(void* p) { | |||||||
|             ctx->state = &state; |             ctx->state = &state; | ||||||
|             ctx->app = &FLIPPER_APPS[i]; |             ctx->app = &FLIPPER_APPS[i]; | ||||||
| 
 | 
 | ||||||
|             menu_item_add( |             menu_item_subitem_add( | ||||||
|                 menu, |                 state.menu_plugins, | ||||||
|                 menu_item_alloc_function( |                 menu_item_alloc_function( | ||||||
|                     FLIPPER_APPS[i].name, assets_icons_get(A_Infrared_14), handle_menu, ctx)); |                     FLIPPER_APPS[i].name, assets_icons_get(A_Infrared_14), handle_menu, ctx)); | ||||||
|         } |         } | ||||||
| @ -105,10 +107,47 @@ void app_loader(void* p) { | |||||||
|         menu_item_add(menu, menu_item_alloc_function("Tamagotchi", NULL, NULL, NULL)); |         menu_item_add(menu, menu_item_alloc_function("Tamagotchi", NULL, NULL, NULL)); | ||||||
|         menu_item_add(menu, menu_item_alloc_function("Plugins", NULL, NULL, NULL)); |         menu_item_add(menu, menu_item_alloc_function("Plugins", NULL, NULL, NULL)); | ||||||
|         */ |         */ | ||||||
| 
 |  | ||||||
|         release_mutex(menu_mutex, menu); |  | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  |     with_value_mutex( | ||||||
|  |         menu_mutex, (Menu * menu) { | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, | ||||||
|  |                 menu_item_alloc_function("Sub-1 GHz", assets_icons_get(A_Sub1ghz_14), NULL, NULL)); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, | ||||||
|  |                 menu_item_alloc_function("125kHz", assets_icons_get(A_125khz_14), NULL, NULL)); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, | ||||||
|  |                 menu_item_alloc_function("Infrared", assets_icons_get(A_Infrared_14), NULL, NULL)); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, | ||||||
|  |                 menu_item_alloc_function("iButton", assets_icons_get(A_iButton_14), NULL, NULL)); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, | ||||||
|  |                 menu_item_alloc_function( | ||||||
|  |                     "Bluetooth", assets_icons_get(A_Bluetooth_14), NULL, NULL)); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, menu_item_alloc_function("GPIO", assets_icons_get(A_GPIO_14), NULL, NULL)); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, menu_item_alloc_function("NFC", assets_icons_get(A_NFC_14), NULL, NULL)); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, menu_item_alloc_function("U2F", assets_icons_get(A_U2F_14), NULL, NULL)); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, | ||||||
|  |                 menu_item_alloc_function( | ||||||
|  |                     "File Manager", assets_icons_get(A_FileManager_14), NULL, NULL)); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, menu_item_alloc_function("Games", assets_icons_get(A_Games_14), NULL, NULL)); | ||||||
|  |             menu_item_add(menu, state.menu_plugins); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, | ||||||
|  |                 menu_item_alloc_function("Passport", assets_icons_get(A_Passport_14), NULL, NULL)); | ||||||
|  |             menu_item_add( | ||||||
|  |                 menu, | ||||||
|  |                 menu_item_alloc_function("Settings", assets_icons_get(A_Settings_14), NULL, NULL)); | ||||||
|  |         }); | ||||||
|  | 
 | ||||||
|     printf("[app loader] start\n"); |     printf("[app loader] start\n"); | ||||||
| 
 | 
 | ||||||
|     osThreadSuspend(self_id); |     osThreadSuspend(self_id); | ||||||
|  | |||||||
| @ -61,7 +61,7 @@ void menu_build_main(Menu* menu) { | |||||||
|     Icon* icon = assets_icons_get(A_Bluetooth_14); |     Icon* icon = assets_icons_get(A_Bluetooth_14); | ||||||
|     menu->settings = menu_item_alloc_menu("Setting", icon); |     menu->settings = menu_item_alloc_menu("Setting", icon); | ||||||
| 
 | 
 | ||||||
|     menu_item_add(menu, menu->settings); |     // menu_item_add(menu, menu->settings);
 | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| void menu_item_add(Menu* menu, MenuItem* item) { | void menu_item_add(Menu* menu, MenuItem* item) { | ||||||
|  | |||||||
| Before Width: | Height: | Size: 652 B | 
| Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 643 B | 
| Before Width: | Height: | Size: 257 B After Width: | Height: | Size: 105 B | 
| Before Width: | Height: | Size: 257 B After Width: | Height: | Size: 105 B | 
| Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 97 B | 
| Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 103 B | 
| Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 100 B | 
| Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 99 B | 
| Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 99 B | 
| Before Width: | Height: | Size: 248 B After Width: | Height: | Size: 96 B | 
| Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 97 B | 
| Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 99 B | 
| Before Width: | Height: | Size: 254 B After Width: | Height: | Size: 102 B | 
| Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 103 B | 
| Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 97 B | 
| Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 97 B | 
| Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 97 B | 
| Before Width: | Height: | Size: 237 B After Width: | Height: | Size: 85 B | 
| Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 97 B | 
| Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 97 B | 
| Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 97 B | 
| Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 103 B | 
| Before Width: | Height: | Size: 242 B After Width: | Height: | Size: 90 B | 
| Before Width: | Height: | Size: 237 B After Width: | Height: | Size: 85 B | 
| Before Width: | Height: | Size: 236 B After Width: | Height: | Size: 84 B | 
| Before Width: | Height: | Size: 235 B After Width: | Height: | Size: 83 B | 
| Before Width: | Height: | Size: 231 B After Width: | Height: | Size: 79 B | 
| Before Width: | Height: | Size: 235 B After Width: | Height: | Size: 83 B | 
| Before Width: | Height: | Size: 235 B After Width: | Height: | Size: 83 B | 
| Before Width: | Height: | Size: 237 B After Width: | Height: | Size: 85 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Games_14/frame_01.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 96 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Games_14/frame_02.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 99 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Games_14/frame_03.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 105 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Games_14/frame_04.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 104 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Games_14/frame_05.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 105 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Games_14/frame_06.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 102 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Games_14/frame_07.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 101 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Games_14/frame_08.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 102 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Games_14/frame_09.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 100 B | 
							
								
								
									
										1
									
								
								assets/icons/MainMenu/Games_14/frame_rate
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @ -0,0 +1 @@ | |||||||
|  | 3 | ||||||
| Before Width: | Height: | Size: 250 B After Width: | Height: | Size: 98 B | 
| Before Width: | Height: | Size: 247 B After Width: | Height: | Size: 95 B | 
| Before Width: | Height: | Size: 243 B After Width: | Height: | Size: 91 B | 
| Before Width: | Height: | Size: 235 B After Width: | Height: | Size: 83 B | 
| Before Width: | Height: | Size: 235 B After Width: | Height: | Size: 83 B | 
| Before Width: | Height: | Size: 243 B After Width: | Height: | Size: 91 B | 
| Before Width: | Height: | Size: 256 B After Width: | Height: | Size: 104 B | 
| Before Width: | Height: | Size: 250 B After Width: | Height: | Size: 98 B | 
| Before Width: | Height: | Size: 244 B After Width: | Height: | Size: 92 B | 
| Before Width: | Height: | Size: 247 B After Width: | Height: | Size: 95 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Passport_14/frame_01.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 98 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Passport_14/frame_02.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 81 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Passport_14/frame_03.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 86 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Passport_14/frame_04.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 89 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Passport_14/frame_05.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 89 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Passport_14/frame_06.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 94 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Passport_14/frame_07.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 97 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Passport_14/frame_08.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 97 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Passport_14/frame_09.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 99 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Passport_14/frame_10.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 98 B | 
							
								
								
									
										1
									
								
								assets/icons/MainMenu/Passport_14/frame_rate
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @ -0,0 +1 @@ | |||||||
|  | 3 | ||||||
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Plugins_14/frame_01.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 106 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Plugins_14/frame_02.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 106 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Plugins_14/frame_03.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 104 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Plugins_14/frame_04.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 110 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Plugins_14/frame_05.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 105 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Plugins_14/frame_06.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 107 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Plugins_14/frame_07.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 105 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Plugins_14/frame_08.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 105 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Plugins_14/frame_09.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 104 B | 
							
								
								
									
										1
									
								
								assets/icons/MainMenu/Plugins_14/frame_rate
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @ -0,0 +1 @@ | |||||||
|  | 3 | ||||||
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Settings_14/frame_01.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 110 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Settings_14/frame_02.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 110 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Settings_14/frame_03.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 107 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Settings_14/frame_04.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 110 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Settings_14/frame_05.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 110 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Settings_14/frame_06.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 110 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Settings_14/frame_07.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 110 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Settings_14/frame_08.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 108 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Settings_14/frame_09.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 110 B | 
							
								
								
									
										
											BIN
										
									
								
								assets/icons/MainMenu/Settings_14/frame_10.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 110 B | 
							
								
								
									
										1
									
								
								assets/icons/MainMenu/Settings_14/frame_rate
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @ -0,0 +1 @@ | |||||||
|  | 3 | ||||||
| Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 97 B | 
| Before Width: | Height: | Size: 248 B After Width: | Height: | Size: 96 B | 
| Before Width: | Height: | Size: 242 B After Width: | Height: | Size: 90 B | 
| Before Width: | Height: | Size: 228 B After Width: | Height: | Size: 76 B | 
| Before Width: | Height: | Size: 231 B After Width: | Height: | Size: 79 B | 
| Before Width: | Height: | Size: 242 B After Width: | Height: | Size: 90 B | 
| Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 106 B | 
| Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 106 B | 
| Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 106 B | 
| Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 106 B | 
| Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 106 B | 
| Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 106 B | 
| Before Width: | Height: | Size: 256 B After Width: | Height: | Size: 104 B | 
| Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 103 B | 
| Before Width: | Height: | Size: 254 B After Width: | Height: | Size: 102 B | 
| Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 103 B | 
 あく
						あく