72 lines
1.9 KiB
C++
72 lines
1.9 KiB
C++
// Filename: trackerData.h
|
|
// Created by: jason (04Aug00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef TRACKERDATA_H
|
|
#define TRACKERDATA_H
|
|
|
|
#include "pandabase.h"
|
|
#include "luse.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : TrackerData
|
|
// Description : Stores the kinds of data that a tracker might output.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA TrackerData {
|
|
public:
|
|
INLINE TrackerData();
|
|
INLINE TrackerData(const TrackerData ©);
|
|
void operator = (const TrackerData ©);
|
|
|
|
INLINE void clear();
|
|
|
|
INLINE void set_time(double time);
|
|
INLINE bool has_time() const;
|
|
INLINE double get_time() const;
|
|
|
|
INLINE void set_pos(const LPoint3f &pos);
|
|
INLINE bool has_pos() const;
|
|
INLINE const LPoint3f &get_pos() const;
|
|
|
|
INLINE void set_orient(const LOrientationf &orient);
|
|
INLINE bool has_orient() const;
|
|
INLINE const LOrientationf &get_orient() const;
|
|
|
|
INLINE void set_dt(double dt);
|
|
INLINE bool has_dt() const;
|
|
INLINE double get_dt() const;
|
|
|
|
private:
|
|
enum Flags {
|
|
F_has_time = 0x0001,
|
|
F_has_pos = 0x0002,
|
|
F_has_orient = 0x0004,
|
|
F_has_dt = 0x0008,
|
|
};
|
|
|
|
int _flags;
|
|
|
|
double _time;
|
|
LPoint3f _pos;
|
|
LOrientationf _orient;
|
|
double _dt;
|
|
};
|
|
|
|
#include "trackerData.I"
|
|
|
|
#endif
|