historical/toontown-classic.git/panda/include/functionRemap.h

149 lines
3.9 KiB
C
Raw Normal View History

2024-01-16 11:20:27 -06:00
/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file functionRemap.h
* @author drose
* @date 2001-09-19
*/
#ifndef FUNCTIONREMAP_H
#define FUNCTIONREMAP_H
#include "dtoolbase.h"
#include "interrogate_interface.h"
#include "vector_string.h"
#include <vector>
class InterrogateBuilder;
class InterrogateType;
class InterrogateFunction;
class ParameterRemap;
class CPPType;
class CPPInstance;
class CPPStructType;
class CPPScope;
class CPPFunctionType;
class InterfaceMaker;
/**
* This class describes how to remap a C++ function (and its list of
* parameters and return type) to a wrapped function, for a particular
* scripting language.
*
* The InterfaceMaker class will create one of these for each function,
* including one for each instance of an overloaded function.
*/
class FunctionRemap {
public:
FunctionRemap(const InterrogateType &itype,
const InterrogateFunction &ifunc,
CPPInstance *cppfunc, int num_default_parameters,
InterfaceMaker *interface_maker);
~FunctionRemap();
std::string get_parameter_name(int n) const;
std::string call_function(std::ostream &out, int indent_level,
bool convert_result, const std::string &container) const;
std::string call_function(std::ostream &out, int indent_level,
bool convert_result, const std::string &container,
const vector_string &pexprs) const;
void write_orig_prototype(std::ostream &out, int indent_level, bool local=false,
int num_default_args=0) const;
FunctionWrapperIndex make_wrapper_entry(FunctionIndex function_index);
std::string get_call_str(const std::string &container, const vector_string &pexprs) const;
int get_min_num_args() const;
int get_max_num_args() const;
class Parameter {
public:
bool _has_name;
std::string _name;
ParameterRemap *_remap;
};
enum Type {
T_normal,
T_constructor,
T_destructor,
T_typecast_method,
T_assignment_method,
T_typecast,
T_getter,
T_setter,
T_item_assignment_operator,
};
enum Flags {
F_getitem = 0x0001,
F_getitem_int = 0x0002,
F_size = 0x0004,
F_setitem = 0x0008,
F_setitem_int = 0x0010,
F_delitem = 0x0020,
F_delitem_int = 0x0040,
F_make_copy = 0x0080,
F_copy_constructor = 0x0100,
F_explicit_self = 0x0200,
F_iter = 0x0400,
F_compare_to = 0x0800,
F_coerce_constructor = 0x1000,
F_divide_float = 0x2000,
F_hash = 0x4000,
F_explicit_args = 0x8000,
};
typedef std::vector<Parameter> Parameters;
Parameters _parameters;
ParameterRemap *_return_type;
bool _void_return;
bool _ForcedVoidReturn;
bool _has_this;
bool _blocking;
bool _extension;
bool _const_method;
size_t _first_true_parameter;
int _num_default_parameters;
Type _type;
int _flags;
int _args_type;
std::string _expression;
std::string _function_signature;
std::string _hash;
std::string _unique_name;
std::string _reported_name;
std::string _wrapper_name;
FunctionWrapperIndex _wrapper_index;
bool _return_value_needs_management;
FunctionIndex _return_value_destructor;
bool _manage_reference_count;
CPPType *_cpptype;
CPPScope *_cppscope;
CPPInstance *_cppfunc;
CPPFunctionType *_ftype;
bool _is_valid;
private:
std::string get_parameter_expr(size_t n, const vector_string &pexprs) const;
bool setup_properties(const InterrogateFunction &ifunc, InterfaceMaker *interface_maker);
};
std::string make_safe_name(const std::string & name);
#endif