2020-01-02 02:41:43 +00:00
|
|
|
//
|
|
|
|
// File: foldhaus_assembly.h
|
|
|
|
// Author: Peter Slattery
|
|
|
|
// Creation Date: 2020-01-01
|
|
|
|
//
|
|
|
|
#ifndef FOLDHAUS_ASSEMBLY_H
|
|
|
|
|
2020-10-03 15:46:14 +00:00
|
|
|
enum network_protocol
|
|
|
|
{
|
|
|
|
NetworkProtocol_SACN,
|
|
|
|
NetworkProtocol_ArtNet,
|
|
|
|
NetworkProtocol_UART,
|
|
|
|
|
|
|
|
NetworkProtocol_Count,
|
|
|
|
};
|
|
|
|
|
2019-11-23 00:07:25 +00:00
|
|
|
union pixel
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
u8 R;
|
|
|
|
u8 G;
|
|
|
|
u8 B;
|
|
|
|
};
|
|
|
|
u8 Channels[3];
|
|
|
|
};
|
|
|
|
|
2020-06-15 22:36:50 +00:00
|
|
|
struct led_buffer
|
2019-11-23 07:33:48 +00:00
|
|
|
{
|
2020-06-15 22:36:50 +00:00
|
|
|
u32 LedCount;
|
|
|
|
pixel* Colors;
|
2020-06-20 01:53:23 +00:00
|
|
|
v4* Positions;
|
2019-11-23 07:33:48 +00:00
|
|
|
};
|
|
|
|
|
2020-06-15 22:36:50 +00:00
|
|
|
struct led_system
|
2020-03-08 21:44:28 +00:00
|
|
|
{
|
2020-07-18 19:00:14 +00:00
|
|
|
gs_allocator PlatformMemory;
|
2020-06-15 22:36:50 +00:00
|
|
|
|
|
|
|
u32 BuffersCountMax;
|
|
|
|
u32 BuffersCount;
|
|
|
|
led_buffer* Buffers;
|
|
|
|
|
|
|
|
u32 LedsCountTotal;
|
2020-03-08 21:44:28 +00:00
|
|
|
};
|
|
|
|
|
2020-06-10 03:33:51 +00:00
|
|
|
struct v2_tag
|
|
|
|
{
|
|
|
|
u64 NameHash;
|
|
|
|
u64 ValueHash;
|
|
|
|
};
|
|
|
|
|
2020-10-03 15:46:14 +00:00
|
|
|
struct strip_sacn_addr
|
|
|
|
{
|
|
|
|
s32 StartUniverse;
|
|
|
|
s32 StartChannel;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct strip_uart_addr
|
|
|
|
{
|
|
|
|
u8 Channel;
|
2020-10-12 03:54:38 +00:00
|
|
|
|
|
|
|
gs_string ComPort;
|
|
|
|
// This may not be used based on the value of the parent
|
|
|
|
// assembly's NetworkPortMode field
|
|
|
|
};
|
|
|
|
|
|
|
|
enum strip_gen_method
|
|
|
|
{
|
|
|
|
StripGeneration_InterpolatePoints,
|
|
|
|
StripGeneration_Sequence,
|
|
|
|
|
|
|
|
StripGeneration_Count,
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct strip_gen_data strip_gen_data;
|
|
|
|
|
|
|
|
struct strip_gen_interpolate_points
|
|
|
|
{
|
|
|
|
v3 StartPosition;
|
|
|
|
v3 EndPosition;
|
|
|
|
u32 LedCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct strip_gen_sequence
|
|
|
|
{
|
|
|
|
strip_gen_data* Elements;
|
|
|
|
u32 ElementsCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct strip_gen_data
|
|
|
|
{
|
|
|
|
strip_gen_method Method;
|
|
|
|
|
|
|
|
strip_gen_interpolate_points InterpolatePoints;
|
|
|
|
strip_gen_sequence Sequence;
|
2020-10-03 15:46:14 +00:00
|
|
|
};
|
|
|
|
|
2020-06-10 03:33:51 +00:00
|
|
|
struct v2_strip
|
|
|
|
{
|
|
|
|
s32 ControlBoxID; // TODO(Peter): I don't think we need this anymore
|
2020-06-20 01:53:23 +00:00
|
|
|
|
2020-10-03 15:46:14 +00:00
|
|
|
strip_sacn_addr SACNAddr;
|
|
|
|
strip_uart_addr UARTAddr;
|
2020-06-10 03:33:51 +00:00
|
|
|
|
2020-10-12 03:54:38 +00:00
|
|
|
strip_gen_data GenerationData;
|
2020-06-10 03:33:51 +00:00
|
|
|
|
|
|
|
u32 LedCount;
|
|
|
|
u32* LedLUT;
|
|
|
|
|
|
|
|
u32 TagsCount;
|
|
|
|
v2_tag* Tags;
|
|
|
|
};
|
|
|
|
|
2020-09-07 04:10:36 +00:00
|
|
|
struct led_strip_list
|
|
|
|
{
|
|
|
|
u32 Count;
|
|
|
|
u32 CountMax;
|
|
|
|
u32* StripIndices;
|
|
|
|
};
|
|
|
|
|
2020-10-12 03:54:38 +00:00
|
|
|
enum network_port_mode
|
|
|
|
{
|
|
|
|
// This enum defines the scope which contains what network
|
|
|
|
// port each address should be sent over.
|
|
|
|
|
|
|
|
NetworkPortMode_GlobalPort,
|
|
|
|
// GlobalPort means that the port is defined in the assembly structure
|
|
|
|
|
|
|
|
NetworkPortMode_PortPerStrip,
|
|
|
|
// PortPerStrip means that the address stored in the strip structure
|
|
|
|
// should be used, and each strip might have a different port
|
|
|
|
|
|
|
|
NetworkPortMode_Count,
|
|
|
|
};
|
|
|
|
|
2019-11-23 00:07:25 +00:00
|
|
|
struct assembly
|
|
|
|
{
|
2020-07-18 19:00:14 +00:00
|
|
|
gs_memory_arena Arena;
|
2019-11-23 00:07:25 +00:00
|
|
|
|
2020-07-18 19:00:14 +00:00
|
|
|
gs_string Name;
|
|
|
|
gs_string FilePath;
|
2019-11-23 00:07:25 +00:00
|
|
|
|
2020-06-10 03:33:51 +00:00
|
|
|
r32 Scale;
|
2020-09-07 18:12:58 +00:00
|
|
|
v3 Center;
|
2020-06-15 22:36:50 +00:00
|
|
|
s32 LedCountTotal;
|
|
|
|
u32 LedBufferIndex;
|
2020-03-08 21:44:28 +00:00
|
|
|
|
2020-06-10 03:33:51 +00:00
|
|
|
u32 StripCount;
|
|
|
|
v2_strip* Strips;
|
2020-10-03 15:46:14 +00:00
|
|
|
|
|
|
|
network_protocol OutputMode;
|
2020-10-12 03:54:38 +00:00
|
|
|
network_port_mode NetPortMode;
|
|
|
|
gs_string UARTComPort;
|
2019-11-23 00:07:25 +00:00
|
|
|
};
|
2020-01-02 02:41:43 +00:00
|
|
|
|
2020-06-15 22:36:50 +00:00
|
|
|
struct assembly_array
|
|
|
|
{
|
|
|
|
u32 CountMax;
|
|
|
|
u32 Count;
|
|
|
|
assembly* Values;
|
|
|
|
};
|
2020-01-02 02:41:43 +00:00
|
|
|
|
2020-10-10 23:52:00 +00:00
|
|
|
internal led_buffer*
|
|
|
|
LedSystemGetBuffer(led_system* System, u32 Index)
|
|
|
|
{
|
|
|
|
led_buffer* Result = &System->Buffers[Index];
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2020-11-14 20:47:51 +00:00
|
|
|
internal void
|
|
|
|
LedBuffer_ClearToBlack(led_buffer* Buffer)
|
|
|
|
{
|
|
|
|
for (u32 i = 0; i < Buffer->LedCount; i++)
|
|
|
|
{
|
|
|
|
Buffer->Colors[i].R = 0;
|
|
|
|
Buffer->Colors[i].G = 0;
|
|
|
|
Buffer->Colors[i].B = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-12 03:54:38 +00:00
|
|
|
internal u32
|
|
|
|
StripGenData_CountLeds(strip_gen_data Data)
|
|
|
|
{
|
|
|
|
u32 Result = 0;
|
|
|
|
|
|
|
|
switch (Data.Method)
|
|
|
|
{
|
|
|
|
case StripGeneration_InterpolatePoints:
|
|
|
|
{
|
|
|
|
Result += Data.InterpolatePoints.LedCount;
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case StripGeneration_Sequence:
|
|
|
|
{
|
|
|
|
for (u32 i = 0; i < Data.Sequence.ElementsCount; i++)
|
|
|
|
{
|
|
|
|
Result += StripGenData_CountLeds(Data.Sequence.Elements[i]);
|
|
|
|
}
|
|
|
|
}break;
|
|
|
|
|
|
|
|
InvalidDefaultCase;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
2020-10-01 22:30:24 +00:00
|
|
|
|
2021-01-17 00:37:56 +00:00
|
|
|
internal bool
|
|
|
|
AssemblyStrip_HasTagValue(v2_strip Strip, u64 NameHash, u64 ValueHash)
|
|
|
|
{
|
|
|
|
bool Result = false;
|
|
|
|
for (u32 i = 0; i < Strip.TagsCount; i++)
|
|
|
|
{
|
|
|
|
v2_tag TagAt = Strip.Tags[i];
|
|
|
|
if (TagAt.NameHash == NameHash)
|
|
|
|
{
|
|
|
|
// NOTE(pjs): We can pass an empty string to the Value parameter,
|
|
|
|
// and it will match all values of Tag
|
|
|
|
if (ValueHash == 0 || ValueHash == TagAt.ValueHash)
|
|
|
|
{
|
|
|
|
Result = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2021-01-23 23:58:05 +00:00
|
|
|
internal bool
|
|
|
|
AssemblyStrip_HasTagValueSLOW(v2_strip Strip, char* Name, char* Value)
|
|
|
|
{
|
|
|
|
u64 NameHash = HashDJB2ToU32(Name);
|
|
|
|
u64 ValueHash = HashDJB2ToU32(Value);
|
|
|
|
return AssemblyStrip_HasTagValue(Strip, NameHash, ValueHash);
|
|
|
|
}
|
|
|
|
|
2020-01-02 02:41:43 +00:00
|
|
|
#define FOLDHAUS_ASSEMBLY_H
|
|
|
|
#endif // FOLDHAUS_ASSEMBLY_H
|