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-10-10 07:10:51 +00:00
|
|
|
#include "engine/foldhaus_serializer.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"
|
|
|
|
|
2020-07-18 19:27:36 +00:00
|
|
|
#include "engine/foldhaus_network_ordering.h"
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2020-10-17 19:43:05 +00:00
|
|
|
#include "engine/assembly/foldhaus_assembly.h"
|
|
|
|
#include "engine/assembly/foldhaus_assembly_parser.cpp"
|
2021-01-16 22:02:25 +00:00
|
|
|
#include "engine/assembly/foldhaus_assembly_debug.h"
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2020-10-03 15:46:14 +00:00
|
|
|
#include "engine/sacn/foldhaus_sacn.h"
|
|
|
|
#include "engine/uart/foldhaus_uart.h"
|
2020-10-10 23:52:00 +00:00
|
|
|
#include "engine/uart/foldhaus_uart.cpp"
|
2020-10-01 22:30:24 +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-11-08 07:43:41 +00:00
|
|
|
typedef struct panel panel;
|
|
|
|
|
2020-10-18 22:31:53 +00:00
|
|
|
#include "editor/foldhaus_command_dispatch.h"
|
|
|
|
#include "editor/foldhaus_operation_mode.h"
|
|
|
|
|
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.
|
2020-07-18 19:27:36 +00:00
|
|
|
#include "editor/foldhaus_panel.h"
|
2019-12-26 20:42:55 +00:00
|
|
|
|
2020-07-18 19:27:36 +00:00
|
|
|
#include "engine/animation/foldhaus_animation.h"
|
2020-10-10 07:10:51 +00:00
|
|
|
#include "engine/animation/foldhaus_animation_serializer.cpp"
|
2020-11-14 20:19:36 +00:00
|
|
|
#include "engine/animation/foldhaus_animation_renderer.cpp"
|
2019-12-26 16:11:48 +00:00
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
struct app_state
|
|
|
|
{
|
2020-07-18 19:00:14 +00:00
|
|
|
gs_memory_arena Permanent;
|
2020-09-07 20:42:00 +00:00
|
|
|
gs_memory_arena* Transient;
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2020-07-18 19:27:36 +00:00
|
|
|
// Engine
|
|
|
|
//
|
2019-11-23 00:07:25 +00:00
|
|
|
network_protocol NetworkProtocol;
|
2019-11-03 21:12:25 +00:00
|
|
|
streaming_acn SACN;
|
2020-06-15 22:36:50 +00:00
|
|
|
led_system LedSystem;
|
|
|
|
assembly_array Assemblies;
|
2021-01-16 22:02:25 +00:00
|
|
|
assembly_debug_state AssemblyDebugState;
|
2020-07-18 19:27:36 +00:00
|
|
|
animation_system AnimationSystem;
|
|
|
|
event_log* GlobalLog;
|
2021-01-11 00:25:35 +00:00
|
|
|
animation_pattern_array Patterns;
|
2019-11-03 21:12:25 +00:00
|
|
|
|
2020-07-18 19:27:36 +00:00
|
|
|
// Interface
|
|
|
|
//
|
|
|
|
rect2 WindowBounds;
|
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-07-19 20:56:21 +00:00
|
|
|
|
2020-06-23 00:39:58 +00:00
|
|
|
ui_interface Interface;
|
2019-12-28 21:02:19 +00:00
|
|
|
panel_system PanelSystem;
|
2019-12-30 02:28:59 +00:00
|
|
|
panel* HotPanel;
|
2021-01-16 22:02:25 +00:00
|
|
|
|
|
|
|
// User Space
|
|
|
|
//
|
|
|
|
gs_data UserData;
|
2019-07-19 20:56:21 +00:00
|
|
|
};
|
|
|
|
|
2019-11-01 13:46:06 +00:00
|
|
|
internal void OpenColorPicker(app_state* State, v4* Address);
|
|
|
|
|
2020-10-17 19:43:05 +00:00
|
|
|
#include "engine/assembly/foldhaus_assembly.cpp"
|
2020-09-07 04:10:36 +00:00
|
|
|
|
2021-01-16 22:02:25 +00:00
|
|
|
#include "patterns/blumen_patterns.h"
|
2019-12-26 16:11:48 +00:00
|
|
|
|
2020-11-08 07:43:41 +00:00
|
|
|
internal void
|
|
|
|
EndCurrentOperationMode(app_state* State)
|
2019-12-30 02:28:59 +00:00
|
|
|
{
|
|
|
|
DeactivateCurrentOperationMode(&State->Modes);
|
|
|
|
}
|
|
|
|
|
2020-10-17 19:43:05 +00:00
|
|
|
#include "editor/panels/foldhaus_panel_types.h"
|
|
|
|
|
2020-10-18 22:31:53 +00:00
|
|
|
#include "editor/panels/foldhaus_panel_file_view.h"
|
2020-07-18 19:27:36 +00:00
|
|
|
#include "editor/panels/foldhaus_panel_sculpture_view.h"
|
|
|
|
#include "editor/panels/foldhaus_panel_profiler.h"
|
|
|
|
#include "editor/panels/foldhaus_panel_dmx_view.h"
|
|
|
|
#include "editor/panels/foldhaus_panel_animation_timeline.h"
|
|
|
|
#include "editor/panels/foldhaus_panel_hierarchy.h"
|
2021-01-16 22:02:25 +00:00
|
|
|
#include "editor/panels/foldhaus_panel_assembly_debug.h"
|
2020-10-18 22:31:53 +00:00
|
|
|
|
2019-12-26 20:42:55 +00:00
|
|
|
|
2020-10-17 19:43:05 +00:00
|
|
|
#include "editor/panels/foldhaus_panel_types.cpp"
|
|
|
|
//#include "generated/foldhaus_panels_generated.h"
|
2019-12-28 22:00:09 +00:00
|
|
|
|
2020-07-18 19:27:36 +00:00
|
|
|
#include "editor/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
|
|
|
|
2020-10-25 01:54:47 +00:00
|
|
|
#include "editor/foldhaus_editor.cpp"
|
|
|
|
|
2020-01-02 02:41:43 +00:00
|
|
|
#define FOLDHAUS_APP_H
|
|
|
|
#endif // FOLDHAUS_APP_H
|