2020-01-02 02:41:43 +00:00
|
|
|
//
|
|
|
|
// File: foldhaus_app.cpp
|
|
|
|
// Author: Peter Slattery
|
|
|
|
// Creation Date: 2020-01-01
|
|
|
|
//
|
|
|
|
#ifndef FOLDHAUS_APP_CPP
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
#include "foldhaus_platform.h"
|
|
|
|
#include "foldhaus_app.h"
|
|
|
|
|
|
|
|
RELOAD_STATIC_DATA(ReloadStaticData)
|
|
|
|
{
|
|
|
|
GlobalDebugServices = DebugServices;
|
2021-01-11 00:25:35 +00:00
|
|
|
|
2021-03-31 02:55:54 +00:00
|
|
|
if (AppReady)
|
|
|
|
{
|
|
|
|
app_state* State = (app_state*)Context.MemoryBase;
|
|
|
|
State->PanelSystem.PanelDefs = GlobalPanelDefs;
|
|
|
|
State->PanelSystem.PanelDefsCount = GlobalPanelDefsCount;
|
|
|
|
|
|
|
|
gs_data UserData = State->UserSpaceDesc.UserData;
|
|
|
|
State->UserSpaceDesc = BlumenLumen_UserSpaceCreate();
|
|
|
|
if (UserData.Memory && !State->UserSpaceDesc.UserData.Memory)
|
|
|
|
{
|
|
|
|
State->UserSpaceDesc.UserData = UserData;
|
|
|
|
}
|
|
|
|
US_LoadPatterns(&State->UserSpaceDesc, State, Context);
|
|
|
|
}
|
2019-07-19 20:56:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
INITIALIZE_APPLICATION(InitializeApplication)
|
|
|
|
{
|
2021-03-31 05:04:05 +00:00
|
|
|
Context->MemorySize = sizeof(app_state);
|
|
|
|
Context->MemoryBase = AllocatorAlloc(Context->ThreadContext.Allocator, Context->MemorySize).Memory;
|
|
|
|
app_state* State = (app_state*)Context->MemoryBase;
|
2020-06-15 22:36:50 +00:00
|
|
|
*State = {};
|
|
|
|
|
2021-03-31 05:04:05 +00:00
|
|
|
State->Permanent = CreateMemoryArena(Context->ThreadContext.Allocator, "Permanent");
|
|
|
|
State->Transient = Context->ThreadContext.Transient;
|
2020-10-03 15:46:14 +00:00
|
|
|
State->Assemblies = AssemblyArray_Create(8, &State->Permanent);
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2021-01-11 08:02:42 +00:00
|
|
|
State->GlobalLog = PushStruct(&State->Permanent, event_log);
|
2020-02-06 04:24:34 +00:00
|
|
|
|
2020-11-08 07:15:39 +00:00
|
|
|
State->CommandQueue = CommandQueue_Create(&State->Permanent, 32);
|
2019-10-30 14:28:02 +00:00
|
|
|
|
2021-01-30 23:10:46 +00:00
|
|
|
animation_system_desc AnimSysDesc = {};
|
|
|
|
AnimSysDesc.Storage = &State->Permanent;
|
|
|
|
AnimSysDesc.AnimArrayCount = 32;
|
|
|
|
AnimSysDesc.SecondsPerFrame = 1.0f / 24.0f;
|
|
|
|
State->AnimationSystem = AnimationSystem_Init(AnimSysDesc);
|
2021-01-11 00:25:35 +00:00
|
|
|
|
2021-03-31 05:04:05 +00:00
|
|
|
if (!Context->Headless)
|
2021-03-31 02:55:54 +00:00
|
|
|
{
|
|
|
|
interface_config IConfig = {0};
|
|
|
|
IConfig.FontSize = 14;
|
|
|
|
IConfig.PanelBG = v4{ .3f, .3f, .3f, 1.f };
|
|
|
|
IConfig.ButtonColor_Inactive = BlackV4;
|
|
|
|
IConfig.ButtonColor_Active = v4{ .1f, .1f, .1f, 1.f };
|
|
|
|
IConfig.ButtonColor_Selected = v4{ .3f, .3f, .3f, 1.f };
|
|
|
|
IConfig.TextColor = WhiteV4;
|
|
|
|
IConfig.ListBGColors[0] = v4{ .16f, .16f, .16f, 1.f };
|
|
|
|
IConfig.ListBGColors[1] = v4{ .18f, .18f, .18f, 1.f };
|
|
|
|
IConfig.ListBGHover = v4{ .22f, .22f, .22f, 1.f };
|
|
|
|
IConfig.ListBGSelected = v4{ .44f, .44f, .44f, 1.f };
|
|
|
|
IConfig.Margin = v2{5, 5};
|
2021-03-31 05:04:05 +00:00
|
|
|
State->Interface = ui_InterfaceCreate(*Context, IConfig, &State->Permanent);
|
2021-03-31 02:55:54 +00:00
|
|
|
|
|
|
|
PanelSystem_Init(&State->PanelSystem, GlobalPanelDefs, GlobalPanelDefsCount, &State->Permanent);
|
|
|
|
|
|
|
|
}
|
2020-11-08 06:54:59 +00:00
|
|
|
|
2021-03-31 05:04:05 +00:00
|
|
|
State->SACN = SACN_Initialize(*Context);
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2021-03-31 05:04:05 +00:00
|
|
|
State->LedSystem = LedSystem_Create(Context->ThreadContext.Allocator, 128);
|
2021-01-17 00:37:56 +00:00
|
|
|
State->AssemblyDebugState = AssemblyDebug_Create(&State->Permanent);
|
2021-02-21 02:21:52 +00:00
|
|
|
State->AssemblyDebugState.Brightness = 255;
|
2021-03-07 02:17:00 +00:00
|
|
|
State->AssemblyDebugState.Override = ADS_Override_None;
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2021-03-31 05:04:05 +00:00
|
|
|
State->Modes = OperationModeSystemInit(&State->Permanent, Context->ThreadContext);
|
2021-03-18 05:15:37 +00:00
|
|
|
|
2021-03-31 05:04:05 +00:00
|
|
|
ReloadStaticData(*Context, GlobalDebugServices, true);
|
|
|
|
US_CustomInit(&State->UserSpaceDesc, State, *Context);
|
2021-03-18 05:15:37 +00:00
|
|
|
|
2021-03-31 02:55:54 +00:00
|
|
|
GlobalDebugServices->Interface.RenderSculpture = true;
|
|
|
|
|
2021-03-31 05:04:05 +00:00
|
|
|
if (!Context->Headless)
|
2021-02-20 22:32:43 +00:00
|
|
|
{
|
2021-02-28 23:47:05 +00:00
|
|
|
// NOTE(pjs): This just sets up the default panel layout
|
2021-03-31 05:04:05 +00:00
|
|
|
panel* RootPanel = PanelSystem_PushPanel(&State->PanelSystem, PanelType_SculptureView, State, *Context);
|
|
|
|
SplitPanel(RootPanel, .25f, PanelSplit_Horizontal, &State->PanelSystem, State, *Context);
|
2021-02-20 22:32:43 +00:00
|
|
|
|
|
|
|
panel* AnimPanel = RootPanel->Bottom;
|
2021-03-31 05:04:05 +00:00
|
|
|
Panel_SetType(AnimPanel, &State->PanelSystem, PanelType_AnimationTimeline, State, *Context);
|
2021-02-20 22:32:43 +00:00
|
|
|
|
|
|
|
panel* TopPanel = RootPanel->Top;
|
2021-03-31 05:04:05 +00:00
|
|
|
SplitPanel(TopPanel, .5f, PanelSplit_Vertical, &State->PanelSystem, State, *Context);
|
2021-02-20 22:32:43 +00:00
|
|
|
|
|
|
|
panel* LeftPanel = TopPanel->Left;
|
2021-03-31 05:04:05 +00:00
|
|
|
SplitPanel(LeftPanel, .5f, PanelSplit_Vertical, &State->PanelSystem, State, *Context);
|
2021-02-20 22:32:43 +00:00
|
|
|
|
|
|
|
panel* Profiler = LeftPanel->Right;
|
2021-03-31 05:04:05 +00:00
|
|
|
Panel_SetType(Profiler, &State->PanelSystem, PanelType_ProfilerView, State, *Context);
|
2021-02-20 22:32:43 +00:00
|
|
|
|
|
|
|
panel* Hierarchy = LeftPanel->Left;
|
2021-03-31 05:04:05 +00:00
|
|
|
Panel_SetType(Hierarchy, &State->PanelSystem, PanelType_AssemblyDebug, State, *Context);
|
2021-02-20 22:32:43 +00:00
|
|
|
|
|
|
|
}
|
2021-03-18 09:19:35 +00:00
|
|
|
|
2021-03-31 05:04:05 +00:00
|
|
|
State->RunEditor = !Context->Headless;
|
2019-07-19 20:56:21 +00:00
|
|
|
}
|
|
|
|
|
2021-03-23 03:58:52 +00:00
|
|
|
internal void
|
|
|
|
BuildAssemblyData (app_state* State, context Context, addressed_data_buffer_list* OutputData)
|
|
|
|
{
|
|
|
|
|
|
|
|
#define SEND_DATA
|
|
|
|
#ifdef SEND_DATA
|
|
|
|
// NOTE(pjs): Building data buffers to be sent out to the sculpture
|
|
|
|
// This array is used on the platform side to actually send the information
|
|
|
|
assembly_array SACNAssemblies = AssemblyArray_Filter(State->Assemblies, AssemblyFilter_OutputsViaSACN, State->Transient);
|
|
|
|
assembly_array UARTAssemblies = AssemblyArray_Filter(State->Assemblies, AssemblyFilter_OutputsViaUART, State->Transient);
|
|
|
|
SACN_BuildOutputData(&State->SACN, OutputData, SACNAssemblies, &State->LedSystem);
|
|
|
|
UART_BuildOutputData(OutputData, UARTAssemblies, &State->LedSystem, State->Transient);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-11-11 20:02:24 +00:00
|
|
|
UPDATE_AND_RENDER(UpdateAndRender)
|
|
|
|
{
|
|
|
|
DEBUG_TRACK_FUNCTION;
|
2020-03-13 05:42:59 +00:00
|
|
|
app_state* State = (app_state*)Context->MemoryBase;
|
2019-11-11 20:02:24 +00:00
|
|
|
|
|
|
|
// NOTE(Peter): We do this at the beginning because all the render commands are stored in Transient,
|
|
|
|
// and need to persist beyond the end of the UpdateAndRender call. In the release version, we won't
|
2020-03-22 05:44:44 +00:00
|
|
|
// zero the Transient arena when we clear it so it wouldn't be a problem, but it is technically
|
2019-11-11 20:02:24 +00:00
|
|
|
// incorrect to clear the arena, and then access the memory later.
|
2020-09-07 20:42:00 +00:00
|
|
|
ClearArena(State->Transient);
|
2021-03-28 04:41:47 +00:00
|
|
|
Assert(State->UserSpaceDesc.UserData.Memory != 0);
|
2019-11-11 20:02:24 +00:00
|
|
|
|
2021-03-18 09:19:35 +00:00
|
|
|
if (State->RunEditor)
|
|
|
|
{
|
|
|
|
Editor_Update(State, Context, InputQueue);
|
|
|
|
}
|
2019-11-11 20:02:24 +00:00
|
|
|
|
2021-03-18 05:15:37 +00:00
|
|
|
AnimationSystem_Update(&State->AnimationSystem, Context->DeltaTime);
|
2020-11-14 20:19:36 +00:00
|
|
|
if (AnimationSystem_NeedsRender(State->AnimationSystem))
|
2020-10-10 05:08:51 +00:00
|
|
|
{
|
2021-03-28 04:41:47 +00:00
|
|
|
Assert(State->UserSpaceDesc.UserData.Memory != 0);
|
2020-11-14 20:19:36 +00:00
|
|
|
AnimationSystem_RenderToLedBuffers(&State->AnimationSystem,
|
|
|
|
State->Assemblies,
|
|
|
|
&State->LedSystem,
|
2021-01-11 00:25:35 +00:00
|
|
|
State->Patterns,
|
2021-01-16 22:02:25 +00:00
|
|
|
State->Transient,
|
2021-03-23 03:58:52 +00:00
|
|
|
*Context,
|
2021-01-30 23:10:46 +00:00
|
|
|
State->UserSpaceDesc.UserData.Memory);
|
2019-12-28 18:51:47 +00:00
|
|
|
}
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2021-03-28 04:41:47 +00:00
|
|
|
Assert(State->UserSpaceDesc.UserData.Memory != 0);
|
2021-01-30 23:10:46 +00:00
|
|
|
US_CustomUpdate(&State->UserSpaceDesc, State, Context);
|
2021-03-28 04:41:47 +00:00
|
|
|
Assert(State->UserSpaceDesc.UserData.Memory != 0);
|
2021-01-23 20:48:14 +00:00
|
|
|
|
2021-01-16 22:02:25 +00:00
|
|
|
AssemblyDebug_OverrideOutput(State->AssemblyDebugState,
|
|
|
|
State->Assemblies,
|
|
|
|
State->LedSystem);
|
2021-01-11 08:02:42 +00:00
|
|
|
|
2021-03-18 09:19:35 +00:00
|
|
|
if (State->RunEditor)
|
|
|
|
{
|
|
|
|
Editor_Render(State, Context, RenderBuffer);
|
|
|
|
}
|
2021-03-31 02:55:54 +00:00
|
|
|
ResetWorkQueue(Context->GeneralWorkQueue);
|
2021-02-06 22:09:17 +00:00
|
|
|
|
2021-03-28 04:41:47 +00:00
|
|
|
Assert(State->UserSpaceDesc.UserData.Memory != 0);
|
2021-03-23 03:58:52 +00:00
|
|
|
BuildAssemblyData(State, *Context, OutputData);
|
2019-07-19 20:56:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CLEANUP_APPLICATION(CleanupApplication)
|
|
|
|
{
|
|
|
|
app_state* State = (app_state*)Context.MemoryBase;
|
2021-03-23 03:58:52 +00:00
|
|
|
|
|
|
|
for (u32 i = 0; i < State->Assemblies.Count; i++)
|
|
|
|
{
|
|
|
|
assembly Assembly = State->Assemblies.Values[i];
|
|
|
|
led_buffer LedBuffer = State->LedSystem.Buffers[Assembly.LedBufferIndex];
|
|
|
|
AssemblyDebug_OverrideWithColor(Assembly, LedBuffer, pixel{0, 0, 0});
|
|
|
|
}
|
|
|
|
BuildAssemblyData(State, Context, OutputData);
|
|
|
|
|
2021-02-20 21:14:54 +00:00
|
|
|
US_CustomCleanup(&State->UserSpaceDesc, State, Context);
|
2020-10-01 22:41:32 +00:00
|
|
|
SACN_Cleanup(&State->SACN, Context);
|
2020-01-02 02:41:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define FOLDHAUS_APP_CPP
|
|
|
|
#endif // FOLDHAUS_APP_CPP
|