Panda3D
interrogateMakeSeq.cxx
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 interrogateMakeSeq.cxx
10  * @author drose
11  * @date 2009-09-15
12  */
13 
14 #include "interrogateMakeSeq.h"
15 #include "indexRemapper.h"
16 #include "interrogate_datafile.h"
17 
18 /**
19  * Formats the InterrogateMakeSeq data for output to a data file.
20  */
22 output(std::ostream &out) const {
24  out << _length_getter << " "
25  << _element_getter << " ";
26  idf_output_string(out, _scoped_name);
27  idf_output_string(out, _comment, '\n');
28 }
29 
30 /**
31  * Reads the data file as previously formatted by output().
32  */
34 input(std::istream &in) {
36 
37  in >> _length_getter >> _element_getter;
38  idf_input_string(in, _scoped_name);
39  idf_input_string(in, _comment);
40 }
41 
42 /**
43  * Remaps all internal index numbers according to the indicated map. This
44  * called from InterrogateDatabase::remap_indices().
45  */
48  _length_getter = remap.map_from(_length_getter);
49  _element_getter = remap.map_from(_element_getter);
50 }
This class manages a mapping of integers to integers.
Definition: indexRemapper.h:29
void idf_output_string(ostream &out, const string &str, char whitespace)
Writes the indicated string to the output file.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void idf_input_string(istream &in, string &str)
Reads the given string from the input file, as previously written by output_string().
void output(std::ostream &out) const
Formats the component for output to a data file.
void output(std::ostream &out) const
Formats the InterrogateMakeSeq data for output to a data file.
void remap_indices(const IndexRemapper &remap)
Remaps all internal index numbers according to the indicated map.
void input(std::istream &in)
Reads the data file as previously formatted by output().
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void input(std::istream &in)
Reads the data file as previously formatted by output().
int map_from(int from) const
Returns the integer that the given 'from' integer had been set to map to, or the same integer if noth...