2019-07-19 20:56:21 +00:00
|
|
|
#include "foldhaus_platform.h"
|
|
|
|
#include "foldhaus_app.h"
|
|
|
|
|
|
|
|
internal v4
|
|
|
|
MouseToWorldRay(r32 MouseX, r32 MouseY, camera* Camera, r32 WindowWidth, r32 WindowHeight)
|
|
|
|
{
|
|
|
|
DEBUG_TRACK_SCOPE(MouseToWorldRay);
|
|
|
|
r32 X = ((2.0f * MouseX) / WindowWidth) - 1;
|
|
|
|
r32 Y = ((2.0f * MouseY) / WindowHeight) - 1;
|
|
|
|
|
|
|
|
v4 ScreenPos = v4{X, Y, -1, 1};
|
|
|
|
|
|
|
|
m44 InverseProjection = {};
|
|
|
|
Inverse(GetCameraPerspectiveProjectionMatrix(*Camera), &InverseProjection);
|
|
|
|
|
|
|
|
m44 InverseModelView = {};
|
|
|
|
Inverse(GetCameraModelViewMatrix(*Camera), &InverseModelView);
|
|
|
|
InverseModelView = Transpose(InverseModelView);
|
|
|
|
|
|
|
|
v4 ClipSpacePos = InverseProjection * ScreenPos;
|
|
|
|
v4 WorldPosition = InverseModelView * ClipSpacePos;
|
|
|
|
return WorldPosition;
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
PushLEDBufferOnList (led_buffer* List, led_buffer* Entry)
|
|
|
|
{
|
|
|
|
if (List->Next)
|
|
|
|
{
|
|
|
|
PushLEDBufferOnList(List->Next, Entry);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
List->Next = Entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
internal led_buffer*
|
|
|
|
RemoveLEDBufferFromList (led_buffer* List, led_buffer* Entry)
|
|
|
|
{
|
|
|
|
led_buffer* ListHead = 0;
|
|
|
|
if (List != Entry && List->Next)
|
|
|
|
{
|
|
|
|
ListHead = RemoveLEDBufferFromList(List->Next, Entry);
|
|
|
|
}
|
|
|
|
else if (List == Entry)
|
|
|
|
{
|
|
|
|
ListHead = Entry->Next;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// NOTE(Peter): Trying to remove an entry from a list that doesn't contain it
|
|
|
|
InvalidCodePath;
|
|
|
|
}
|
|
|
|
return ListHead;
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
ConstructAssemblyFromDefinition (assembly_definition Definition,
|
|
|
|
string AssemblyName,
|
|
|
|
v3 RootPosition,
|
|
|
|
r32 Scale,
|
|
|
|
context Context,
|
|
|
|
app_state* State)
|
|
|
|
{
|
|
|
|
Assert(State->AssembliesUsed < ASSEMBLY_LIST_LENGTH);
|
|
|
|
|
|
|
|
assembly* Assembly = State->AssemblyList + State->AssembliesUsed++;
|
|
|
|
|
|
|
|
// 1. Find # of LEDs, # of Universes
|
|
|
|
s32 UniversesUsedByLEDs[2048]; // TODO(Peter): find the max universe number and size these accordingly
|
|
|
|
s32 ChannelsInUniverse[2048];
|
|
|
|
GSZeroMemory(UniversesUsedByLEDs, sizeof(s32) * 2048);
|
|
|
|
GSZeroMemory(ChannelsInUniverse, sizeof(s32) * 2048);
|
|
|
|
s32 UniverseCount = 0;
|
|
|
|
s32 LEDCount = 0;
|
|
|
|
|
|
|
|
for (s32 StripIdx = 0; StripIdx < Definition.LEDStripCount; StripIdx++)
|
|
|
|
{
|
|
|
|
led_strip_definition StripDef = Definition.LEDStrips[StripIdx];
|
|
|
|
|
|
|
|
s32 ChannelsPerStrip = StripDef.LEDsPerStrip * 3;
|
|
|
|
s32 UniversesPerStrip = IntegerDivideRoundUp(ChannelsPerStrip, 512);
|
|
|
|
s32 ChannelsAllocated = 0;
|
|
|
|
for (s32 UniverseIdx = 0; UniverseIdx < UniversesPerStrip; UniverseIdx++)
|
|
|
|
{
|
|
|
|
s32 UniverseID = StripDef.StartUniverse + UniverseIdx;
|
|
|
|
s32 UniverseIndex = -1;
|
|
|
|
|
|
|
|
for (s32 RegisteredUniverse = 0; RegisteredUniverse < UniverseCount; RegisteredUniverse++)
|
|
|
|
{
|
|
|
|
if (UniversesUsedByLEDs[RegisteredUniverse] == UniverseID)
|
|
|
|
{
|
|
|
|
UniverseIndex = RegisteredUniverse;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (UniverseIndex < 0)
|
|
|
|
{
|
|
|
|
UniverseIndex = UniverseCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
s32 ChannelsRequested = GSMin(STREAM_BODY_SIZE, ChannelsPerStrip - ChannelsAllocated);
|
|
|
|
ChannelsAllocated += ChannelsRequested;
|
|
|
|
ChannelsInUniverse[UniverseIndex] += ChannelsRequested;
|
|
|
|
Assert(ChannelsInUniverse[UniverseIndex] <= 512);
|
|
|
|
|
|
|
|
UniversesUsedByLEDs[UniverseIndex++] = UniverseID;
|
|
|
|
}
|
|
|
|
|
|
|
|
LEDCount += StripDef.LEDsPerStrip;
|
|
|
|
}
|
|
|
|
|
|
|
|
sacn_add_universes_result AddedUniverses = SACNAddUniverses(UniversesUsedByLEDs, UniverseCount, &State->SACN, Context);
|
|
|
|
|
|
|
|
Assembly->MemorySize = CalculateMemorySizeForAssembly(LEDCount, AssemblyName.Length);
|
|
|
|
memory_arena TemporaryAssemblyArena = AllocateNonGrowableArenaWithSpace(Context.PlatformAlloc, Assembly->MemorySize);
|
|
|
|
Assembly->MemoryBase = TemporaryAssemblyArena.CurrentRegion->Base;
|
|
|
|
|
|
|
|
Assembly->Universes = AddedUniverses.NewUniverseBuffer;
|
|
|
|
Assembly->SendBuffer = AddedUniverses.NewSendBuffer;
|
|
|
|
|
|
|
|
Assembly->Name = MakeString(PushArray(&TemporaryAssemblyArena, char, AssemblyName.Length), AssemblyName.Length);
|
|
|
|
CopyStringTo(AssemblyName, &Assembly->Name);
|
|
|
|
|
|
|
|
led_buffer* LEDBuffer = PushStruct(&TemporaryAssemblyArena, led_buffer);
|
|
|
|
LEDBuffer->Next = 0;
|
|
|
|
LEDBuffer->Count = 0;
|
|
|
|
LEDBuffer->Max = LEDCount;
|
|
|
|
LEDBuffer->LEDs = PushArray(&TemporaryAssemblyArena, led, LEDCount);
|
|
|
|
LEDBuffer->Colors = PushArray(&TemporaryAssemblyArena, sacn_pixel, LEDCount);
|
|
|
|
|
|
|
|
Assembly->LEDBuffer = LEDBuffer;
|
|
|
|
|
|
|
|
if (State->LEDBufferList)
|
|
|
|
{
|
|
|
|
PushLEDBufferOnList(State->LEDBufferList, LEDBuffer);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
State->LEDBufferList = LEDBuffer;
|
|
|
|
}
|
|
|
|
State->TotalLEDsCount += LEDCount;
|
|
|
|
|
|
|
|
// Add LEDs
|
|
|
|
for (s32 StripIdx = 0; StripIdx < Definition.LEDStripCount; StripIdx++)
|
|
|
|
{
|
|
|
|
led_strip_definition StripDef = Definition.LEDStrips[StripIdx];
|
|
|
|
|
|
|
|
v3 WS_StripStart = {};
|
|
|
|
v3 WS_StripEnd = {};
|
|
|
|
s32 LEDsInStripCount = 0;
|
|
|
|
|
|
|
|
switch(StripDef.InterpolationType)
|
|
|
|
{
|
|
|
|
case StripInterpolate_Points:
|
|
|
|
{
|
|
|
|
WS_StripStart= StripDef.InterpolatePositionStart * Scale;
|
|
|
|
WS_StripEnd= StripDef.InterpolatePositionEnd * Scale;
|
|
|
|
LEDsInStripCount = StripDef.LEDsPerStrip;
|
|
|
|
|
|
|
|
}break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
InvalidCodePath;
|
|
|
|
}break;
|
|
|
|
}
|
|
|
|
|
|
|
|
sacn_universe* CurrentUniverse = SACNGetUniverse(StripDef.StartUniverse, &State->SACN);
|
|
|
|
s32 ChannelsUsed = 0;
|
|
|
|
CurrentUniverse->BeginPixelCopyFromOffset = LEDBuffer->Count * sizeof(sacn_pixel);
|
|
|
|
|
|
|
|
r32 Percent = 0;
|
|
|
|
r32 PercentStep = 1 / (r32)LEDsInStripCount;
|
|
|
|
for (s32 Step = 0; Step < LEDsInStripCount; Step++)
|
|
|
|
{
|
|
|
|
v3 LEDPosition = Lerp(WS_StripStart, WS_StripEnd, Percent);
|
|
|
|
s32 LEDIndex = LEDBuffer->Count++;
|
|
|
|
Assert(LEDIndex < LEDCount);
|
|
|
|
|
|
|
|
led* LED = LEDBuffer->LEDs + LEDIndex;
|
|
|
|
sacn_pixel* LEDColor = LEDBuffer->Colors + LEDIndex;
|
|
|
|
|
|
|
|
LED->Position = LEDPosition;
|
|
|
|
LED->PositionMatrix = GetPositionM44(V4(LED->Position, 1));
|
|
|
|
LED->Index = LEDIndex;
|
|
|
|
|
|
|
|
Percent += PercentStep;
|
|
|
|
|
|
|
|
ChannelsUsed += 3;
|
|
|
|
if (ChannelsUsed > STREAM_BODY_SIZE)
|
|
|
|
{
|
|
|
|
ChannelsUsed -= STREAM_BODY_SIZE;
|
|
|
|
CurrentUniverse = SACNGetUniverse(CurrentUniverse->Universe + 1, &State->SACN);
|
|
|
|
CurrentUniverse->BeginPixelCopyFromOffset = (LEDBuffer->Count + sizeof(sacn_pixel)) - ChannelsUsed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct draw_leds_job_data
|
|
|
|
{
|
|
|
|
led* LEDs;
|
|
|
|
sacn_pixel* Colors;
|
|
|
|
s32 StartIndex;
|
|
|
|
s32 OnePastLastIndex;
|
|
|
|
|
|
|
|
render_quad_batch_constructor* Batch;
|
|
|
|
|
|
|
|
m44 FaceCameraMatrix;
|
|
|
|
m44 ModelViewMatrix;
|
|
|
|
r32 LEDHalfWidth;
|
|
|
|
};
|
|
|
|
|
|
|
|
internal void
|
|
|
|
DrawLEDsInBufferRangeJob (s32 ThreadID, void* JobData)
|
|
|
|
{
|
|
|
|
DEBUG_TRACK_FUNCTION;
|
|
|
|
|
|
|
|
draw_leds_job_data* Data = (draw_leds_job_data*)JobData;
|
|
|
|
|
|
|
|
s32 DrawCommandsCount = Data->OnePastLastIndex - Data->StartIndex;
|
|
|
|
|
|
|
|
r32 HalfWidth = Data->LEDHalfWidth;
|
|
|
|
|
|
|
|
v4 P0_In = v4{-HalfWidth, -HalfWidth, 0, 1};
|
|
|
|
v4 P1_In = v4{HalfWidth, -HalfWidth, 0, 1};
|
|
|
|
v4 P2_In = v4{HalfWidth, HalfWidth, 0, 1};
|
|
|
|
v4 P3_In = v4{-HalfWidth, HalfWidth, 0, 1};
|
|
|
|
|
|
|
|
v2 UV0 = v2{0, 0};
|
|
|
|
v2 UV1 = v2{1, 0};
|
|
|
|
v2 UV2 = v2{1, 1};
|
|
|
|
v2 UV3 = v2{0, 1};
|
|
|
|
|
|
|
|
led* LED = Data->LEDs + Data->StartIndex;
|
|
|
|
for (s32 LEDIdx = 0;
|
|
|
|
LEDIdx < DrawCommandsCount;
|
|
|
|
LEDIdx++)
|
|
|
|
{
|
|
|
|
sacn_pixel SACNColor = Data->Colors[LED->Index];
|
|
|
|
v4 Color = v4{SACNColor.R / 255.f, SACNColor.G / 255.f, SACNColor.B / 255.f, 1.0f};
|
|
|
|
|
|
|
|
m44 ModelMatrix = Data->FaceCameraMatrix * LED->PositionMatrix;// * Data->FaceCameraMatrix;
|
|
|
|
|
|
|
|
v4 P0 = ModelMatrix * P0_In;
|
|
|
|
v4 P1 = ModelMatrix * P1_In;
|
|
|
|
v4 P2 = ModelMatrix * P2_In;
|
|
|
|
v4 P3 = ModelMatrix * P3_In;
|
|
|
|
|
2019-07-22 06:30:53 +00:00
|
|
|
PushTri3DOnBatch(Data->Batch, P0, P1, P2, UV0, UV1, UV2, Color, Color, Color);
|
|
|
|
PushTri3DOnBatch(Data->Batch, P0, P2, P3, UV0, UV2, UV3, Color, Color, Color);
|
2019-07-19 20:56:21 +00:00
|
|
|
|
|
|
|
LED++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct send_sacn_job_data
|
|
|
|
{
|
|
|
|
streaming_acn SACN;
|
|
|
|
sacn_universe_buffer UniverseList;
|
|
|
|
s32 StartUniverse;
|
|
|
|
s32 OnePastLastUniverse;
|
|
|
|
platform_send_to* PlatformSendTo;
|
|
|
|
};
|
|
|
|
|
|
|
|
internal void
|
|
|
|
SendSACNBufferData (s32 ThreadID, void* JobData)
|
|
|
|
{
|
|
|
|
DEBUG_TRACK_FUNCTION;
|
|
|
|
|
|
|
|
send_sacn_job_data* Data = (send_sacn_job_data*)JobData;
|
|
|
|
|
|
|
|
sacn_universe* SendUniverse = Data->UniverseList.Universes + Data->StartUniverse;
|
|
|
|
for (s32 UniverseIdx = Data->StartUniverse; UniverseIdx < Data->OnePastLastUniverse; UniverseIdx++)
|
|
|
|
{
|
|
|
|
SACNSendDataToUniverse(&Data->SACN, SendUniverse, Data->PlatformSendTo);
|
|
|
|
SendUniverse++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
LoadAssembly (app_state* State, context Context, char* Path)
|
|
|
|
{
|
2019-08-03 22:08:19 +00:00
|
|
|
assembly_definition AssemblyDefinition = {};
|
|
|
|
|
|
|
|
arena_snapshot TempMemorySnapshot = TakeSnapshotOfArena(*State->Transient);
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
platform_memory_result TestAssemblyFile = Context.PlatformReadEntireFile(Path);
|
2019-08-03 22:08:19 +00:00
|
|
|
Assert(TestAssemblyFile.Size > 0);
|
2019-07-19 20:56:21 +00:00
|
|
|
{
|
2019-08-03 22:08:19 +00:00
|
|
|
tokenizer AssemblyFileTokenizer = {};
|
|
|
|
AssemblyFileTokenizer.At = (char*)TestAssemblyFile.Base;
|
|
|
|
AssemblyFileTokenizer.Memory = (char*)TestAssemblyFile.Base;
|
|
|
|
AssemblyFileTokenizer.MemoryLength = TestAssemblyFile.Size;
|
|
|
|
|
|
|
|
ParseAssemblyFileHeader(&AssemblyDefinition, &AssemblyFileTokenizer);
|
|
|
|
|
|
|
|
AssemblyDefinition.LEDStrips = PushArray(State->Transient, led_strip_definition, AssemblyDefinition.LEDStripSize);
|
|
|
|
|
|
|
|
ParseAssemblyFileBody(&AssemblyDefinition, &AssemblyFileTokenizer);
|
2019-07-19 20:56:21 +00:00
|
|
|
}
|
|
|
|
Context.PlatformFree(TestAssemblyFile.Base, TestAssemblyFile.Size);
|
|
|
|
|
|
|
|
string PathString = MakeStringLiteral(Path);
|
2019-08-03 23:40:20 +00:00
|
|
|
s32 IndexOfLastSlash = FastLastIndexOfCharInCharArray(PathString.Memory, PathString.Length, '\\');
|
2019-07-19 20:56:21 +00:00
|
|
|
string FileName = Substring(PathString, IndexOfLastSlash + 1);
|
|
|
|
|
|
|
|
r32 Scale = 100;
|
|
|
|
ConstructAssemblyFromDefinition(AssemblyDefinition, FileName, v3{0, 0, 0}, Scale, Context, State);
|
2019-08-03 22:08:19 +00:00
|
|
|
|
|
|
|
ClearArenaToSnapshot(State->Transient, TempMemorySnapshot);
|
2019-07-19 20:56:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
UnloadAssembly (s32 AssemblyIndex, app_state* State, context Context)
|
|
|
|
{
|
|
|
|
assembly Assembly = State->AssemblyList[AssemblyIndex];
|
|
|
|
SACNRemoveUniverseAndSendBuffer(&State->SACN, Assembly.Universes, Assembly.SendBuffer);
|
|
|
|
|
|
|
|
State->LEDBufferList = RemoveLEDBufferFromList(State->LEDBufferList, Assembly.LEDBuffer);
|
|
|
|
|
|
|
|
s32 LEDsInAssembly = Assembly.LEDBuffer->Count;
|
|
|
|
s32 MemoryRequiredForAssembly = CalculateMemorySizeForAssembly(LEDsInAssembly, Assembly.Name.Length);
|
|
|
|
Context.PlatformFree((u8*)Assembly.LEDBuffer, MemoryRequiredForAssembly);
|
|
|
|
|
|
|
|
State->TotalLEDsCount -= LEDsInAssembly;
|
|
|
|
|
|
|
|
if (AssemblyIndex != (State->AssembliesUsed - 1))
|
|
|
|
{
|
|
|
|
State->AssemblyList[AssemblyIndex] = State->AssemblyList[State->AssembliesUsed - 1];
|
|
|
|
}
|
|
|
|
State->AssembliesUsed -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
RELOAD_STATIC_DATA(ReloadStaticData)
|
|
|
|
{
|
|
|
|
app_state* State = (app_state*)Context.MemoryBase;
|
|
|
|
|
|
|
|
GlobalDebugServices = DebugServices;
|
|
|
|
|
2019-11-02 17:29:51 +00:00
|
|
|
if (State->DefaultInputCommandRegistry.Size > 0)
|
2019-07-19 20:56:21 +00:00
|
|
|
{
|
2019-11-02 17:29:51 +00:00
|
|
|
RegisterKeyPressCommand(&State->DefaultInputCommandRegistry, KeyCode_MouseLeftButton, Command_Began, KeyCode_Invalid,
|
|
|
|
Begin3DViewMouseRotate);
|
|
|
|
RegisterKeyPressCommand(&State->DefaultInputCommandRegistry, KeyCode_U, Command_Began, KeyCode_Invalid, OpenUniverseView);
|
|
|
|
RegisterKeyPressCommand(&State->DefaultInputCommandRegistry, KeyCode_A, Command_Began, KeyCode_Invalid, OpenNodeLister);
|
|
|
|
RegisterKeyPressCommand(&State->DefaultInputCommandRegistry, KeyCode_Tab, Command_Began, KeyCode_Invalid, OpenNodeView);
|
2019-07-19 20:56:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
INITIALIZE_APPLICATION(InitializeApplication)
|
|
|
|
{
|
|
|
|
app_state* State = (app_state*)Context.MemoryBase;
|
|
|
|
u8* MemoryCursor = Context.MemoryBase + sizeof(app_state);
|
|
|
|
s32 PermanentStorageSize = Megabytes(32);
|
|
|
|
s32 TransientStorageSize = Context.MemorySize - PermanentStorageSize;
|
|
|
|
State->Permanent = BootstrapArenaIntoMemory(MemoryCursor, PermanentStorageSize);
|
|
|
|
State->Transient = BootstrapArenaIntoMemory(MemoryCursor + PermanentStorageSize, TransientStorageSize);
|
|
|
|
|
|
|
|
InitMemoryArena(&State->SACNMemory, 0, 0, Context.PlatformAlloc);
|
|
|
|
|
2019-11-02 17:29:51 +00:00
|
|
|
InitializeInputCommandRegistry(&State->DefaultInputCommandRegistry, 32, State->Permanent);
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2019-10-30 14:28:02 +00:00
|
|
|
s32 CommandQueueSize = 32;
|
|
|
|
command_queue_entry* CommandQueueMemory = PushArray(State->Permanent,
|
|
|
|
command_queue_entry,
|
|
|
|
CommandQueueSize);
|
|
|
|
State->CommandQueue = InitializeCommandQueue(CommandQueueMemory, CommandQueueSize);
|
|
|
|
|
2019-09-02 06:03:38 +00:00
|
|
|
State->ActiveTextEntry.Buffer = MakeString(PushArray(State->Permanent, char, 256), 0, 256);
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
// TODO(Peter): put in InitializeInterface?
|
|
|
|
r32 FontSize = 14;
|
|
|
|
{
|
|
|
|
platform_memory_result FontFile = Context.PlatformReadEntireFile("Anonymous Pro.ttf");
|
|
|
|
if (FontFile.Size)
|
|
|
|
{
|
2019-07-28 21:31:05 +00:00
|
|
|
bitmap_font* Font = PushStruct(State->Permanent, bitmap_font);
|
|
|
|
|
|
|
|
Font->BitmapWidth = 512;
|
|
|
|
Font->BitmapHeight = 512;
|
|
|
|
Font->BitmapBytesPerPixel = 4;
|
|
|
|
Font->BitmapMemory = PushArray(State->Permanent, u8, Font->BitmapWidth * Font->BitmapHeight * Font->BitmapBytesPerPixel);
|
|
|
|
Font->BitmapStride = Font->BitmapWidth * Font->BitmapBytesPerPixel;
|
|
|
|
GSMemSet(Font->BitmapMemory, 0, Font->BitmapStride * Font->BitmapHeight);
|
|
|
|
|
2019-10-30 16:10:15 +00:00
|
|
|
platform_font_info FontInfo = Context.PlatformGetFontInfo("Anonymous Pro", FontSize, FontWeight_Normal, false, false, false);
|
2019-07-28 21:31:05 +00:00
|
|
|
Font->PixelHeight = FontInfo.PixelHeight;
|
|
|
|
Font->Ascent = FontInfo.Ascent;
|
|
|
|
Font->Descent = FontInfo.Descent;
|
|
|
|
Font->Leading = FontInfo.Leading;
|
|
|
|
Font->MaxCharWidth = FontInfo.MaxCharWidth;
|
|
|
|
|
|
|
|
Font->CodepointDictionarySize = (FontInfo.CodepointOnePastLast - FontInfo.CodepointStart);
|
|
|
|
Font->CodepointDictionaryCount = 0;
|
|
|
|
Font->CodepointKeys = PushArray(State->Permanent, char, Font->CodepointDictionarySize);
|
|
|
|
Font->CodepointValues = PushArray(State->Permanent, codepoint_bitmap, Font->CodepointDictionarySize);
|
|
|
|
|
2019-07-29 00:24:10 +00:00
|
|
|
for (s32 Codepoint = FontInfo.CodepointStart;
|
|
|
|
Codepoint < FontInfo.CodepointOnePastLast;
|
|
|
|
Codepoint++)
|
2019-07-19 20:56:21 +00:00
|
|
|
{
|
2019-07-22 06:30:53 +00:00
|
|
|
|
2019-07-28 21:31:05 +00:00
|
|
|
u32 CodepointX, CodepointY;
|
|
|
|
GetNextCodepointOffset(Font, &CodepointX, &CodepointY);
|
2019-07-22 06:30:53 +00:00
|
|
|
|
2019-07-28 21:31:05 +00:00
|
|
|
u32 CodepointW, CodepointH;
|
|
|
|
Context.PlatformDrawFontCodepoint(
|
|
|
|
Font->BitmapMemory,
|
|
|
|
Font->BitmapWidth,
|
|
|
|
Font->BitmapHeight,
|
|
|
|
CodepointX, CodepointY,
|
|
|
|
Codepoint, FontInfo,
|
|
|
|
&CodepointW, &CodepointH);
|
2019-07-22 06:30:53 +00:00
|
|
|
|
2019-07-28 21:31:05 +00:00
|
|
|
AddCodepointToFont(Font, Codepoint, 0, 0, CodepointW, CodepointH, CodepointX, CodepointY);
|
2019-07-19 20:56:21 +00:00
|
|
|
}
|
2019-07-28 21:31:05 +00:00
|
|
|
|
|
|
|
State->Interface.Font = Font;
|
|
|
|
State->Font = Font;
|
|
|
|
|
|
|
|
Font->BitmapTextureHandle = Context.PlatformGetGPUTextureHandle(Font->BitmapMemory,
|
|
|
|
Font->BitmapWidth, Font->BitmapHeight);
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
} else {}
|
|
|
|
}
|
|
|
|
|
|
|
|
State->Interface.FontSize = FontSize;
|
|
|
|
State->Interface.PanelBGColors[0] = v4{.3f, .3f, .3f, 1};
|
|
|
|
State->Interface.PanelBGColors[1] = v4{.4f, .4f, .4f, 1};
|
|
|
|
State->Interface.PanelBGColors[2] = v4{.5f, .5f, .5f, 1};
|
|
|
|
State->Interface.PanelBGColors[3] = v4{.6f, .6f, .6f, 1};
|
|
|
|
State->Interface.ButtonColor_Inactive = BlackV4;
|
|
|
|
State->Interface.ButtonColor_Active = v4{.1f, .1f, .1f, 1};
|
|
|
|
State->Interface.ButtonColor_Selected = v4{.1f, .1f, .3f, 1};
|
|
|
|
State->Interface.TextColor = WhiteV4;
|
|
|
|
State->Interface.Margin = v2{5, 5};
|
|
|
|
|
|
|
|
State->SACN = InitializeSACN(Context.PlatformAlloc, Context);
|
|
|
|
|
|
|
|
State->Camera.FieldOfView = DegreesToRadians(45.0f);
|
|
|
|
State->Camera.AspectRatio = (r32)Context.WindowWidth / (r32)Context.WindowHeight;
|
|
|
|
State->Camera.Near = 1.0f;
|
|
|
|
State->Camera.Far = 100.0f;
|
|
|
|
State->Camera.Position = v3{0, 0, -250};
|
|
|
|
State->Camera.LookAt = v3{0, 0, 0};
|
|
|
|
|
|
|
|
#if 1
|
|
|
|
char Path[] = "radialumia.fold";
|
|
|
|
LoadAssembly(State, Context, Path);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
State->PixelsToWorldScale = .01f;
|
|
|
|
|
|
|
|
GlobalDebugServices->Interface.RenderSculpture = true;
|
|
|
|
|
|
|
|
State->NodeList = AllocateNodeList(State->Permanent, Kilobytes(64));
|
2019-08-03 22:08:19 +00:00
|
|
|
State->OutputNode = PushOutputNodeOnList(State->NodeList, v2{500, 250}, State->Permanent);
|
2019-11-02 17:29:51 +00:00
|
|
|
{
|
|
|
|
State->NodeRenderSettings.PortColors[MemberType_r32] = RedV4;
|
|
|
|
State->NodeRenderSettings.PortColors[MemberType_s32] = GreenV4;
|
|
|
|
State->NodeRenderSettings.PortColors[MemberType_v4] = BlueV4;
|
|
|
|
State->NodeRenderSettings.Font = State->Font;
|
|
|
|
}
|
2019-07-19 20:56:21 +00:00
|
|
|
ReloadStaticData(Context, GlobalDebugServices);
|
2019-11-01 12:46:40 +00:00
|
|
|
|
|
|
|
{ // MODES PLAYGROUND
|
|
|
|
State->Modes.ActiveModesCount = 0;
|
|
|
|
|
|
|
|
s32 ModesMemorySize = Kilobytes(32);
|
|
|
|
u8* ModesMemory = PushSize(State->Permanent, ModesMemorySize);
|
|
|
|
InitMemoryArena(&State->Modes.Arena, ModesMemory, ModesMemorySize, 0);
|
|
|
|
}
|
2019-07-19 20:56:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UPDATE_AND_RENDER(UpdateAndRender)
|
|
|
|
{
|
|
|
|
app_state* State = (app_state*)Context.MemoryBase;
|
|
|
|
|
2019-08-03 22:08:19 +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
|
|
|
|
// incorrect to clear the arena, and then access the memory later.
|
|
|
|
ClearArena(State->Transient);
|
|
|
|
|
2019-08-18 12:56:18 +00:00
|
|
|
{
|
2019-11-02 17:29:51 +00:00
|
|
|
input_command_registry ActiveCommands = State->DefaultInputCommandRegistry;
|
2019-11-01 12:46:40 +00:00
|
|
|
if (State->Modes.ActiveModesCount > 0)
|
|
|
|
{
|
2019-11-02 17:29:51 +00:00
|
|
|
ActiveCommands = State->Modes.ActiveModes[State->Modes.ActiveModesCount - 1].Commands;
|
2019-11-01 12:46:40 +00:00
|
|
|
}
|
|
|
|
|
2019-10-30 14:28:02 +00:00
|
|
|
for (s32 EventIdx = 0; EventIdx < InputQueue.QueueUsed; EventIdx++)
|
|
|
|
{
|
|
|
|
input_entry Event = InputQueue.Entries[EventIdx];
|
2019-10-30 16:10:15 +00:00
|
|
|
|
2019-11-02 14:02:11 +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))
|
2019-10-30 14:28:02 +00:00
|
|
|
{
|
2019-11-02 17:29:51 +00:00
|
|
|
FindAndPushExistingCommand(ActiveCommands, Event, Command_Began, &State->CommandQueue);
|
2019-11-02 14:02:11 +00:00
|
|
|
}
|
|
|
|
else if (KeyTransitionedUp(Event))
|
|
|
|
{
|
2019-11-02 17:29:51 +00:00
|
|
|
FindAndPushExistingCommand(ActiveCommands, Event, Command_Ended, &State->CommandQueue);
|
2019-11-02 14:02:11 +00:00
|
|
|
}
|
|
|
|
else if (KeyHeldDown(Event))
|
|
|
|
{
|
2019-11-02 17:29:51 +00:00
|
|
|
FindAndPushExistingCommand(ActiveCommands, Event, Command_Held, &State->CommandQueue);
|
2019-10-30 14:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Event.Key == KeyCode_MouseLeftButton)
|
|
|
|
{
|
2019-11-01 14:38:44 +00:00
|
|
|
Mouse.LeftButtonTransitionedDown = KeyTransitionedDown(Event);
|
|
|
|
Mouse.LeftButtonTransitionedUp = KeyTransitionedUp(Event);
|
2019-10-30 14:28:02 +00:00
|
|
|
}
|
|
|
|
else if (Event.Key == KeyCode_MouseMiddleButton)
|
|
|
|
{
|
2019-11-01 14:38:44 +00:00
|
|
|
Mouse.MiddleButtonTransitionedDown = KeyTransitionedDown(Event);
|
|
|
|
Mouse.MiddleButtonTransitionedUp = KeyTransitionedUp(Event);
|
2019-10-30 14:28:02 +00:00
|
|
|
}
|
|
|
|
else if (Event.Key == KeyCode_MouseRightButton)
|
|
|
|
{
|
2019-11-01 14:38:44 +00:00
|
|
|
Mouse.RightButtonTransitionedDown = KeyTransitionedDown(Event);
|
|
|
|
Mouse.RightButtonTransitionedUp = KeyTransitionedUp(Event);
|
2019-10-30 14:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute all commands in CommandQueue
|
2019-11-01 16:09:05 +00:00
|
|
|
for (s32 CommandIdx = State->CommandQueue.Used - 1; CommandIdx >= 0; CommandIdx--)
|
2019-10-30 14:28:02 +00:00
|
|
|
{
|
2019-11-01 16:09:05 +00:00
|
|
|
command_queue_entry* Entry = &State->CommandQueue.Commands[CommandIdx];
|
|
|
|
Entry->Command.Proc(State, Entry->Event, Mouse);
|
2019-10-30 14:28:02 +00:00
|
|
|
}
|
2019-11-01 16:09:05 +00:00
|
|
|
|
2019-11-02 17:29:51 +00:00
|
|
|
ClearCommandQueue(&State->CommandQueue);
|
2019-08-18 12:56:18 +00:00
|
|
|
}
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2019-08-18 12:56:18 +00:00
|
|
|
if (State->LEDBufferList)
|
|
|
|
{
|
|
|
|
UpdateOutputNodeCalculations(State->OutputNode, State->NodeList,
|
|
|
|
State->Permanent, State->Transient,
|
|
|
|
State->LEDBufferList->LEDs,
|
|
|
|
State->LEDBufferList->Colors,
|
|
|
|
State->LEDBufferList->Count,
|
|
|
|
Context.DeltaTime);
|
|
|
|
}
|
2019-08-03 22:08:19 +00:00
|
|
|
ClearTransientNodeColorBuffers(State->NodeList);
|
2019-07-19 20:56:21 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
// NOTE(Peter): We know that these two lists should be maintained together. Each element in the list is one sculpture's worth of
|
|
|
|
// information, and should always be evaluated in pairs.
|
|
|
|
sacn_universe_buffer* UniverseList = State->SACN.UniverseBuffer;
|
|
|
|
led_buffer* LEDBuffer = State->LEDBufferList;
|
|
|
|
while (UniverseList && LEDBuffer)
|
|
|
|
{
|
|
|
|
for (s32 U = 0; U < UniverseList->Used; U++)
|
|
|
|
{
|
|
|
|
sacn_universe* UniverseOne = UniverseList->Universes + U;
|
|
|
|
Assert(UniverseOne->BeginPixelCopyFromOffset >= 0);
|
|
|
|
|
|
|
|
u8* LEDColorBuffer = (u8*)LEDBuffer->Colors + UniverseOne->BeginPixelCopyFromOffset;
|
|
|
|
u8* SACNSendBuffer = UniverseOne->StartPositionInSendBuffer + STREAM_HEADER_SIZE;
|
|
|
|
|
|
|
|
GSMemCopy(LEDColorBuffer, SACNSendBuffer, STREAM_BODY_SIZE);
|
|
|
|
}
|
|
|
|
UniverseList = UniverseList->Next;
|
|
|
|
LEDBuffer = LEDBuffer->Next;
|
|
|
|
}
|
|
|
|
Assert(!LEDBuffer && !UniverseList);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG_IF(GlobalDebugServices->Interface.SendSACNData)
|
|
|
|
{
|
|
|
|
if (++State->SACN.SequenceIterator == 0) // Never use 0 after the first one
|
|
|
|
{
|
|
|
|
++State->SACN.SequenceIterator;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sacn_universe_buffer* UniverseList = State->SACN.UniverseBuffer;
|
|
|
|
while (UniverseList)
|
|
|
|
{
|
|
|
|
s32 JobCount = 2;
|
|
|
|
s32 UniversesPerJob = UniverseList->Used / JobCount;
|
|
|
|
send_sacn_job_data* SACNData = PushArray(State->Transient, send_sacn_job_data, JobCount);
|
|
|
|
for (s32 i = 0; i < JobCount; i++)
|
|
|
|
{
|
|
|
|
SACNData[i].SACN = State->SACN;
|
|
|
|
SACNData[i].UniverseList = *UniverseList;
|
|
|
|
SACNData[i].StartUniverse = i * UniversesPerJob;
|
|
|
|
SACNData[i].OnePastLastUniverse = (i * UniversesPerJob) + UniversesPerJob;
|
|
|
|
if (SACNData[i].OnePastLastUniverse > UniverseList->Used)
|
|
|
|
{
|
|
|
|
SACNData[i].OnePastLastUniverse = UniverseList->Used;
|
|
|
|
}
|
|
|
|
Context.GeneralWorkQueue->PushWorkOnQueue(
|
|
|
|
Context.GeneralWorkQueue,
|
|
|
|
SendSACNBufferData,
|
|
|
|
SACNData + i);
|
|
|
|
}
|
|
|
|
UniverseList = UniverseList->Next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
// Render Assembly
|
|
|
|
///////////////////////////////
|
|
|
|
if (Context.WindowIsVisible)
|
|
|
|
{
|
|
|
|
State->Camera.AspectRatio = (r32)Context.WindowWidth / (r32)Context.WindowHeight;
|
|
|
|
|
|
|
|
m44 ModelViewMatrix = GetCameraModelViewMatrix(State->Camera);
|
|
|
|
m44 ProjectionMatrix = GetCameraPerspectiveProjectionMatrix(State->Camera);
|
|
|
|
|
|
|
|
r32 LEDHalfWidth = .5f;
|
|
|
|
|
2019-07-22 06:30:53 +00:00
|
|
|
PushRenderPerspective(RenderBuffer, 0, 0, Context.WindowWidth, Context.WindowHeight, State->Camera);
|
2019-07-19 20:56:21 +00:00
|
|
|
PushRenderClearScreen(RenderBuffer);
|
|
|
|
|
|
|
|
DEBUG_IF(GlobalDebugServices->Interface.RenderSculpture) // DebugServices RenderSculpture Toggle
|
|
|
|
{
|
|
|
|
s32 JobsNeeded = IntegerDivideRoundUp(State->TotalLEDsCount, LED_BUFFER_SIZE);
|
|
|
|
|
|
|
|
draw_leds_job_data* JobDataBank = PushArray(State->Transient, draw_leds_job_data, JobsNeeded);
|
|
|
|
s32 JobDataBankUsed = 0;
|
|
|
|
|
|
|
|
// TODO(Peter): Pretty sure this isn't working right now
|
|
|
|
m44 FaceCameraMatrix = GetLookAtMatrix(v4{0, 0, 0, 1}, V4(State->Camera.Position, 1));
|
|
|
|
FaceCameraMatrix = FaceCameraMatrix;
|
|
|
|
|
|
|
|
render_quad_batch_constructor BatchConstructor = PushRenderQuad3DBatch(RenderBuffer, State->TotalLEDsCount);
|
|
|
|
|
|
|
|
led_buffer* LEDBuffer = State->LEDBufferList;
|
|
|
|
s32 LEDBufferLEDsAssignedToJobs = 0;
|
|
|
|
|
|
|
|
for (s32 Job = 0; Job < JobsNeeded; Job++)
|
|
|
|
{
|
|
|
|
draw_leds_job_data* JobData = JobDataBank + JobDataBankUsed++;
|
|
|
|
JobData->LEDs = LEDBuffer->LEDs;
|
|
|
|
JobData->Colors = LEDBuffer->Colors;
|
|
|
|
JobData->StartIndex = LEDBufferLEDsAssignedToJobs;
|
|
|
|
JobData->OnePastLastIndex = GSMin(JobData->StartIndex + LED_BUFFER_SIZE, LEDBuffer->Count);
|
|
|
|
|
|
|
|
LEDBufferLEDsAssignedToJobs += JobData->OnePastLastIndex - JobData->StartIndex;
|
|
|
|
|
|
|
|
// New
|
|
|
|
JobData->Batch = &BatchConstructor;
|
|
|
|
|
|
|
|
JobData->FaceCameraMatrix = FaceCameraMatrix;
|
|
|
|
JobData->ModelViewMatrix = ModelViewMatrix;
|
|
|
|
JobData->LEDHalfWidth = LEDHalfWidth;
|
|
|
|
|
|
|
|
Context.GeneralWorkQueue->PushWorkOnQueue(
|
|
|
|
Context.GeneralWorkQueue,
|
|
|
|
DrawLEDsInBufferRangeJob,
|
|
|
|
JobData);
|
|
|
|
|
|
|
|
Assert(LEDBufferLEDsAssignedToJobs <= LEDBuffer->Count); // We should never go OVER the number of leds in the buffer
|
|
|
|
if (LEDBufferLEDsAssignedToJobs == LEDBuffer->Count)
|
|
|
|
{
|
|
|
|
LEDBuffer = LEDBuffer->Next;
|
|
|
|
LEDBufferLEDsAssignedToJobs = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Context.GeneralWorkQueue->DoQueueWorkUntilDone(Context.GeneralWorkQueue, 0);
|
|
|
|
Context.GeneralWorkQueue->ResetWorkQueue(Context.GeneralWorkQueue);
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
// Interface
|
|
|
|
//////////////////////////////////////
|
|
|
|
|
|
|
|
DEBUG_TRACK_SCOPE(DrawInterface);
|
|
|
|
|
2019-07-22 06:30:53 +00:00
|
|
|
PushRenderOrthographic(RenderBuffer, 0, 0, Context.WindowWidth, Context.WindowHeight);
|
2019-07-19 20:56:21 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
// Menu Bar
|
|
|
|
//////////////////////////////////////
|
|
|
|
|
|
|
|
r32 TopBarHeight = 40;
|
|
|
|
{
|
|
|
|
panel_result TopBarPanel = EvaluatePanel(RenderBuffer,
|
|
|
|
v2{0, Context.WindowHeight - TopBarHeight},
|
|
|
|
v2{Context.WindowWidth, Context.WindowHeight},
|
2019-10-30 14:28:02 +00:00
|
|
|
0, State->Interface);
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2019-07-22 06:30:53 +00:00
|
|
|
v2 ButtonDim = v2{200, (r32)NewLineYOffset(*State->Interface.Font) + 10};
|
2019-07-19 20:56:21 +00:00
|
|
|
v2 ButtonPos = v2{State->Interface.Margin.x, Context.WindowHeight - (ButtonDim.y + 10)};
|
|
|
|
button_result LoadAssemblyBtn = EvaluateButton(RenderBuffer, ButtonPos, ButtonPos + ButtonDim,
|
|
|
|
MakeStringLiteral("Load Assembly"),
|
2019-11-01 14:38:44 +00:00
|
|
|
State->Interface, Mouse);
|
2019-07-19 20:56:21 +00:00
|
|
|
|
|
|
|
string InterfaceString = MakeString(PushArray(State->Transient, char, 256), 256);
|
|
|
|
for (int i = 0; i < State->AssembliesUsed; i++)
|
|
|
|
{
|
|
|
|
PrintF(&InterfaceString, "Unload %.*s", State->AssemblyList[i].Name.Length, State->AssemblyList[i].Name.Memory);
|
|
|
|
|
|
|
|
ButtonPos.x += ButtonDim.x + 10;
|
|
|
|
button_result UnloadAssemblyBtn = EvaluateButton(RenderBuffer, ButtonPos, ButtonPos + ButtonDim,
|
2019-11-01 14:38:44 +00:00
|
|
|
InterfaceString, State->Interface, Mouse);
|
2019-07-19 20:56:21 +00:00
|
|
|
|
|
|
|
if (UnloadAssemblyBtn.Pressed)
|
|
|
|
{
|
|
|
|
UnloadAssembly(i, State, Context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LoadAssemblyBtn.Pressed)
|
|
|
|
{
|
|
|
|
char FilePath[256];
|
2019-08-18 12:56:18 +00:00
|
|
|
b32 Success = Context.PlatformGetFilePath(FilePath, 256, "Foldhaus Files\0*.fold\0\0");
|
2019-07-19 20:56:21 +00:00
|
|
|
if (Success)
|
|
|
|
{
|
|
|
|
LoadAssembly(State, Context, FilePath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
// Figuring Out Nodes
|
|
|
|
//////////////////////////////////////
|
2019-09-02 06:03:38 +00:00
|
|
|
|
2019-11-01 12:46:40 +00:00
|
|
|
for (s32 m = 0; m < State->Modes.ActiveModesCount; m++)
|
|
|
|
{
|
|
|
|
operation_mode OperationMode = State->Modes.ActiveModes[m];
|
2019-11-01 13:46:06 +00:00
|
|
|
if (OperationMode.Render != 0)
|
|
|
|
{
|
2019-11-01 14:38:44 +00:00
|
|
|
OperationMode.Render(State, RenderBuffer, OperationMode, Mouse);
|
2019-11-01 13:46:06 +00:00
|
|
|
}
|
2019-11-01 12:46:40 +00:00
|
|
|
}
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
DrawDebugInterface(RenderBuffer, 25,
|
|
|
|
State->Interface, Context.WindowWidth, Context.WindowHeight - TopBarHeight,
|
2019-11-01 14:38:44 +00:00
|
|
|
Context.DeltaTime, State, State->Camera, Mouse, State->Transient);
|
2019-07-19 20:56:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EndDebugFrame(GlobalDebugServices);
|
|
|
|
}
|
|
|
|
|
|
|
|
CLEANUP_APPLICATION(CleanupApplication)
|
|
|
|
{
|
|
|
|
app_state* State = (app_state*)Context.MemoryBase;
|
|
|
|
SACNCleanup(&State->SACN, Context);
|
|
|
|
}
|