2020-01-02 02:41:43 +00:00
|
|
|
//
|
|
|
|
// File: foldhaus_panel_hierarchy.h
|
|
|
|
// Author: Peter Slattery
|
|
|
|
// Creation Date: 2020-01-01
|
|
|
|
//
|
|
|
|
#ifndef FOLDHAUS_PANEL_HIERARCHY_H
|
|
|
|
|
2020-02-29 22:23:46 +00:00
|
|
|
input_command HierarchyView_Commands[] = {{}};
|
|
|
|
s32 HierarchyView_CommandsCount = 0;
|
|
|
|
|
|
|
|
GSMetaTag(panel_init);
|
|
|
|
GSMetaTag(panel_type_hierarchy);
|
2020-02-02 03:15:04 +00:00
|
|
|
internal void
|
2020-09-07 20:42:00 +00:00
|
|
|
HierarchyView_Init(panel* Panel, app_state* State, context Context)
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-02-02 03:15:04 +00:00
|
|
|
GSMetaTag(panel_cleanup);
|
2020-02-29 22:23:46 +00:00
|
|
|
GSMetaTag(panel_type_hierarchy);
|
2020-02-02 03:15:04 +00:00
|
|
|
internal void
|
|
|
|
HierarchyView_Cleanup(panel* Panel, app_state* State)
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-10-18 22:31:53 +00:00
|
|
|
PANEL_MODAL_OVERRIDE_CALLBACK(LoadAssemblyCallback)
|
|
|
|
{
|
|
|
|
Assert(ReturningFrom->TypeIndex == PanelType_FileView);
|
|
|
|
file_view_state* FileViewState = Panel_GetStateStruct(ReturningFrom, file_view_state);
|
|
|
|
gs_file_info FileInfo = FileViewState->SelectedFile;
|
|
|
|
|
|
|
|
LoadAssembly(&State->Assemblies, &State->LedSystem, State->Transient, Context, FileInfo.Path, State->GlobalLog);
|
|
|
|
}
|
|
|
|
|
2020-02-02 03:15:04 +00:00
|
|
|
GSMetaTag(panel_render);
|
2020-02-29 22:23:46 +00:00
|
|
|
GSMetaTag(panel_type_hierarchy);
|
2020-02-02 03:15:04 +00:00
|
|
|
internal void
|
2020-10-17 19:43:05 +00:00
|
|
|
HierarchyView_Render(panel* Panel, rect2 PanelBounds, render_command_buffer* RenderBuffer, app_state* State, context Context)
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2020-06-23 00:39:58 +00:00
|
|
|
ui_layout Layout = ui_CreateLayout(State->Interface, PanelBounds);
|
2020-09-07 20:42:00 +00:00
|
|
|
gs_string TempString = PushString(State->Transient, 256);
|
2020-07-18 19:00:14 +00:00
|
|
|
u32 LineCount = (u32)(Rect2Height(PanelBounds) / Layout.RowHeight) + 1;
|
|
|
|
u32 AssembliesToDraw = Min(LineCount, State->Assemblies.Count);
|
2020-09-07 20:42:00 +00:00
|
|
|
rect2* LineBounds = PushArray(State->Transient, rect2, LineCount);
|
2020-06-22 04:59:42 +00:00
|
|
|
|
|
|
|
// Fill in alternating color rows for the backgrounds
|
|
|
|
for (u32 Line = 0; Line < LineCount; Line++)
|
|
|
|
{
|
|
|
|
LineBounds[Line] = ui_ReserveElementBounds(&Layout);
|
2020-06-23 00:39:58 +00:00
|
|
|
v4 ListItemBGColor = ui_GetListItemBGColor(State->Interface.Style, Line);
|
|
|
|
ui_FillRect(&State->Interface, LineBounds[Line], ListItemBGColor);
|
2020-06-22 04:59:42 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 22:36:50 +00:00
|
|
|
for (u32 AssemblyIndex = 0; AssemblyIndex < AssembliesToDraw; AssemblyIndex++)
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2020-06-15 22:36:50 +00:00
|
|
|
assembly Assembly = State->Assemblies.Values[AssemblyIndex];
|
2020-09-07 20:42:00 +00:00
|
|
|
PrintF(&TempString, "%S", Assembly.Name);
|
2019-12-29 00:01:34 +00:00
|
|
|
|
2020-06-23 00:39:58 +00:00
|
|
|
ui_layout ItemLayout = ui_CreateLayout(State->Interface, LineBounds[AssemblyIndex]);
|
2020-03-22 04:13:35 +00:00
|
|
|
ui_StartRow(&ItemLayout, 2);
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2020-09-07 20:42:00 +00:00
|
|
|
ui_LayoutDrawString(&State->Interface, &ItemLayout, TempString, State->Interface.Style.TextColor);
|
2020-07-18 19:00:14 +00:00
|
|
|
if (ui_LayoutListButton(&State->Interface, &ItemLayout, MakeString("X"), AssemblyIndex))
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2020-06-15 22:36:50 +00:00
|
|
|
UnloadAssembly(AssemblyIndex, State, Context);
|
2019-12-26 22:45:27 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-22 04:13:35 +00:00
|
|
|
ui_EndRow(&ItemLayout);
|
|
|
|
}
|
|
|
|
|
2020-06-22 04:59:42 +00:00
|
|
|
if (AssembliesToDraw < LineCount)
|
2020-03-22 04:13:35 +00:00
|
|
|
{
|
2020-06-23 00:39:58 +00:00
|
|
|
// NOTE(Peter): Add assembly button
|
2020-09-07 20:42:00 +00:00
|
|
|
PrintF(&TempString, "+ Add Assembly");
|
|
|
|
if (ui_ListButton(&State->Interface, TempString, LineBounds[AssembliesToDraw], AssembliesToDraw))
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2020-10-25 01:54:47 +00:00
|
|
|
panel* FileBrowser = PanelSystem_PushPanel(&State->PanelSystem, PanelType_FileView, State, Context);
|
2020-10-18 22:31:53 +00:00
|
|
|
Panel_PushModalOverride(Panel, FileBrowser, LoadAssemblyCallback);
|
2019-12-26 22:45:27 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-02 02:41:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define FOLDHAUS_PANEL_HIERARCHY_H
|
|
|
|
#endif // FOLDHAUS_PANEL_HIERARCHY_H
|