72 lines
2.7 KiB
Plaintext
72 lines
2.7 KiB
Plaintext
// Filename: pStatView.I
|
|
// Created by: drose (12Jul00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// 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(double time) {
|
|
set_to_frame(_thread_data->get_frame_at_time(time));
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// 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;
|
|
}
|