Files
panda3d/panda/src/pstatclient/pStatCollectorDef.h
T
2011-10-27 18:39:27 +00:00

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