96 lines
3.6 KiB
Plaintext
96 lines
3.6 KiB
Plaintext
// Filename: pStatView.I
|
|
// Created by: drose (12Jul00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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: PStatView::get_thread_data
|
|
// Access: Public
|
|
// Description: Returns the current PStatThreadData associated with
|
|
// the view. This was set by a previous call to
|
|
// set_thread_data().
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE const PStatThreadData *PStatView::
|
|
get_thread_data() {
|
|
return _thread_data;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: PStatView::get_client_data
|
|
// Access: Public
|
|
// Description: Returns the current PStatClientData associated with
|
|
// the view. This was also set by a previous call to
|
|
// set_thread_data().
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE const PStatClientData *PStatView::
|
|
get_client_data() {
|
|
return _client_data;
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: PStatView::set_to_frame
|
|
// Access: Public
|
|
// Description: Sets to a particular frame number (or the nearest
|
|
// available), extracted from the View's PStatThreadData
|
|
// pointer. See the comments in the other flavor of
|
|
// set_to_frame().
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void PStatView::
|
|
set_to_frame(int frame_number) {
|
|
set_to_frame(_thread_data->get_frame(frame_number));
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: PStatView::set_to_time
|
|
// Access: Public
|
|
// Description: Sets to the frame that occurred at the indicated time
|
|
// (or the nearest available frame), extracted from the
|
|
// View's PStatThreadData pointer. See the comments in
|
|
// set_to_frame.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void PStatView::
|
|
set_to_time(float time) {
|
|
set_to_frame(_thread_data->get_frame_at_time(time));
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: PStatView::get_show_level
|
|
// Access: Public
|
|
// Description: Returns true if we are showing level data, false if
|
|
// time data.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE bool PStatView::
|
|
get_show_level() const {
|
|
return _show_level;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: PStatView::get_level_index
|
|
// Access: Public
|
|
// Description: Returns an index number that can be used to determine
|
|
// when the set of known levels has changed. Each time
|
|
// the set of levels in the view changes (because of new
|
|
// data arriving from the client, for instance), this
|
|
// number is incremented.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int PStatView::
|
|
get_level_index() const {
|
|
return _level_index;
|
|
}
|