138 lines
1.9 KiB
C
138 lines
1.9 KiB
C
|
//
|
||
|
// File: blumen_lumen.h
|
||
|
// Author: Peter Slattery
|
||
|
// Creation Date: 2021-01-15
|
||
|
//
|
||
|
#ifndef BLUMEN_LUMEN_H
|
||
|
|
||
|
enum bl_python_packet_type
|
||
|
{
|
||
|
PacketType_Invalid = 0,
|
||
|
PacketType_PatternCommand = 1,
|
||
|
PacketType_MotorState = 2,
|
||
|
PacketType_Temperature = 3,
|
||
|
};
|
||
|
|
||
|
#pragma pack(push, 1)
|
||
|
typedef struct motor_packet
|
||
|
{
|
||
|
u8 FlowerPositions[3];
|
||
|
} motor_packet;
|
||
|
|
||
|
typedef struct microphone_packet
|
||
|
{
|
||
|
b8 ChangeAnimation;
|
||
|
char AnimationFileName[32];
|
||
|
b8 SetLayer;
|
||
|
char LayerName[32];
|
||
|
r32 LayerOpacity;
|
||
|
b8 SetLayerParamColor;
|
||
|
char LayerParamColor[7];
|
||
|
r32 OverrideDuration;
|
||
|
} microphone_packet;
|
||
|
|
||
|
typedef struct temp_packet
|
||
|
{
|
||
|
s8 Temperature;
|
||
|
} temp_packet;
|
||
|
#pragma pack(pop)
|
||
|
|
||
|
#define BLUMEN_MESSAGE_QUEUE_COUNT 32
|
||
|
typedef struct blumen_network_msg_queue
|
||
|
{
|
||
|
gs_data Buffers[BLUMEN_MESSAGE_QUEUE_COUNT];
|
||
|
u32 WriteHead;
|
||
|
u32 ReadHead;
|
||
|
} blumen_network_msg_queue;
|
||
|
|
||
|
// TODO(pjs): Refactor this -> blumen_network_job_state
|
||
|
struct mic_listen_job_data
|
||
|
{
|
||
|
bool* Running;
|
||
|
|
||
|
platform_socket_manager* SocketManager;
|
||
|
packet_ringbuffer* MicPacketBuffer;
|
||
|
platform_socket_handle_ ListenSocket;
|
||
|
|
||
|
blumen_network_msg_queue* OutgoingMsgQueue;
|
||
|
};
|
||
|
|
||
|
struct blumen_lumen_state
|
||
|
{
|
||
|
bool Running;
|
||
|
|
||
|
packet_ringbuffer MicPacketBuffer;
|
||
|
blumen_network_msg_queue OutgoingMsgQueue;
|
||
|
|
||
|
temp_job_req JobReq;
|
||
|
|
||
|
platform_thread_handle MicListenThread;
|
||
|
mic_listen_job_data MicListenJobData;
|
||
|
|
||
|
motor_packet LastKnownMotorState;
|
||
|
|
||
|
r64 TimeElapsed;
|
||
|
|
||
|
animation_handle AnimHandles[3];
|
||
|
u32 CurrAnim;
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
// If you change anything, exit lumenarium if its running
|
||
|
// then in this application hit f1 to compile then
|
||
|
// go to remedybg (the debugger) and hit f5
|
||
|
|
||
|
|
||
|
// don't touch this
|
||
|
u8 LastPosition = 1;
|
||
|
|
||
|
u8 ClosedValue = 1;
|
||
|
u8 OpenValue = 2;
|
||
|
|
||
|
|
||
|
r64 MotorTimeElapsed = 0;
|
||
|
r64 OpenClosePeriod = 15.0f;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#define BLUMEN_LUMEN_H
|
||
|
#endif // BLUMEN_LUMEN_H
|