2020-10-25 01:54:47 +00:00
|
|
|
//
|
|
|
|
// File: foldhaus_editor.cpp
|
|
|
|
// Author: Peter Slattery
|
|
|
|
// Creation Date: 2020-10-24
|
|
|
|
//
|
|
|
|
#ifndef FOLDHAUS_EDITOR_CPP
|
|
|
|
|
|
|
|
internal void
|
|
|
|
Editor_HandleInput (app_state* State, rect2 WindowBounds, input_queue InputQueue, mouse_state Mouse, context Context)
|
|
|
|
{
|
|
|
|
DEBUG_TRACK_FUNCTION;
|
|
|
|
|
2020-11-08 07:50:41 +00:00
|
|
|
b32 MouseInputHandled = HandleMousePanelInteraction(&State->PanelSystem, State->WindowBounds, Mouse, State);
|
2020-10-25 01:54:47 +00:00
|
|
|
|
2020-11-08 07:50:41 +00:00
|
|
|
panel* ActivePanel = PanelSystem_GetPanelContainingPoint(&State->PanelSystem, Mouse.Pos);
|
|
|
|
if (ActivePanel)
|
2020-10-25 01:54:47 +00:00
|
|
|
{
|
2020-11-08 07:43:41 +00:00
|
|
|
panel_definition ActiveDef = State->PanelSystem.PanelDefs[ActivePanel->TypeIndex];
|
|
|
|
|
2020-10-25 01:54:47 +00:00
|
|
|
input_command_registry ActiveCommands = {};
|
|
|
|
if (State->Modes.ActiveModesCount > 0)
|
|
|
|
{
|
|
|
|
ActiveCommands = State->Modes.ActiveModes[State->Modes.ActiveModesCount - 1].Commands;
|
|
|
|
}
|
2020-11-08 07:50:41 +00:00
|
|
|
else if (ActiveDef.InputCommands)
|
2020-10-25 01:54:47 +00:00
|
|
|
{
|
2020-11-08 07:50:41 +00:00
|
|
|
ActiveCommands.Commands = ActiveDef.InputCommands;
|
|
|
|
ActiveCommands.Size = sizeof(*ActiveDef.InputCommands) / sizeof(ActiveDef.InputCommands[0]);
|
|
|
|
ActiveCommands.Used = ActiveCommands.Size;
|
2020-10-25 01:54:47 +00:00
|
|
|
}
|
|
|
|
|
2020-11-08 07:43:41 +00:00
|
|
|
// Fill up the command queue
|
2020-10-25 01:54:47 +00:00
|
|
|
for (s32 EventIdx = 0; EventIdx < InputQueue.QueueUsed; EventIdx++)
|
|
|
|
{
|
|
|
|
input_entry Event = InputQueue.Entries[EventIdx];
|
|
|
|
|
2020-11-08 07:50:41 +00:00
|
|
|
bool IsMouseEvent = (Event.Key == KeyCode_MouseLeftButton ||
|
|
|
|
Event.Key == KeyCode_MouseMiddleButton ||
|
|
|
|
Event.Key == KeyCode_MouseRightButton);
|
|
|
|
if (IsMouseEvent && MouseInputHandled)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-10-25 01:54:47 +00:00
|
|
|
// NOTE(Peter): These are in the order Down, Up, Held because we want to privalege
|
|
|
|
// Down and Up over Held. In other words, we don't want to call a Held command on the
|
|
|
|
// frame when the button was released, even if the command is registered to both events
|
|
|
|
if (KeyTransitionedDown(Event))
|
|
|
|
{
|
|
|
|
FindAndPushExistingCommand(ActiveCommands, Event, Command_Began, &State->CommandQueue);
|
|
|
|
}
|
|
|
|
else if (KeyTransitionedUp(Event))
|
|
|
|
{
|
|
|
|
FindAndPushExistingCommand(ActiveCommands, Event, Command_Ended, &State->CommandQueue);
|
|
|
|
}
|
|
|
|
else if (KeyHeldDown(Event))
|
|
|
|
{
|
|
|
|
FindAndPushExistingCommand(ActiveCommands, Event, Command_Held, &State->CommandQueue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute all commands in CommandQueue
|
|
|
|
for (s32 CommandIdx = State->CommandQueue.Used - 1; CommandIdx >= 0; CommandIdx--)
|
|
|
|
{
|
|
|
|
command_queue_entry* Entry = &State->CommandQueue.Commands[CommandIdx];
|
2020-11-08 07:43:41 +00:00
|
|
|
if (Entry->Command.Proc)
|
|
|
|
{
|
|
|
|
Entry->Command.Proc(State, Entry->Event, Mouse, Context, ActivePanel);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
EndCurrentOperationMode(State);
|
|
|
|
}
|
2020-10-25 01:54:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ClearCommandQueue(&State->CommandQueue);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
Editor_Update(app_state* State, context* Context, input_queue InputQueue)
|
|
|
|
{
|
|
|
|
Context->Mouse.CursorType = CursorType_Arrow;
|
|
|
|
State->WindowBounds = Context->WindowBounds;
|
|
|
|
State->Interface.Mouse = Context->Mouse;
|
|
|
|
|
|
|
|
PanelSystem_UpdateLayout(&State->PanelSystem, State->WindowBounds);
|
|
|
|
Editor_HandleInput(State, State->WindowBounds, InputQueue, Context->Mouse, *Context);
|
|
|
|
}
|
|
|
|
|
2020-11-15 07:30:24 +00:00
|
|
|
internal void
|
2020-11-16 00:29:13 +00:00
|
|
|
Editor_DrawWidgetString(app_state* State, context* Context, render_command_buffer* RenderBuffer, ui_widget Widget, rect2 ClippingBox, v4 Color)
|
2020-11-15 07:30:24 +00:00
|
|
|
{
|
|
|
|
render_quad_batch_constructor BatchConstructor = PushRenderTexture2DBatch(RenderBuffer,
|
|
|
|
Widget.String.Length,
|
|
|
|
State->Interface.Style.Font->BitmapMemory,
|
|
|
|
State->Interface.Style.Font->BitmapTextureHandle,
|
|
|
|
State->Interface.Style.Font->BitmapWidth,
|
|
|
|
State->Interface.Style.Font->BitmapHeight,
|
|
|
|
State->Interface.Style.Font->BitmapBytesPerPixel,
|
|
|
|
State->Interface.Style.Font->BitmapStride);
|
|
|
|
|
|
|
|
v2 RegisterPosition = Widget.Bounds.Min + State->Interface.Style.Margin;
|
|
|
|
|
|
|
|
switch (Widget.Alignment)
|
|
|
|
{
|
|
|
|
case Align_Left:
|
|
|
|
{
|
2020-11-16 00:29:13 +00:00
|
|
|
RegisterPosition = DrawStringLeftAligned(&BatchConstructor, StringExpand(Widget.String), RegisterPosition, State->Interface.Style.Font, ClippingBox, Color);
|
2020-11-15 07:30:24 +00:00
|
|
|
}break;
|
|
|
|
|
|
|
|
case Align_Right:
|
|
|
|
{
|
2020-11-16 00:29:13 +00:00
|
|
|
RegisterPosition = DrawStringRightAligned(&BatchConstructor, StringExpand(Widget.String), RegisterPosition, State->Interface.Style.Font, ClippingBox, Color);
|
2020-11-15 07:30:24 +00:00
|
|
|
}break;
|
|
|
|
|
|
|
|
InvalidDefaultCase;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-09 03:42:14 +00:00
|
|
|
internal void
|
2020-11-16 00:58:13 +00:00
|
|
|
Editor_DrawWidget(app_state* State, context* Context, render_command_buffer* RenderBuffer, ui_widget Widget, rect2 ParentClipBounds)
|
2020-11-09 03:42:14 +00:00
|
|
|
{
|
2020-11-16 00:29:13 +00:00
|
|
|
rect2 WidgetParentUnion = Widget.Bounds;
|
2020-11-16 00:58:13 +00:00
|
|
|
WidgetParentUnion = Rect2Union(Widget.Bounds, ParentClipBounds);
|
2020-11-15 07:30:24 +00:00
|
|
|
|
2020-11-16 00:29:13 +00:00
|
|
|
if (!Widget.Parent || (Rect2Area(WidgetParentUnion) > 0))
|
2020-11-15 07:30:24 +00:00
|
|
|
{
|
2020-11-16 00:29:13 +00:00
|
|
|
if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawBackground))
|
2020-11-15 07:30:24 +00:00
|
|
|
{
|
2020-11-16 00:29:13 +00:00
|
|
|
v4 Color = State->Interface.Style.ButtonColor_Inactive;
|
|
|
|
if (ui_WidgetIdsEqual(Widget.Id, State->Interface.HotWidget))
|
|
|
|
{
|
|
|
|
Color = State->Interface.Style.ButtonColor_Active;
|
|
|
|
}
|
|
|
|
if (ui_WidgetIdsEqual(Widget.Id, State->Interface.ActiveWidget))
|
|
|
|
{
|
|
|
|
Color = State->Interface.Style.ButtonColor_Selected;
|
|
|
|
}
|
|
|
|
PushRenderQuad2DClipped(RenderBuffer, Widget.Bounds, WidgetParentUnion, Color);
|
2020-11-15 07:30:24 +00:00
|
|
|
}
|
2020-11-16 00:29:13 +00:00
|
|
|
|
|
|
|
if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawString) && Widget.String.Length > 0)
|
2020-11-15 07:30:24 +00:00
|
|
|
{
|
2020-11-16 00:29:13 +00:00
|
|
|
v4 Color = State->Interface.Style.TextColor;
|
|
|
|
Editor_DrawWidgetString(State, Context, RenderBuffer, Widget, WidgetParentUnion, Color);
|
2020-11-15 07:30:24 +00:00
|
|
|
}
|
2020-11-09 03:42:14 +00:00
|
|
|
|
2020-11-16 00:29:13 +00:00
|
|
|
if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawHorizontalFill) ||
|
|
|
|
ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawVerticalFill))
|
|
|
|
{
|
2020-11-16 00:36:11 +00:00
|
|
|
v4 Color = State->Interface.Style.ButtonColor_Selected;
|
|
|
|
if (ui_WidgetIdsEqual(Widget.Id, State->Interface.HotWidget) ||
|
|
|
|
ui_WidgetIdsEqual(Widget.Id, State->Interface.ActiveWidget))
|
2020-11-16 00:29:13 +00:00
|
|
|
{
|
2020-11-16 00:36:11 +00:00
|
|
|
Color = WhiteV4;
|
2020-11-16 00:29:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rect2 FillBounds = {};
|
|
|
|
if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawHorizontalFill))
|
|
|
|
{
|
|
|
|
FillBounds.Min.y = Widget.Bounds.Min.y;
|
|
|
|
FillBounds.Max.y = Widget.Bounds.Max.y;
|
|
|
|
r32 FillToPoint = LerpR32(Widget.FillPercent, Widget.Bounds.Min.x, Widget.Bounds.Max.x);
|
|
|
|
if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawFillReversed))
|
|
|
|
{
|
|
|
|
FillBounds.Min.x = FillToPoint;
|
|
|
|
FillBounds.Max.x = Widget.Bounds.Max.x;
|
|
|
|
}
|
|
|
|
else if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawFillAsHandle))
|
|
|
|
{
|
|
|
|
FillBounds.Min.x = FillToPoint - 5;
|
|
|
|
FillBounds.Max.x = FillToPoint + 5;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FillBounds.Min.x = Widget.Bounds.Min.x;
|
|
|
|
FillBounds.Max.x = FillToPoint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawVerticalFill))
|
|
|
|
{
|
|
|
|
FillBounds.Min.x = Widget.Bounds.Min.x;
|
|
|
|
FillBounds.Max.x = Widget.Bounds.Max.x;
|
|
|
|
r32 FillToPoint = LerpR32(Widget.FillPercent, Widget.Bounds.Min.y, Widget.Bounds.Max.y);
|
|
|
|
if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawFillReversed))
|
|
|
|
{
|
|
|
|
FillBounds.Min.y = FillToPoint;
|
|
|
|
FillBounds.Max.y = Widget.Bounds.Max.y;
|
|
|
|
}
|
|
|
|
else if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawFillAsHandle))
|
|
|
|
{
|
|
|
|
FillBounds.Min.y = FillToPoint - 5;
|
|
|
|
FillBounds.Max.y = FillToPoint + 5;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FillBounds.Min.y = Widget.Bounds.Min.y;
|
|
|
|
FillBounds.Max.y = FillToPoint;
|
|
|
|
}
|
|
|
|
}
|
2020-11-16 00:36:11 +00:00
|
|
|
PushRenderQuad2DClipped(RenderBuffer, FillBounds, WidgetParentUnion, Color);
|
2020-11-16 00:29:13 +00:00
|
|
|
|
|
|
|
if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawString) && Widget.String.Length > 0)
|
|
|
|
{
|
|
|
|
// TODO(pjs): Mask this text by the horizontal fill
|
|
|
|
// TODO(pjs): add this color to the style
|
|
|
|
v4 TextColor = BlackV4;
|
|
|
|
Editor_DrawWidgetString(State, Context, RenderBuffer, Widget, WidgetParentUnion, TextColor);
|
|
|
|
}
|
|
|
|
}
|
2020-11-09 03:42:14 +00:00
|
|
|
|
2020-11-16 00:29:13 +00:00
|
|
|
|
|
|
|
if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawOutline))
|
2020-11-09 03:42:14 +00:00
|
|
|
{
|
2020-11-16 00:29:13 +00:00
|
|
|
// TODO(pjs): replace these with values from the style
|
|
|
|
r32 Thickness = 1.0f;
|
|
|
|
v4 Color = WhiteV4;
|
|
|
|
PushRenderBoundingBox2D(RenderBuffer, WidgetParentUnion.Min, WidgetParentUnion.Max, Thickness, Color);
|
2020-11-09 03:42:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Widget.ChildrenRoot)
|
|
|
|
{
|
2020-11-16 00:58:13 +00:00
|
|
|
Editor_DrawWidget(State, Context, RenderBuffer, *Widget.ChildrenRoot, WidgetParentUnion);
|
2020-11-09 03:42:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Widget.Next)
|
|
|
|
{
|
2020-11-16 00:58:13 +00:00
|
|
|
Editor_DrawWidget(State, Context, RenderBuffer, *Widget.Next, ParentClipBounds);
|
2020-11-09 03:42:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-15 07:30:24 +00:00
|
|
|
global r32 TestSlider_Value = 5;
|
|
|
|
global r32 TestSlider_Min = 0;
|
|
|
|
global r32 TestSlider_Max = 10;
|
|
|
|
global bool TestToggle = true;
|
|
|
|
|
2020-10-25 01:54:47 +00:00
|
|
|
internal void
|
2020-11-15 01:18:38 +00:00
|
|
|
TestRender(app_state* State, context* Context, render_command_buffer* RenderBuffer)
|
2020-10-25 01:54:47 +00:00
|
|
|
{
|
2020-11-08 06:54:59 +00:00
|
|
|
ui_InterfaceReset(&State->Interface);
|
2020-10-25 01:54:47 +00:00
|
|
|
State->Interface.RenderBuffer = RenderBuffer;
|
2020-11-15 22:48:04 +00:00
|
|
|
State->Interface.WindowBounds = Context->WindowBounds;
|
2020-10-25 01:54:47 +00:00
|
|
|
|
2020-11-15 22:48:04 +00:00
|
|
|
gs_string A = MakeString("TestRender Layout");
|
2020-11-08 06:54:59 +00:00
|
|
|
|
2020-11-15 22:48:04 +00:00
|
|
|
ui_PushLayout(&State->Interface, A);
|
2020-11-09 03:42:14 +00:00
|
|
|
{
|
2020-11-16 04:03:35 +00:00
|
|
|
#if 0
|
2020-11-16 00:29:13 +00:00
|
|
|
ui_Label(&State->Interface, MakeString("Spacer"));
|
|
|
|
ui_Label(&State->Interface, MakeString("Spacer"));
|
|
|
|
ui_Label(&State->Interface, MakeString("Spacer"));
|
|
|
|
ui_Label(&State->Interface, MakeString("Spacer"));
|
|
|
|
ui_Label(&State->Interface, MakeString("Spacer"));
|
2020-11-15 22:48:04 +00:00
|
|
|
|
2020-11-16 00:58:13 +00:00
|
|
|
ui_BeginList(&State->Interface, MakeString("TestList"), 5, 16);
|
2020-11-15 22:48:04 +00:00
|
|
|
{
|
2020-11-16 00:58:13 +00:00
|
|
|
ui_BeginRow(&State->Interface, 3);
|
|
|
|
for (u32 i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
|
|
|
|
ui_Button(&State->Interface, MakeString("B"));
|
|
|
|
ui_Button(&State->Interface, MakeString("C"));
|
|
|
|
ui_Button(&State->Interface, MakeString("D"));
|
|
|
|
}
|
|
|
|
ui_EndRow(&State->Interface);
|
2020-11-15 22:48:04 +00:00
|
|
|
}
|
2020-11-16 00:29:13 +00:00
|
|
|
ui_EndList(&State->Interface);
|
|
|
|
//ui_Button(&State->Interface, MakeString("B"));
|
|
|
|
//ui_Button(&State->Interface, MakeString("C"));
|
|
|
|
//TestSlider_Value = ui_RangeSlider(&State->Interface, MakeString("TestSlider"), TestSlider_Value, TestSlider_Min, TestSlider_Max);
|
2020-11-16 04:03:35 +00:00
|
|
|
#elif 1
|
2020-11-15 22:48:04 +00:00
|
|
|
ui_PushLayout(&State->Interface, MakeString("Outer"));
|
2020-11-09 03:42:14 +00:00
|
|
|
{
|
2020-11-15 22:48:04 +00:00
|
|
|
for (u32 i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
ui_Button(&State->Interface, MakeString("A"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ui_PopLayout(&State->Interface);
|
|
|
|
|
|
|
|
ui_BeginRow(&State->Interface, 2);
|
|
|
|
{
|
|
|
|
ui_PushLayout(&State->Interface, MakeString("TestLayout"));
|
|
|
|
{
|
|
|
|
for (u32 i = 0; i < 5; i++)
|
|
|
|
{
|
|
|
|
ui_Button(&State->Interface, MakeString("TestButon"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ui_PopLayout(&State->Interface);
|
|
|
|
|
|
|
|
ui_PushLayout(&State->Interface, MakeString("TestLayout"));
|
2020-11-09 03:42:14 +00:00
|
|
|
{
|
2020-11-15 22:48:04 +00:00
|
|
|
ui_Button(&State->Interface, MakeString("TestButon"));
|
|
|
|
TestToggle = ui_Toggle(&State->Interface, MakeString("Toggle"), TestToggle);
|
|
|
|
TestSlider_Value = ui_RangeSlider(&State->Interface, MakeString("TestSlider"), TestSlider_Value, TestSlider_Min, TestSlider_Max);
|
|
|
|
if (ui_BeginDropdown(&State->Interface, MakeString("TestDropdown")))
|
2020-11-09 03:42:14 +00:00
|
|
|
{
|
2020-11-15 22:48:04 +00:00
|
|
|
ui_Button(&State->Interface, MakeString("TestButon"));
|
|
|
|
ui_Button(&State->Interface, MakeString("TestButon"));
|
|
|
|
ui_Button(&State->Interface, MakeString("TestButon"));
|
2020-11-09 03:42:14 +00:00
|
|
|
}
|
2020-11-15 22:48:04 +00:00
|
|
|
ui_EndDropdown(&State->Interface);
|
2020-11-09 03:42:14 +00:00
|
|
|
}
|
2020-11-15 22:48:04 +00:00
|
|
|
ui_PopLayout(&State->Interface);
|
2020-11-09 03:42:14 +00:00
|
|
|
}
|
2020-11-15 22:48:04 +00:00
|
|
|
ui_EndRow(&State->Interface);
|
|
|
|
|
|
|
|
ui_PushLayout(&State->Interface, MakeString("Outer"));
|
|
|
|
{
|
|
|
|
for (u32 i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
ui_Button(&State->Interface, MakeString("B"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ui_PopLayout(&State->Interface);
|
2020-11-16 04:03:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
ui_PushOverlayLayout(&State->Interface, rect2{25, 25, 200, 200}, LayoutDirection_TopDown, MakeString("t"));
|
|
|
|
{
|
|
|
|
ui_Label(&State->Interface, PushStringF(State->Interface.PerFrameMemory, 256, "Mouse Pos - %f %f", State->Interface.Mouse.Pos.x, State->Interface.Mouse.Pos.y));
|
|
|
|
}
|
|
|
|
ui_PopLayout(&State->Interface);
|
2020-11-15 22:48:04 +00:00
|
|
|
#else
|
|
|
|
ui_BeginList(&State->Interface, MakeString("Test List"), 10);
|
|
|
|
{
|
|
|
|
for (u32 i = 0; i < 32; i++)
|
|
|
|
{
|
|
|
|
ui_Button(&State->Interface, MakeString("Option"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ui_EndList(&State->Interface);
|
|
|
|
#endif
|
2020-11-09 03:42:14 +00:00
|
|
|
}
|
2020-11-15 01:18:38 +00:00
|
|
|
ui_PopLayout(&State->Interface);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
Editor_Render(app_state* State, context* Context, render_command_buffer* RenderBuffer)
|
|
|
|
{
|
|
|
|
PushRenderOrthographic(RenderBuffer, State->WindowBounds);
|
|
|
|
PushRenderClearScreen(RenderBuffer);
|
2020-11-09 03:42:14 +00:00
|
|
|
|
2020-11-16 00:58:13 +00:00
|
|
|
#if 0
|
2020-11-15 01:18:38 +00:00
|
|
|
TestRender(State, Context, RenderBuffer);
|
|
|
|
#else
|
|
|
|
ui_InterfaceReset(&State->Interface);
|
|
|
|
State->Interface.RenderBuffer = RenderBuffer;
|
|
|
|
ui_PushLayout(&State->Interface, Context->WindowBounds, LayoutDirection_TopDown, MakeString("Editor Layout"));
|
|
|
|
|
2020-10-25 01:54:47 +00:00
|
|
|
DrawAllPanels(State->PanelSystem, RenderBuffer, &Context->Mouse, State, *Context);
|
|
|
|
|
|
|
|
for (s32 m = 0; m < State->Modes.ActiveModesCount; m++)
|
|
|
|
{
|
|
|
|
operation_mode OperationMode = State->Modes.ActiveModes[m];
|
|
|
|
if (OperationMode.Render != 0)
|
|
|
|
{
|
|
|
|
OperationMode.Render(State, RenderBuffer, OperationMode, Context->Mouse, *Context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-08 06:54:59 +00:00
|
|
|
ui_PopLayout(&State->Interface);
|
2020-11-15 01:18:38 +00:00
|
|
|
#endif
|
2020-11-08 06:54:59 +00:00
|
|
|
|
|
|
|
// Draw the Interface
|
2020-11-15 01:18:38 +00:00
|
|
|
if (State->Interface.DrawOrderRoot != 0)
|
|
|
|
{
|
|
|
|
ui_widget Widget = *State->Interface.DrawOrderRoot;
|
2020-11-16 00:58:13 +00:00
|
|
|
Editor_DrawWidget(State, Context, RenderBuffer, Widget, Context->WindowBounds);
|
2020-11-15 01:18:38 +00:00
|
|
|
}
|
2020-11-08 06:54:59 +00:00
|
|
|
|
2020-10-25 01:54:47 +00:00
|
|
|
Context->GeneralWorkQueue->CompleteQueueWork(Context->GeneralWorkQueue, Context->ThreadContext);
|
|
|
|
Context->GeneralWorkQueue->ResetWorkQueue(Context->GeneralWorkQueue);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define FOLDHAUS_EDITOR_CPP
|
|
|
|
#endif // FOLDHAUS_EDITOR_CPP
|