Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
AssetBrowserPanel.hpp
1#pragma once
2
3#include <chrono>
4#include <filesystem>
5#include <vector>
6#include <entt/entt.hpp>
7
8namespace Grindstone {
9 class EngineCore;
10
11 namespace GraphicsAPI {
12 class Texture;
13 }
14
15 namespace Editor {
16 class ComponentInspector;
17
18 namespace ImguiEditor {
19 class ImguiEditor;
20 class ImguiRenderer;
22 public:
23 AssetBrowserPanel(ImguiRenderer* imguiRenderer, EngineCore* engineCore, ImguiEditor* editor);
24 void Render();
25 private:
26 void CreateInitialFileStructure(Directory& directory, std::filesystem::directory_iterator);
27 void SetCurrentAssetDirectory(Directory& directory);
28 void ProcessDirectoryEntryClicks(std::filesystem::directory_entry entry, Directory* directory = nullptr);
29 void RenderTopBar();
30 void RenderPathPart(Directory* path);
31 void RenderPath();
32 void RenderContextMenuFileTypeSpecificEntries(std::filesystem::directory_entry entry);
33 void RenderAssetContextMenu(std::filesystem::directory_entry entry);
34 void RenderCurrentDirectoryContextMenu();
35 void RenderAssetTemplates(const std::filesystem::path& path);
36 void TryRenameFile();
37 void RenderFolders();
38 void RenderFiles();
39 void RenderAssets(float height);
40 void RenderSidebar(float height);
41 void RenderSidebarSubdirectory(Directory& directory);
42 void RenderFile(File* file);
43 void FilterSearch(Directory& dir);
44 void FilterSearch();
45 void AfterCreate(std::filesystem::path path);
46 ImTextureID GetIcon(const AssetType assetType) const;
47 private:
48 Directory& rootDirectory;
49 Directory* currentDirectory;
50
51 struct IconsIds {
52 ImTextureID folderIcon;
53 ImTextureID fileIcons[static_cast<uint16_t>(AssetType::Count)];
54 } iconIds;
55
56 bool isShowingPanel = true;
57 EngineCore* engineCore = nullptr;
58 ImguiEditor* editor = nullptr;
59 std::filesystem::path pathToRename;
60 std::string pathRenameNewName;
61 std::string searchText;
62 std::string searchTextLower;
63 std::set<Uuid> expandedAssetUuidsWithSubassets;
64 std::vector<File*> searchedFiles;
65 std::chrono::time_point<std::chrono::system_clock> lastRefreshedAssetsTime;
66 };
67 }
68 }
69}
Definition AssetBrowserPanel.hpp:21
Definition ImguiRenderer.hpp:12
Definition EngineCore.hpp:57
Definition FileDirectory.hpp:19
Definition FileDirectory.hpp:13