2014-02-01 17:01:31 -08:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2014 by Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-02-01 21:46:13 -08:00
|
|
|
#include "util/bmem.h"
|
2014-02-01 17:01:31 -08:00
|
|
|
#include "obs-properties.h"
|
|
|
|
|
|
|
|
struct float_data {
|
|
|
|
double min, max, step;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct int_data {
|
|
|
|
int min, max, step;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct list_data {
|
|
|
|
const char **strings;
|
|
|
|
enum obs_dropdown_type type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct obs_property {
|
|
|
|
const char *name;
|
|
|
|
const char *desc;
|
|
|
|
enum obs_property_type type;
|
|
|
|
|
|
|
|
struct obs_property *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct obs_category {
|
|
|
|
const char *name;
|
|
|
|
struct obs_property *first_property;
|
|
|
|
|
|
|
|
struct obs_category *next;
|
|
|
|
};
|
|
|
|
|
2014-02-01 21:46:13 -08:00
|
|
|
struct obs_properties {
|
2014-02-01 17:01:31 -08:00
|
|
|
struct obs_category *first_category;
|
|
|
|
};
|
|
|
|
|
2014-02-01 21:46:13 -08:00
|
|
|
obs_properties_t obs_properties_create()
|
2014-02-01 17:01:31 -08:00
|
|
|
{
|
2014-02-01 21:46:13 -08:00
|
|
|
struct obs_properties *list;
|
2014-02-09 11:34:07 -08:00
|
|
|
list = bzalloc(sizeof(struct obs_properties));
|
2014-02-01 17:01:31 -08:00
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void obs_property_destroy(struct obs_property *property)
|
|
|
|
{
|
|
|
|
bfree(property);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void obs_category_destroy(struct obs_category *category)
|
|
|
|
{
|
|
|
|
struct obs_property *p = category->first_property;
|
|
|
|
while (p) {
|
|
|
|
struct obs_property *next = p->next;
|
|
|
|
obs_property_destroy(p);
|
|
|
|
p = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
bfree(category);
|
|
|
|
}
|
|
|
|
|
2014-02-01 21:46:13 -08:00
|
|
|
void obs_properties_destroy(obs_properties_t props)
|
2014-02-01 17:01:31 -08:00
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (props) {
|
|
|
|
struct obs_category *c = props->first_category;
|
|
|
|
while (c) {
|
|
|
|
struct obs_category *next = c->next;
|
|
|
|
obs_category_destroy(c);
|
|
|
|
c = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
bfree(props);
|
2014-02-01 17:01:31 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-01 21:46:13 -08:00
|
|
|
obs_category_t obs_properties_add_category(obs_properties_t props,
|
2014-02-01 17:01:31 -08:00
|
|
|
const char *name)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (!props) return NULL;
|
|
|
|
|
2014-02-09 11:34:07 -08:00
|
|
|
struct obs_category *c = bzalloc(sizeof(struct obs_category));
|
2014-02-01 17:01:31 -08:00
|
|
|
c->name = name;
|
|
|
|
c->next = props->first_category;
|
|
|
|
props->first_category = c;
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2014-02-01 21:46:13 -08:00
|
|
|
obs_category_t obs_properties_first_category(obs_properties_t props)
|
2014-02-01 17:01:31 -08:00
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
return (props != NULL) ? props->first_category : NULL;
|
2014-02-01 17:01:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static inline void category_add(struct obs_category *cat,
|
|
|
|
struct obs_property *p)
|
|
|
|
{
|
|
|
|
p->next = cat->first_property;
|
|
|
|
cat->first_property = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline size_t get_property_size(enum obs_property_type type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case OBS_PROPERTY_INVALID: return 0;
|
|
|
|
case OBS_PROPERTY_INT: return sizeof(struct int_data);
|
|
|
|
case OBS_PROPERTY_FLOAT: return sizeof(struct float_data);
|
|
|
|
case OBS_PROPERTY_TEXT: return 0;
|
|
|
|
case OBS_PROPERTY_PATH: return 0;
|
|
|
|
case OBS_PROPERTY_ENUM: return sizeof(struct list_data);
|
|
|
|
case OBS_PROPERTY_TEXT_LIST: return sizeof(struct list_data);
|
|
|
|
case OBS_PROPERTY_COLOR: return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct obs_property *new_prop(struct obs_category *cat,
|
|
|
|
const char *name, const char *desc,
|
|
|
|
enum obs_property_type type)
|
|
|
|
{
|
|
|
|
size_t data_size = get_property_size(type);
|
|
|
|
struct obs_property *p;
|
|
|
|
|
2014-02-09 11:34:07 -08:00
|
|
|
p = bzalloc(sizeof(struct obs_property) + data_size);
|
2014-02-01 17:01:31 -08:00
|
|
|
p->type = type;
|
|
|
|
p->name = name;
|
|
|
|
p->desc = desc;
|
|
|
|
category_add(cat, p);
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *get_property_data(struct obs_property *prop)
|
|
|
|
{
|
|
|
|
return (uint8_t*)prop + sizeof(struct obs_property);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *get_type_data(struct obs_property *prop,
|
|
|
|
enum obs_property_type type)
|
|
|
|
{
|
|
|
|
if (!prop || prop->type != type)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return get_property_data(prop);
|
|
|
|
}
|
|
|
|
|
|
|
|
void obs_category_add_int(obs_category_t cat, const char *name,
|
|
|
|
const char *desc, int min, int max, int step)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (!cat) return;
|
|
|
|
|
2014-02-01 17:01:31 -08:00
|
|
|
struct obs_property *p = new_prop(cat, name, desc, OBS_PROPERTY_INT);
|
|
|
|
struct int_data *data = get_property_data(p);
|
|
|
|
data->min = min;
|
|
|
|
data->max = max;
|
|
|
|
data->step = step;
|
|
|
|
}
|
|
|
|
|
|
|
|
void obs_category_add_float(obs_category_t cat, const char *name,
|
|
|
|
const char *desc, double min, double max, double step)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (!cat) return;
|
|
|
|
|
2014-02-01 17:01:31 -08:00
|
|
|
struct obs_property *p = new_prop(cat, name, desc, OBS_PROPERTY_FLOAT);
|
|
|
|
struct float_data *data = get_property_data(p);
|
|
|
|
data->min = min;
|
|
|
|
data->max = max;
|
|
|
|
data->step = step;
|
|
|
|
}
|
|
|
|
|
|
|
|
void obs_category_add_text(obs_category_t cat, const char *name,
|
|
|
|
const char *desc)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (!cat) return;
|
2014-02-01 17:01:31 -08:00
|
|
|
new_prop(cat, name, desc, OBS_PROPERTY_TEXT);
|
|
|
|
}
|
|
|
|
|
|
|
|
void obs_category_add_path(obs_category_t cat, const char *name,
|
|
|
|
const char *desc)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (!cat) return;
|
2014-02-01 17:01:31 -08:00
|
|
|
new_prop(cat, name, desc, OBS_PROPERTY_PATH);
|
|
|
|
}
|
|
|
|
|
|
|
|
void obs_category_add_enum_list(obs_category_t cat, const char *name,
|
|
|
|
const char *desc, const char **strings)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (!cat) return;
|
|
|
|
|
2014-02-01 17:01:31 -08:00
|
|
|
struct obs_property *p = new_prop(cat, name, desc, OBS_PROPERTY_ENUM);
|
|
|
|
struct list_data *data = get_property_data(p);
|
|
|
|
data->strings = strings;
|
|
|
|
data->type = OBS_DROPDOWN_LIST;
|
|
|
|
}
|
|
|
|
|
|
|
|
void obs_category_add_text_list(obs_category_t cat, const char *name,
|
|
|
|
const char *desc, const char **strings,
|
|
|
|
enum obs_dropdown_type type)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (!cat) return;
|
|
|
|
|
2014-02-01 17:01:31 -08:00
|
|
|
struct obs_property *p = new_prop(cat, name, desc,
|
|
|
|
OBS_PROPERTY_TEXT_LIST);
|
|
|
|
struct list_data *data = get_property_data(p);
|
|
|
|
data->strings = strings;
|
|
|
|
data->type = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
void obs_category_add_color(obs_category_t cat, const char *name,
|
|
|
|
const char *desc)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (!cat) return;
|
2014-02-01 17:01:31 -08:00
|
|
|
new_prop(cat, name, desc, OBS_PROPERTY_COLOR);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool obs_category_next(obs_category_t *cat)
|
|
|
|
{
|
|
|
|
if (!cat || !*cat)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*cat = (*cat)->next;
|
|
|
|
return *cat != NULL;
|
|
|
|
}
|
|
|
|
|
2014-02-01 21:46:13 -08:00
|
|
|
obs_property_t obs_category_first_property(obs_category_t cat)
|
2014-02-01 17:01:31 -08:00
|
|
|
{
|
|
|
|
if (!cat)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return cat->first_property;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
bool obs_property_next(obs_property_t *p)
|
|
|
|
{
|
|
|
|
if (!p || !*p)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*p = (*p)->next;
|
|
|
|
return *p != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *obs_property_name(obs_property_t p)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
return p ? p->name : NULL;
|
2014-02-01 17:01:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *obs_property_description(obs_property_t p)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
return p ? p->desc : NULL;
|
2014-02-01 17:01:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
enum obs_property_type obs_property_type(obs_property_t p)
|
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
return p ? p->type : OBS_PROPERTY_INVALID;
|
2014-02-01 17:01:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
int obs_property_int_min(obs_property_t p)
|
|
|
|
{
|
|
|
|
struct int_data *data = get_type_data(p, OBS_PROPERTY_INT);
|
|
|
|
return data ? data->min : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int obs_property_int_max(obs_property_t p)
|
|
|
|
{
|
|
|
|
struct int_data *data = get_type_data(p, OBS_PROPERTY_INT);
|
|
|
|
return data ? data->max : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int obs_property_int_step(obs_property_t p)
|
|
|
|
{
|
|
|
|
struct int_data *data = get_type_data(p, OBS_PROPERTY_INT);
|
|
|
|
return data ? data->step : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
double obs_property_float_min(obs_property_t p)
|
|
|
|
{
|
|
|
|
struct float_data *data = get_type_data(p, OBS_PROPERTY_FLOAT);
|
|
|
|
return data ? data->min : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
double obs_property_float_max(obs_property_t p)
|
|
|
|
{
|
|
|
|
struct float_data *data = get_type_data(p, OBS_PROPERTY_FLOAT);
|
|
|
|
return data ? data->max : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
double obs_property_float_step(obs_property_t p)
|
|
|
|
{
|
|
|
|
struct float_data *data = get_type_data(p, OBS_PROPERTY_FLOAT);
|
|
|
|
return data ? data->step : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool is_dropdown(struct obs_property *p)
|
|
|
|
{
|
|
|
|
return p->type == OBS_PROPERTY_ENUM ||
|
|
|
|
p->type == OBS_PROPERTY_TEXT_LIST;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char **obs_property_dropdown_strings(obs_property_t p)
|
|
|
|
{
|
|
|
|
if (!p || !is_dropdown(p))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
struct list_data *data = get_property_data(p);
|
|
|
|
return data->strings;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum obs_dropdown_type obs_property_dropdown_type(obs_property_t p)
|
|
|
|
{
|
|
|
|
if (!p || !is_dropdown(p))
|
|
|
|
return OBS_DROPDOWN_INVALID;
|
|
|
|
|
|
|
|
struct list_data *data = get_property_data(p);
|
|
|
|
return data->type;
|
|
|
|
}
|