2020-01-02 02:41:43 +00:00
|
|
|
//
|
|
|
|
// File: foldhaus_app.h
|
|
|
|
// Author: Peter Slattery
|
|
|
|
// Creation Date: 2020-01-01
|
|
|
|
//
|
|
|
|
#ifndef FOLDHAUS_APP_H
|
|
|
|
|
2020-02-23 02:54:28 +00:00
|
|
|
#include "../meta/gs_meta_include.h"
|
2019-07-19 20:56:21 +00:00
|
|
|
#include "../meta/gs_meta_lexer.h"
|
|
|
|
|
2020-01-21 06:56:36 +00:00
|
|
|
#include "../gs_libs/gs_font.h"
|
2020-02-06 04:24:34 +00:00
|
|
|
#include "foldhaus_log.h"
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
#include "interface.h"
|
|
|
|
|
|
|
|
#include "foldhaus_network_ordering.h"
|
2019-11-23 00:07:25 +00:00
|
|
|
#include "dmx/dmx.h"
|
|
|
|
#include "sacn/sacn.h"
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2019-11-23 00:07:25 +00:00
|
|
|
#include "foldhaus_assembly.h"
|
2020-06-10 03:33:51 +00:00
|
|
|
#include "assembly_parser.cpp"
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2019-12-30 02:28:59 +00:00
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
#include "foldhaus_node.h"
|
2019-12-30 02:28:59 +00:00
|
|
|
|
2020-06-10 03:33:51 +00:00
|
|
|
typedef struct app_state app_state;
|
2020-01-19 12:03:07 +00:00
|
|
|
|
2020-01-21 05:11:07 +00:00
|
|
|
#include "test_patterns.h"
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2019-12-28 18:51:47 +00:00
|
|
|
// TODO(Peter): something we can do later is to remove all reliance on app_state and context
|
|
|
|
// from foldhaus_pane.h. It should just emit lists of things that the app can iterate over and
|
|
|
|
// perform operations on, like panel_draw_requests = { bounds, panel* } etc.
|
2019-12-26 20:42:55 +00:00
|
|
|
#include "foldhaus_panel.h"
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
#include "foldhaus_command_dispatch.h"
|
2019-11-01 11:17:46 +00:00
|
|
|
#include "foldhaus_operation_mode.h"
|
2019-09-02 06:03:38 +00:00
|
|
|
|
2019-12-26 16:11:48 +00:00
|
|
|
#include "animation/foldhaus_animation.h"
|
|
|
|
|
2019-08-18 12:56:18 +00:00
|
|
|
#include "foldhaus_text_entry.h"
|
|
|
|
|
2019-09-21 20:19:02 +00:00
|
|
|
#include "foldhaus_search_lister.h"
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2019-11-23 00:07:25 +00:00
|
|
|
enum network_protocol
|
|
|
|
{
|
|
|
|
NetworkProtocol_SACN,
|
|
|
|
NetworkProtocol_ArtNet,
|
|
|
|
|
|
|
|
NetworkProtocol_Count,
|
|
|
|
};
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
struct app_state
|
|
|
|
{
|
2019-12-28 18:51:47 +00:00
|
|
|
rect WindowBounds;
|
|
|
|
|
2020-06-10 03:33:51 +00:00
|
|
|
memory_arena Permanent;
|
2019-12-23 01:47:26 +00:00
|
|
|
memory_arena Transient;
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2019-12-28 18:51:47 +00:00
|
|
|
s32 NetworkProtocolHeaderSize;
|
2019-11-23 00:07:25 +00:00
|
|
|
network_protocol NetworkProtocol;
|
|
|
|
|
2019-11-03 21:12:25 +00:00
|
|
|
streaming_acn SACN;
|
2019-11-23 00:07:25 +00:00
|
|
|
|
2020-06-15 22:36:50 +00:00
|
|
|
led_system LedSystem;
|
|
|
|
assembly_array Assemblies;
|
2019-11-03 21:12:25 +00:00
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
camera Camera;
|
2019-11-03 21:12:25 +00:00
|
|
|
r32 PixelsToWorldScale;
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2019-11-01 11:17:46 +00:00
|
|
|
operation_mode_system Modes;
|
2019-10-30 14:28:02 +00:00
|
|
|
input_command_queue CommandQueue;
|
2019-09-21 20:19:02 +00:00
|
|
|
text_entry ActiveTextEntry;
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2020-06-23 00:39:58 +00:00
|
|
|
ui_interface Interface;
|
2019-12-04 06:40:22 +00:00
|
|
|
|
2019-12-26 16:11:48 +00:00
|
|
|
animation_system AnimationSystem;
|
2019-12-31 04:26:28 +00:00
|
|
|
gs_list_handle SelectedAnimationBlockHandle;
|
2020-03-08 00:06:10 +00:00
|
|
|
u32 SelectedAnimationLayer;
|
2019-12-26 20:42:55 +00:00
|
|
|
|
2019-12-28 21:02:19 +00:00
|
|
|
panel_system PanelSystem;
|
2019-12-30 02:28:59 +00:00
|
|
|
panel* HotPanel;
|
2019-12-31 06:05:57 +00:00
|
|
|
|
|
|
|
pattern_node_workspace NodeWorkspace;
|
2020-02-06 04:24:34 +00:00
|
|
|
|
|
|
|
event_log* GlobalLog;
|
2019-07-19 20:56:21 +00:00
|
|
|
};
|
|
|
|
|
2019-11-01 13:46:06 +00:00
|
|
|
internal void OpenColorPicker(app_state* State, v4* Address);
|
|
|
|
|
2019-12-26 16:11:48 +00:00
|
|
|
// BEGIN TEMPORARY PATTERNS
|
|
|
|
internal void
|
2020-06-15 22:36:50 +00:00
|
|
|
TestPatternOne(led_buffer* Assembly, r32 Time)
|
2019-12-26 16:11:48 +00:00
|
|
|
{
|
2020-06-15 22:36:50 +00:00
|
|
|
for (u32 LedIndex = 0; LedIndex < Assembly->LedCount; LedIndex++)
|
2019-12-26 16:11:48 +00:00
|
|
|
{
|
2020-06-20 01:53:23 +00:00
|
|
|
v4 LedPosition = Assembly->Positions[LedIndex];
|
2020-06-27 21:10:25 +00:00
|
|
|
float PercentX = GSRemap(LedPosition.x, -150.0f, 150.0f, 0.0f, 1.0f);
|
|
|
|
float PercentY = GSRemap(LedPosition.y, -150.0f, 150.0f, 0.0f, 1.0f);
|
|
|
|
Assembly->Colors[LedIndex].R = (u8)(PercentX * 255);
|
|
|
|
Assembly->Colors[LedIndex].G = (u8)(PercentY * 255);
|
2019-12-28 18:51:47 +00:00
|
|
|
}
|
2019-12-26 16:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
2020-06-15 22:36:50 +00:00
|
|
|
TestPatternTwo(led_buffer* Assembly, r32 Time)
|
2019-12-26 16:11:48 +00:00
|
|
|
{
|
2019-12-27 02:40:14 +00:00
|
|
|
r32 PeriodicTime = (Time / PI) * 2;
|
2019-12-28 18:51:47 +00:00
|
|
|
|
2019-12-27 02:40:14 +00:00
|
|
|
r32 ZeroOneSin = (GSSin(PeriodicTime) * .5f) + .5f;
|
2019-12-28 18:51:47 +00:00
|
|
|
r32 ZeroOneCos = (GSCos(PeriodicTime) * .5f) + .5f;
|
2019-12-27 02:40:14 +00:00
|
|
|
pixel Color = { (u8)(ZeroOneSin * 255), 0, (u8)(ZeroOneCos * 255) };
|
|
|
|
|
|
|
|
v4 Center = v4{0, 0, 0, 1};
|
|
|
|
r32 ThetaZ = Time / 2;
|
|
|
|
v4 Normal = v4{GSCos(ThetaZ), 0, GSSin(ThetaZ), 0}; // NOTE(Peter): dont' need to normalize. Should always be 1
|
|
|
|
v4 Right = Cross(Normal, v4{0, 1, 0, 0});
|
|
|
|
|
|
|
|
v4 FrontCenter = Center + (Normal * 25);
|
|
|
|
v4 BackCenter = Center - (Normal * 25);
|
2019-12-26 16:11:48 +00:00
|
|
|
|
2019-12-27 02:40:14 +00:00
|
|
|
r32 OuterRadiusSquared = 1000000;
|
|
|
|
r32 InnerRadiusSquared = 0;
|
|
|
|
|
2020-06-15 22:36:50 +00:00
|
|
|
for (u32 LedIndex = 0; LedIndex < Assembly->LedCount; LedIndex++)
|
2019-12-26 16:11:48 +00:00
|
|
|
{
|
2020-06-20 01:53:23 +00:00
|
|
|
v4 Position = Assembly->Positions[LedIndex];
|
2020-02-05 20:20:03 +00:00
|
|
|
|
|
|
|
v4 ToFront = Position + FrontCenter;
|
|
|
|
v4 ToBack = Position + BackCenter;
|
|
|
|
|
|
|
|
r32 ToFrontDotNormal = Dot(ToFront, Normal);
|
|
|
|
r32 ToBackDotNormal = Dot(ToBack, Normal);
|
|
|
|
|
|
|
|
ToFrontDotNormal = GSClamp01(ToFrontDotNormal * 1000);
|
|
|
|
ToBackDotNormal = GSClamp01(ToBackDotNormal * 1000);
|
|
|
|
|
|
|
|
r32 SqDistToCenter = MagSqr(Position);
|
|
|
|
if (SqDistToCenter < OuterRadiusSquared && SqDistToCenter > InnerRadiusSquared)
|
2019-12-26 16:11:48 +00:00
|
|
|
{
|
2020-02-05 20:20:03 +00:00
|
|
|
if (XOR(ToFrontDotNormal > 0, ToBackDotNormal > 0))
|
2019-12-27 02:40:14 +00:00
|
|
|
{
|
2020-06-20 01:53:23 +00:00
|
|
|
Assembly->Colors[LedIndex] = Color;
|
2019-12-28 18:51:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-06-20 01:53:23 +00:00
|
|
|
//Assembly->Colors[LedIndex] = {};
|
2019-12-28 18:51:47 +00:00
|
|
|
}
|
2019-12-26 16:11:48 +00:00
|
|
|
}
|
2020-02-05 20:20:03 +00:00
|
|
|
else
|
|
|
|
{
|
2020-06-20 01:53:23 +00:00
|
|
|
//Assembly->Colors[LedIndex] = {};
|
2020-02-05 20:20:03 +00:00
|
|
|
}
|
2019-12-26 16:11:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
2020-06-15 22:36:50 +00:00
|
|
|
TestPatternThree(led_buffer* Assembly, r32 Time)
|
2019-12-26 16:11:48 +00:00
|
|
|
{
|
2020-02-05 06:50:12 +00:00
|
|
|
v4 GreenCenter = v4{0, 0, 150, 1};
|
|
|
|
r32 GreenRadius = GSAbs(GSSin(Time)) * 200;
|
2019-12-28 18:51:47 +00:00
|
|
|
|
2020-02-05 06:50:12 +00:00
|
|
|
v4 TealCenter = v4{0, 0, 150, 1};
|
|
|
|
r32 TealRadius = GSAbs(GSSin(Time + 1.5)) * 200;
|
|
|
|
|
|
|
|
r32 FadeDist = 35;
|
2019-12-26 16:11:48 +00:00
|
|
|
|
2020-02-05 20:20:03 +00:00
|
|
|
|
2020-06-15 22:36:50 +00:00
|
|
|
for (u32 LedIndex = 0; LedIndex < Assembly->LedCount; LedIndex++)
|
2019-12-26 16:11:48 +00:00
|
|
|
{
|
2020-06-20 01:53:23 +00:00
|
|
|
v4 LedPosition = Assembly->Positions[LedIndex];
|
2020-02-05 20:20:03 +00:00
|
|
|
u8 Red = 0;
|
|
|
|
u8 Green = 0;
|
|
|
|
u8 Blue = 0;
|
|
|
|
|
2020-06-20 01:53:23 +00:00
|
|
|
r32 GreenDist = GSAbs(Mag(LedPosition - GreenCenter) - GreenRadius);
|
2020-02-05 20:20:03 +00:00
|
|
|
r32 GreenBrightness = GSClamp(0.f, FadeDist - GSAbs(GreenDist), FadeDist);
|
|
|
|
Green = (u8)(GreenBrightness * 255);
|
|
|
|
|
2020-06-20 01:53:23 +00:00
|
|
|
r32 TealDist = GSAbs(Mag(LedPosition - TealCenter) - TealRadius);
|
2020-02-05 20:20:03 +00:00
|
|
|
r32 TealBrightness = GSClamp(0.f, FadeDist - GSAbs(TealDist), FadeDist);
|
|
|
|
Red = (u8)(TealBrightness * 255);
|
|
|
|
Blue = (u8)(TealBrightness * 255);
|
|
|
|
|
2020-06-20 01:53:23 +00:00
|
|
|
Assembly->Colors[LedIndex].R = Red;
|
|
|
|
Assembly->Colors[LedIndex].B = Green;
|
|
|
|
Assembly->Colors[LedIndex].G = Green;
|
2019-12-26 16:11:48 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-05 06:50:12 +00:00
|
|
|
|
2019-12-26 16:11:48 +00:00
|
|
|
// END TEMPORARY PATTERNS
|
|
|
|
|
2019-11-23 00:07:25 +00:00
|
|
|
#include "foldhaus_assembly.cpp"
|
2019-11-23 11:05:25 +00:00
|
|
|
|
2019-08-18 12:56:18 +00:00
|
|
|
#include "foldhaus_text_entry.cpp"
|
2019-11-01 12:46:40 +00:00
|
|
|
#include "foldhaus_search_lister.cpp"
|
|
|
|
|
2020-01-19 12:03:07 +00:00
|
|
|
#include "foldhaus_default_nodes.h"
|
|
|
|
|
2020-02-29 22:23:46 +00:00
|
|
|
#include "./generated/gs_meta_generated_typeinfo.h"
|
|
|
|
#include "generated/foldhaus_nodes_generated.h"
|
|
|
|
|
|
|
|
|
2019-12-30 02:28:59 +00:00
|
|
|
#include "foldhaus_node.cpp"
|
|
|
|
|
|
|
|
FOLDHAUS_INPUT_COMMAND_PROC(EndCurrentOperationMode)
|
|
|
|
{
|
|
|
|
DeactivateCurrentOperationMode(&State->Modes);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define PANEL_INIT_PROC(name) void name(panel* Panel, app_state* State)
|
2019-12-26 21:14:00 +00:00
|
|
|
typedef PANEL_INIT_PROC(panel_init_proc);
|
|
|
|
|
2019-12-30 02:28:59 +00:00
|
|
|
#define PANEL_CLEANUP_PROC(name) void name(panel* Panel, app_state* State)
|
2019-12-26 21:14:00 +00:00
|
|
|
typedef PANEL_CLEANUP_PROC(panel_cleanup_proc);
|
|
|
|
|
2020-06-27 18:23:50 +00:00
|
|
|
#define PANEL_RENDER_PROC(name) void name(panel Panel, rect PanelBounds, render_command_buffer* RenderBuffer, app_state* State, context Context)
|
2019-12-26 21:14:00 +00:00
|
|
|
typedef PANEL_RENDER_PROC(panel_render_proc);
|
|
|
|
|
2020-02-02 03:15:04 +00:00
|
|
|
// NOTE(Peter): This is used by the meta system to generate panel type info
|
|
|
|
struct panel_definition
|
|
|
|
{
|
|
|
|
char* PanelName;
|
|
|
|
s32 PanelNameLength;
|
|
|
|
panel_init_proc* Init;
|
|
|
|
panel_cleanup_proc* Cleanup;
|
|
|
|
panel_render_proc* Render;
|
|
|
|
input_command* InputCommands;
|
2020-02-29 22:23:46 +00:00
|
|
|
s32 InputCommandsCount;
|
2020-02-02 03:15:04 +00:00
|
|
|
};
|
|
|
|
|
2019-12-26 20:42:55 +00:00
|
|
|
#include "panels/foldhaus_panel_sculpture_view.h"
|
|
|
|
#include "panels/foldhaus_panel_profiler.h"
|
|
|
|
#include "panels/foldhaus_panel_dmx_view.h"
|
|
|
|
#include "panels/foldhaus_panel_animation_timeline.h"
|
2019-12-26 22:45:27 +00:00
|
|
|
#include "panels/foldhaus_panel_hierarchy.h"
|
2019-12-30 02:28:59 +00:00
|
|
|
#include "panels/foldhaus_panel_node_graph.h"
|
2020-03-08 23:15:26 +00:00
|
|
|
#include "panels/foldhaus_panel_file_view.h"
|
2019-12-26 20:42:55 +00:00
|
|
|
|
|
|
|
#include "generated/foldhaus_panels_generated.h"
|
2019-12-28 22:00:09 +00:00
|
|
|
|
|
|
|
#include "foldhaus_interface.cpp"
|
2020-01-02 02:41:43 +00:00
|
|
|
|
2020-02-29 22:23:46 +00:00
|
|
|
#include "../meta/gs_meta_include.cpp"
|
2020-01-02 02:41:43 +00:00
|
|
|
|
|
|
|
#define FOLDHAUS_APP_H
|
|
|
|
#endif // FOLDHAUS_APP_H
|