mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
88 lines
2.6 KiB
Plaintext
88 lines
2.6 KiB
Plaintext
// Filename: hashVal.I
|
|
// Created by: drose (14Nov00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001, 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://www.panda3d.org/license.txt .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d@yahoogroups.com .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: HashVal::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE HashVal::
|
|
HashVal(void) {
|
|
hv[0] = hv[1] = hv[2] = hv[3] = 0;
|
|
_bUseBrackets = true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: HashVal::operator ==
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool HashVal::
|
|
operator == (const HashVal &other) const {
|
|
return (hv[0] == other.hv[0] &&
|
|
hv[1] == other.hv[1] &&
|
|
hv[2] == other.hv[2] &&
|
|
hv[3] == other.hv[3]);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: HashVal::get_value
|
|
// Access: Public
|
|
// Description: Returns the integer value of the indicated component.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE uint HashVal::
|
|
get_value(int val) const {
|
|
nassertr(val >= 0 && val < 4, 0);
|
|
return hv[val];
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: HashVal::set_value
|
|
// Access: Public
|
|
// Description: Sets the hash value at index val
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void HashVal::
|
|
set_value(int val, uint hashval) {
|
|
nassertv(val >= 0 && val < 4);
|
|
hv[val] = hashval;
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: HashVal::output
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void HashVal::
|
|
output(ostream &out) const {
|
|
if(_bUseBrackets)
|
|
out << "[";
|
|
out << hv[0] << " " << hv[1] << " " << hv[2] << " " << hv[3];
|
|
if(_bUseBrackets)
|
|
out << "]";
|
|
}
|
|
|
|
INLINE void HashVal::
|
|
set_output_brackets(bool bUseBrackets) {
|
|
_bUseBrackets = bUseBrackets;
|
|
}
|
|
|
|
|