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;
|
|
|
|
|
|
|
|
b32 PanelSystemHandledInput = HandleMousePanelInteraction(&State->PanelSystem, State->WindowBounds, Mouse, State);
|
|
|
|
|
|
|
|
if (!PanelSystemHandledInput)
|
|
|
|
{
|
|
|
|
input_command_registry ActiveCommands = {};
|
|
|
|
if (State->Modes.ActiveModesCount > 0)
|
|
|
|
{
|
|
|
|
ActiveCommands = State->Modes.ActiveModes[State->Modes.ActiveModesCount - 1].Commands;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
panel* PanelWithMouseOverIt = GetPanelContainingPoint(Mouse.Pos, State->PanelSystem.Panels + 0);
|
|
|
|
if (!PanelWithMouseOverIt) { return; }
|
|
|
|
State->HotPanel = PanelWithMouseOverIt;
|
|
|
|
|
|
|
|
s32 PanelTypeIndex = PanelWithMouseOverIt->TypeIndex;
|
2020-11-03 20:49:16 +00:00
|
|
|
panel_definition PanelDefinition = State->PanelSystem.PanelDefs[PanelTypeIndex];
|
2020-10-25 01:54:47 +00:00
|
|
|
if (!PanelDefinition.InputCommands) { return; }
|
|
|
|
|
|
|
|
ActiveCommands.Commands = PanelDefinition.InputCommands;
|
|
|
|
ActiveCommands.Size = sizeof(*PanelDefinition.InputCommands) / sizeof(PanelDefinition.InputCommands[0]);
|
|
|
|
ActiveCommands.Used = ActiveCommands.Size;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (s32 EventIdx = 0; EventIdx < InputQueue.QueueUsed; EventIdx++)
|
|
|
|
{
|
|
|
|
input_entry Event = InputQueue.Entries[EventIdx];
|
|
|
|
|
|
|
|
// 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];
|
|
|
|
Entry->Command.Proc(State, Entry->Event, Mouse, Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
State->Camera.AspectRatio = RectAspectRatio(Context->WindowBounds);
|
|
|
|
|
|
|
|
PanelSystem_UpdateLayout(&State->PanelSystem, State->WindowBounds);
|
|
|
|
Editor_HandleInput(State, State->WindowBounds, InputQueue, Context->Mouse, *Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
Editor_Render(app_state* State, context* Context, render_command_buffer* RenderBuffer)
|
|
|
|
{
|
|
|
|
PushRenderOrthographic(RenderBuffer, State->WindowBounds);
|
|
|
|
PushRenderClearScreen(RenderBuffer);
|
|
|
|
|
|
|
|
State->Interface.RenderBuffer = RenderBuffer;
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Context->GeneralWorkQueue->CompleteQueueWork(Context->GeneralWorkQueue, Context->ThreadContext);
|
|
|
|
Context->GeneralWorkQueue->ResetWorkQueue(Context->GeneralWorkQueue);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define FOLDHAUS_EDITOR_CPP
|
|
|
|
#endif // FOLDHAUS_EDITOR_CPP
|