Mercurial > audlegacy-plugins
view src/rovascope/actuators.h @ 997:e46b98155d5d trunk
[svn] - fix a bug which counts number of frames twice in handling xing header.
- now fileinfo dialog calculates play length even though TLEN tag exists so that it can overwrite wrong TLEN tag.
author | yaz |
---|---|
date | Tue, 01 May 2007 12:49:27 -0700 |
parents | 290588854a9d |
children | f305ebcc8136 |
line wrap: on
line source
/* FIXME: rename actuators to pn_actuators */ /* FIXME: add a color type to the OPT_TYPE's */ #ifndef _ACTUATORS_H #define _ACTUATORS_H #include <glib.h> #include <SDL.h> /* Helper macros for actuator functions */ #define PN_ACTUATOR_INIT_FUNC(f) ((void (*) (gpointer *data))f) #define PN_ACTUATOR_CLEANUP_FUNC(f) ((void (*) (gpointer data))f) #define PN_ACTUATOR_EXEC_FUNC(f) \ ((void (*) (const struct pn_actuator_option *opts, gpointer data))f) struct pn_color { guchar r, g, b; guchar spluzz; /* gotta look like an SDL_Color */ }; union actuator_option_val { int ival; float fval; const char *sval; struct pn_color cval; gboolean bval; }; /* A actuator's option description */ struct pn_actuator_option_desc { const char *name; const char *doc; /* option documentation */ enum { OPT_TYPE_INT = 0, OPT_TYPE_FLOAT = 1, OPT_TYPE_STRING = 2, OPT_TYPE_COLOR = 3, OPT_TYPE_COLOR_INDEX = 4, /* uses ival */ OPT_TYPE_BOOLEAN = 5 } type; union actuator_option_val default_val; }; /* The actual option instance */ struct pn_actuator_option { const struct pn_actuator_option_desc *desc; union actuator_option_val val; }; /* An operation's description */ struct pn_actuator_desc { const char *name; /* e.g. "container_simple" */ const char *dispname; /* e.g. "Simple Container" */ const char *doc; /* documentation txt */ const enum { ACTUATOR_FLAG_CONTAINER = 1<<0 } flags; /* A null terminating (ie a actuator_option_desc == {0,...,0}) array - OPTIONAL (optional fields can be NULL) */ const struct pn_actuator_option_desc *option_descs; /* Init function - data points to the actuator.data - OPTIONAL */ void (*init) (gpointer *data); /* Cleanup actuatortion - OPTIONAL */ void (*cleanup) (gpointer data); /* Execute actuatortion - REQUIRED (duh!) */ void (*exec) (const struct pn_actuator_option *opts, gpointer data); }; /* An actual operation instance */ struct pn_actuator { const struct pn_actuator_desc *desc; struct pn_actuator_option *options; gpointer data; }; /* The array containing all operations (see builtins.c) */ extern struct pn_actuator_desc *builtin_table[]; /* functions for actuators */ struct pn_actuator_desc *get_actuator_desc (const char *name); struct pn_actuator *copy_actuator (const struct pn_actuator *a); struct pn_actuator *create_actuator (const char *name); void destroy_actuator (struct pn_actuator *actuator); void exec_actuator (struct pn_actuator *actuator); #endif /* _ACTUATORS_H */