// Filename: eggAnimData.h // Created by: drose (19Feb99) // //////////////////////////////////////////////////////////////////// // // PANDA 3D SOFTWARE // Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved // // All use of this software is subject to the terms of the Panda 3d // Software license. You should have received a copy of this license // along with this source code; you will also find a current copy of // the license at http://www.panda3d.org/license.txt . // // To contact the maintainers of this program write to // panda3d@yahoogroups.com . // //////////////////////////////////////////////////////////////////// #ifndef EGGANIMDATA_H #define EGGANIMDATA_H #include "pandabase.h" #include "eggNode.h" #include "pointerToArray.h" #include "pta_double.h" //////////////////////////////////////////////////////////////////// // Class : EggAnimData // Description : A base class for EggSAnimData and EggXfmAnimData, // which contain rows and columns of numbers. //////////////////////////////////////////////////////////////////// class EXPCL_PANDAEGG EggAnimData : public EggNode { PUBLISHED: INLINE EggAnimData(const string &name = ""); INLINE EggAnimData(const EggAnimData ©); INLINE EggAnimData &operator = (const EggAnimData ©); INLINE void set_fps(double type); INLINE void clear_fps(); INLINE bool has_fps() const; INLINE double get_fps() const; INLINE void clear_data(); INLINE void add_data(double value); INLINE int get_size() const; INLINE PTA_double get_data() const; INLINE void set_data(const PTA_double &data); protected: PTA_double _data; private: double _fps; bool _has_fps; public: static TypeHandle get_class_type() { return _type_handle; } static void init_type() { EggNode::init_type(); register_type(_type_handle, "EggAnimData", EggNode::get_class_type()); } virtual TypeHandle get_type() const { return get_class_type(); } virtual TypeHandle force_init_type() {init_type(); return get_class_type();} private: static TypeHandle _type_handle; }; #include "eggAnimData.I" #endif