143 lines
4.9 KiB
C++
143 lines
4.9 KiB
C++
// Filename: transformBlend.h
|
|
// Created by: drose (24Mar05)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 TRANSFORMBLEND_H
|
|
#define TRANSFORMBLEND_H
|
|
|
|
#include "pandabase.h"
|
|
#include "vertexTransform.h"
|
|
#include "pointerTo.h"
|
|
#include "pvector.h"
|
|
#include "ordered_vector.h"
|
|
#include "cycleData.h"
|
|
#include "cycleDataLockedReader.h"
|
|
#include "cycleDataReader.h"
|
|
#include "cycleDataWriter.h"
|
|
#include "pipelineCycler.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : TransformBlend
|
|
// Description : This defines a single entry in a
|
|
// TransformBlendTable. It represents a unique
|
|
// combination of VertexTransform pointers and blend
|
|
// amounts.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA_GOBJ TransformBlend {
|
|
PUBLISHED:
|
|
INLINE TransformBlend();
|
|
INLINE TransformBlend(const VertexTransform *transform0, float weight0);
|
|
INLINE TransformBlend(const VertexTransform *transform0, float weight0,
|
|
const VertexTransform *transform1, float weight1);
|
|
INLINE TransformBlend(const VertexTransform *transform0, float weight0,
|
|
const VertexTransform *transform1, float weight1,
|
|
const VertexTransform *transform2, float weight2);
|
|
INLINE TransformBlend(const VertexTransform *transform0, float weight0,
|
|
const VertexTransform *transform1, float weight1,
|
|
const VertexTransform *transform2, float weight2,
|
|
const VertexTransform *transform3, float weight3);
|
|
INLINE TransformBlend(const TransformBlend ©);
|
|
INLINE void operator = (const TransformBlend ©);
|
|
INLINE ~TransformBlend();
|
|
|
|
int compare_to(const TransformBlend &other) const;
|
|
INLINE bool operator < (const TransformBlend &other) const;
|
|
INLINE bool operator == (const TransformBlend &other) const;
|
|
INLINE bool operator != (const TransformBlend &other) const;
|
|
|
|
void add_transform(const VertexTransform *transform, float weight);
|
|
void remove_transform(const VertexTransform *transform);
|
|
void normalize_weights();
|
|
bool has_transform(const VertexTransform *transform) const;
|
|
float get_weight(const VertexTransform *transform) const;
|
|
|
|
INLINE int get_num_transforms() const;
|
|
INLINE const VertexTransform *get_transform(int n) const;
|
|
MAKE_SEQ(get_transforms, get_num_transforms, get_transform);
|
|
INLINE float get_weight(int n) const;
|
|
INLINE void set_transform(int n, const VertexTransform *transform);
|
|
INLINE void set_weight(int n, float weight);
|
|
|
|
INLINE void update_blend(Thread *current_thread) const;
|
|
|
|
INLINE void get_blend(LMatrix4f &result, Thread *current_thread) const;
|
|
INLINE void transform_point(LPoint4f &point, Thread *current_thread) const;
|
|
INLINE void transform_point(LPoint3f &point, Thread *current_thread) const;
|
|
INLINE void transform_vector(LVector3f &point, Thread *current_thread) const;
|
|
INLINE UpdateSeq get_modified(Thread *current_thread) const;
|
|
|
|
void output(ostream &out) const;
|
|
void write(ostream &out, int indent_level) const;
|
|
|
|
private:
|
|
class CData;
|
|
|
|
void recompute_result(CData *cdata, Thread *current_thread);
|
|
void clear_result(Thread *current_thread);
|
|
|
|
class TransformEntry {
|
|
public:
|
|
INLINE bool operator < (const TransformEntry &other) const;
|
|
|
|
CPT(VertexTransform) _transform;
|
|
float _weight;
|
|
};
|
|
typedef ov_set<TransformEntry> Entries;
|
|
Entries _entries;
|
|
|
|
// This is the data that must be cycled between pipeline stages; it
|
|
// is just a local cache.
|
|
class EXPCL_PANDA_GOBJ CData : public CycleData {
|
|
public:
|
|
INLINE CData();
|
|
INLINE CData(const CData ©);
|
|
virtual CycleData *make_copy() const;
|
|
virtual TypeHandle get_parent_type() const {
|
|
return TransformBlend::get_class_type();
|
|
}
|
|
|
|
LMatrix4f _result;
|
|
UpdateSeq _modified;
|
|
UpdateSeq _global_modified;
|
|
};
|
|
|
|
PipelineCycler<CData> _cycler;
|
|
typedef CycleDataLockedReader<CData> CDLockedReader;
|
|
typedef CycleDataReader<CData> CDReader;
|
|
typedef CycleDataWriter<CData> CDWriter;
|
|
|
|
public:
|
|
void write_datagram(BamWriter *manager, Datagram &dg) const;
|
|
int complete_pointers(TypedWritable **plist, BamReader *manager);
|
|
void fillin(DatagramIterator &scan, BamReader *manager);
|
|
|
|
friend class VertexTransform;
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
register_type(_type_handle, "TransformBlend");
|
|
}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
INLINE ostream &operator << (ostream &out, const TransformBlend &obj);
|
|
|
|
#include "transformBlend.I"
|
|
|
|
#endif
|