Lumenarium/src/app/foldhaus_app.cpp

192 lines
7.4 KiB
C++
Raw Normal View History

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-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;
*State = {};
2021-03-31 05:04:05 +00:00
State->Permanent = CreateMemoryArena(Context->ThreadContext.Allocator, "Permanent");
State->Transient = Context->ThreadContext.Transient;
State->Assemblies = AssemblyArray_Create(8, &State->Permanent);
2019-07-19 20:56:21 +00:00
State->GlobalLog = PushStruct(&State->Permanent, event_log);
State->CommandQueue = CommandQueue_Create(&State->Permanent, 32);
2019-10-30 14:28:02 +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-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);
State->AssemblyDebugState.Brightness = 255;
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-31 05:04:05 +00:00
ReloadStaticData(*Context, GlobalDebugServices, true);
US_CustomInit(&State->UserSpaceDesc, State, *Context);
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
}
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;
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
// 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.
ClearArena(State->Transient);
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
AnimationSystem_Update(&State->AnimationSystem, Context->DeltaTime);
if (AnimationSystem_NeedsRender(State->AnimationSystem))
{
Assert(State->UserSpaceDesc.UserData.Memory != 0);
AnimationSystem_RenderToLedBuffers(&State->AnimationSystem,
State->Assemblies,
&State->LedSystem,
State->Patterns,
State->Transient,
*Context,
State->UserSpaceDesc.UserData.Memory);
}
2019-07-19 20:56:21 +00:00
Assert(State->UserSpaceDesc.UserData.Memory != 0);
US_CustomUpdate(&State->UserSpaceDesc, State, Context);
Assert(State->UserSpaceDesc.UserData.Memory != 0);
AssemblyDebug_OverrideOutput(State->AssemblyDebugState,
State->Assemblies,
State->LedSystem);
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);
Assert(State->UserSpaceDesc.UserData.Memory != 0);
BuildAssemblyData(State, *Context, OutputData);
2019-07-19 20:56:21 +00:00
}
CLEANUP_APPLICATION(CleanupApplication)
{
app_state* State = (app_state*)Context.MemoryBase;
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);
US_CustomCleanup(&State->UserSpaceDesc, State, Context);
SACN_Cleanup(&State->SACN, Context);
2020-01-02 02:41:43 +00:00
}
#define FOLDHAUS_APP_CPP
#endif // FOLDHAUS_APP_CPP