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-09 03:42:14 +00:00
|
|
|
internal void
|
|
|
|
Editor_DrawWidget(app_state* State, context* Context, render_command_buffer* RenderBuffer, ui_widget Widget)
|
|
|
|
{
|
|
|
|
if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawBackground))
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
PushRenderQuad2D(RenderBuffer, Widget.Bounds.Min, Widget.Bounds.Max, Color);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Widget.String.Length > 0)
|
|
|
|
{
|
|
|
|
v4 Color = State->Interface.Style.TextColor;
|
|
|
|
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:
|
|
|
|
{
|
|
|
|
RegisterPosition = DrawStringLeftAligned(&BatchConstructor, StringExpand(Widget.String), RegisterPosition, State->Interface.Style.Font, Color);
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case Align_Right:
|
|
|
|
{
|
|
|
|
RegisterPosition = DrawStringRightAligned(&BatchConstructor, StringExpand(Widget.String), RegisterPosition, State->Interface.Style.Font, Color);
|
|
|
|
}break;
|
|
|
|
|
|
|
|
InvalidDefaultCase;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ui_WidgetIsFlagSet(Widget, UIWidgetFlag_DrawOutline))
|
|
|
|
{
|
|
|
|
// TODO(pjs): replace these with values from the style
|
|
|
|
r32 Thickness = 1.0f;
|
|
|
|
v4 Color = WhiteV4;
|
|
|
|
PushRenderBoundingBox2D(RenderBuffer, Widget.Bounds.Min, Widget.Bounds.Max, Thickness, Color);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Widget.ChildrenRoot)
|
|
|
|
{
|
|
|
|
Editor_DrawWidget(State, Context, RenderBuffer, *Widget.ChildrenRoot);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Widget.Next)
|
|
|
|
{
|
|
|
|
Editor_DrawWidget(State, Context, RenderBuffer, *Widget.Next);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-25 01:54:47 +00:00
|
|
|
internal void
|
|
|
|
Editor_Render(app_state* State, context* Context, render_command_buffer* RenderBuffer)
|
|
|
|
{
|
|
|
|
PushRenderOrthographic(RenderBuffer, State->WindowBounds);
|
|
|
|
PushRenderClearScreen(RenderBuffer);
|
|
|
|
|
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-09 03:42:14 +00:00
|
|
|
ui_PushLayout(&State->Interface, Context->WindowBounds, LayoutDirection_TopDown);
|
2020-11-08 06:54:59 +00:00
|
|
|
|
2020-11-09 03:42:14 +00:00
|
|
|
rect2 Rects[2];
|
|
|
|
RectVSplitAtPercent(Context->WindowBounds, .5f, &Rects[0], &Rects[1]);
|
|
|
|
for (u32 j = 0; j < 2; j++)
|
|
|
|
{
|
|
|
|
ui_PushLayout(&State->Interface, Rects[j], LayoutDirection_TopDown);
|
|
|
|
|
|
|
|
if (ui_BeginDropdown(&State->Interface, MakeString("Select")))
|
|
|
|
{
|
|
|
|
for (s32 i = 0; i < GlobalPanelDefsCount; i++)
|
|
|
|
{
|
|
|
|
panel_definition Def = State->PanelSystem.PanelDefs[i];
|
|
|
|
gs_string DefName = MakeString(Def.PanelName, Def.PanelNameLength);
|
|
|
|
if (ui_Button(&State->Interface, DefName))
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ui_EndDropdown(&State->Interface);
|
|
|
|
|
|
|
|
ui_PopLayout(&State->Interface);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
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-09 03:42:14 +00:00
|
|
|
#endif
|
2020-10-25 01:54:47 +00:00
|
|
|
|
2020-11-08 06:54:59 +00:00
|
|
|
ui_PopLayout(&State->Interface);
|
|
|
|
|
|
|
|
// Draw the Interface
|
2020-11-09 03:42:14 +00:00
|
|
|
ui_widget Widget = *State->Interface.DrawOrderRoot;
|
|
|
|
Editor_DrawWidget(State, Context, RenderBuffer, Widget);
|
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
|