open_toontown_panda3d/pandatool/src/pstatserver/pStatStripChart.I

215 lines
8.2 KiB
Plaintext

// Filename: pStatStripChart.I
// Created by: drose (15Jul00)
//
////////////////////////////////////////////////////////////////////
//
// 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: PStatStripChart::get_view
// Access: Public
// Description: Returns the View this chart represents.
////////////////////////////////////////////////////////////////////
INLINE PStatView &PStatStripChart::
get_view() const {
return _view;
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::get_collector_index
// Access: Public
// Description: Returns the particular collector whose data this
// strip chart reflects.
////////////////////////////////////////////////////////////////////
INLINE int PStatStripChart::
get_collector_index() const {
return _collector_index;
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::set_horizontal_scale
// Access: Public
// Description: Changes the amount of time the width of the
// horizontal axis represents. This may force a redraw.
////////////////////////////////////////////////////////////////////
INLINE void PStatStripChart::
set_horizontal_scale(float time_width) {
if (_time_width != time_width) {
if (_scroll_mode) {
_start_time += _time_width - time_width;
} else {
force_reset();
}
_time_width = time_width;
}
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::get_horizontal_scale
// Access: Public
// Description: Returns the amount of total time the width of the
// horizontal axis represents.
////////////////////////////////////////////////////////////////////
INLINE float PStatStripChart::
get_horizontal_scale() const {
return _time_width;
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::set_vertical_scale
// Access: Public
// Description: Changes the value the height of the vertical axis
// represents. This may force a redraw.
////////////////////////////////////////////////////////////////////
INLINE void PStatStripChart::
set_vertical_scale(float value_height) {
if (_value_height != value_height) {
_value_height = value_height;
normal_guide_bars();
force_redraw();
}
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::get_vertical_scale
// Access: Public
// Description: Returns total value the height of the vertical axis
// represents.
////////////////////////////////////////////////////////////////////
INLINE float PStatStripChart::
get_vertical_scale() const {
return _value_height;
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::set_scroll_mode
// Access: Public
// Description: Changes the scroll_mode flag. When true, the strip
// chart will update itself by scrolling to the left;
// when false, the strip chart will wrap around at the
// right and restart at the left end without scrolling.
////////////////////////////////////////////////////////////////////
INLINE void PStatStripChart::
set_scroll_mode(bool scroll_mode) {
if (_scroll_mode != scroll_mode) {
_scroll_mode = scroll_mode;
_first_data = true;
}
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::get_scroll_mode
// Access: Public
// Description: Returns the current state of the scroll_mode flag.
// When true, the strip chart will update itself by
// scrolling to the left; when false, the strip chart
// will wrap around at the right and restart at the left
// end without scrolling.
////////////////////////////////////////////////////////////////////
INLINE bool PStatStripChart::
get_scroll_mode() const {
return _scroll_mode;
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::set_average_mode
// Access: Public
// Description: Changes the average_mode flag. When true, the strip
// chart will average out the color values over
// pstats_average_time seconds, which hides spikes and
// makes the overall trends easier to read. When false,
// the strip chart shows the actual data as it is
// happening.
////////////////////////////////////////////////////////////////////
INLINE void PStatStripChart::
set_average_mode(bool average_mode) {
if (_average_mode != average_mode) {
_average_mode = average_mode;
force_redraw();
}
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::get_average_mode
// Access: Public
// Description: Returns the current state of the average_mode flag.
// When true, the strip chart will average out the color
// values over pstats_average_time seconds, which hides
// spikes and makes the overall trends easier to read.
// When false, the strip chart shows the actual data as
// it is happening.
////////////////////////////////////////////////////////////////////
INLINE bool PStatStripChart::
get_average_mode() const {
return _average_mode;
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::timestamp_to_pixel
// Access: Public
// Description: Converts a timestamp to a horizontal pixel offset.
////////////////////////////////////////////////////////////////////
INLINE int PStatStripChart::
timestamp_to_pixel(float time) const {
return (int)((float)get_xsize() * (time - _start_time) / _time_width);
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::pixel_to_timestamp
// Access: Public
// Description: Converts a horizontal pixel offset to a timestamp.
////////////////////////////////////////////////////////////////////
INLINE float PStatStripChart::
pixel_to_timestamp(int x) const {
return _time_width * (float)x / (float)get_xsize() + _start_time;
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::height_to_pixel
// Access: Public
// Description: Converts a value (i.e. a "height" in the strip chart)
// to a vertical pixel offset.
////////////////////////////////////////////////////////////////////
INLINE int PStatStripChart::
height_to_pixel(float value) const {
return get_ysize() - (int)((float)get_ysize() * value / _value_height);
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::pixel_to_height
// Access: Public
// Description: Converts a vertical pixel offset to a value (a
// "height" in the strip chart).
////////////////////////////////////////////////////////////////////
INLINE float PStatStripChart::
pixel_to_height(int x) const {
return _value_height * (float)(get_ysize() - x) / (float)get_ysize();
}
////////////////////////////////////////////////////////////////////
// Function: PStatStripChart::is_label_used
// Access: Protected
// Description: Returns true if the indicated collector appears
// anywhere on the chart at the current time, false
// otherwise.
////////////////////////////////////////////////////////////////////
INLINE bool PStatStripChart::
is_label_used(int collector_index) const {
if (collector_index < (int)_label_usage.size()) {
return _label_usage[collector_index] > 0;
}
return false;
}