mirror of
https://github.com/panda3d/panda3d.git
synced 2026-04-23 23:19:19 -05:00
58 lines
1.5 KiB
C++
58 lines
1.5 KiB
C++
// Filename: pStatCollectorDef.h
|
|
// Created by: drose (09Jul00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef PSTATCOLLECTORDEF_H
|
|
#define PSTATCOLLECTORDEF_H
|
|
|
|
#include "pandabase.h"
|
|
#include "numeric_types.h"
|
|
|
|
class Datagram;
|
|
class DatagramIterator;
|
|
class PStatClient;
|
|
class PStatClientVersion;
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : PStatCollectorDef
|
|
// Description : Defines the details about the Collectors: the name,
|
|
// the suggested color, etc.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA_PSTATCLIENT PStatCollectorDef {
|
|
public:
|
|
PStatCollectorDef();
|
|
PStatCollectorDef(int index, const string &name);
|
|
void set_parent(const PStatCollectorDef &parent);
|
|
|
|
void write_datagram(Datagram &destination) const;
|
|
void read_datagram(DatagramIterator &source, PStatClientVersion *version);
|
|
|
|
struct ColorDef {
|
|
float r, g, b;
|
|
};
|
|
|
|
int _index;
|
|
string _name;
|
|
int _parent_index;
|
|
ColorDef _suggested_color;
|
|
int _sort;
|
|
string _level_units;
|
|
double _suggested_scale;
|
|
double _factor;
|
|
bool _is_active;
|
|
bool _active_explicitly_set;
|
|
};
|
|
|
|
#endif
|
|
|