1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/*
* Copyright 1994-2022 Olivier Girondel
*
* This file is part of lebiniou.
*
* lebiniou is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* lebiniou is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with lebiniou. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __BINIOU_PLUGIN_PARAMETERS_H
#define __BINIOU_PLUGIN_PARAMETERS_H
#define BPP_BORDER_MODE "border_mode"
#define BPP_BORDER_X "border_x"
#define BPP_BORDER_Y "border_y"
#define BPP_CENTER_X "center_x"
#define BPP_CENTER_Y "center_y"
#define BPP_CHANNELS "channels" // deprecated in v2 API in favor of BPP_STEREO
#define BPP_COLOR_FACTOR "color_factor"
#define BPP_CONNECT "connect"
#define BPP_DEBUG_BOOLEAN "_boolean" // for debugging
#define BPP_DEBUG_INTEGER "_integer" // for debugging
#define BPP_DEBUG_PLAYLIST "_playlist" // for debugging
#define BPP_DEBUG_REAL "_real" // for debugging
#define BPP_DEBUG_STRING_LIST "_string_list" // for debugging
#define BPP_DECAY "decay"
#define BPP_DELAY "delay"
#define BPP_DIRECTION "direction"
#define BPP_EFFECT "effect"
#define BPP_FLOW_ID "flow_id"
#define BPP_LENGTH "length"
#define BPP_LENGTH_MIN "length_min"
#define BPP_LENGTH_MAX "length_max"
#define BPP_MODE "mode"
#define BPP_MOVE_FACTOR "move_factor"
#define BPP_NB_MIN_ROTORS "nb_min_rotors"
#define BPP_NB_SPHERES "nb_spheres"
#define BPP_OSCILLO_LENGTH_FACTOR "oscillo_length_factor"
#define BPP_P_FACTOR "p_factor"
#define BPP_PARTICLES "particles"
#define BPP_PATH "path"
#define BPP_PLAYLIST "playlist"
#define BPP_POS_FACTOR "pos_factor"
#define BPP_PROBA_VISIBLE "proba_visible"
#define BPP_RADIUS_FACTOR "radius_factor"
#define BPP_RANDOM_MODE "random_mode"
#define BPP_REVERSE "reverse"
#define BPP_SCALE "scale"
#define BPP_SENSITIVITY "sensitivity"
#define BPP_SLOW_X "slow_x"
#define BPP_SLOW_Y "slow_y"
#define BPP_SPECTRUM_ID_FACTOR "spectrum_id_factor"
#define BPP_SPAN_SIZE "span_size"
#define BPP_SPEED "speed"
#define BPP_SPEED_FACTOR "speed_factor"
#define BPP_STEREO "stereo"
#define BPP_THICKNESS "thickness"
#define BPP_TTL_FACTOR "ttl_factor"
#define BPP_USE_ASPECT_RATIO "use_aspect_ratio"
#define BPP_USE_VIDEO "use_video"
#define BPP_VEL_FACTOR "vel_factor"
#define BPP_VOLUME_SCALE "volume_scale"
#define BPP_WINDOWING_FACTOR "windowing_factor"
#define BPP_XOFFSET "x_offset"
#endif /* __BINIOU_PLUGIN_PARAMETERS_H */
|