135 lines
5.5 KiB
C
135 lines
5.5 KiB
C
/* date = March 27th 2021 2:50 pm */
|
|
|
|
#ifndef BLUMEN_LUMEN_SETTINGS_H
|
|
#define BLUMEN_LUMEN_SETTINGS_H
|
|
|
|
// Hey you never know, might need to change this some day lololol
|
|
// The number of flowers in the sculpture. Used to size all sorts of
|
|
// arrays. Maybe don't touch this unless you really know what you're doing?
|
|
#define BL_FLOWER_COUNT 3
|
|
|
|
// The path to the three flower assembly files
|
|
// PS is 90% sure you don't need to touch these ever
|
|
gs_const_string Flower0AssemblyPath = ConstString("data/ss_blumen_one.fold");
|
|
gs_const_string Flower1AssemblyPath = ConstString("data/ss_blumen_two.fold");
|
|
gs_const_string Flower2AssemblyPath = ConstString("data/ss_blumen_three.fold");
|
|
|
|
// The path to the phrase map CSV. Can be an absolute path, or relative
|
|
// to the app_run_tree folder
|
|
gs_const_string PhraseMapCSVPath = ConstString("C:/projects/flowers-sound/flower_codes.tsv");
|
|
char PhraseMapCSVSeparator = '\t';
|
|
|
|
// Search Strings for which folders to find ambient animation files and
|
|
// voice animation files in.
|
|
// these search patterns should always end in *.foldanim so they only
|
|
// return valid animation files
|
|
gs_const_string AmbientPatternFolder = ConstString("data/blumen_animations/ambient_patterns/*.foldanim");
|
|
gs_const_string VoicePatternFolder = ConstString("data/blumen_animations/audio_responses/*.foldanim");
|
|
|
|
// The times of day when the motors should be open.
|
|
//
|
|
// @TimeFormat: documentation follows
|
|
// these are in the format { Start_Hour, Start_Minute, End_Hour, End_Minute }
|
|
// Hours are in the range 0-23 inclusive
|
|
// Minutes are in the range 0-59 inclusive
|
|
//
|
|
// NOTE: There is no need to modify the MotorOpenTimesCount variable -
|
|
// it is a compile time constant that gets calculated automatically
|
|
global time_range MotorOpenTimes[] = {
|
|
{ 8, 00, 12, 00 }, // 8:00am to 12:00pm
|
|
{ 12, 30, 13, 00 }, // 12:30pm to 01:00pm
|
|
{ 18, 00, 22, 00 }, // 6:00pm to 10:00pm
|
|
};
|
|
global u32 MotorOpenTimesCount = CArrayLength(MotorOpenTimes); // do not edit
|
|
|
|
// Lumenarium repeatedly resends the current motor state to the python
|
|
// server. This variable determines how much time elapses between each
|
|
// message.
|
|
global r32 MotorResendStatePeriod = 90.0f; // seconds
|
|
|
|
// The times of day when the leds should be on
|
|
// Search for @TimeFormat to find documentation
|
|
global time_range LedOnTimes[] = {
|
|
{ 17, 00, 23, 59 },
|
|
{ 00, 00, 06, 30 },
|
|
};
|
|
global u32 LedOnTimesCount = CArrayLength(LedOnTimes); // do not edit
|
|
|
|
// How long it takes to fade from the default pattern to the
|
|
// voice activated pattern
|
|
r32 VoiceCommandFadeDuration = 0.5f; // in seconds
|
|
|
|
// How long the voice activated pattern will remain active
|
|
// without additional voice commands, before fading back to
|
|
// default behaviour.
|
|
// ie.
|
|
// if this is set to 30 seconds, upon receiving a voice command
|
|
// lumenarium will fade to the requested pattern/color palette
|
|
// and then wait 30 seconds before fading back to the original
|
|
// pattern. If, in that 30 second window, another voice command
|
|
// is issued, lumenarium will reset the 30 second counter.
|
|
r64 VoiceCommandSustainDuration = 120.0; // in seconds
|
|
|
|
// When we send a Motor Close command, we don't want the upper leds to
|
|
// immediately turn off. Instead, we want to wait until the flower is
|
|
// at least some of the way closed. This variable dictates how long
|
|
// we wait for.
|
|
// For example:
|
|
// 1. We send a 'motor close' command to the clear core
|
|
// 2. the clear core sends back a 'motor closed' state packet
|
|
// 3. We begin a timer
|
|
// 4. When the timer reaches the value set in this variable,
|
|
// we turn the upper leds off.
|
|
//
|
|
// NOTE: This is not a symmetric operation. When we send a 'motor open'
|
|
// command, we want to immediately turn the upper leds on so they appear
|
|
// to have been on the whole time.
|
|
r64 TurnUpperLedsOffAfterMotorCloseCommandDelay = 120.0; // in seconds
|
|
|
|
|
|
// NOTE: Temperature & Time of Day Based Led Brightness Settings
|
|
|
|
// The temperature above which we dim the leds to
|
|
// HighTemperatureBrightnessPercent (below)
|
|
//
|
|
// NOTE: this is an 8bit signed integer so its range is
|
|
// -128 to 127, not that we should need either of those extremes for
|
|
// this, but just a note that you can't just put anything in here.
|
|
s8 MinHighTemperature = 26;
|
|
|
|
// The percent brightness we set leds to during high temperatures.
|
|
// A value in the range 0:1 inclusive
|
|
// This is multiplied by each pixels R, G, & B channels before being
|
|
// sent. So if it is set to .1f, then the maximum brightness value sent
|
|
// to any channel of any pixel will be 25 (255 * .1 = 25).
|
|
r32 HighTemperatureBrightnessPercent = 0.7f;
|
|
|
|
// The percent brightness we set leds to when no other conditions apply
|
|
// A value in the range 0:1 inclusive.
|
|
// Probably wants to be something high like 1 but we might want to
|
|
// lower it for heat reasons?
|
|
r32 FullBrightnessPercent = 1.0f;
|
|
|
|
// A global modifier so Joerg can just slow all the patterns right down
|
|
// XD
|
|
// This is a percent - so 1 is full speed, 0.1f is 1/10 full speed and
|
|
// 2 is 2x as fast.
|
|
r32 GlobalAnimSpeed = 1.0f;
|
|
|
|
// How long it takes to fade from one animation to the next.
|
|
// This is used both for transitioning between animation files
|
|
// as well as transitioning from Standard pattern mode to voice
|
|
// activated mode
|
|
r32 GlobalAnimTransitionSpeed = 0.0f;
|
|
|
|
// how long it takes to fade from the old voice hue to the new one
|
|
r32 PhraseHueFadeInDuration = 0.01f; // seconds
|
|
|
|
r64 PhrasePriorityMessageGroupingTime = 0.1f;
|
|
|
|
// How often should Lumenarium send its status to the python server?
|
|
//
|
|
#define STATUS_PACKET_FREQ_SECONDS 10 // in seconds
|
|
|
|
#endif //BLUMEN_LUMEN_SETTINGS_H
|