80 lines
2.7 KiB
Plaintext
80 lines
2.7 KiB
Plaintext
// Filename: xFileArrayDef.I
|
|
// Created by: drose (03Oct04)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: XFileArrayDef::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE XFileArrayDef::
|
|
XFileArrayDef(int fixed_size) :
|
|
_fixed_size(fixed_size),
|
|
_dynamic_size(NULL)
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: XFileArrayDef::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE XFileArrayDef::
|
|
XFileArrayDef(XFileDataDef *dynamic_size) :
|
|
_fixed_size(0),
|
|
_dynamic_size(dynamic_size)
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: XFileArrayDef::is_fixed_size
|
|
// Access: Public
|
|
// Description: Returns true if this array definition specifies a
|
|
// const-size array, false if it is a dynamic-size
|
|
// array.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool XFileArrayDef::
|
|
is_fixed_size() const {
|
|
return (_dynamic_size == (XFileDataDef *)NULL);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: XFileArrayDef::get_fixed_size
|
|
// Access: Public
|
|
// Description: Returns the const size of the array, if
|
|
// is_fixed_size() returned true.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int XFileArrayDef::
|
|
get_fixed_size() const {
|
|
nassertr(is_fixed_size(), 0);
|
|
return _fixed_size;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: XFileArrayDef::get_dynamic_size
|
|
// Access: Public
|
|
// Description: Returns the data element that names the dynamic size
|
|
// of the array, if is_fixed_size() returned false.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE XFileDataDef *XFileArrayDef::
|
|
get_dynamic_size() const {
|
|
nassertr(!is_fixed_size(), NULL);
|
|
return _dynamic_size;
|
|
}
|
|
|