Within each animob there may be one or more animcomp sequences. the headcomp of the animob points to the first animcomp in the list of sequences. Each sequence is identified by its "active" animcomp. there can only be one active AnimComp in each sequence. The sequences are linked together by their active AnimComps; for each of these the nextcomp and prevcomp fields link the sequences together to create a list. The first sequence in the list (headcomp of the animob), has its prevcomp set to null. the last sequence in the list has its NextComp set to NULL. None of the inactive AnimComps should have NextComp or PrevComp fields set. To find the active animcomp at run time, you can look in the animob's headcomp field. to find the active animcomp from any another animcomp, use the headob field to find the controlling animob first and then look in its HeadComp field to find the active AnimComp. The figure below shows all the linkages in data structures needed to create the animation GELs. ___________________ | | | Next AnimOb | |___________________| | | | Previous AnimOb | Non-Current |___________________| Original ----------- | | -------- Additional views | \\\\\\\\\\\\\\\\\ | (first view) of each component, | \\\\\\\\\\\\\\\\\ | of an AnimOb waiting to be used. |___________________| ___________________ _ _ _ _ _ _ _ _ _ _ | |----| | | | | HeadComp | _\| Next AnimComp |__ | Next AnimComp | |___________________| | /|___________________| | |_ _ _ _ _ _ _ _ _ _| | | | | | | | | Previous AnimComp | | | Previous AnimComp | | |___________________| | |_ _ _ _ _ _ _ _ _ _| | | | | | | | | Sequence Linkage |--|-| Sequence linkage |-- | |___________________| | |_ _ _ _ _ _ _ _ _ _| | | | | | | | | \\\\\\\\\\\\\\\\\ | | | \\\\\\\\\\\\\\\\\ | | |___________________| | |_ _ _ _ _ _ _ _ _ _| | | | | | ___________________ | _ _ _ _ _ _ _ _ _ _ | | |/_| | | _|_\| Next AnimComp |\ | Next AnimComp | | | /|___________________|--. |_ _ _ _ _ _ _ _ _ _| | | | | | | | | |__| Previous AnimComp | | | Previous AnimComp | | |___________________| | |_ _ _ _ _ _ _ _ _ _| | | | | | | | | Sequence Linkage |--|-| Sequence linkage |-- | |___________________| | |_ _ _ _ _ _ _ _ _ _| | | | | | | | | \\\\\\\\\\\\\\\\\ | | | \\\\\\\\\\\\\\\\\ | | |___________________| | |_ _ _ _ _ _ _ _ _ _| | | | | | ___________________ | _ _ _ _ _ _ _ _ _ _ | | |/_| | | | | Next AnimComp |\ | Next AnimComp | | |___________________| |_ _ _ _ _ _ _ _ _ _| | | | | | |____| Previous AnimComp | | Previous AnimComp | |___________________| |_ _ _ _ _ _ _ _ _ _| | | | | | Sequence Linkage |----| Sequence linkage |-- |___________________| |_ _ _ _ _ _ _ _ _ _| | | | | | \\\\\\\\\\\\\\\\\ | | \\\\\\\\\\\\\\\\\ | |___________________| |_ _ _ _ _ _ _ _ _ _| Figure 28-6: Linking of an AnimOb