2008-03-13 23:21:34 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2004 Robert Osfield
|
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSGSIM_OBJECTRECORDDATA
|
|
|
|
#define OSGSIM_OBJECTRECORDDATA 1
|
|
|
|
|
|
|
|
#include <osg/Object>
|
|
|
|
|
|
|
|
#include <ostream>
|
|
|
|
|
|
|
|
namespace osgSim {
|
|
|
|
|
|
|
|
/** When the OpenFlight importer encounters an Object record, it stores
|
|
|
|
the data in one of these classes, and attaches the instance of the
|
|
|
|
class as UserData to the corresponding osgLLGroup node.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class ObjectRecordData : public osg::Object
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
ObjectRecordData()
|
|
|
|
: _flags( 0 ),
|
|
|
|
_relativePriority( 0 ),
|
|
|
|
_transparency( 0 ),
|
|
|
|
_effectID1( 0 ),
|
|
|
|
_effectID2( 0 ),
|
|
|
|
|
|
|
|
_significance( 0 )
|
|
|
|
{}
|
2009-01-07 18:32:59 +08:00
|
|
|
|
|
|
|
ObjectRecordData( const ObjectRecordData& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY ):
|
|
|
|
osg::Object(copy, copyop)
|
2008-03-13 23:21:34 +08:00
|
|
|
{
|
|
|
|
_flags = copy._flags;
|
|
|
|
_relativePriority = copy._relativePriority;
|
|
|
|
_transparency = copy._transparency;
|
|
|
|
_effectID1 = copy._effectID1;
|
|
|
|
_effectID2 = copy._effectID2;
|
|
|
|
_significance = copy._significance;
|
|
|
|
}
|
|
|
|
|
|
|
|
META_Object( osgSim, ObjectRecordData );
|
|
|
|
|
2008-03-14 20:03:11 +08:00
|
|
|
enum Flags
|
|
|
|
{
|
|
|
|
DONT_DISPLAY_IN_DAYLIGHT = 0x80000000u >> 0,
|
|
|
|
DONT_DISPLAY_AT_DUSK = 0x80000000u >> 1,
|
|
|
|
DONT_DISPLAY_AT_NIGHT = 0x80000000u >> 2,
|
|
|
|
DONT_ILLUMINATE = 0x80000000u >> 3,
|
|
|
|
FLAT_SHADED = 0x80000000u >> 4,
|
|
|
|
GROUPS_SHADOW_OBJECT = 0x80000000u >> 5
|
|
|
|
};
|
2008-03-13 23:21:34 +08:00
|
|
|
|
|
|
|
unsigned int _flags;
|
|
|
|
short _relativePriority;
|
|
|
|
unsigned short _transparency; // 0=opaque, 65535=totally clear
|
|
|
|
short _effectID1;
|
|
|
|
short _effectID2;
|
|
|
|
short _significance;
|
|
|
|
|
|
|
|
}; // end of class ObjectRecordData
|
|
|
|
|
|
|
|
} // end of namespace osgSim
|
|
|
|
|
|
|
|
#endif
|