Lumenarium/src/app/foldhaus_node.h

134 lines
2.8 KiB
C
Raw Normal View History

2020-01-02 02:41:43 +00:00
//
// File: foldhaus_node.h
// Author: Peter Slattery
// Creation Date: 2020-01-01
//
#ifndef FOLDHAUS_NODE_H
2019-07-19 20:56:21 +00:00
typedef enum node_type node_type;
#define IsInputMember 1 << 0
#define IsOutputMember 1 << 1
#define DEFAULT_NODE_DIMENSION v2{125, 150}
struct color_buffer
{
v4* LedPositions;
pixel* Colors;
s32 LEDCount;
};
2019-07-19 20:56:21 +00:00
// TODO(Peter): Use the Meta RTTI
// :UseMetaInfo
2019-07-19 20:56:21 +00:00
enum struct_member_type
{
MemberType_Invalid,
2019-07-19 20:56:21 +00:00
MemberType_s32,
MemberType_r32,
MemberType_v4,
MemberType_NODE_COLOR_BUFFER,
MemberTypeCount,
};
// TODO(Peter): Use the Meta RTTI
// :UseMetaInfo
2019-07-19 20:56:21 +00:00
struct node_struct_member
{
struct_member_type Type;
char* Name;
u64 Offset;
b32 IsInput;
};
// :UseMetaInfo
2019-07-19 20:56:21 +00:00
struct node_specification
{
node_type Type;
char* Name;
s32 NameLength;
node_struct_member* MemberList;
u32 DataStructSize;
u32 MemberListLength;
2019-07-19 20:56:21 +00:00
b32 IsPattern;
};
struct node_specification_
{
node_type Type;
string Identifier;
gsm_struct_type DataType;
};
struct pattern_node
{
// TODO(Peter): Something to think about further down the line is the fact that
// SpecificationIndex doesn't have to stay static throughout a single instance of
// an application, let alone across separate runs. If you recompile (hot load or not)
// with a new specification, the indecies all get thrown off. Should we hash the spec
// names or something?
// TODO(Peter): A more immediate thing to handle is that u32 should really be node_type
u32 SpecificationIndex;
};
struct pattern_node_connection
{
gs_list_handle UpstreamNodeHandle;
gs_list_handle DownstreamNodeHandle;
u32 UpstreamPortIndex;
u32 DownstreamPortIndex;
};
struct pattern_node_workspace
{
gs_list<pattern_node> Nodes;
gs_bucket<pattern_node_connection> Connections;
2020-01-02 02:41:43 +00:00
// This is storage for all the structures which follow.
// It is cleared when new nodes are added so that the
2020-01-02 02:41:43 +00:00
// acceleration structures can be recalculated
memory_arena Storage;
s32* SparseToSortedNodeMap;
gs_list_handle* SortedNodeHandles;
};
2019-07-19 20:56:21 +00:00
///////////////////////////////////////////////
// Pre Processor Macros
///////////////////////////////////////////////
#define NODE_STRUCT(data_name) \
struct data_name
#define NODE_PATTERN_STRUCT(data_name) \
struct data_name
#define NODE_PROC(proc_name, input_type) \
void proc_name(input_type* Data, r32 DeltaTime)
2019-07-19 20:56:21 +00:00
#define NODE_IN(type, name) type name
#define NODE_OUT(type, name) type name
2019-11-12 04:34:56 +00:00
///////////////////////////////////////////////
// OUTPUT NODE
///////////////////////////////////////////////
struct output_node_data
2019-11-12 04:34:56 +00:00
{
GSMetaTag(node_input);
color_buffer Result;
2019-11-12 04:34:56 +00:00
};
void OutputNode(output_node_data* Data, r32 DeltaTime)
2019-11-12 04:34:56 +00:00
{
2020-01-02 02:41:43 +00:00
}
#define FOLDHAUS_NODE_H
#endif // FOLDHAUS_NODE_H