52 return (
int)_anims.
size();
66 record._basename = basename;
67 Anims::const_iterator ai = _anims.find(record);
68 if (ai != _anims.
end()) {
69 return int(ai - _anims.
begin());
89 nassertv(n >= 0 && n < (
int)_anims.
size());
90 _anims.erase(_anims.
begin() + n);
99 add_anim(
const std::string &basename, PN_stdfloat base_frame_rate,
int num_frames) {
101 record._basename = basename;
102 record._base_frame_rate = base_frame_rate;
103 record._num_frames = num_frames;
116 Anims::const_iterator ai;
117 for (ai = other->_anims.
begin(); ai != other->_anims.
end(); ++ai) {
126 void AnimPreloadTable::
127 output(std::ostream &out)
const {
129 out <<
"AnimPreloadTable, " << _anims.
size() <<
" animation records.";
135 void AnimPreloadTable::
136 write(std::ostream &out,
int indent_level)
const {
139 <<
"AnimPreloadTable, " << _anims.
size() <<
" animation records:\n";
140 Anims::const_iterator ai;
141 for (ai = _anims.
begin(); ai != _anims.
end(); ++ai) {
142 const AnimRecord &record = (*ai);
143 indent(out, indent_level + 2)
144 << record._basename <<
": " << record._num_frames <<
" frames at " 145 << record._base_frame_rate <<
" fps\n";
166 Anims::const_iterator ai;
167 for (ai = _anims.
begin(); ai != _anims.
end(); ++ai) {
185 me->fillin(scan, manager);
194 void AnimPreloadTable::
198 for (
int i = 0; i < num_anims; ++i) {
static TypedWritable * make_from_bam(const FactoryParams ¶ms)
Factory method to generate an AnimPreloadTable object.
This table records data about a list of animations for a particular model, such as number of frames a...
PN_stdfloat get_stdfloat()
Extracts either a 32-bit or a 64-bit floating-point number, according to Datagram::set_stdfloat_doubl...
This is the fundamental interface for extracting binary objects from a Bam file, as generated by a Ba...
size_type_0 size() const
Returns the number of elements in the ordered vector.
void clear()
Removes all elements from the ordered vector.
Base class for objects that can be written to and read from Bam files.
iterator_0 begin()
Returns the iterator that marks the first element in the ordered vector.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
This is the fundamental interface for writing binary objects to a Bam file, to be extracted later by ...
iterator_0 end()
Returns the iterator that marks the end of the ordered vector.
int32_t get_int32()
Extracts a signed 32-bit integer.
void reserve(size_type_0 n)
Informs the vector of a planned change in size; ensures that the capacity of the vector is greater th...
std::string get_string()
Extracts a variable-length string.
void add_stdfloat(PN_stdfloat value)
Adds either a 32-bit or a 64-bit floating-point number, according to set_stdfloat_double().
void parse_params(const FactoryParams ¶ms, DatagramIterator &scan, BamReader *&manager)
Takes in a FactoryParams, passed from a WritableFactory into any TypedWritable's make function,...
void add_uint16(uint16_t value)
Adds an unsigned 16-bit integer to the datagram.
PT(CopyOnWriteObject) AnimPreloadTable
Required to implement CopyOnWriteObject.
std::ostream & indent(std::ostream &out, int indent_level)
A handy function for doing text formatting.
void add_anims_from(const AnimPreloadTable *other)
Copies the animation records from the other table into this one.
void add_string(const std::string &str)
Adds a variable-length string to the datagram.
An instance of this class is passed to the Factory when requesting it to do its business and construc...
virtual void write_datagram(BamWriter *manager, Datagram &dg)
Function to write the important information in the particular object to a Datagram.
void add_anim(const std::string &basename, PN_stdfloat base_frame_rate, int num_frames)
Adds a new animation record to the table.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void register_factory(TypeHandle handle, CreateFunc *func, void *user_data=nullptr)
Registers a new kind of thing the Factory will be able to create.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void push_back(const value_type_0 &key)
Adds the new element to the end of the vector without regard for proper sorting.
This base class provides basic reference counting, but also can be used with a CopyOnWritePointer to ...
void add_int32(int32_t value)
Adds a signed 32-bit integer to the datagram.
uint16_t get_uint16()
Extracts an unsigned 16-bit integer.
static WritableFactory * get_factory()
Returns the global WritableFactory for generating TypedWritable objects.
void remove_anim(int n)
Removes the nth animation records from the table.
int find_anim(const std::string &basename) const
Returns the index number in the table of the animation record with the indicated name,...
int get_num_anims() const
Returns the number of animation records in the table.
void clear_anims()
Removes all animation records from the table.
A class to retrieve the individual data elements previously stored in a Datagram.
TypeHandle is the identifier used to differentiate C++ class types.
An ordered list of data elements, formatted in memory for transmission over a socket or writing to a ...
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
static void register_with_read_factory()
Factory method to generate an AnimPreloadTable object.