panda3d/panda/src/pgraph/modelRoot.h
2015-12-24 16:17:34 +01:00

99 lines
2.9 KiB
C++

// Filename: modelRoot.h
// Created by: drose (16Mar02)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) Carnegie Mellon University. All rights reserved.
//
// All use of this software is subject to the terms of the revised BSD
// license. You should have received a copy of this license along
// with this source code in a file named "LICENSE."
//
////////////////////////////////////////////////////////////////////
#ifndef MODELROOT_H
#define MODELROOT_H
#include "pandabase.h"
#include "referenceCount.h"
#include "modelNode.h"
////////////////////////////////////////////////////////////////////
// Class : ModelRoot
// Description : A node of this type is created automatically at the
// root of each model file that is loaded. It may
// eventually contain some information about the
// contents of the model; at the moment, it contains no
// special information, but can be used as a flag to
// indicate the presence of a loaded model file.
////////////////////////////////////////////////////////////////////
class EXPCL_PANDA_PGRAPH ModelRoot : public ModelNode {
PUBLISHED:
INLINE ModelRoot(const string &name);
INLINE ModelRoot(const Filename &fullpath, time_t timestamp);
INLINE int get_model_ref_count() const;
MAKE_PROPERTY(model_ref_count, get_model_ref_count);
INLINE const Filename &get_fullpath() const;
INLINE void set_fullpath(const Filename &fullpath);
MAKE_PROPERTY(fullpath, get_fullpath, set_fullpath);
INLINE time_t get_timestamp() const;
INLINE void set_timestamp(time_t timestamp);
MAKE_PROPERTY(timestamp, get_timestamp, set_timestamp);
// This class is used to unify references to the same model.
class ModelReference : public ReferenceCount {
PUBLISHED:
INLINE ModelReference();
};
INLINE ModelReference *get_reference() const;
void set_reference(ModelReference *ref);
MAKE_PROPERTY(reference, get_reference, set_reference);
protected:
INLINE ModelRoot(const ModelRoot &copy);
public:
virtual PandaNode *make_copy() const;
private:
Filename _fullpath;
time_t _timestamp;
PT(ModelReference) _reference;
public:
static void register_with_read_factory();
virtual void write_datagram(BamWriter *manager, Datagram &dg);
protected:
static TypedWritable *make_from_bam(const FactoryParams &params);
void fillin(DatagramIterator &scan, BamReader *manager);
public:
static TypeHandle get_class_type() {
return _type_handle;
}
static void init_type() {
ModelNode::init_type();
register_type(_type_handle, "ModelRoot",
ModelNode::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 "modelRoot.I"
#endif