Panda3D
fltLOD.h
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file fltLOD.h
10  * @author drose
11  * @date 2000-08-25
12  */
13 
14 #ifndef FLTLOD_H
15 #define FLTLOD_H
16 
17 #include "pandatoolbase.h"
18 
19 #include "fltBeadID.h"
20 
21 /**
22  * A Level-of-Detail record.
23  */
24 class FltLOD : public FltBeadID {
25 public:
26  FltLOD(FltHeader *header);
27 
28  enum Flags {
29  F_use_previous_slant = 0x80000000,
30  F_freeze_center = 0x20000000
31  };
32 
33  double _switch_in;
34  double _switch_out;
35  int _special_id1, _special_id2;
36  unsigned int _flags;
37  double _center_x;
38  double _center_y;
39  double _center_z;
40  double _transition_range;
41 
42 protected:
43  virtual bool extract_record(FltRecordReader &reader);
44  virtual bool build_record(FltRecordWriter &writer) const;
45 
46 public:
47  virtual TypeHandle get_type() const {
48  return get_class_type();
49  }
50  virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
51  static TypeHandle get_class_type() {
52  return _type_handle;
53  }
54  static void init_type() {
55  FltBeadID::init_type();
56  register_type(_type_handle, "FltLOD",
57  FltBeadID::get_class_type());
58  }
59 
60 private:
61  static TypeHandle _type_handle;
62 };
63 
64 #endif
This class writes a sequence of FltRecords to an ostream, handling opcode and size counts properly.
A base class for any of a broad family of flt beads that include an ID.
Definition: fltBeadID.h:24
This class turns an istream into a sequence of FltRecords by reading a sequence of Datagrams and extr...
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void register_type(TypeHandle &type_handle, const std::string &name)
This inline function is just a convenient way to call TypeRegistry::register_type(),...
Definition: register_type.I:22
This is the first bead in the file, the top of the bead hierarchy, and the primary interface to readi...
Definition: fltHeader.h:44
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
TypeHandle is the identifier used to differentiate C++ class types.
Definition: typeHandle.h:81
A Level-of-Detail record.
Definition: fltLOD.h:24