Yue Posted Tuesday at 02:10 PM Posted Tuesday at 02:10 PM I am looking for information if the same system of leadwerks 4 exists to store information of the configurations for example of a menu. Does it exist or do I have to create it manually with the read and write file commands? Quote
Solution Josh Posted Tuesday at 02:21 PM Solution Posted Tuesday at 02:21 PM This is the code I use to do it. You can customize it to work the way you want: #include "UltraEngine.h" #include "LoadMenu.h" namespace UltraEngine { shared_ptr<Widget> LoadSubmenu(nlohmann::json& j3, shared_ptr<Widget> parent) { if (not j3.is_object()) return NULL; KeyCode hotkey = KeyCode(0); Modifier mods = Modifier(0); WString name = WString(j3["name"]).Trim(); if (j3["hotkey"].is_number_unsigned()) hotkey = j3["hotkey"]; if (j3["mods"].is_number_unsigned()) mods = j3["mods"]; auto menu = CreateMenu(name, parent, hotkey, mods); name = name.Replace("/", ""); if (j3["showicon"].is_boolean() == false or j3["showicon"] == true) { if (FileType(AppDir() + "/UI/Icons/Menus/" + name.Lower() + ".svg") == 1) { auto icon = LoadIcon(AppDir() + "/UI/Icons/Menus/" + name.Lower() + ".svg"); menu->SetIcon(icon); } } if (j3["enabled"].is_boolean()) { if (bool(j3["enabled"])) { menu->Enable(); } else { menu->Disable(); } } if (j3["state"].is_boolean()) { menu->SetState(bool(j3["state"])); } if (j3["kids"].is_array()) { for (int n = 0; n < j3["kids"].size(); ++n) { LoadSubmenu(j3["kids"][n], menu->As<Menu>()); } } return menu; } shared_ptr<Widget> LoadMenu(const WString& path, shared_ptr<Widget> parent) { auto j3 = LoadJson(path); if (not j3.is_object()) return NULL; if (not j3["menu"].is_object()) return NULL; return LoadSubmenu(j3["menu"], parent); } shared_ptr<Widget> LoadMenu(nlohmann::json& j3, shared_ptr<Widget> parent) { if (not j3.is_object()) return NULL; if (not j3["menu"].is_object()) return NULL; return LoadSubmenu(j3["menu"], parent); } } I create my menus for the editor in JSON like this: { "menu": { "kids": [ { "name": "File", "kids": [ { "name": "Save", "hotkey": 83, "mods": 1 }, { "name": "Save As" }, {}, { "name": "Close" } ] }, { "name": "Tools", "kids": [ { "name": "Build Mipmaps" }, {}, { "name": "Generate Normal Map" }, { "name": "Flip Normal Map U" }, { "name": "Flip Normal Map V" } ] }, { "name": "Help", "kids": [ { "name": "Ultra Engine Documentation", "hotkey": 112 }, {}, { "name": "Support Forum" }, { "name": "Ask a question" }, { "name": "Suggest a feature" }, { "name": "Report a problem" }, {}, { "name": "About" } ] } ] } } 1 Quote My job is to make tools you love, with the features you want, and performance you can't live without.
Yue Posted Tuesday at 03:26 PM Author Posted Tuesday at 03:26 PM @JoshDoes a command to create directories exist? Quote
Josh Posted Tuesday at 04:31 PM Posted Tuesday at 04:31 PM CreateDir() 1 Quote My job is to make tools you love, with the features you want, and performance you can't live without.
Josh Posted Tuesday at 04:58 PM Posted Tuesday at 04:58 PM I added it. Cache may take some time to refresh. 1 Quote My job is to make tools you love, with the features you want, and performance you can't live without.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.