18 TypeHandle FltLightSourceDefinition::_type_handle;
23 FltLightSourceDefinition::
26 _ambient.set(0.0, 0.0, 0.0, 1.0);
27 _diffuse.set(1.0, 1.0, 1.0, 1.0);
28 _specular.set(0.0, 0.0, 0.0, 1.0);
29 _light_type = LT_infinite;
30 _exponential_dropoff = 1.0;
31 _cutoff_angle = 180.0;
34 _constant_coefficient = 0.0;
35 _linear_coefficient = 0.0;
36 _quadratic_coefficient = 1.0;
37 _modeling_light =
false;
45 bool FltLightSourceDefinition::
47 if (!FltRecord::extract_record(reader)) {
51 nassertr(reader.
get_opcode() == FO_light_definition,
false);
54 _light_index = iterator.get_be_int32();
55 iterator.skip_bytes(2*4);
56 _light_name = iterator.get_fixed_string(20);
57 iterator.skip_bytes(4);
58 _ambient[0] = iterator.get_be_float32();
59 _ambient[1] = iterator.get_be_float32();
60 _ambient[2] = iterator.get_be_float32();
61 _ambient[3] = iterator.get_be_float32();
62 _diffuse[0] = iterator.get_be_float32();
63 _diffuse[1] = iterator.get_be_float32();
64 _diffuse[2] = iterator.get_be_float32();
65 _diffuse[3] = iterator.get_be_float32();
66 _specular[0] = iterator.get_be_float32();
67 _specular[1] = iterator.get_be_float32();
68 _specular[2] = iterator.get_be_float32();
69 _specular[3] = iterator.get_be_float32();
70 _light_type = (LightType)iterator.get_be_int32();
71 iterator.skip_bytes(4*10);
72 _exponential_dropoff = iterator.get_be_float32();
73 _cutoff_angle = iterator.get_be_float32();
74 _yaw = iterator.get_be_float32();
75 _pitch = iterator.get_be_float32();
76 _constant_coefficient = iterator.get_be_float32();
77 _linear_coefficient = iterator.get_be_float32();
78 _quadratic_coefficient = iterator.get_be_float32();
79 _modeling_light = (iterator.get_be_int32() != 0);
80 iterator.skip_bytes(4*19);
91 bool FltLightSourceDefinition::
93 if (!FltRecord::build_record(writer)) {
This class writes a sequence of FltRecords to an ostream, handling opcode and size counts properly.
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 check_remaining_size(const DatagramIterator &di, const std::string &name=std::string()) const
Checks that the iterator has no bytes left, as it should at the end of a successfully read record.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
DatagramIterator & get_iterator()
Returns an iterator suitable for extracting data from the current record.
void pad_bytes(size_t size)
Adds the indicated number of zero bytes to the datagram.
void add_be_float32(PN_float32 value)
Adds a 32-bit single-precision big-endian floating-point number to the datagram.
The base class for all kinds of records in a MultiGen OpenFlight file.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
FltOpcode get_opcode() const
Returns the opcode associated with the current record.
A class to retrieve the individual data elements previously stored in a Datagram.
void add_fixed_string(const std::string &str, size_t size)
Adds a fixed-length string to the datagram.
void add_be_int32(int32_t value)
Adds a signed 32-bit big-endian integer to the datagram.
TypeHandle is the identifier used to differentiate C++ class types.
void set_opcode(FltOpcode opcode)
Sets the opcode associated with the current record.
Datagram & update_datagram()
Returns a modifiable reference to the datagram associated with the current record.
An ordered list of data elements, formatted in memory for transmission over a socket or writing to a ...