93 lines
2.5 KiB
C++
93 lines
2.5 KiB
C++
// Filename: eggAttributes.h
|
|
// Created by: drose (16Jan99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, 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://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef EGGATTRIBUTES_H
|
|
#define EGGATTRIBUTES_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "eggMorphList.h"
|
|
|
|
#include "typedObject.h"
|
|
#include "luse.h"
|
|
#include "notify.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : EggAttributes
|
|
// Description : The set of attributes that may be applied to vertices
|
|
// as well as polygons, such as surface normal and
|
|
// color.
|
|
//
|
|
// This class cannot inherit from EggObject, because it
|
|
// causes problems at the EggPolygon level with multiple
|
|
// appearances of the EggObject base class. And making
|
|
// EggObject a virtual base class is just no fun.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDAEGG EggAttributes {
|
|
PUBLISHED:
|
|
EggAttributes();
|
|
EggAttributes(const EggAttributes ©);
|
|
EggAttributes &operator = (const EggAttributes ©);
|
|
virtual ~EggAttributes();
|
|
|
|
INLINE bool has_normal() const;
|
|
INLINE const Normald &get_normal() const;
|
|
INLINE void set_normal(const Normald &normal);
|
|
INLINE void clear_normal();
|
|
|
|
INLINE bool has_color() const;
|
|
INLINE Colorf get_color() const;
|
|
INLINE void set_color(const Colorf &Color);
|
|
INLINE void clear_color();
|
|
|
|
void write(ostream &out, int indent_level) const;
|
|
bool sorts_less_than(const EggAttributes &other) const;
|
|
|
|
void transform(const LMatrix4d &mat);
|
|
|
|
EggMorphNormalList _dnormals;
|
|
EggMorphColorList _drgbas;
|
|
|
|
private:
|
|
enum Flags {
|
|
F_has_normal = 0x001,
|
|
F_has_color = 0x002,
|
|
};
|
|
|
|
int _flags;
|
|
Normald _normal;
|
|
Colorf _color;
|
|
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
register_type(_type_handle, "EggAttributes");
|
|
}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#include "eggAttributes.I"
|
|
|
|
#endif
|
|
|