100 lines
3.4 KiB
C++
100 lines
3.4 KiB
C++
// Filename: interrogateFunction.cxx
|
|
// Created by: drose (01Aug00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "interrogateFunction.h"
|
|
#include "indexRemapper.h"
|
|
#include "interrogate_datafile.h"
|
|
#include "interrogateDatabase.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: InterrogateFunction::Copy Assignment Operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
void InterrogateFunction::
|
|
operator = (const InterrogateFunction ©) {
|
|
InterrogateComponent::operator = (copy);
|
|
_flags = copy._flags;
|
|
_scoped_name = copy._scoped_name;
|
|
_comment = copy._comment;
|
|
_prototype = copy._prototype;
|
|
_class = copy._class;
|
|
_c_wrappers = copy._c_wrappers;
|
|
_python_wrappers = copy._python_wrappers;
|
|
|
|
_instances = copy._instances;
|
|
_expression = copy._expression;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: InterrogateFunction::output
|
|
// Access: Public
|
|
// Description: Formats the InterrogateFunction data for output to a data
|
|
// file.
|
|
////////////////////////////////////////////////////////////////////
|
|
void InterrogateFunction::
|
|
output(ostream &out) const {
|
|
InterrogateComponent::output(out);
|
|
out << _flags << " "
|
|
<< _class << " ";
|
|
idf_output_string(out, _scoped_name);
|
|
idf_output_vector(out, _c_wrappers);
|
|
idf_output_vector(out, _python_wrappers);
|
|
idf_output_string(out, _comment, '\n');
|
|
idf_output_string(out, _prototype, '\n');
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: InterrogateFunction::input
|
|
// Access: Public
|
|
// Description: Reads the data file as previously formatted by
|
|
// output().
|
|
////////////////////////////////////////////////////////////////////
|
|
void InterrogateFunction::
|
|
input(istream &in) {
|
|
InterrogateComponent::input(in);
|
|
in >> _flags >> _class;
|
|
idf_input_string(in, _scoped_name);
|
|
idf_input_vector(in, _c_wrappers);
|
|
idf_input_vector(in, _python_wrappers);
|
|
idf_input_string(in, _comment);
|
|
|
|
if (InterrogateDatabase::get_file_minor_version() >= 2) {
|
|
idf_input_string(in, _prototype);
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: InterrogateFunction::remap_indices
|
|
// Access: Public
|
|
// Description: Remaps all internal index numbers according to the
|
|
// indicated map. This called from
|
|
// InterrogateDatabase::remap_indices().
|
|
////////////////////////////////////////////////////////////////////
|
|
void InterrogateFunction::
|
|
remap_indices(const IndexRemapper &remap) {
|
|
_class = remap.map_from(_class);
|
|
Wrappers::iterator wi;
|
|
for (wi = _c_wrappers.begin(); wi != _c_wrappers.end(); ++wi) {
|
|
(*wi) = remap.map_from(*wi);
|
|
}
|
|
for (wi = _python_wrappers.begin(); wi != _python_wrappers.end(); ++wi) {
|
|
(*wi) = remap.map_from(*wi);
|
|
}
|
|
}
|