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
|
|
|
|
HierarchyView_Init(panel* Panel, app_state* State)
|
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-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
|
|
|
|
HierarchyView_Render(panel Panel, rect PanelBounds, render_command_buffer* RenderBuffer, app_state* State, context Context, mouse_state Mouse)
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2020-03-22 04:13:35 +00:00
|
|
|
ui_layout Layout = ui_CreateLayout(State->Interface_, PanelBounds);
|
|
|
|
v4 ListItemHover = State->Interface_.Style.ListBGHover;
|
|
|
|
v4 ListItemSelected = State->Interface_.Style.ListBGSelected;
|
2019-12-26 22:45:27 +00:00
|
|
|
|
2020-05-30 22:09:06 +00:00
|
|
|
string TempString = PushString(&State->Transient, 256);
|
2019-12-26 22:45:27 +00:00
|
|
|
|
2020-03-22 05:44:44 +00:00
|
|
|
u32 LineCount = (u32)(gs_Height(PanelBounds) / Layout.RowHeight) + 1;
|
2020-03-22 04:13:35 +00:00
|
|
|
u32 LinesDrawn = 0;
|
|
|
|
u32 AssembliesToDraw = GSMin(LineCount, State->ActiveAssemblyIndecies.Used);
|
|
|
|
for (; LinesDrawn < AssembliesToDraw; LinesDrawn++)
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2020-03-22 04:13:35 +00:00
|
|
|
rect Bounds = ui_ReserveElementBounds(&Layout);
|
|
|
|
v4 ListItemBGColor = ui_GetListItemBGColor(State->Interface_.Style, LinesDrawn);
|
|
|
|
ui_FillRect(&State->Interface_, Bounds, ListItemBGColor);
|
|
|
|
gs_list_handle AssemblyHandle = *State->ActiveAssemblyIndecies.GetElementAtIndex(LinesDrawn);
|
|
|
|
assembly Assembly = *State->AssemblyList.GetElementWithHandle(AssemblyHandle);
|
|
|
|
PrintF(&TempString, "%S", Assembly.Name);
|
2019-12-29 00:01:34 +00:00
|
|
|
|
2020-03-22 04:13:35 +00:00
|
|
|
ui_layout ItemLayout = ui_CreateLayout(State->Interface_, Bounds);
|
|
|
|
ui_StartRow(&ItemLayout, 2);
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2020-03-22 04:13:35 +00:00
|
|
|
ui_LayoutDrawString(&State->Interface_, &ItemLayout, TempString, State->Interface_.Style.TextColor);
|
|
|
|
if (ui_LayoutButton(&State->Interface_, &ItemLayout, MakeStringLiteral("X"), ListItemBGColor, ListItemHover, ListItemSelected))
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2019-12-27 02:40:14 +00:00
|
|
|
UnloadAssembly(AssemblyHandle.Index, State, Context);
|
2019-12-26 22:45:27 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-22 04:13:35 +00:00
|
|
|
ui_EndRow(&ItemLayout);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LinesDrawn < LineCount)
|
|
|
|
{
|
|
|
|
v4 ListItemBGColor = ui_GetListItemBGColor(State->Interface_.Style, LinesDrawn++);
|
|
|
|
PrintF(&TempString, "+ Add Assembly");
|
|
|
|
if (ui_LayoutButton(&State->Interface_, &Layout, TempString, ListItemBGColor, ListItemHover, ListItemSelected))
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2020-05-30 22:09:06 +00:00
|
|
|
string FilePath = PushString(&State->Transient, 256);
|
|
|
|
b32 Success = GetFilePath(Context, &FilePath, "Foldhaus Files\0*.fold\0\0");
|
2020-03-22 04:13:35 +00:00
|
|
|
if (Success)
|
2019-12-26 22:45:27 +00:00
|
|
|
{
|
2020-03-22 04:13:35 +00:00
|
|
|
LoadAssembly(State, Context, FilePath);
|
2019-12-26 22:45:27 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-28 19:31:21 +00:00
|
|
|
|
2020-03-22 04:13:35 +00:00
|
|
|
for (; LinesDrawn < LineCount; LinesDrawn++)
|
|
|
|
{
|
|
|
|
rect Bounds = ui_ReserveElementBounds(&Layout);
|
|
|
|
ListItemBGColor = ui_GetListItemBGColor(State->Interface_.Style, LinesDrawn);
|
|
|
|
ui_FillRect(&State->Interface_, Bounds, ListItemBGColor);
|
|
|
|
}
|
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
|