27#define MAX_SKELETOR_CHANNELS 2560
28#define MAX_CHANNEL_NAME 32
31 char name[MAX_CHANNEL_NAME];
39 short int m_iNumChannels;
40 ChannelName_t m_Channels[MAX_SKELETOR_CHANNELS];
41 short int m_lookup[MAX_SKELETOR_CHANNELS];
46 int RegisterChannel(
const char *name);
47 int FindNameLookup(
const char *name);
49 const char *FindName(
int index);
50 int NumChannels()
const;
53 const char *FindNameFromLookup(
int index);
54 bool FindIndexFromName(
const char *name,
int *indexPtr);
55 void SortIntoTable(
int index);
56 void CopyChannel(ChannelName_t *dest,
const ChannelName_t *source);
57 void SetChannelName(ChannelName_t *channel,
const char *newName);
60typedef enum channelType_e {
67channelType_t GetBoneChannelType(
const char* name);
72 short int m_iNumChannels;
73 ChannelName_t m_Channels[MAX_SKELETOR_CHANNELS];
74 short int m_lookup[MAX_SKELETOR_CHANNELS];
Definition skeletor_name_lists.h:30