/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 1.3.29 * * This file is not intended to be easily readable and contains a number of * coding conventions designed to improve portability and efficiency. Do not make * changes to this file unless you know what you are doing--modify the SWIG * interface file instead. * ----------------------------------------------------------------------------- */ #define SWIGPYTHON #define SWIG_PYTHON_DIRECTOR_NO_VTABLE #ifdef __cplusplus template class SwigValueWrapper { T *tt; public: SwigValueWrapper() : tt(0) { } SwigValueWrapper(const SwigValueWrapper& rhs) : tt(new T(*rhs.tt)) { } SwigValueWrapper(const T& t) : tt(new T(t)) { } ~SwigValueWrapper() { delete tt; } SwigValueWrapper& operator=(const T& t) { delete tt; tt = new T(t); return *this; } operator T&() const { return *tt; } T *operator&() { return tt; } private: SwigValueWrapper& operator=(const SwigValueWrapper& rhs); }; #endif /* ----------------------------------------------------------------------------- * This section contains generic SWIG labels for method/variable * declarations/attributes, and other compiler dependent labels. * ----------------------------------------------------------------------------- */ /* template workaround for compilers that cannot correctly implement the C++ standard */ #ifndef SWIGTEMPLATEDISAMBIGUATOR # if defined(__SUNPRO_CC) # if (__SUNPRO_CC <= 0x560) # define SWIGTEMPLATEDISAMBIGUATOR template # else # define SWIGTEMPLATEDISAMBIGUATOR # endif # else # define SWIGTEMPLATEDISAMBIGUATOR # endif #endif /* inline attribute */ #ifndef SWIGINLINE # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) # define SWIGINLINE inline # else # define SWIGINLINE # endif #endif /* attribute recognised by some compilers to avoid 'unused' warnings */ #ifndef SWIGUNUSED # if defined(__GNUC__) # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) # define SWIGUNUSED __attribute__ ((__unused__)) # else # define SWIGUNUSED # endif # elif defined(__ICC) # define SWIGUNUSED __attribute__ ((__unused__)) # else # define SWIGUNUSED # endif #endif #ifndef SWIGUNUSEDPARM # ifdef __cplusplus # define SWIGUNUSEDPARM(p) # else # define SWIGUNUSEDPARM(p) p SWIGUNUSED # endif #endif /* internal SWIG method */ #ifndef SWIGINTERN # define SWIGINTERN static SWIGUNUSED #endif /* internal inline SWIG method */ #ifndef SWIGINTERNINLINE # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE #endif /* exporting methods */ #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) # ifndef GCC_HASCLASSVISIBILITY # define GCC_HASCLASSVISIBILITY # endif #endif #ifndef SWIGEXPORT # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) # if defined(STATIC_LINKED) # define SWIGEXPORT # else # define SWIGEXPORT __declspec(dllexport) # endif # else # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) # define SWIGEXPORT __attribute__ ((visibility("default"))) # else # define SWIGEXPORT # endif # endif #endif /* calling conventions for Windows */ #ifndef SWIGSTDCALL # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) # define SWIGSTDCALL __stdcall # else # define SWIGSTDCALL # endif #endif /* Deal with Microsoft's attempt at deprecating C standard runtime functions */ #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) # define _CRT_SECURE_NO_DEPRECATE #endif /* Python.h has to appear first */ #ifndef __STDC_CONSTANT_MACROS #define __STDC_CONSTANT_MACROS #endif #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS #endif #ifndef DEBUG_PYTHON #undef _DEBUG #endif #include /* ----------------------------------------------------------------------------- * swigrun.swg * * This file contains generic CAPI SWIG runtime support for pointer * type checking. * ----------------------------------------------------------------------------- */ /* This should only be incremented when either the layout of swig_type_info changes, or for whatever reason, the runtime changes incompatibly */ #define SWIG_RUNTIME_VERSION "2" /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ #ifdef SWIG_TYPE_TABLE # define SWIG_QUOTE_STRING(x) #x # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) #else # define SWIG_TYPE_TABLE_NAME #endif /* You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for creating a static or dynamic library from the swig runtime code. In 99.9% of the cases, swig just needs to declare them as 'static'. But only do this if is strictly necessary, ie, if you have problems with your compiler or so. */ #ifndef SWIGRUNTIME # define SWIGRUNTIME SWIGINTERN #endif #ifndef SWIGRUNTIMEINLINE # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE #endif /* Generic buffer size */ #ifndef SWIG_BUFFER_SIZE # define SWIG_BUFFER_SIZE 1024 #endif /* Flags for pointer conversions */ #define SWIG_POINTER_DISOWN 0x1 /* Flags for new pointer objects */ #define SWIG_POINTER_OWN 0x1 /* Flags/methods for returning states. The swig conversion methods, as ConvertPtr, return and integer that tells if the conversion was successful or not. And if not, an error code can be returned (see swigerrors.swg for the codes). Use the following macros/flags to set or process the returning states. In old swig versions, you usually write code as: if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { // success code } else { //fail code } Now you can be more explicit as: int res = SWIG_ConvertPtr(obj,vptr,ty.flags); if (SWIG_IsOK(res)) { // success code } else { // fail code } that seems to be the same, but now you can also do Type *ptr; int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); if (SWIG_IsOK(res)) { // success code if (SWIG_IsNewObj(res) { ... delete *ptr; } else { ... } } else { // fail code } I.e., now SWIG_ConvertPtr can return new objects and you can identify the case and take care of the deallocation. Of course that requires also to SWIG_ConvertPtr to return new result values, as int SWIG_ConvertPtr(obj, ptr,...) { if () { if () { *ptr = ; return SWIG_NEWOBJ; } else { *ptr = ; return SWIG_OLDOBJ; } } else { return SWIG_BADOBJ; } } Of course, returning the plain '0(success)/-1(fail)' still works, but you can be more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the swig errors code. Finally, if the SWIG_CASTRANK_MODE is enabled, the result code allows to return the 'cast rank', for example, if you have this int food(double) int fooi(int); and you call food(1) // cast rank '1' (1 -> 1.0) fooi(1) // cast rank '0' just use the SWIG_AddCast()/SWIG_CheckState() */ #define SWIG_OK (0) #define SWIG_ERROR (-1) #define SWIG_IsOK(r) (r >= 0) #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) /* The CastRankLimit says how many bits are used for the cast rank */ #define SWIG_CASTRANKLIMIT (1 << 8) /* The NewMask denotes the object was created (using new/malloc) */ #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) /* The TmpMask is for in/out typemaps that use temporal objects */ #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) /* Simple returning values */ #define SWIG_BADOBJ (SWIG_ERROR) #define SWIG_OLDOBJ (SWIG_OK) #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) /* Check, add and del mask methods */ #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) /* Cast-Rank Mode */ #if defined(SWIG_CASTRANK_MODE) # ifndef SWIG_TypeRank # define SWIG_TypeRank unsigned long # endif # ifndef SWIG_MAXCASTRANK /* Default cast allowed */ # define SWIG_MAXCASTRANK (2) # endif # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) SWIGINTERNINLINE int SWIG_AddCast(int r) { return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; } SWIGINTERNINLINE int SWIG_CheckState(int r) { return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; } #else /* no cast-rank mode */ # define SWIG_AddCast # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) #endif #include #ifdef __cplusplus extern "C" { #endif typedef void *(*swig_converter_func)(void *); typedef struct swig_type_info *(*swig_dycast_func)(void **); /* Structure to store inforomation on one type */ typedef struct swig_type_info { const char *name; /* mangled name of this type */ const char *str; /* human readable name of this type */ swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ struct swig_cast_info *cast; /* linked list of types that can cast into this type */ void *clientdata; /* language specific type data */ int owndata; /* flag if the structure owns the clientdata */ } swig_type_info; /* Structure to store a type and conversion function used for casting */ typedef struct swig_cast_info { swig_type_info *type; /* pointer to type that is equivalent to this type */ swig_converter_func converter; /* function to cast the void pointers */ struct swig_cast_info *next; /* pointer to next cast in linked list */ struct swig_cast_info *prev; /* pointer to the previous cast */ } swig_cast_info; /* Structure used to store module information * Each module generates one structure like this, and the runtime collects * all of these structures and stores them in a circularly linked list.*/ typedef struct swig_module_info { swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ size_t size; /* Number of types in this module */ struct swig_module_info *next; /* Pointer to next element in circularly linked list */ swig_type_info **type_initial; /* Array of initially generated type structures */ swig_cast_info **cast_initial; /* Array of initially generated casting structures */ void *clientdata; /* Language specific module data */ } swig_module_info; /* Compare two type names skipping the space characters, therefore "char*" == "char *" and "Class" == "Class", etc. Return 0 when the two name types are equivalent, as in strncmp, but skipping ' '. */ SWIGRUNTIME int SWIG_TypeNameComp(const char *f1, const char *l1, const char *f2, const char *l2) { for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { while ((*f1 == ' ') && (f1 != l1)) ++f1; while ((*f2 == ' ') && (f2 != l2)) ++f2; if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1; } return (l1 - f1) - (l2 - f2); } /* Check type equivalence in a name list like ||... Return 0 if not equal, 1 if equal */ SWIGRUNTIME int SWIG_TypeEquiv(const char *nb, const char *tb) { int equiv = 0; const char* te = tb + strlen(tb); const char* ne = nb; while (!equiv && *ne) { for (nb = ne; *ne; ++ne) { if (*ne == '|') break; } equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; if (*ne) ++ne; } return equiv; } /* Check type equivalence in a name list like ||... Return 0 if equal, -1 if nb < tb, 1 if nb > tb */ SWIGRUNTIME int SWIG_TypeCompare(const char *nb, const char *tb) { int equiv = 0; const char* te = tb + strlen(tb); const char* ne = nb; while (!equiv && *ne) { for (nb = ne; *ne; ++ne) { if (*ne == '|') break; } equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; if (*ne) ++ne; } return equiv; } /* think of this as a c++ template<> or a scheme macro */ #define SWIG_TypeCheck_Template(comparison, ty) \ if (ty) { \ swig_cast_info *iter = ty->cast; \ while (iter) { \ if (comparison) { \ if (iter == ty->cast) return iter; \ /* Move iter to the top of the linked list */ \ iter->prev->next = iter->next; \ if (iter->next) \ iter->next->prev = iter->prev; \ iter->next = ty->cast; \ iter->prev = 0; \ if (ty->cast) ty->cast->prev = iter; \ ty->cast = iter; \ return iter; \ } \ iter = iter->next; \ } \ } \ return 0 /* Check the typename */ SWIGRUNTIME swig_cast_info * SWIG_TypeCheck(const char *c, swig_type_info *ty) { SWIG_TypeCheck_Template(strcmp(iter->type->name, c) == 0, ty); } /* Same as previous function, except strcmp is replaced with a pointer comparison */ SWIGRUNTIME swig_cast_info * SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *into) { SWIG_TypeCheck_Template(iter->type == from, into); } /* Cast a pointer up an inheritance hierarchy */ SWIGRUNTIMEINLINE void * SWIG_TypeCast(swig_cast_info *ty, void *ptr) { return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr); } /* Dynamic pointer casting. Down an inheritance hierarchy */ SWIGRUNTIME swig_type_info * SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { swig_type_info *lastty = ty; if (!ty || !ty->dcast) return ty; while (ty && (ty->dcast)) { ty = (*ty->dcast)(ptr); if (ty) lastty = ty; } return lastty; } /* Return the name associated with this type */ SWIGRUNTIMEINLINE const char * SWIG_TypeName(const swig_type_info *ty) { return ty->name; } /* Return the pretty name associated with this type, that is an unmangled type name in a form presentable to the user. */ SWIGRUNTIME const char * SWIG_TypePrettyName(const swig_type_info *type) { /* The "str" field contains the equivalent pretty names of the type, separated by vertical-bar characters. We choose to print the last name, as it is often (?) the most specific. */ if (!type) return NULL; if (type->str != NULL) { const char *last_name = type->str; const char *s; for (s = type->str; *s; s++) if (*s == '|') last_name = s+1; return last_name; } else return type->name; } /* Set the clientdata field for a type */ SWIGRUNTIME void SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { swig_cast_info *cast = ti->cast; /* if (ti->clientdata == clientdata) return; */ ti->clientdata = clientdata; while (cast) { if (!cast->converter) { swig_type_info *tc = cast->type; if (!tc->clientdata) { SWIG_TypeClientData(tc, clientdata); } } cast = cast->next; } } SWIGRUNTIME void SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { SWIG_TypeClientData(ti, clientdata); ti->owndata = 1; } /* Search for a swig_type_info structure only by mangled name Search is a O(log #types) We start searching at module start, and finish searching when start == end. Note: if start == end at the beginning of the function, we go all the way around the circular list. */ SWIGRUNTIME swig_type_info * SWIG_MangledTypeQueryModule(swig_module_info *start, swig_module_info *end, const char *name) { swig_module_info *iter = start; do { if (iter->size) { register size_t l = 0; register size_t r = iter->size - 1; do { /* since l+r >= 0, we can (>> 1) instead (/ 2) */ register size_t i = (l + r) >> 1; const char *iname = iter->types[i]->name; if (iname) { register int compare = strcmp(name, iname); if (compare == 0) { return iter->types[i]; } else if (compare < 0) { if (i) { r = i - 1; } else { break; } } else if (compare > 0) { l = i + 1; } } else { break; /* should never happen */ } } while (l <= r); } iter = iter->next; } while (iter != end); return 0; } /* Search for a swig_type_info structure for either a mangled name or a human readable name. It first searches the mangled names of the types, which is a O(log #types) If a type is not found it then searches the human readable names, which is O(#types). We start searching at module start, and finish searching when start == end. Note: if start == end at the beginning of the function, we go all the way around the circular list. */ SWIGRUNTIME swig_type_info * SWIG_TypeQueryModule(swig_module_info *start, swig_module_info *end, const char *name) { /* STEP 1: Search the name field using binary search */ swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); if (ret) { return ret; } else { /* STEP 2: If the type hasn't been found, do a complete search of the str field (the human readable name) */ swig_module_info *iter = start; do { register size_t i = 0; for (; i < iter->size; ++i) { if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) return iter->types[i]; } iter = iter->next; } while (iter != end); } /* neither found a match */ return 0; } /* Pack binary data into a string */ SWIGRUNTIME char * SWIG_PackData(char *c, void *ptr, size_t sz) { static const char hex[17] = "0123456789abcdef"; register const unsigned char *u = (unsigned char *) ptr; register const unsigned char *eu = u + sz; for (; u != eu; ++u) { register unsigned char uu = *u; *(c++) = hex[(uu & 0xf0) >> 4]; *(c++) = hex[uu & 0xf]; } return c; } /* Unpack binary data from a string */ SWIGRUNTIME const char * SWIG_UnpackData(const char *c, void *ptr, size_t sz) { register unsigned char *u = (unsigned char *) ptr; register const unsigned char *eu = u + sz; for (; u != eu; ++u) { register char d = *(c++); register unsigned char uu; if ((d >= '0') && (d <= '9')) uu = ((d - '0') << 4); else if ((d >= 'a') && (d <= 'f')) uu = ((d - ('a'-10)) << 4); else return (char *) 0; d = *(c++); if ((d >= '0') && (d <= '9')) uu |= (d - '0'); else if ((d >= 'a') && (d <= 'f')) uu |= (d - ('a'-10)); else return (char *) 0; *u = uu; } return c; } /* Pack 'void *' into a string buffer. */ SWIGRUNTIME char * SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { char *r = buff; if ((2*sizeof(void *) + 2) > bsz) return 0; *(r++) = '_'; r = SWIG_PackData(r,&ptr,sizeof(void *)); if (strlen(name) + 1 > (bsz - (r - buff))) return 0; strcpy(r,name); return buff; } SWIGRUNTIME const char * SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { if (*c != '_') { if (strcmp(c,"NULL") == 0) { *ptr = (void *) 0; return name; } else { return 0; } } return SWIG_UnpackData(++c,ptr,sizeof(void *)); } SWIGRUNTIME char * SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { char *r = buff; size_t lname = (name ? strlen(name) : 0); if ((2*sz + 2 + lname) > bsz) return 0; *(r++) = '_'; r = SWIG_PackData(r,ptr,sz); if (lname) { strncpy(r,name,lname+1); } else { *r = 0; } return buff; } SWIGRUNTIME const char * SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { if (*c != '_') { if (strcmp(c,"NULL") == 0) { memset(ptr,0,sz); return name; } else { return 0; } } return SWIG_UnpackData(++c,ptr,sz); } #ifdef __cplusplus } #endif /* Errors in SWIG */ #define SWIG_UnknownError -1 #define SWIG_IOError -2 #define SWIG_RuntimeError -3 #define SWIG_IndexError -4 #define SWIG_TypeError -5 #define SWIG_DivisionByZero -6 #define SWIG_OverflowError -7 #define SWIG_SyntaxError -8 #define SWIG_ValueError -9 #define SWIG_SystemError -10 #define SWIG_AttributeError -11 #define SWIG_MemoryError -12 #define SWIG_NullReferenceError -13 /* Python.h has to appear first */ #ifndef __STDC_CONSTANT_MACROS #define __STDC_CONSTANT_MACROS #endif #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS #endif #ifndef DEBUG_PYTHON #undef _DEBUG #endif #include /* Add PyOS_snprintf for old Pythons */ #if PY_VERSION_HEX < 0x02020000 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM) # define PyOS_snprintf _snprintf # else # define PyOS_snprintf snprintf # endif #endif /* A crude PyString_FromFormat implementation for old Pythons */ #if PY_VERSION_HEX < 0x02020000 #ifndef SWIG_PYBUFFER_SIZE # define SWIG_PYBUFFER_SIZE 1024 #endif static PyObject * PyString_FromFormat(const char *fmt, ...) { va_list ap; char buf[SWIG_PYBUFFER_SIZE * 2]; int res; va_start(ap, fmt); res = vsnprintf(buf, sizeof(buf), fmt, ap); va_end(ap); return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf); } #endif /* Add PyObject_Del for old Pythons */ #if PY_VERSION_HEX < 0x01060000 # define PyObject_Del(op) PyMem_DEL((op)) #endif #ifndef PyObject_DEL # define PyObject_DEL PyObject_Del #endif /* A crude PyExc_StopIteration exception for old Pythons */ #if PY_VERSION_HEX < 0x02020000 # ifndef PyExc_StopIteration # define PyExc_StopIteration PyExc_RuntimeError # endif # ifndef PyObject_GenericGetAttr # define PyObject_GenericGetAttr 0 # endif #endif /* Py_NotImplemented is defined in 2.1 and up. */ #if PY_VERSION_HEX < 0x02010000 # ifndef Py_NotImplemented # define Py_NotImplemented PyExc_RuntimeError # endif #endif /* A crude PyString_AsStringAndSize implementation for old Pythons */ #if PY_VERSION_HEX < 0x02010000 # ifndef PyString_AsStringAndSize # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;} # endif #endif /* PySequence_Size for old Pythons */ #if PY_VERSION_HEX < 0x02000000 # ifndef PySequence_Size # define PySequence_Size PySequence_Length # endif #endif /* PyBool_FromLong for old Pythons */ #if PY_VERSION_HEX < 0x02030000 static PyObject *PyBool_FromLong(long ok) { PyObject *result = ok ? Py_True : Py_False; Py_INCREF(result); return result; } #endif /* ----------------------------------------------------------------------------- * error manipulation * ----------------------------------------------------------------------------- */ SWIGRUNTIME PyObject* SWIG_Python_ErrorType(int code) { PyObject* type = 0; switch(code) { case SWIG_MemoryError: type = PyExc_MemoryError; break; case SWIG_IOError: type = PyExc_IOError; break; case SWIG_RuntimeError: type = PyExc_RuntimeError; break; case SWIG_IndexError: type = PyExc_IndexError; break; case SWIG_TypeError: type = PyExc_TypeError; break; case SWIG_DivisionByZero: type = PyExc_ZeroDivisionError; break; case SWIG_OverflowError: type = PyExc_OverflowError; break; case SWIG_SyntaxError: type = PyExc_SyntaxError; break; case SWIG_ValueError: type = PyExc_ValueError; break; case SWIG_SystemError: type = PyExc_SystemError; break; case SWIG_AttributeError: type = PyExc_AttributeError; break; default: type = PyExc_RuntimeError; } return type; } SWIGRUNTIME void SWIG_Python_AddErrorMsg(const char* mesg) { PyObject *type = 0; PyObject *value = 0; PyObject *traceback = 0; if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback); if (value) { PyObject *old_str = PyObject_Str(value); PyErr_Clear(); Py_XINCREF(type); PyErr_Format(type, "%s %s", PyString_AsString(old_str), mesg); Py_DECREF(old_str); Py_DECREF(value); } else { PyErr_Format(PyExc_RuntimeError, mesg); } } #if defined(SWIG_PYTHON_NO_THREADS) # if defined(SWIG_PYTHON_THREADS) # undef SWIG_PYTHON_THREADS # endif #endif #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */ # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL) # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */ # define SWIG_PYTHON_USE_GIL # endif # endif # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ # ifndef SWIG_PYTHON_INITIALIZE_THREADS # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads() # endif # ifdef __cplusplus /* C++ code */ class SWIG_Python_Thread_Block { bool status; PyGILState_STATE state; public: void end() { if (status) { PyGILState_Release(state); status = false;} } SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} ~SWIG_Python_Thread_Block() { end(); } }; class SWIG_Python_Thread_Allow { bool status; PyThreadState *save; public: void end() { if (status) { PyEval_RestoreThread(save); status = false; }} SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} ~SWIG_Python_Thread_Allow() { end(); } }; # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end() # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end() # else /* C code */ # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure() # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block) # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread() # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow) # endif # else /* Old thread way, not implemented, user must provide it */ # if !defined(SWIG_PYTHON_INITIALIZE_THREADS) # define SWIG_PYTHON_INITIALIZE_THREADS # endif # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) # define SWIG_PYTHON_THREAD_BEGIN_BLOCK # endif # if !defined(SWIG_PYTHON_THREAD_END_BLOCK) # define SWIG_PYTHON_THREAD_END_BLOCK # endif # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) # define SWIG_PYTHON_THREAD_BEGIN_ALLOW # endif # if !defined(SWIG_PYTHON_THREAD_END_ALLOW) # define SWIG_PYTHON_THREAD_END_ALLOW # endif # endif #else /* No thread support */ # define SWIG_PYTHON_INITIALIZE_THREADS # define SWIG_PYTHON_THREAD_BEGIN_BLOCK # define SWIG_PYTHON_THREAD_END_BLOCK # define SWIG_PYTHON_THREAD_BEGIN_ALLOW # define SWIG_PYTHON_THREAD_END_ALLOW #endif /* ----------------------------------------------------------------------------- * Python API portion that goes into the runtime * ----------------------------------------------------------------------------- */ #ifdef __cplusplus extern "C" { #if 0 } /* cc-mode */ #endif #endif /* ----------------------------------------------------------------------------- * Constant declarations * ----------------------------------------------------------------------------- */ /* Constant Types */ #define SWIG_PY_POINTER 4 #define SWIG_PY_BINARY 5 /* Constant information structure */ typedef struct swig_const_info { int type; char *name; long lvalue; double dvalue; void *pvalue; swig_type_info **ptype; } swig_const_info; #ifdef __cplusplus #if 0 { /* cc-mode */ #endif } #endif /* ----------------------------------------------------------------------------- * See the LICENSE file for information on copyright, usage and redistribution * of SWIG, and the README file for authors - http://www.swig.org/release.html. * * pyrun.swg * * This file contains the runtime support for Python modules * and includes code for managing global variables and pointer * type checking. * * ----------------------------------------------------------------------------- */ /* Common SWIG API */ /* for raw pointers */ #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags) #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags) #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty) #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src) #define swig_owntype int /* for raw packed data */ #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) /* for class or struct pointers */ #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags) #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags) /* for C or C++ function pointers */ #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type) #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0) /* for C++ member pointers, ie, member methods */ #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) /* Runtime API */ #define SWIG_GetModule(clientdata) SWIG_Python_GetModule() #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer) #define SWIG_NewClientData(obj) PySwigClientData_New(obj) #define SWIG_SetErrorObj SWIG_Python_SetErrorObj #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code) #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg) #define SWIG_fail goto fail /* Runtime API implementation */ /* Error manipulation */ SWIGINTERN void SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { SWIG_PYTHON_THREAD_BEGIN_BLOCK; PyErr_SetObject(errtype, obj); Py_DECREF(obj); SWIG_PYTHON_THREAD_END_BLOCK; } SWIGINTERN void SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { SWIG_PYTHON_THREAD_BEGIN_BLOCK; PyErr_SetString(errtype, (char *) msg); SWIG_PYTHON_THREAD_END_BLOCK; } #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) /* Set a constant value */ SWIGINTERN void SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) { PyDict_SetItemString(d, (char*) name, obj); Py_DECREF(obj); } /* Append a value to the result obj */ SWIGINTERN PyObject* SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) { #if !defined(SWIG_PYTHON_OUTPUT_TUPLE) if (!result) { result = obj; } else if (result == Py_None) { Py_DECREF(result); result = obj; } else { if (!PyList_Check(result)) { PyObject *o2 = result; result = PyList_New(1); PyList_SetItem(result, 0, o2); } PyList_Append(result,obj); Py_DECREF(obj); } return result; #else PyObject* o2; PyObject* o3; if (!result) { result = obj; } else if (result == Py_None) { Py_DECREF(result); result = obj; } else { if (!PyTuple_Check(result)) { o2 = result; result = PyTuple_New(1); PyTuple_SET_ITEM(result, 0, o2); } o3 = PyTuple_New(1); PyTuple_SET_ITEM(o3, 0, obj); o2 = result; result = PySequence_Concat(o2, o3); Py_DECREF(o2); Py_DECREF(o3); } return result; #endif } /* Unpack the argument tuple */ SWIGINTERN int SWIG_Python_UnpackTuple(PyObject *args, const char *name, int min, int max, PyObject **objs) { if (!args) { if (!min && !max) { return 1; } else { PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none", name, (min == max ? "" : "at least "), min); return 0; } } if (!PyTuple_Check(args)) { PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); return 0; } else { register int l = PyTuple_GET_SIZE(args); if (l < min) { PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", name, (min == max ? "" : "at least "), min, l); return 0; } else if (l > max) { PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", name, (min == max ? "" : "at most "), max, l); return 0; } else { register int i; for (i = 0; i < l; ++i) { objs[i] = PyTuple_GET_ITEM(args, i); } for (; l < max; ++l) { objs[l] = 0; } return i + 1; } } } /* A functor is a function object with one single object argument */ #if PY_VERSION_HEX >= 0x02020000 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL); #else #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj); #endif /* Helper for static pointer initialization for both C and C++ code, for example static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...); */ #ifdef __cplusplus #define SWIG_STATIC_POINTER(var) var #else #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var #endif /* ----------------------------------------------------------------------------- * Pointer declarations * ----------------------------------------------------------------------------- */ /* Flags for new pointer objects */ #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1) #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1) #ifdef __cplusplus extern "C" { #if 0 } /* cc-mode */ #endif #endif /* How to access Py_None */ #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) # ifndef SWIG_PYTHON_NO_BUILD_NONE # ifndef SWIG_PYTHON_BUILD_NONE # define SWIG_PYTHON_BUILD_NONE # endif # endif #endif #ifdef SWIG_PYTHON_BUILD_NONE # ifdef Py_None # undef Py_None # define Py_None SWIG_Py_None() # endif SWIGRUNTIMEINLINE PyObject * _SWIG_Py_None(void) { PyObject *none = Py_BuildValue(""); Py_DECREF(none); return none; } SWIGRUNTIME PyObject * SWIG_Py_None(void) { static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None(); return none; } #endif /* The python void return value */ SWIGRUNTIMEINLINE PyObject * SWIG_Py_Void(void) { PyObject *none = Py_None; Py_INCREF(none); return none; } /* PySwigClientData */ typedef struct { PyObject *klass; PyObject *newraw; PyObject *newargs; PyObject *destroy; int delargs; int implicitconv; } PySwigClientData; SWIGRUNTIMEINLINE int SWIG_Python_CheckImplicit(swig_type_info *ty) { PySwigClientData *data = (PySwigClientData *)ty->clientdata; return data ? data->implicitconv : 0; } SWIGRUNTIMEINLINE PyObject * SWIG_Python_ExceptionType(swig_type_info *desc) { PySwigClientData *data = desc ? (PySwigClientData *) desc->clientdata : 0; PyObject *klass = data ? data->klass : 0; return (klass ? klass : PyExc_RuntimeError); } SWIGRUNTIME PySwigClientData * PySwigClientData_New(PyObject* obj) { if (!obj) { return 0; } else { PySwigClientData *data = (PySwigClientData *)malloc(sizeof(PySwigClientData)); /* the klass element */ data->klass = obj; Py_INCREF(data->klass); /* the newraw method and newargs arguments used to create a new raw instance */ if (PyClass_Check(obj)) { data->newraw = 0; data->newargs = obj; Py_INCREF(obj); } else { #if (PY_VERSION_HEX < 0x02020000) data->newraw = 0; #else data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__"); #endif if (data->newraw) { Py_INCREF(data->newraw); data->newargs = PyTuple_New(1); PyTuple_SetItem(data->newargs, 0, obj); } else { data->newargs = obj; } Py_INCREF(data->newargs); } /* the destroy method, aka as the C++ delete method */ data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__"); if (PyErr_Occurred()) { PyErr_Clear(); data->destroy = 0; } if (data->destroy) { int flags; Py_INCREF(data->destroy); flags = PyCFunction_GET_FLAGS(data->destroy); #ifdef METH_O data->delargs = !(flags & (METH_O)); #else data->delargs = 0; #endif } else { data->delargs = 0; } data->implicitconv = 0; return data; } } SWIGRUNTIME void PySwigClientData_Del(PySwigClientData* data) { Py_XDECREF(data->newraw); Py_XDECREF(data->newargs); Py_XDECREF(data->destroy); } /* =============== PySwigObject =====================*/ typedef struct { PyObject_HEAD void *ptr; swig_type_info *ty; int own; PyObject *next; } PySwigObject; SWIGRUNTIME PyObject * PySwigObject_long(PySwigObject *v) { return PyLong_FromVoidPtr(v->ptr); } SWIGRUNTIME PyObject * PySwigObject_format(const char* fmt, PySwigObject *v) { PyObject *res = NULL; PyObject *args = PyTuple_New(1); if (args) { if (PyTuple_SetItem(args, 0, PySwigObject_long(v)) == 0) { PyObject *ofmt = PyString_FromString(fmt); if (ofmt) { res = PyString_Format(ofmt,args); Py_DECREF(ofmt); } Py_DECREF(args); } } return res; } SWIGRUNTIME PyObject * PySwigObject_oct(PySwigObject *v) { return PySwigObject_format("%o",v); } SWIGRUNTIME PyObject * PySwigObject_hex(PySwigObject *v) { return PySwigObject_format("%x",v); } SWIGRUNTIME PyObject * #ifdef METH_NOARGS PySwigObject_repr(PySwigObject *v) #else PySwigObject_repr(PySwigObject *v, PyObject *args) #endif { const char *name = SWIG_TypePrettyName(v->ty); PyObject *hex = PySwigObject_hex(v); PyObject *repr = PyString_FromFormat("", name, PyString_AsString(hex)); Py_DECREF(hex); if (v->next) { #ifdef METH_NOARGS PyObject *nrep = PySwigObject_repr((PySwigObject *)v->next); #else PyObject *nrep = PySwigObject_repr((PySwigObject *)v->next, args); #endif PyString_ConcatAndDel(&repr,nrep); } return repr; } SWIGRUNTIME int PySwigObject_print(PySwigObject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { #ifdef METH_NOARGS PyObject *repr = PySwigObject_repr(v); #else PyObject *repr = PySwigObject_repr(v, NULL); #endif if (repr) { fputs(PyString_AsString(repr), fp); Py_DECREF(repr); return 0; } else { return 1; } } SWIGRUNTIME PyObject * PySwigObject_str(PySwigObject *v) { char result[SWIG_BUFFER_SIZE]; return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ? PyString_FromString(result) : 0; } SWIGRUNTIME int PySwigObject_compare(PySwigObject *v, PySwigObject *w) { void *i = v->ptr; void *j = w->ptr; return (i < j) ? -1 : ((i > j) ? 1 : 0); } SWIGRUNTIME PyTypeObject* _PySwigObject_type(void); SWIGRUNTIME PyTypeObject* PySwigObject_type(void) { static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigObject_type(); return type; } SWIGRUNTIMEINLINE int PySwigObject_Check(PyObject *op) { return ((op)->ob_type == PySwigObject_type()) || (strcmp((op)->ob_type->tp_name,"PySwigObject") == 0); } SWIGRUNTIME PyObject * PySwigObject_New(void *ptr, swig_type_info *ty, int own); SWIGRUNTIME void PySwigObject_dealloc(PyObject *v) { PySwigObject *sobj = (PySwigObject *) v; PyObject *next = sobj->next; if (sobj->own) { swig_type_info *ty = sobj->ty; PySwigClientData *data = ty ? (PySwigClientData *) ty->clientdata : 0; PyObject *destroy = data ? data->destroy : 0; if (destroy) { /* destroy is always a VARARGS method */ PyObject *res; if (data->delargs) { /* we need to create a temporal object to carry the destroy operation */ PyObject *tmp = PySwigObject_New(sobj->ptr, ty, 0); res = SWIG_Python_CallFunctor(destroy, tmp); Py_DECREF(tmp); } else { PyCFunction meth = PyCFunction_GET_FUNCTION(destroy); PyObject *mself = PyCFunction_GET_SELF(destroy); res = ((*meth)(mself, v)); } Py_XDECREF(res); } else { const char *name = SWIG_TypePrettyName(ty); #if !defined(SWIG_PYTHON_SILENT_MEMLEAK) printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name); #endif } } Py_XDECREF(next); PyObject_DEL(v); } SWIGRUNTIME PyObject* PySwigObject_append(PyObject* v, PyObject* next) { PySwigObject *sobj = (PySwigObject *) v; #ifndef METH_O PyObject *tmp = 0; if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL; next = tmp; #endif if (!PySwigObject_Check(next)) { return NULL; } sobj->next = next; Py_INCREF(next); return SWIG_Py_Void(); } SWIGRUNTIME PyObject* #ifdef METH_NOARGS PySwigObject_next(PyObject* v) #else PySwigObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) #endif { PySwigObject *sobj = (PySwigObject *) v; if (sobj->next) { Py_INCREF(sobj->next); return sobj->next; } else { return SWIG_Py_Void(); } } SWIGINTERN PyObject* #ifdef METH_NOARGS PySwigObject_disown(PyObject *v) #else PySwigObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) #endif { PySwigObject *sobj = (PySwigObject *)v; sobj->own = 0; return SWIG_Py_Void(); } SWIGINTERN PyObject* #ifdef METH_NOARGS PySwigObject_acquire(PyObject *v) #else PySwigObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) #endif { PySwigObject *sobj = (PySwigObject *)v; sobj->own = SWIG_POINTER_OWN; return SWIG_Py_Void(); } SWIGINTERN PyObject* PySwigObject_own(PyObject *v, PyObject *args) { PyObject *val = 0; #if (PY_VERSION_HEX < 0x02020000) if (!PyArg_ParseTuple(args,(char *)"|O:own",&val)) #else if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val)) #endif { return NULL; } else { PySwigObject *sobj = (PySwigObject *)v; PyObject *obj = PyBool_FromLong(sobj->own); if (val) { #ifdef METH_NOARGS if (PyObject_IsTrue(val)) { PySwigObject_acquire(v); } else { PySwigObject_disown(v); } #else if (PyObject_IsTrue(val)) { PySwigObject_acquire(v,args); } else { PySwigObject_disown(v,args); } #endif } return obj; } } #ifdef METH_O static PyMethodDef swigobject_methods[] = { {(char *)"disown", (PyCFunction)PySwigObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"}, {(char *)"acquire", (PyCFunction)PySwigObject_acquire, METH_NOARGS, (char *)"aquires ownership of the pointer"}, {(char *)"own", (PyCFunction)PySwigObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, {(char *)"append", (PyCFunction)PySwigObject_append, METH_O, (char *)"appends another 'this' object"}, {(char *)"next", (PyCFunction)PySwigObject_next, METH_NOARGS, (char *)"returns the next 'this' object"}, {(char *)"__repr__",(PyCFunction)PySwigObject_repr, METH_NOARGS, (char *)"returns object representation"}, {0, 0, 0, 0} }; #else static PyMethodDef swigobject_methods[] = { {(char *)"disown", (PyCFunction)PySwigObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"}, {(char *)"acquire", (PyCFunction)PySwigObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"}, {(char *)"own", (PyCFunction)PySwigObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, {(char *)"append", (PyCFunction)PySwigObject_append, METH_VARARGS, (char *)"appends another 'this' object"}, {(char *)"next", (PyCFunction)PySwigObject_next, METH_VARARGS, (char *)"returns the next 'this' object"}, {(char *)"__repr__",(PyCFunction)PySwigObject_repr, METH_VARARGS, (char *)"returns object representation"}, {0, 0, 0, 0} }; #endif #if PY_VERSION_HEX < 0x02020000 SWIGINTERN PyObject * PySwigObject_getattr(PySwigObject *sobj,char *name) { return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name); } #endif SWIGRUNTIME PyTypeObject* _PySwigObject_type(void) { static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer"; static PyNumberMethods PySwigObject_as_number = { (binaryfunc)0, /*nb_add*/ (binaryfunc)0, /*nb_subtract*/ (binaryfunc)0, /*nb_multiply*/ (binaryfunc)0, /*nb_divide*/ (binaryfunc)0, /*nb_remainder*/ (binaryfunc)0, /*nb_divmod*/ (ternaryfunc)0,/*nb_power*/ (unaryfunc)0, /*nb_negative*/ (unaryfunc)0, /*nb_positive*/ (unaryfunc)0, /*nb_absolute*/ (inquiry)0, /*nb_nonzero*/ 0, /*nb_invert*/ 0, /*nb_lshift*/ 0, /*nb_rshift*/ 0, /*nb_and*/ 0, /*nb_xor*/ 0, /*nb_or*/ (coercion)0, /*nb_coerce*/ (unaryfunc)PySwigObject_long, /*nb_int*/ (unaryfunc)PySwigObject_long, /*nb_long*/ (unaryfunc)0, /*nb_float*/ (unaryfunc)PySwigObject_oct, /*nb_oct*/ (unaryfunc)PySwigObject_hex, /*nb_hex*/ #if PY_VERSION_HEX >= 0x02020000 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */ #elif PY_VERSION_HEX >= 0x02000000 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */ #endif }; static PyTypeObject pyswigobject_type; static int type_init = 0; if (!type_init) { const PyTypeObject tmp = { PyObject_HEAD_INIT(NULL) 0, /* ob_size */ (char *)"PySwigObject", /* tp_name */ sizeof(PySwigObject), /* tp_basicsize */ 0, /* tp_itemsize */ (destructor)PySwigObject_dealloc, /* tp_dealloc */ (printfunc)PySwigObject_print, /* tp_print */ #if PY_VERSION_HEX < 0x02020000 (getattrfunc)PySwigObject_getattr, /* tp_getattr */ #else (getattrfunc)0, /* tp_getattr */ #endif (setattrfunc)0, /* tp_setattr */ (cmpfunc)PySwigObject_compare, /* tp_compare */ (reprfunc)PySwigObject_repr, /* tp_repr */ &PySwigObject_as_number, /* tp_as_number */ 0, /* tp_as_sequence */ 0, /* tp_as_mapping */ (hashfunc)0, /* tp_hash */ (ternaryfunc)0, /* tp_call */ (reprfunc)PySwigObject_str, /* tp_str */ PyObject_GenericGetAttr, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ Py_TPFLAGS_DEFAULT, /* tp_flags */ swigobject_doc, /* tp_doc */ 0, /* tp_traverse */ 0, /* tp_clear */ 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ #if PY_VERSION_HEX >= 0x02020000 0, /* tp_iter */ 0, /* tp_iternext */ swigobject_methods, /* tp_methods */ 0, /* tp_members */ 0, /* tp_getset */ 0, /* tp_base */ 0, /* tp_dict */ 0, /* tp_descr_get */ 0, /* tp_descr_set */ 0, /* tp_dictoffset */ 0, /* tp_init */ 0, /* tp_alloc */ 0, /* tp_new */ 0, /* tp_free */ 0, /* tp_is_gc */ 0, /* tp_bases */ 0, /* tp_mro */ 0, /* tp_cache */ 0, /* tp_subclasses */ 0, /* tp_weaklist */ #endif #if PY_VERSION_HEX >= 0x02030000 0, /* tp_del */ #endif #ifdef COUNT_ALLOCS 0,0,0,0 /* tp_alloc -> tp_next */ #endif }; pyswigobject_type = tmp; pyswigobject_type.ob_type = &PyType_Type; type_init = 1; } return &pyswigobject_type; } SWIGRUNTIME PyObject * PySwigObject_New(void *ptr, swig_type_info *ty, int own) { PySwigObject *sobj = PyObject_NEW(PySwigObject, PySwigObject_type()); if (sobj) { sobj->ptr = ptr; sobj->ty = ty; sobj->own = own; sobj->next = 0; } return (PyObject *)sobj; } /* ----------------------------------------------------------------------------- * Implements a simple Swig Packed type, and use it instead of string * ----------------------------------------------------------------------------- */ typedef struct { PyObject_HEAD void *pack; swig_type_info *ty; size_t size; } PySwigPacked; SWIGRUNTIME int PySwigPacked_print(PySwigPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { char result[SWIG_BUFFER_SIZE]; fputs("pack, v->size, 0, sizeof(result))) { fputs("at ", fp); fputs(result, fp); } fputs(v->ty->name,fp); fputs(">", fp); return 0; } SWIGRUNTIME PyObject * PySwigPacked_repr(PySwigPacked *v) { char result[SWIG_BUFFER_SIZE]; if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { return PyString_FromFormat("", result, v->ty->name); } else { return PyString_FromFormat("", v->ty->name); } } SWIGRUNTIME PyObject * PySwigPacked_str(PySwigPacked *v) { char result[SWIG_BUFFER_SIZE]; if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){ return PyString_FromFormat("%s%s", result, v->ty->name); } else { return PyString_FromString(v->ty->name); } } SWIGRUNTIME int PySwigPacked_compare(PySwigPacked *v, PySwigPacked *w) { size_t i = v->size; size_t j = w->size; int s = (i < j) ? -1 : ((i > j) ? 1 : 0); return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size); } SWIGRUNTIME PyTypeObject* _PySwigPacked_type(void); SWIGRUNTIME PyTypeObject* PySwigPacked_type(void) { static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigPacked_type(); return type; } SWIGRUNTIMEINLINE int PySwigPacked_Check(PyObject *op) { return ((op)->ob_type == _PySwigPacked_type()) || (strcmp((op)->ob_type->tp_name,"PySwigPacked") == 0); } SWIGRUNTIME void PySwigPacked_dealloc(PyObject *v) { if (PySwigPacked_Check(v)) { PySwigPacked *sobj = (PySwigPacked *) v; free(sobj->pack); } PyObject_DEL(v); } SWIGRUNTIME PyTypeObject* _PySwigPacked_type(void) { static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer"; static PyTypeObject pyswigpacked_type; static int type_init = 0; if (!type_init) { const PyTypeObject tmp = { PyObject_HEAD_INIT(NULL) 0, /* ob_size */ (char *)"PySwigPacked", /* tp_name */ sizeof(PySwigPacked), /* tp_basicsize */ 0, /* tp_itemsize */ (destructor)PySwigPacked_dealloc, /* tp_dealloc */ (printfunc)PySwigPacked_print, /* tp_print */ (getattrfunc)0, /* tp_getattr */ (setattrfunc)0, /* tp_setattr */ (cmpfunc)PySwigPacked_compare, /* tp_compare */ (reprfunc)PySwigPacked_repr, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ 0, /* tp_as_mapping */ (hashfunc)0, /* tp_hash */ (ternaryfunc)0, /* tp_call */ (reprfunc)PySwigPacked_str, /* tp_str */ PyObject_GenericGetAttr, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ Py_TPFLAGS_DEFAULT, /* tp_flags */ swigpacked_doc, /* tp_doc */ 0, /* tp_traverse */ 0, /* tp_clear */ 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ #if PY_VERSION_HEX >= 0x02020000 0, /* tp_iter */ 0, /* tp_iternext */ 0, /* tp_methods */ 0, /* tp_members */ 0, /* tp_getset */ 0, /* tp_base */ 0, /* tp_dict */ 0, /* tp_descr_get */ 0, /* tp_descr_set */ 0, /* tp_dictoffset */ 0, /* tp_init */ 0, /* tp_alloc */ 0, /* tp_new */ 0, /* tp_free */ 0, /* tp_is_gc */ 0, /* tp_bases */ 0, /* tp_mro */ 0, /* tp_cache */ 0, /* tp_subclasses */ 0, /* tp_weaklist */ #endif #if PY_VERSION_HEX >= 0x02030000 0, /* tp_del */ #endif #ifdef COUNT_ALLOCS 0,0,0,0 /* tp_alloc -> tp_next */ #endif }; pyswigpacked_type = tmp; pyswigpacked_type.ob_type = &PyType_Type; type_init = 1; } return &pyswigpacked_type; } SWIGRUNTIME PyObject * PySwigPacked_New(void *ptr, size_t size, swig_type_info *ty) { PySwigPacked *sobj = PyObject_NEW(PySwigPacked, PySwigPacked_type()); if (sobj) { void *pack = malloc(size); if (pack) { memcpy(pack, ptr, size); sobj->pack = pack; sobj->ty = ty; sobj->size = size; } else { PyObject_DEL((PyObject *) sobj); sobj = 0; } } return (PyObject *) sobj; } SWIGRUNTIME swig_type_info * PySwigPacked_UnpackData(PyObject *obj, void *ptr, size_t size) { if (PySwigPacked_Check(obj)) { PySwigPacked *sobj = (PySwigPacked *)obj; if (sobj->size != size) return 0; memcpy(ptr, sobj->pack, size); return sobj->ty; } else { return 0; } } /* ----------------------------------------------------------------------------- * pointers/data manipulation * ----------------------------------------------------------------------------- */ SWIGRUNTIMEINLINE PyObject * _SWIG_This(void) { return PyString_FromString("this"); } SWIGRUNTIME PyObject * SWIG_This(void) { static PyObject *SWIG_STATIC_POINTER(swig_this) = _SWIG_This(); return swig_this; } /* #define SWIG_PYTHON_SLOW_GETSET_THIS */ SWIGRUNTIME PySwigObject * SWIG_Python_GetSwigThis(PyObject *pyobj) { if (PySwigObject_Check(pyobj)) { return (PySwigObject *) pyobj; } else { PyObject *obj = 0; #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000)) if (PyInstance_Check(pyobj)) { obj = _PyInstance_Lookup(pyobj, SWIG_This()); } else { PyObject **dictptr = _PyObject_GetDictPtr(pyobj); if (dictptr != NULL) { PyObject *dict = *dictptr; obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; } else { #ifdef PyWeakref_CheckProxy if (PyWeakref_CheckProxy(pyobj)) { PyObject *wobj = PyWeakref_GET_OBJECT(pyobj); return wobj ? SWIG_Python_GetSwigThis(wobj) : 0; } #endif obj = PyObject_GetAttr(pyobj,SWIG_This()); if (obj) { Py_DECREF(obj); } else { if (PyErr_Occurred()) PyErr_Clear(); return 0; } } } #else obj = PyObject_GetAttr(pyobj,SWIG_This()); if (obj) { Py_DECREF(obj); } else { if (PyErr_Occurred()) PyErr_Clear(); return 0; } #endif if (obj && !PySwigObject_Check(obj)) { /* a PyObject is called 'this', try to get the 'real this' PySwigObject from it */ return SWIG_Python_GetSwigThis(obj); } return (PySwigObject *)obj; } } /* Acquire a pointer value */ SWIGRUNTIME int SWIG_Python_AcquirePtr(PyObject *obj, int own) { if (own) { PySwigObject *sobj = SWIG_Python_GetSwigThis(obj); if (sobj) { int oldown = sobj->own; sobj->own = own; return oldown; } } return 0; } /* Convert a pointer value */ SWIGRUNTIME int SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { if (!obj) return SWIG_ERROR; if (obj == Py_None) { if (ptr) *ptr = 0; return SWIG_OK; } else { PySwigObject *sobj = SWIG_Python_GetSwigThis(obj); while (sobj) { void *vptr = sobj->ptr; if (ty) { swig_type_info *to = sobj->ty; if (to == ty) { /* no type cast needed */ if (ptr) *ptr = vptr; break; } else { swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); if (!tc) { sobj = (PySwigObject *)sobj->next; } else { if (ptr) *ptr = SWIG_TypeCast(tc,vptr); break; } } } else { if (ptr) *ptr = vptr; break; } } if (sobj) { if (own) *own = sobj->own; if (flags & SWIG_POINTER_DISOWN) { sobj->own = 0; } return SWIG_OK; } else { int res = SWIG_ERROR; if (flags & SWIG_POINTER_IMPLICIT_CONV) { PySwigClientData *data = ty ? (PySwigClientData *) ty->clientdata : 0; if (data && !data->implicitconv) { PyObject *klass = data->klass; if (klass) { PyObject *impconv; data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/ impconv = SWIG_Python_CallFunctor(klass, obj); data->implicitconv = 0; if (PyErr_Occurred()) { PyErr_Clear(); impconv = 0; } if (impconv) { PySwigObject *iobj = SWIG_Python_GetSwigThis(impconv); if (iobj) { void *vptr; res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0); if (SWIG_IsOK(res)) { if (ptr) { *ptr = vptr; /* transfer the ownership to 'ptr' */ iobj->own = 0; res = SWIG_AddCast(res); res = SWIG_AddNewMask(res); } else { res = SWIG_AddCast(res); } } } Py_DECREF(impconv); } } } } return res; } } } /* Convert a function ptr value */ SWIGRUNTIME int SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) { if (!PyCFunction_Check(obj)) { return SWIG_ConvertPtr(obj, ptr, ty, 0); } else { void *vptr = 0; /* here we get the method pointer for callbacks */ char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0; if (desc) { desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0; if (!desc) return SWIG_ERROR; } if (ty) { swig_cast_info *tc = SWIG_TypeCheck(desc,ty); if (!tc) return SWIG_ERROR; *ptr = SWIG_TypeCast(tc,vptr); } else { *ptr = vptr; } return SWIG_OK; } } /* Convert a packed value value */ SWIGRUNTIME int SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) { swig_type_info *to = PySwigPacked_UnpackData(obj, ptr, sz); if (!to) return SWIG_ERROR; if (ty) { if (to != ty) { /* check type cast? */ swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); if (!tc) return SWIG_ERROR; } } return SWIG_OK; } /* ----------------------------------------------------------------------------- * Create a new pointer object * ----------------------------------------------------------------------------- */ /* Create a new instance object, whitout calling __init__, and set the 'this' attribute. */ SWIGRUNTIME PyObject* SWIG_Python_NewShadowInstance(PySwigClientData *data, PyObject *swig_this) { #if (PY_VERSION_HEX >= 0x02020000) PyObject *inst = 0; PyObject *newraw = data->newraw; if (newraw) { inst = PyObject_Call(newraw, data->newargs, NULL); if (inst) { #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) PyObject **dictptr = _PyObject_GetDictPtr(inst); if (dictptr != NULL) { PyObject *dict = *dictptr; if (dict == NULL) { dict = PyDict_New(); *dictptr = dict; PyDict_SetItem(dict, SWIG_This(), swig_this); } } #else PyObject *key = SWIG_This(); PyObject_SetAttr(inst, key, swig_this); #endif } } else { PyObject *dict = PyDict_New(); PyDict_SetItem(dict, SWIG_This(), swig_this); inst = PyInstance_NewRaw(data->newargs, dict); Py_DECREF(dict); } return inst; #else #if (PY_VERSION_HEX >= 0x02010000) PyObject *inst; PyObject *dict = PyDict_New(); PyDict_SetItem(dict, SWIG_This(), swig_this); inst = PyInstance_NewRaw(data->newargs, dict); Py_DECREF(dict); return (PyObject *) inst; #else PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type); if (inst == NULL) { return NULL; } inst->in_class = (PyClassObject *)data->newargs; Py_INCREF(inst->in_class); inst->in_dict = PyDict_New(); if (inst->in_dict == NULL) { Py_DECREF(inst); return NULL; } #ifdef Py_TPFLAGS_HAVE_WEAKREFS inst->in_weakreflist = NULL; #endif #ifdef Py_TPFLAGS_GC PyObject_GC_Init(inst); #endif PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this); return (PyObject *) inst; #endif #endif } SWIGRUNTIME void SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this) { PyObject *dict; #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS) PyObject **dictptr = _PyObject_GetDictPtr(inst); if (dictptr != NULL) { dict = *dictptr; if (dict == NULL) { dict = PyDict_New(); *dictptr = dict; } PyDict_SetItem(dict, SWIG_This(), swig_this); return; } #endif dict = PyObject_GetAttrString(inst, "__dict__"); PyDict_SetItem(dict, SWIG_This(), swig_this); Py_DECREF(dict); } SWIGINTERN PyObject * SWIG_Python_InitShadowInstance(PyObject *args) { PyObject *obj[2]; if (!SWIG_Python_UnpackTuple(args,(char*)"swiginit", 2, 2, obj)) { return NULL; } else { PySwigObject *sthis = SWIG_Python_GetSwigThis(obj[0]); if (sthis) { PySwigObject_append((PyObject*) sthis, obj[1]); } else { SWIG_Python_SetSwigThis(obj[0], obj[1]); } return SWIG_Py_Void(); } } /* Create a new pointer object */ SWIGRUNTIME PyObject * SWIG_Python_NewPointerObj(void *ptr, swig_type_info *type, int flags) { if (!ptr) { return SWIG_Py_Void(); } else { int own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; PyObject *robj = PySwigObject_New(ptr, type, own); PySwigClientData *clientdata = type ? (PySwigClientData *)(type->clientdata) : 0; if (clientdata && !(flags & SWIG_POINTER_NOSHADOW)) { PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj); if (inst) { Py_DECREF(robj); robj = inst; } } return robj; } } /* Create a new packed object */ SWIGRUNTIMEINLINE PyObject * SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { return ptr ? PySwigPacked_New((void *) ptr, sz, type) : SWIG_Py_Void(); } /* -----------------------------------------------------------------------------* * Get type list * -----------------------------------------------------------------------------*/ #ifdef SWIG_LINK_RUNTIME void *SWIG_ReturnGlobalTypeList(void *); #endif SWIGRUNTIME swig_module_info * SWIG_Python_GetModule(void) { static void *type_pointer = (void *)0; /* first check if module already created */ if (!type_pointer) { #ifdef SWIG_LINK_RUNTIME type_pointer = SWIG_ReturnGlobalTypeList((void *)0); #else type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME); if (PyErr_Occurred()) { PyErr_Clear(); type_pointer = (void *)0; } #endif } return (swig_module_info *) type_pointer; } #if PY_MAJOR_VERSION < 2 /* PyModule_AddObject function was introduced in Python 2.0. The following function is copied out of Python/modsupport.c in python version 2.3.4 */ SWIGINTERN int PyModule_AddObject(PyObject *m, char *name, PyObject *o) { PyObject *dict; if (!PyModule_Check(m)) { PyErr_SetString(PyExc_TypeError, "PyModule_AddObject() needs module as first arg"); return SWIG_ERROR; } if (!o) { PyErr_SetString(PyExc_TypeError, "PyModule_AddObject() needs non-NULL value"); return SWIG_ERROR; } dict = PyModule_GetDict(m); if (dict == NULL) { /* Internal error -- modules must have a dict! */ PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__", PyModule_GetName(m)); return SWIG_ERROR; } if (PyDict_SetItemString(dict, name, o)) return SWIG_ERROR; Py_DECREF(o); return SWIG_OK; } #endif SWIGRUNTIME void SWIG_Python_DestroyModule(void *vptr) { swig_module_info *swig_module = (swig_module_info *) vptr; swig_type_info **types = swig_module->types; size_t i; for (i =0; i < swig_module->size; ++i) { swig_type_info *ty = types[i]; if (ty->owndata) { PySwigClientData *data = (PySwigClientData *) ty->clientdata; if (data) PySwigClientData_Del(data); } } Py_DECREF(SWIG_This()); } SWIGRUNTIME void SWIG_Python_SetModule(swig_module_info *swig_module) { static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };/* Sentinel */ PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table); PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule); if (pointer && module) { PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer); } else { Py_XDECREF(pointer); } } /* The python cached type query */ SWIGRUNTIME PyObject * SWIG_Python_TypeCache() { static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New(); return cache; } SWIGRUNTIME swig_type_info * SWIG_Python_TypeQuery(const char *type) { PyObject *cache = SWIG_Python_TypeCache(); PyObject *key = PyString_FromString(type); PyObject *obj = PyDict_GetItem(cache, key); swig_type_info *descriptor; if (obj) { descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj); } else { swig_module_info *swig_module = SWIG_Python_GetModule(); descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type); if (descriptor) { obj = PyCObject_FromVoidPtr(descriptor, NULL); PyDict_SetItem(cache, key, obj); Py_DECREF(obj); } } Py_DECREF(key); return descriptor; } /* For backward compatibility only */ #define SWIG_POINTER_EXCEPTION 0 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg) #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags) SWIGRUNTIME int SWIG_Python_AddErrMesg(const char* mesg, int infront) { if (PyErr_Occurred()) { PyObject *type = 0; PyObject *value = 0; PyObject *traceback = 0; PyErr_Fetch(&type, &value, &traceback); if (value) { PyObject *old_str = PyObject_Str(value); Py_XINCREF(type); PyErr_Clear(); if (infront) { PyErr_Format(type, "%s %s", mesg, PyString_AsString(old_str)); } else { PyErr_Format(type, "%s %s", PyString_AsString(old_str), mesg); } Py_DECREF(old_str); } return 1; } else { return 0; } } SWIGRUNTIME int SWIG_Python_ArgFail(int argnum) { if (PyErr_Occurred()) { /* add information about failing argument */ char mesg[256]; PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum); return SWIG_Python_AddErrMesg(mesg, 1); } else { return 0; } } SWIGRUNTIMEINLINE const char * PySwigObject_GetDesc(PyObject *self) { PySwigObject *v = (PySwigObject *)self; swig_type_info *ty = v ? v->ty : 0; return ty ? ty->str : (char*)""; } SWIGRUNTIME void SWIG_Python_TypeError(const char *type, PyObject *obj) { if (type) { #if defined(SWIG_COBJECT_TYPES) if (obj && PySwigObject_Check(obj)) { const char *otype = (const char *) PySwigObject_GetDesc(obj); if (otype) { PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'PySwigObject(%s)' is received", type, otype); return; } } else #endif { const char *otype = (obj ? obj->ob_type->tp_name : 0); if (otype) { PyObject *str = PyObject_Str(obj); const char *cstr = str ? PyString_AsString(str) : 0; if (cstr) { PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received", type, otype, cstr); } else { PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received", type, otype); } Py_XDECREF(str); return; } } PyErr_Format(PyExc_TypeError, "a '%s' is expected", type); } else { PyErr_Format(PyExc_TypeError, "unexpected type is received"); } } /* Convert a pointer value, signal an exception on a type mismatch */ SWIGRUNTIME void * SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int argnum, int flags) { void *result; if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) { PyErr_Clear(); if (flags & SWIG_POINTER_EXCEPTION) { SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); SWIG_Python_ArgFail(argnum); } } return result; } #ifdef __cplusplus #if 0 { /* cc-mode */ #endif } #endif #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else /* -------- TYPES TABLE (BEGIN) -------- */ #define SWIGTYPE_p_AllocatorType swig_types[0] #define SWIGTYPE_p_CapacityHandlerType swig_types[1] #define SWIGTYPE_p_ContainedType swig_types[2] #define SWIGTYPE_p_ElementHandlerType swig_types[3] #define SWIGTYPE_p_FileFormatDescription swig_types[4] #define SWIGTYPE_p_HashType swig_types[5] #define SWIGTYPE_p_SndSysFilterLocation swig_types[6] #define SWIGTYPE_p_ThisType swig_types[7] #define SWIGTYPE_p_ValueType swig_types[8] #define SWIGTYPE_p__csKeyCharType swig_types[9] #define SWIGTYPE_p__csKeyEventType swig_types[10] #define SWIGTYPE_p__csKeyModifierNumType swig_types[11] #define SWIGTYPE_p__csKeyModifierType swig_types[12] #define SWIGTYPE_p__csKeyModifiers swig_types[13] #define SWIGTYPE_p__csMouseCursorID swig_types[14] #define SWIGTYPE_p__csMouseEventType swig_types[15] #define SWIGTYPE_p__csPyEventHandler swig_types[16] #define SWIGTYPE_p_basetype swig_types[17] #define SWIGTYPE_p_bool swig_types[18] #define SWIGTYPE_p_celData swig_types[19] #define SWIGTYPE_p_celDataType swig_types[20] #define SWIGTYPE_p_celData_value swig_types[21] #define SWIGTYPE_p_celData_value_col swig_types[22] #define SWIGTYPE_p_celData_value_par swig_types[23] #define SWIGTYPE_p_celData_value_v swig_types[24] #define SWIGTYPE_p_celGenericParameterBlock swig_types[25] #define SWIGTYPE_p_celInitializer swig_types[26] #define SWIGTYPE_p_celOneParameterBlock swig_types[27] #define SWIGTYPE_p_celPersistenceResult swig_types[28] #define SWIGTYPE_p_celPersistenceType swig_types[29] #define SWIGTYPE_p_celStabiliserFunction swig_types[30] #define SWIGTYPE_p_celVariableParameterBlock swig_types[31] #define SWIGTYPE_p_char swig_types[32] #define SWIGTYPE_p_csArrayTcsImageIOFileFormatDescription_const_p_csArrayElementHandlerTcsImageIOFileFormatDescription_const_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t swig_types[33] #define SWIGTYPE_p_csArrayTcsPluginRequest_csArrayElementHandlerTcsPluginRequest_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t swig_types[34] #define SWIGTYPE_p_csArrayTcsShaderVariable_p_csArrayElementHandlerTcsShaderVariable_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t swig_types[35] #define SWIGTYPE_p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t swig_types[36] #define SWIGTYPE_p_csBox3 swig_types[37] #define SWIGTYPE_p_csColor swig_types[38] #define SWIGTYPE_p_csColor4 swig_types[39] #define SWIGTYPE_p_csFlags swig_types[40] #define SWIGTYPE_p_csHashTcsStrKey_csStrKey_CS__Memory__AllocatorMalloc_t swig_types[41] #define SWIGTYPE_p_csInitializer swig_types[42] #define SWIGTYPE_p_csMatrix3 swig_types[43] #define SWIGTYPE_p_csOrthoTransform swig_types[44] #define SWIGTYPE_p_csPath swig_types[45] #define SWIGTYPE_p_csPlane3 swig_types[46] #define SWIGTYPE_p_csPtrTiCelDataBuffer_t swig_types[47] #define SWIGTYPE_p_csPtrTiCelEntityIterator_t swig_types[48] #define SWIGTYPE_p_csPtrTiCelPropertyClass_t swig_types[49] #define SWIGTYPE_p_csPtrTiRigidBody_t swig_types[50] #define SWIGTYPE_p_csRefArrayTiObject_t swig_types[51] #define SWIGTYPE_p_csRefTiBase_t swig_types[52] #define SWIGTYPE_p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t swig_types[53] #define SWIGTYPE_p_csString swig_types[54] #define SWIGTYPE_p_csStringArray swig_types[55] #define SWIGTYPE_p_csVector2 swig_types[56] #define SWIGTYPE_p_csVector3 swig_types[57] #define SWIGTYPE_p_csXRotMatrix3 swig_types[58] #define SWIGTYPE_p_csXScaleMatrix3 swig_types[59] #define SWIGTYPE_p_csYRotMatrix3 swig_types[60] #define SWIGTYPE_p_csYScaleMatrix3 swig_types[61] #define SWIGTYPE_p_csZRotMatrix3 swig_types[62] #define SWIGTYPE_p_csZScaleMatrix3 swig_types[63] #define SWIGTYPE_p_f_p_iMeshWrapper_p_iFrustumView_bool__void swig_types[64] #define SWIGTYPE_p_float swig_types[65] #define SWIGTYPE_p_iAnimTimeUpdateHandler swig_types[66] #define SWIGTYPE_p_iArrayChangeAllTcsShaderVariable_p_t swig_types[67] #define SWIGTYPE_p_iArrayChangeAllTcsSprite2DVertex_t swig_types[68] #define SWIGTYPE_p_iArrayChangeElementsTcsShaderVariable_p_t swig_types[69] #define SWIGTYPE_p_iArrayChangeElementsTcsSprite2DVertex_t swig_types[70] #define SWIGTYPE_p_iArrayReadOnlyTcsShaderVariable_p_t swig_types[71] #define SWIGTYPE_p_iArrayReadOnlyTcsSprite2DVertex_t swig_types[72] #define SWIGTYPE_p_iArrayReadOnlyTiSceneNode_p_t swig_types[73] #define SWIGTYPE_p_iAws swig_types[74] #define SWIGTYPE_p_iAwsComponent swig_types[75] #define SWIGTYPE_p_iAwsComponentFactory swig_types[76] #define SWIGTYPE_p_iAwsComponentNode swig_types[77] #define SWIGTYPE_p_iAwsConnectionKey swig_types[78] #define SWIGTYPE_p_iAwsConnectionNodeFactory swig_types[79] #define SWIGTYPE_p_iAwsFloatKey swig_types[80] #define SWIGTYPE_p_iAwsIntKey swig_types[81] #define SWIGTYPE_p_iAwsKey swig_types[82] #define SWIGTYPE_p_iAwsKeyContainer swig_types[83] #define SWIGTYPE_p_iAwsKeyFactory swig_types[84] #define SWIGTYPE_p_iAwsLayoutManager swig_types[85] #define SWIGTYPE_p_iAwsPointKey swig_types[86] #define SWIGTYPE_p_iAwsPrefManager swig_types[87] #define SWIGTYPE_p_iAwsRGBKey swig_types[88] #define SWIGTYPE_p_iAwsRectKey swig_types[89] #define SWIGTYPE_p_iAwsSink swig_types[90] #define SWIGTYPE_p_iAwsSinkManager swig_types[91] #define SWIGTYPE_p_iAwsSlot swig_types[92] #define SWIGTYPE_p_iAwsSource swig_types[93] #define SWIGTYPE_p_iAwsStringKey swig_types[94] #define SWIGTYPE_p_iBase swig_types[95] #define SWIGTYPE_p_iBillboard swig_types[96] #define SWIGTYPE_p_iBillboardEventHandler swig_types[97] #define SWIGTYPE_p_iBillboardLayer swig_types[98] #define SWIGTYPE_p_iBillboardManager swig_types[99] #define SWIGTYPE_p_iBinaryLoaderPlugin swig_types[100] #define SWIGTYPE_p_iBodyGroup swig_types[101] #define SWIGTYPE_p_iCacheManager swig_types[102] #define SWIGTYPE_p_iCamera swig_types[103] #define SWIGTYPE_p_iCameraPosition swig_types[104] #define SWIGTYPE_p_iCameraPositionList swig_types[105] #define SWIGTYPE_p_iCameraSectorListener swig_types[106] #define SWIGTYPE_p_iCelBehaviour swig_types[107] #define SWIGTYPE_p_iCelBlLayer swig_types[108] #define SWIGTYPE_p_iCelConsole swig_types[109] #define SWIGTYPE_p_iCelConsoleCommand swig_types[110] #define SWIGTYPE_p_iCelDataBuffer swig_types[111] #define SWIGTYPE_p_iCelEntity swig_types[112] #define SWIGTYPE_p_iCelEntityIterator swig_types[113] #define SWIGTYPE_p_iCelEntityList swig_types[114] #define SWIGTYPE_p_iCelEntityRemoveCallback swig_types[115] #define SWIGTYPE_p_iCelEntityTemplate swig_types[116] #define SWIGTYPE_p_iCelEntityTracker swig_types[117] #define SWIGTYPE_p_iCelInventorySpace swig_types[118] #define SWIGTYPE_p_iCelInventorySpaceSlot swig_types[119] #define SWIGTYPE_p_iCelMapFile swig_types[120] #define SWIGTYPE_p_iCelNewEntityCallback swig_types[121] #define SWIGTYPE_p_iCelParameterBlock swig_types[122] #define SWIGTYPE_p_iCelPlLayer swig_types[123] #define SWIGTYPE_p_iCelPropertyChangeCallback swig_types[124] #define SWIGTYPE_p_iCelPropertyClass swig_types[125] #define SWIGTYPE_p_iCelPropertyClassFactory swig_types[126] #define SWIGTYPE_p_iCelPropertyClassList swig_types[127] #define SWIGTYPE_p_iCelPropertyClassTemplate swig_types[128] #define SWIGTYPE_p_iCelRegion swig_types[129] #define SWIGTYPE_p_iCelTimerListener swig_types[130] #define SWIGTYPE_p_iCelZone swig_types[131] #define SWIGTYPE_p_iClipper2D swig_types[132] #define SWIGTYPE_p_iCollideSystem swig_types[133] #define SWIGTYPE_p_iCollider swig_types[134] #define SWIGTYPE_p_iColoredVertices swig_types[135] #define SWIGTYPE_p_iCommandLineParser swig_types[136] #define SWIGTYPE_p_iComponent swig_types[137] #define SWIGTYPE_p_iConfigFile swig_types[138] #define SWIGTYPE_p_iConfigIterator swig_types[139] #define SWIGTYPE_p_iConfigManager swig_types[140] #define SWIGTYPE_p_iConsoleInput swig_types[141] #define SWIGTYPE_p_iConsoleOutput swig_types[142] #define SWIGTYPE_p_iConsoleWatcher swig_types[143] #define SWIGTYPE_p_iDataBuffer swig_types[144] #define SWIGTYPE_p_iDebugHelper swig_types[145] #define SWIGTYPE_p_iDocument swig_types[146] #define SWIGTYPE_p_iDocumentAttribute swig_types[147] #define SWIGTYPE_p_iDocumentAttributeIterator swig_types[148] #define SWIGTYPE_p_iDocumentNode swig_types[149] #define SWIGTYPE_p_iDocumentNodeIterator swig_types[150] #define SWIGTYPE_p_iDocumentSystem swig_types[151] #define SWIGTYPE_p_iDynamicSystem swig_types[152] #define SWIGTYPE_p_iDynamics swig_types[153] #define SWIGTYPE_p_iDynamicsColliderCollisionCallback swig_types[154] #define SWIGTYPE_p_iDynamicsCollisionCallback swig_types[155] #define SWIGTYPE_p_iDynamicsMoveCallback swig_types[156] #define SWIGTYPE_p_iDynamicsSystemCollider swig_types[157] #define SWIGTYPE_p_iEngine swig_types[158] #define SWIGTYPE_p_iEngineFrameCallback swig_types[159] #define SWIGTYPE_p_iEngineSectorCallback swig_types[160] #define SWIGTYPE_p_iEngineSequenceManager swig_types[161] #define SWIGTYPE_p_iEngineSequenceParameters swig_types[162] #define SWIGTYPE_p_iEvent swig_types[163] #define SWIGTYPE_p_iEventAttributeIterator swig_types[164] #define SWIGTYPE_p_iEventCord swig_types[165] #define SWIGTYPE_p_iEventHandler swig_types[166] #define SWIGTYPE_p_iEventNameRegistry swig_types[167] #define SWIGTYPE_p_iEventOutlet swig_types[168] #define SWIGTYPE_p_iEventPlug swig_types[169] #define SWIGTYPE_p_iEventQueue swig_types[170] #define SWIGTYPE_p_iFactory swig_types[171] #define SWIGTYPE_p_iFile swig_types[172] #define SWIGTYPE_p_iFont swig_types[173] #define SWIGTYPE_p_iFontDeleteNotify swig_types[174] #define SWIGTYPE_p_iFontServer swig_types[175] #define SWIGTYPE_p_iFrustumView swig_types[176] #define SWIGTYPE_p_iFrustumViewUserdata swig_types[177] #define SWIGTYPE_p_iGenMeshAnimationControl swig_types[178] #define SWIGTYPE_p_iGenMeshAnimationControlFactory swig_types[179] #define SWIGTYPE_p_iGenMeshAnimationControlType swig_types[180] #define SWIGTYPE_p_iGenMeshSkeletonControlState swig_types[181] #define SWIGTYPE_p_iGeneralFactoryState swig_types[182] #define SWIGTYPE_p_iGeneralMeshCommonState swig_types[183] #define SWIGTYPE_p_iGeneralMeshState swig_types[184] #define SWIGTYPE_p_iGeneralMeshSubMesh swig_types[185] #define SWIGTYPE_p_iGraphics2D swig_types[186] #define SWIGTYPE_p_iGraphics3D swig_types[187] #define SWIGTYPE_p_iHalo swig_types[188] #define SWIGTYPE_p_iImage swig_types[189] #define SWIGTYPE_p_iImageIO swig_types[190] #define SWIGTYPE_p_iJoint swig_types[191] #define SWIGTYPE_p_iJoystickDriver swig_types[192] #define SWIGTYPE_p_iKeyComposer swig_types[193] #define SWIGTYPE_p_iKeyboardDriver swig_types[194] #define SWIGTYPE_p_iLight swig_types[195] #define SWIGTYPE_p_iLightCallback swig_types[196] #define SWIGTYPE_p_iLightIterator swig_types[197] #define SWIGTYPE_p_iLightList swig_types[198] #define SWIGTYPE_p_iLightVisibleCallback swig_types[199] #define SWIGTYPE_p_iLightingProcessData swig_types[200] #define SWIGTYPE_p_iLightingProcessInfo swig_types[201] #define SWIGTYPE_p_iLoader swig_types[202] #define SWIGTYPE_p_iLoaderPlugin swig_types[203] #define SWIGTYPE_p_iLoaderStatus swig_types[204] #define SWIGTYPE_p_iMapNode swig_types[205] #define SWIGTYPE_p_iMaterial swig_types[206] #define SWIGTYPE_p_iMaterialEngine swig_types[207] #define SWIGTYPE_p_iMaterialList swig_types[208] #define SWIGTYPE_p_iMaterialWrapper swig_types[209] #define SWIGTYPE_p_iMeshDrawCallback swig_types[210] #define SWIGTYPE_p_iMeshFactoryList swig_types[211] #define SWIGTYPE_p_iMeshFactoryWrapper swig_types[212] #define SWIGTYPE_p_iMeshList swig_types[213] #define SWIGTYPE_p_iMeshObject swig_types[214] #define SWIGTYPE_p_iMeshObjectDrawCallback swig_types[215] #define SWIGTYPE_p_iMeshObjectFactory swig_types[216] #define SWIGTYPE_p_iMeshObjectType swig_types[217] #define SWIGTYPE_p_iMeshWrapper swig_types[218] #define SWIGTYPE_p_iMeshWrapperIterator swig_types[219] #define SWIGTYPE_p_iMissingLoaderData swig_types[220] #define SWIGTYPE_p_iMouseDriver swig_types[221] #define SWIGTYPE_p_iMovable swig_types[222] #define SWIGTYPE_p_iMovableListener swig_types[223] #define SWIGTYPE_p_iMovieRecorder swig_types[224] #define SWIGTYPE_p_iNativeWindow swig_types[225] #define SWIGTYPE_p_iNativeWindowManager swig_types[226] #define SWIGTYPE_p_iODEAMotorJoint swig_types[227] #define SWIGTYPE_p_iODEBallJoint swig_types[228] #define SWIGTYPE_p_iODEDynamicState swig_types[229] #define SWIGTYPE_p_iODEDynamicSystemState swig_types[230] #define SWIGTYPE_p_iODEFrameUpdateCallback swig_types[231] #define SWIGTYPE_p_iODEGeneralJointState swig_types[232] #define SWIGTYPE_p_iODEHinge2Joint swig_types[233] #define SWIGTYPE_p_iODEHingeJoint swig_types[234] #define SWIGTYPE_p_iODEJointState swig_types[235] #define SWIGTYPE_p_iODESliderJoint swig_types[236] #define SWIGTYPE_p_iODEUniversalJoint swig_types[237] #define SWIGTYPE_p_iObject swig_types[238] #define SWIGTYPE_p_iObjectIterator swig_types[239] #define SWIGTYPE_p_iObjectModel swig_types[240] #define SWIGTYPE_p_iObjectModelListener swig_types[241] #define SWIGTYPE_p_iObjectNameChangeListener swig_types[242] #define SWIGTYPE_p_iObjectRegistry swig_types[243] #define SWIGTYPE_p_iObjectRegistryIterator swig_types[244] #define SWIGTYPE_p_iOffscreenCanvasCallback swig_types[245] #define SWIGTYPE_p_iParameterESM swig_types[246] #define SWIGTYPE_p_iParticleBuiltinEffectorFactory swig_types[247] #define SWIGTYPE_p_iParticleBuiltinEffectorForce swig_types[248] #define SWIGTYPE_p_iParticleBuiltinEffectorLinColor swig_types[249] #define SWIGTYPE_p_iParticleBuiltinEffectorVelocityField swig_types[250] #define SWIGTYPE_p_iParticleBuiltinEmitterBase swig_types[251] #define SWIGTYPE_p_iParticleBuiltinEmitterBox swig_types[252] #define SWIGTYPE_p_iParticleBuiltinEmitterCone swig_types[253] #define SWIGTYPE_p_iParticleBuiltinEmitterCylinder swig_types[254] #define SWIGTYPE_p_iParticleBuiltinEmitterFactory swig_types[255] #define SWIGTYPE_p_iParticleBuiltinEmitterSphere swig_types[256] #define SWIGTYPE_p_iParticleEffector swig_types[257] #define SWIGTYPE_p_iParticleEmitter swig_types[258] #define SWIGTYPE_p_iParticleSystem swig_types[259] #define SWIGTYPE_p_iParticleSystemBase swig_types[260] #define SWIGTYPE_p_iParticleSystemFactory swig_types[261] #define SWIGTYPE_p_iPath swig_types[262] #define SWIGTYPE_p_iPcActorMove swig_types[263] #define SWIGTYPE_p_iPcBillboard swig_types[264] #define SWIGTYPE_p_iPcCamera swig_types[265] #define SWIGTYPE_p_iPcCharacteristics swig_types[266] #define SWIGTYPE_p_iPcCollisionDetection swig_types[267] #define SWIGTYPE_p_iPcCommandInput swig_types[268] #define SWIGTYPE_p_iPcCraftController swig_types[269] #define SWIGTYPE_p_iPcDamage swig_types[270] #define SWIGTYPE_p_iPcDefaultCamera swig_types[271] #define SWIGTYPE_p_iPcGravity swig_types[272] #define SWIGTYPE_p_iPcGravityCallback swig_types[273] #define SWIGTYPE_p_iPcHover swig_types[274] #define SWIGTYPE_p_iPcInventory swig_types[275] #define SWIGTYPE_p_iPcInventoryListener swig_types[276] #define SWIGTYPE_p_iPcLight swig_types[277] #define SWIGTYPE_p_iPcLinearMovement swig_types[278] #define SWIGTYPE_p_iPcMechanicsBalancedGroup swig_types[279] #define SWIGTYPE_p_iPcMechanicsJoint swig_types[280] #define SWIGTYPE_p_iPcMechanicsObject swig_types[281] #define SWIGTYPE_p_iPcMechanicsSystem swig_types[282] #define SWIGTYPE_p_iPcMechanicsThruster swig_types[283] #define SWIGTYPE_p_iPcMechanicsThrusterController swig_types[284] #define SWIGTYPE_p_iPcMesh swig_types[285] #define SWIGTYPE_p_iPcMeshSelect swig_types[286] #define SWIGTYPE_p_iPcMeshSelectListener swig_types[287] #define SWIGTYPE_p_iPcMovable swig_types[288] #define SWIGTYPE_p_iPcMovableConstraint swig_types[289] #define SWIGTYPE_p_iPcMover swig_types[290] #define SWIGTYPE_p_iPcProjectile swig_types[291] #define SWIGTYPE_p_iPcProperties swig_types[292] #define SWIGTYPE_p_iPcPropertyListener swig_types[293] #define SWIGTYPE_p_iPcRegion swig_types[294] #define SWIGTYPE_p_iPcSimpleCamera swig_types[295] #define SWIGTYPE_p_iPcSolid swig_types[296] #define SWIGTYPE_p_iPcSoundListener swig_types[297] #define SWIGTYPE_p_iPcSoundSource swig_types[298] #define SWIGTYPE_p_iPcTimer swig_types[299] #define SWIGTYPE_p_iPcTooltip swig_types[300] #define SWIGTYPE_p_iPcWheeled swig_types[301] #define SWIGTYPE_p_iPcZoneManager swig_types[302] #define SWIGTYPE_p_iPluginIterator swig_types[303] #define SWIGTYPE_p_iPluginManager swig_types[304] #define SWIGTYPE_p_iPolygonHandle swig_types[305] #define SWIGTYPE_p_iPolygonMesh swig_types[306] #define SWIGTYPE_p_iPortal swig_types[307] #define SWIGTYPE_p_iPortalCallback swig_types[308] #define SWIGTYPE_p_iPortalContainer swig_types[309] #define SWIGTYPE_p_iRegion swig_types[310] #define SWIGTYPE_p_iRegionList swig_types[311] #define SWIGTYPE_p_iRendererLightmap swig_types[312] #define SWIGTYPE_p_iReporter swig_types[313] #define SWIGTYPE_p_iReporterIterator swig_types[314] #define SWIGTYPE_p_iReporterListener swig_types[315] #define SWIGTYPE_p_iRigidBody swig_types[316] #define SWIGTYPE_p_iSCF swig_types[317] #define SWIGTYPE_p_iSaver swig_types[318] #define SWIGTYPE_p_iSceneNode swig_types[319] #define SWIGTYPE_p_iSceneNodeArray swig_types[320] #define SWIGTYPE_p_iScript swig_types[321] #define SWIGTYPE_p_iScriptObject swig_types[322] #define SWIGTYPE_p_iSector swig_types[323] #define SWIGTYPE_p_iSectorCallback swig_types[324] #define SWIGTYPE_p_iSectorIterator swig_types[325] #define SWIGTYPE_p_iSectorList swig_types[326] #define SWIGTYPE_p_iSectorMeshCallback swig_types[327] #define SWIGTYPE_p_iSequenceTimedOperation swig_types[328] #define SWIGTYPE_p_iSequenceTrigger swig_types[329] #define SWIGTYPE_p_iSequenceWrapper swig_types[330] #define SWIGTYPE_p_iShader swig_types[331] #define SWIGTYPE_p_iShaderCompiler swig_types[332] #define SWIGTYPE_p_iShaderManager swig_types[333] #define SWIGTYPE_p_iShaderPriorityList swig_types[334] #define SWIGTYPE_p_iShaderVarStack swig_types[335] #define SWIGTYPE_p_iShaderVariableAccessor swig_types[336] #define SWIGTYPE_p_iShaderVariableContext swig_types[337] #define SWIGTYPE_p_iSimpleFormerState swig_types[338] #define SWIGTYPE_p_iSkeleton swig_types[339] #define SWIGTYPE_p_iSkeletonBone swig_types[340] #define SWIGTYPE_p_iSkeletonBoneFactory swig_types[341] #define SWIGTYPE_p_iSkeletonBoneRagdollInfo swig_types[342] #define SWIGTYPE_p_iSkeletonBoneUpdateCallback swig_types[343] #define SWIGTYPE_p_iSkeletonFactory swig_types[344] #define SWIGTYPE_p_iSkeletonGraveyard swig_types[345] #define SWIGTYPE_p_iSkeletonScript swig_types[346] #define SWIGTYPE_p_iSkeletonScriptCallback swig_types[347] #define SWIGTYPE_p_iSkeletonScriptKeyFrame swig_types[348] #define SWIGTYPE_p_iSkeletonSocket swig_types[349] #define SWIGTYPE_p_iSkeletonSocketFactory swig_types[350] #define SWIGTYPE_p_iSkeletonUpdateCallback swig_types[351] #define SWIGTYPE_p_iSndSysData swig_types[352] #define SWIGTYPE_p_iSndSysListener swig_types[353] #define SWIGTYPE_p_iSndSysLoader swig_types[354] #define SWIGTYPE_p_iSndSysManager swig_types[355] #define SWIGTYPE_p_iSndSysRenderer swig_types[356] #define SWIGTYPE_p_iSndSysRendererCallback swig_types[357] #define SWIGTYPE_p_iSndSysRendererSoftware swig_types[358] #define SWIGTYPE_p_iSndSysSoftwareDriver swig_types[359] #define SWIGTYPE_p_iSndSysSoftwareFilter3D swig_types[360] #define SWIGTYPE_p_iSndSysSoftwareOutputFilter swig_types[361] #define SWIGTYPE_p_iSndSysSource swig_types[362] #define SWIGTYPE_p_iSndSysSourceSoftware swig_types[363] #define SWIGTYPE_p_iSndSysSourceSoftware3D swig_types[364] #define SWIGTYPE_p_iSndSysStream swig_types[365] #define SWIGTYPE_p_iSndSysStreamCallback swig_types[366] #define SWIGTYPE_p_iSndSysWrapper swig_types[367] #define SWIGTYPE_p_iSprite2DFactoryState swig_types[368] #define SWIGTYPE_p_iSprite2DState swig_types[369] #define SWIGTYPE_p_iSprite2DUVAnimation swig_types[370] #define SWIGTYPE_p_iSprite2DUVAnimationFrame swig_types[371] #define SWIGTYPE_p_iSprite3DFactoryState swig_types[372] #define SWIGTYPE_p_iSprite3DState swig_types[373] #define SWIGTYPE_p_iSpriteAction swig_types[374] #define SWIGTYPE_p_iSpriteCal3DFactoryState swig_types[375] #define SWIGTYPE_p_iSpriteCal3DSocket swig_types[376] #define SWIGTYPE_p_iSpriteCal3DState swig_types[377] #define SWIGTYPE_p_iSpriteFrame swig_types[378] #define SWIGTYPE_p_iSpriteSocket swig_types[379] #define SWIGTYPE_p_iStandardReporterListener swig_types[380] #define SWIGTYPE_p_iString swig_types[381] #define SWIGTYPE_p_iStringArray swig_types[382] #define SWIGTYPE_p_iStringSet swig_types[383] #define SWIGTYPE_p_iSuperLightmap swig_types[384] #define SWIGTYPE_p_iTerraFormer swig_types[385] #define SWIGTYPE_p_iTerraSampler swig_types[386] #define SWIGTYPE_p_iTerrainFactoryState swig_types[387] #define SWIGTYPE_p_iTerrainObjectState swig_types[388] #define SWIGTYPE_p_iTextureCallback swig_types[389] #define SWIGTYPE_p_iTextureHandle swig_types[390] #define SWIGTYPE_p_iTextureList swig_types[391] #define SWIGTYPE_p_iTextureManager swig_types[392] #define SWIGTYPE_p_iTextureWrapper swig_types[393] #define SWIGTYPE_p_iThingEnvironment swig_types[394] #define SWIGTYPE_p_iThingFactoryState swig_types[395] #define SWIGTYPE_p_iThingState swig_types[396] #define SWIGTYPE_p_iVFS swig_types[397] #define SWIGTYPE_p_iView swig_types[398] #define SWIGTYPE_p_iVirtualClock swig_types[399] #define SWIGTYPE_p_iVisibilityCuller swig_types[400] #define SWIGTYPE_p_iVisibilityCullerListener swig_types[401] #define SWIGTYPE_p_iVisibilityObject swig_types[402] #define SWIGTYPE_p_iVisibilityObjectIterator swig_types[403] #define SWIGTYPE_p_int swig_types[404] #define SWIGTYPE_p_int16_t swig_types[405] #define SWIGTYPE_p_int32_t swig_types[406] #define SWIGTYPE_p_int64_t swig_types[407] #define SWIGTYPE_p_int8_t swig_types[408] #define SWIGTYPE_p_int_least64_t swig_types[409] #define SWIGTYPE_p_p_iPcCollisionDetection swig_types[410] #define SWIGTYPE_p_p_iSector swig_types[411] #define SWIGTYPE_p_p_void swig_types[412] #define SWIGTYPE_p_scfImplementation1TcsPath_iPath_t swig_types[413] #define SWIGTYPE_p_uint16_t swig_types[414] #define SWIGTYPE_p_uint32_t swig_types[415] #define SWIGTYPE_p_uint64_t swig_types[416] #define SWIGTYPE_p_uint8_t swig_types[417] #define SWIGTYPE_p_uint_least64_t swig_types[418] #define SWIGTYPE_p_unsigned_int swig_types[419] #define SWIGTYPE_p_unsigned_long swig_types[420] #define SWIGTYPE_p_void swig_types[421] #define SWIGTYPE_p_wchar_t swig_types[422] static swig_type_info *swig_types[424]; static swig_module_info swig_module = {swig_types, 423, 0, 0, 0, 0}; #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) /* -------- TYPES TABLE (END) -------- */ #if (PY_VERSION_HEX <= 0x02000000) # if !defined(SWIG_PYTHON_CLASSIC) # error "This python version requires to use swig with the '-classic' option" # endif #endif /*----------------------------------------------- @(target):= _blcelc.so ------------------------------------------------*/ #define SWIG_init SWIG_init_blcelc #define SWIG_name "_blcelc" #define SWIGVERSION 0x010329 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a)) #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a)) #include namespace swig { class PyObject_ptr { protected: PyObject *_obj; public: PyObject_ptr() :_obj(0) { } PyObject_ptr(const PyObject_ptr& item) : _obj(item._obj) { Py_XINCREF(_obj); } PyObject_ptr(PyObject *obj, bool initial_ref = true) :_obj(obj) { if (initial_ref) Py_XINCREF(_obj); } PyObject_ptr & operator=(const PyObject_ptr& item) { Py_XINCREF(item._obj); Py_XDECREF(_obj); _obj = item._obj; return *this; } ~PyObject_ptr() { Py_XDECREF(_obj); } operator PyObject *() const { return _obj; } PyObject *operator->() const { return _obj; } }; } namespace swig { struct PyObject_var : PyObject_ptr { PyObject_var(PyObject* obj = 0) : PyObject_ptr(obj, false) { } PyObject_var & operator = (PyObject* obj) { Py_XDECREF(_obj); _obj = obj; return *this; } }; } #include #include "celtool/initapp.h" #include "celtool/stdparams.h" #include "physicallayer/datatype.h" #include "physicallayer/pl.h" #include "physicallayer/propfact.h" #include "physicallayer/propclas.h" #include "physicallayer/entity.h" #include "physicallayer/entitytpl.h" #include "physicallayer/persist.h" #include "behaviourlayer/bl.h" #include "behaviourlayer/behave.h" #include "propclass/region.h" #include "propclass/camera.h" #include "propclass/defcam.h" #include "propclass/simpcam.h" #include "propclass/mesh.h" #include "propclass/meshsel.h" #include "propclass/timer.h" #include "propclass/projectile.h" #include "propclass/solid.h" #include "propclass/gravity.h" #include "propclass/move.h" #include "propclass/inv.h" #include "propclass/chars.h" #include "propclass/linmove.h" #include "propclass/actormove.h" #include "propclass/input.h" #include "propclass/billboard.h" #include "propclass/mechsys.h" #include "propclass/sound.h" #include "propclass/mechthruster.h" #include "propclass/mover.h" #include "propclass/tooltip.h" #include "propclass/prop.h" #include "propclass/hover.h" #include "propclass/craft.h" #include "propclass/wheeled.h" #include "propclass/damage.h" #include "plugins/behaviourlayer/python/blpython.h" #include "tools/billboard.h" #include "tools/celconsole.h" #include "propclass/zone.h" struct _csPyEventHandler; extern PyObject * // from crystalspace_python _csRef_to_Python (const csRef & ref, void * ptr, const char * name); SWIGINTERN swig_type_info* SWIG_pchar_descriptor() { static int init = 0; static swig_type_info* info = 0; if (!init) { info = SWIG_TypeQuery("_p_char"); init = 1; } return info; } SWIGINTERN int SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc) { if (PyString_Check(obj)) { char *cstr; int len; PyString_AsStringAndSize(obj, &cstr, &len); if (cptr) { if (alloc) { /* In python the user should not be able to modify the inner string representation. To warranty that, if you define SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string buffer is always returned. The default behavior is just to return the pointer value, so, be careful. */ #if defined(SWIG_PYTHON_SAFE_CSTRINGS) if (*alloc != SWIG_OLDOBJ) #else if (*alloc == SWIG_NEWOBJ) #endif { *cptr = reinterpret_cast< char* >(memcpy((new char[len + 1]), cstr, sizeof(char)*(len + 1))); *alloc = SWIG_NEWOBJ; } else { *cptr = cstr; *alloc = SWIG_OLDOBJ; } } else { *cptr = PyString_AsString(obj); } } if (psize) *psize = len + 1; return SWIG_OK; } else { swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); if (pchar_descriptor) { void* vptr = 0; if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) { if (cptr) *cptr = (char *) vptr; if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0; if (alloc) *alloc = SWIG_OLDOBJ; return SWIG_OK; } } } return SWIG_TypeError; } SWIGINTERNINLINE PyObject* SWIG_From_bool (bool value) { return PyBool_FromLong(value ? 1 : 0); } #define SWIG_From_long PyInt_FromLong SWIGINTERNINLINE PyObject * SWIG_From_int (int value) { return SWIG_From_long (value); } #include #ifndef LLONG_MIN # define LLONG_MIN LONG_LONG_MIN #endif #ifndef LLONG_MAX # define LLONG_MAX LONG_LONG_MAX #endif #ifndef ULLONG_MAX # define ULLONG_MAX ULONG_LONG_MAX #endif SWIGINTERN int SWIG_AsVal_double (PyObject *obj, double *val) { int res = SWIG_TypeError; if (PyFloat_Check(obj)) { if (val) *val = PyFloat_AsDouble(obj); return SWIG_OK; } else if (PyInt_Check(obj)) { if (val) *val = PyInt_AsLong(obj); return SWIG_OK; } else if (PyLong_Check(obj)) { double v = PyLong_AsDouble(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_OK; } else { PyErr_Clear(); } } #ifdef SWIG_PYTHON_CAST_MODE { int dispatch = 0; double d = PyFloat_AsDouble(obj); if (!PyErr_Occurred()) { if (val) *val = d; return SWIG_AddCast(SWIG_OK); } else { PyErr_Clear(); } if (!dispatch) { long v = PyLong_AsLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_AddCast(SWIG_AddCast(SWIG_OK)); } else { PyErr_Clear(); } } } #endif return res; } #include #include SWIGINTERNINLINE int SWIG_CanCastAsInteger(double *d, double min, double max) { double x = *d; if ((min <= x && x <= max)) { double fx = floor(x); double cx = ceil(x); double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */ if ((errno == EDOM) || (errno == ERANGE)) { errno = 0; } else { double summ, reps, diff; if (rd < x) { diff = x - rd; } else if (rd > x) { diff = rd - x; } else { return 1; } summ = rd + x; reps = diff/summ; if (reps < 8*DBL_EPSILON) { *d = rd; return 1; } } } return 0; } SWIGINTERN int SWIG_AsVal_long (PyObject *obj, long* val) { if (PyInt_Check(obj)) { if (val) *val = PyInt_AsLong(obj); return SWIG_OK; } else if (PyLong_Check(obj)) { long v = PyLong_AsLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_OK; } else { PyErr_Clear(); } } #ifdef SWIG_PYTHON_CAST_MODE { int dispatch = 0; long v = PyInt_AsLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_AddCast(SWIG_OK); } else { PyErr_Clear(); } if (!dispatch) { double d; int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) { if (val) *val = (long)(d); return res; } } } #endif return SWIG_TypeError; } SWIGINTERN int SWIG_AsVal_int (PyObject * obj, int *val) { long v; int res = SWIG_AsVal_long (obj, &v); if (SWIG_IsOK(res)) { if ((v < INT_MIN || v > INT_MAX)) { return SWIG_OverflowError; } else { if (val) *val = static_cast< int >(v); } } return res; } SWIGINTERN int SWIG_AsVal_bool (PyObject *obj, bool *val) { if (obj == Py_True) { if (val) *val = true; return SWIG_OK; } else if (obj == Py_False) { if (val) *val = false; return SWIG_OK; } else { long v = 0; int res = SWIG_AddCast(SWIG_AsVal_long (obj, val ? &v : 0)); if (SWIG_IsOK(res) && val) *val = v ? true : false; return res; } } SWIGINTERN int SWIG_AsVal_float (PyObject * obj, float *val) { double v; int res = SWIG_AsVal_double (obj, &v); if (SWIG_IsOK(res)) { if ((v < -FLT_MAX || v > FLT_MAX)) { return SWIG_OverflowError; } else { if (val) *val = static_cast< float >(v); } } return res; } typedef union { bool bo; int8 b; uint8 ub; int16 w; uint16 uw; int32 l; uint32 ul; float f; iString* s; struct { float x, y, z; } v; struct { float red, green, blue; } col; iCelPropertyClass* pc; iCelEntity* ent; iBase* ibase; struct { iString* parname; celDataType partype; } par; } celData_value; #define SWIG_From_double PyFloat_FromDouble SWIGINTERNINLINE PyObject * SWIG_From_float (float value) { return SWIG_From_double (value); } typedef struct { iString* parname; celDataType partype; } celData_value_par; typedef struct { float red, green, blue; } celData_value_col; typedef struct { float x, y, z; } celData_value_v; SWIGINTERN int SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) { if (PyInt_Check(obj)) { long v = PyInt_AsLong(obj); if (v >= 0) { if (val) *val = v; return SWIG_OK; } else { return SWIG_OverflowError; } } else if (PyLong_Check(obj)) { unsigned long v = PyLong_AsUnsignedLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_OK; } else { PyErr_Clear(); } } #ifdef SWIG_PYTHON_CAST_MODE { int dispatch = 0; unsigned long v = PyLong_AsUnsignedLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_AddCast(SWIG_OK); } else { PyErr_Clear(); } if (!dispatch) { double d; int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) { if (val) *val = (unsigned long)(d); return res; } } } #endif return SWIG_TypeError; } SWIGINTERN int SWIG_AsVal_unsigned_SS_int (PyObject * obj, unsigned int *val) { unsigned long v; int res = SWIG_AsVal_unsigned_SS_long (obj, &v); if (SWIG_IsOK(res)) { if ((v > UINT_MAX)) { return SWIG_OverflowError; } else { if (val) *val = static_cast< unsigned int >(v); } } return res; } SWIGINTERNINLINE PyObject* SWIG_From_unsigned_SS_long (unsigned long value) { return (value > LONG_MAX) ? PyLong_FromUnsignedLong(value) : PyInt_FromLong(static_cast< long >(value)); } SWIGINTERNINLINE PyObject * SWIG_From_size_t (size_t value) { return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value)); } SWIGINTERNINLINE int SWIG_AsVal_size_t (PyObject * obj, size_t *val) { unsigned long v; int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); if (SWIG_IsOK(res) && val) *val = static_cast< size_t >(v); return res; } SWIGINTERNINLINE PyObject * SWIG_FromCharPtrAndSize(const char* carray, size_t size) { if (carray) { if (size > INT_MAX) { swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); return pchar_descriptor ? SWIG_NewPointerObj(const_cast< char * >(carray), pchar_descriptor, 0) : SWIG_Py_Void(); } else { return PyString_FromStringAndSize(carray, static_cast< int >(size)); } } else { return SWIG_Py_Void(); } } SWIGINTERNINLINE PyObject * SWIG_FromCharPtr(const char *cptr) { return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); } SWIGINTERN char const *iCelEntityTracker_Name_get(iCelEntityTracker *self){ return (const char*)(self->GetName()); } iCelPlLayer *csQueryRegistry_iCelPlLayer (iObjectRegistry *object_reg) { csRef pl = CS_QUERY_REGISTRY (object_reg, iCelPlLayer); return pl; } SWIGINTERNINLINE PyObject * SWIG_From_unsigned_SS_int (unsigned int value) { return SWIG_From_unsigned_SS_long (value); } SWIGINTERN void iCelEntity_Name_set(iCelEntity *self,char const *_val){ self->SetName(_val); } SWIGINTERN char const *iCelEntity_Name_get(iCelEntity *self){ return (const char*)(self->GetName()); } SWIGINTERN void iCelEntity_ID_set(iCelEntity *self,uint _val){ self->SetID(_val); } SWIGINTERN uint iCelEntity_ID_get(iCelEntity *self){ return (uint)(self->GetID()); } SWIGINTERN void iCelEntity_Behaviour_set(iCelEntity *self,iCelBehaviour *_val){ self->SetBehaviour(_val); } SWIGINTERN iCelBehaviour *iCelEntity_Behaviour_get(iCelEntity *self){ return (iCelBehaviour*)(self->GetBehaviour()); } SWIGINTERN iCelPropertyClassList *iCelEntity_PropertyClassList_get(iCelEntity *self){ return (iCelPropertyClassList*)(self->GetPropertyClassList()); } SWIGINTERN csSet &iCelEntity_Classes_get(iCelEntity *self){ return (csSet&)(self->GetClasses()); } SWIGINTERN iCelBehaviour *iCelEntity_CreateBehaviour(iCelEntity *self,iCelBlLayer *bl,char const *name){ csRef bh(bl->CreateBehaviour(self, name)); if (!bh.IsValid()) return 0; return bh; } SWIGINTERN void delete_iCelEntity(iCelEntity *self){ if (self) self->DecRef(); } SWIGINTERN int iCelEntity_scfGetVersion(){ return scfInterfaceTraits::GetVersion(); } SWIGINTERN iCelEntity *iCelEntityList___getitem____SWIG_0(iCelEntityList *self,size_t n){return self->Get(n);} SWIGINTERN bool iCelEntityList___contains____SWIG_0(iCelEntityList *self,iCelEntity *obj){ if (self->Find(obj) == (size_t)csArrayItemNotFound) return false; return true; } SWIGINTERN bool iCelEntityList___delitem__(iCelEntityList *self,size_t n){ return self->Remove(n); } SWIGINTERN int iCelEntityList___len__(iCelEntityList *self){ return self->GetCount(); } SWIGINTERN void iCelEntityList_append(iCelEntityList *self,iCelEntity *e){ self->Add(e); } SWIGINTERN iCelEntity *iCelEntityList___getitem____SWIG_1(iCelEntityList *self,char const *name){return self->FindByName(name);} SWIGINTERN bool iCelEntityList___contains____SWIG_1(iCelEntityList *self,char const *name){ if (self->FindByName(name)) return true; return false; } SWIGINTERN void delete_iCelEntityList(iCelEntityList *self){ if (self) self->DecRef(); } SWIGINTERN int iCelEntityList_scfGetVersion(){ return scfInterfaceTraits::GetVersion(); } bool celRegisterPCFactory (iObjectRegistry* object_reg, const char* pcfactname) { csRef pl = CS_QUERY_REGISTRY (object_reg, iCelPlLayer); bool rc = pl->LoadPropertyClassFactory (pcfactname); return rc; } iCelEntity *celCreateEntity(iCelPlLayer *pl, const char *name) { csRef en = pl->CreateEntity(); if (!en.IsValid()) return 0; en->SetName (name); en->IncRef (); return en; } iCelEntity *scfQueryInterface_iCelEntity (iBase *base) { csRef ent = SCF_QUERY_INTERFACE (base, iCelEntity); return ent; } iCelEntityList *celFindNearbyEntities (iObjectRegistry *object_reg, iSector *sector, csVector3 pos, float radius, bool do_invisible=false) { csRef pl = CS_QUERY_REGISTRY (object_reg, iCelPlLayer); if (!pl.IsValid()) return 0; csRef entlist = pl->FindNearbyEntities (sector, pos, radius, do_invisible); entlist->IncRef(); return entlist; } iCelEntityList *celFindNearbyEntities (iObjectRegistry *object_reg, iSector *sector, csVector3 pos, csVector3 dest, bool do_invisible=false) { csRef pl = CS_QUERY_REGISTRY (object_reg, iCelPlLayer); if (!pl.IsValid()) return 0; csRef entlist = pl->FindNearbyEntities (sector, pos, dest, do_invisible); entlist->IncRef(); return entlist; } iCelEntityList *celFindNearbyEntities (iObjectRegistry *object_reg, iSector *sector, csBox3 box, bool do_invisible=false) { csRef pl = CS_QUERY_REGISTRY (object_reg, iCelPlLayer); if (!pl.IsValid()) return 0; csRef entlist = pl->FindNearbyEntities (sector, box, do_invisible); entlist->IncRef(); return entlist; } SWIGINTERN void iCelEntityTemplate_Name_set(iCelEntityTemplate *self,char const *_val){ self->SetName(_val); } SWIGINTERN char const *iCelEntityTemplate_Name_get(iCelEntityTemplate *self){ return (const char*)(self->GetName()); } SWIGINTERN char const *iCelEntityTemplate_Behaviour_get(iCelEntityTemplate *self){ return (const char*)(self->GetBehaviour()); } SWIGINTERN char const *iCelEntityTemplate_BehaviourLayer_get(iCelEntityTemplate *self){ return (const char*)(self->GetBehaviourLayer()); } SWIGINTERN csSet &iCelEntityTemplate_Classes_get(iCelEntityTemplate *self){ return (csSet&)(self->GetClasses()); } iCelBlLayer *csQueryRegistry_iCelBlLayer (iObjectRegistry *object_reg) { csRef bl = CS_QUERY_REGISTRY (object_reg, iCelBlLayer); return bl; } SWIGINTERN csStringID iCelParameterBlock_GetParameterIDByIndex(iCelParameterBlock *self,size_t idx){ csStringID id; celDataType t; const char *name = self->GetParameter(idx, id, t); return id; } SWIGINTERN char const *iCelParameterBlock_GetParameterNameByIndex(iCelParameterBlock *self,size_t idx){ csStringID id; celDataType t; return self->GetParameter(idx, id, t); } SWIGINTERN bool iCelParameterBlock___contains__(iCelParameterBlock *self,csStringID id){ if (self->GetParameter(id)) return true; return false; } SWIGINTERN void iCelParameterBlock___setitem____SWIG_0(iCelParameterBlock *self,csStringID idx,bool c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_1(iCelParameterBlock *self,csStringID idx,int8 c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_2(iCelParameterBlock *self,csStringID idx,int16 c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_3(iCelParameterBlock *self,csStringID idx,int32 c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_4(iCelParameterBlock *self,csStringID idx,uint8 c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_5(iCelParameterBlock *self,csStringID idx,uint16 c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_6(iCelParameterBlock *self,csStringID idx,uint32 c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_7(iCelParameterBlock *self,csStringID idx,float c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_8(iCelParameterBlock *self,csStringID idx,char const *c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_9(iCelParameterBlock *self,csStringID idx,csVector3 &c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_10(iCelParameterBlock *self,csStringID idx,csVector2 &c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_11(iCelParameterBlock *self,csStringID idx,csColor &c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_12(iCelParameterBlock *self,csStringID idx,iCelPropertyClass *c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN void iCelParameterBlock___setitem____SWIG_13(iCelParameterBlock *self,csStringID idx,iCelEntity *c){ if (self->GetParameter(idx)) ((celData*)self->GetParameter(idx))->Set(c); } SWIGINTERN int iCelParameterBlock___len__(iCelParameterBlock *self){ return self->GetParameterCount(); } SWIGINTERN char const *iCelBehaviour_Name_get(iCelBehaviour *self){ return (const char*)(self->GetName()); } SWIGINTERN iCelBlLayer *iCelBehaviour_BehaviourLayer_get(iCelBehaviour *self){ return (iCelBlLayer*)(self->GetBehaviourLayer()); } SWIGINTERN PyObject *iCelBehaviour_GetPythonObject(iCelBehaviour *self){ PyObject* obj = (PyObject*)(self->GetInternalObject()); Py_INCREF (obj); return obj; } SWIGINTERN PyObject *iCelBehaviour_SendMessage__SWIG_1(iCelBehaviour *self,char const *msg_id,iCelPropertyClass *prop,iCelParameterBlock *params){ celData ret; if(self->SendMessage (msg_id,prop,ret,params)) { /*@SWIG:CELDATA_RETURN@*/ PyObject *obj = Py_None; if ((&ret)) { switch((&ret)->type) { case CEL_DATA_FLOAT: obj = PyFloat_FromDouble((float)(&ret)->value.f); break; case CEL_DATA_BOOL: obj = SWIG_From_bool((bool)(&ret)->value.bo); break; case CEL_DATA_STRING: { char *res; res = (char*)((iString const *)((&ret)->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_VECTOR2: { csVector2 *res; res = new csVector2((&ret)->value.v.x,(&ret)->value.v.y); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector2, 1); break; } case CEL_DATA_VECTOR3: { csVector3 *res; res = new csVector3((&ret)->value.v.x,(&ret)->value.v.y,(&ret)->value.v.z); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector3, 1); break; } case CEL_DATA_ENTITY: { iCelEntity *res; res = (iCelEntity *)((&ret)->value.ent); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelEntity, 0); break; } case CEL_DATA_PCLASS: { iCelPropertyClass *res; res = (iCelPropertyClass *)((&ret)->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelPropertyClass, 0); break; } case CEL_DATA_ACTION: { char *res; res = (char*)((iString const *)((&ret)->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_IBASE: { iBase *res; res = (iBase *)((&ret)->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iBase, 0); break; } case CEL_DATA_COLOR: { csColor *res; res = new csColor((&ret)->value.col.red,(&ret)->value.col.green,(&ret)->value.col.blue); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csColor, 1); break; } case CEL_DATA_WORD: { obj = SWIG_From_int((int)(&ret)->value.w); break; } case CEL_DATA_LONG: { obj = SWIG_From_long((long)(&ret)->value.l); break; } case CEL_DATA_ULONG: { obj = PyLong_FromUnsignedLong((unsigned long)(&ret)->value.ul); break; } { break; } /* Still to be done (and some more) */ case CEL_DATA_BYTE: /*(&ret)->value.b (int8)*/ case CEL_DATA_UWORD: /*(&ret)->value.uw (uint16)*/ case CEL_DATA_PARAMETER: /*(&ret)->value.par (iString+celDataType)*/ default: Py_INCREF(Py_None); obj = Py_None; break; } } /*@SWIG@*/; return obj; } else Py_INCREF(Py_None); return Py_None; } SWIGINTERN char const *iCelPropertyClassFactory_Name_get(iCelPropertyClassFactory *self){ return (const char*)(self->GetName()); } SWIGINTERN char const *iCelPropertyClass_Name_get(iCelPropertyClass *self){ return (const char*)(self->GetName()); } SWIGINTERN void iCelPropertyClass_Tag_set(iCelPropertyClass *self,char const *_val){ self->SetTag(_val); } SWIGINTERN char const *iCelPropertyClass_Tag_get(iCelPropertyClass *self){ return (const char*)(self->GetTag()); } SWIGINTERN void iCelPropertyClass_Entity_set(iCelPropertyClass *self,iCelEntity *_val){ self->SetEntity(_val); } SWIGINTERN iCelEntity *iCelPropertyClass_Entity_get(iCelPropertyClass *self){ return (iCelEntity*)(self->GetEntity()); } SWIGINTERN bool iCelPropertyClass_SetPropertyLong(iCelPropertyClass *self,csStringID id,long l){ return self->SetProperty (id, l); } SWIGINTERN bool iCelPropertyClass_SetPropertyFloat(iCelPropertyClass *self,csStringID id,float f){ return self->SetProperty (id, f); } SWIGINTERN bool iCelPropertyClass_SetPropertyBool(iCelPropertyClass *self,csStringID id,bool b){ return self->SetProperty (id, b); } SWIGINTERN bool iCelPropertyClass_SetPropertyString(iCelPropertyClass *self,csStringID id,char const *s){ return self->SetProperty (id, s); } SWIGINTERN bool iCelPropertyClass_SetPropertyVector3(iCelPropertyClass *self,csStringID id,csVector3 const &v){ return self->SetProperty (id, v); } SWIGINTERN iCelPropertyClass *iCelPropertyClassList___getitem____SWIG_0(iCelPropertyClassList *self,size_t n){return self->Get(n);} SWIGINTERN bool iCelPropertyClassList___contains____SWIG_0(iCelPropertyClassList *self,iCelPropertyClass *obj){ if (self->Find(obj) == (size_t)csArrayItemNotFound) return false; return true; } SWIGINTERN bool iCelPropertyClassList___delitem__(iCelPropertyClassList *self,size_t n){ return self->Remove(n); } SWIGINTERN int iCelPropertyClassList___len__(iCelPropertyClassList *self){ return self->GetCount(); } SWIGINTERN void iCelPropertyClassList_append(iCelPropertyClassList *self,iCelPropertyClass *e){ self->Add(e); } SWIGINTERN iCelPropertyClass *iCelPropertyClassList___getitem____SWIG_1(iCelPropertyClassList *self,char const *name){return self->FindByName(name);} SWIGINTERN bool iCelPropertyClassList___contains____SWIG_1(iCelPropertyClassList *self,char const *name){ if (self->FindByName(name)) return true; return false; } SWIGINTERN void iPcMechanicsSystem_DynamicSystem_set(iPcMechanicsSystem *self,iDynamicSystem *_val){ self->SetDynamicSystem(_val); } SWIGINTERN iDynamicSystem *iPcMechanicsSystem_DynamicSystem_get(iPcMechanicsSystem *self){ return (iDynamicSystem*)(self->GetDynamicSystem()); } SWIGINTERN void iPcMechanicsSystem_StepTime_set(iPcMechanicsSystem *self,float _val){ self->SetStepTime(_val); } SWIGINTERN float iPcMechanicsSystem_StepTime_get(iPcMechanicsSystem *self){ return (float)(self->GetStepTime()); } SWIGINTERN void iPcMechanicsSystem_Gravity_set(iPcMechanicsSystem *self,csVector3 _val){ self->SetGravity(_val); } SWIGINTERN csVector3 iPcMechanicsSystem_Gravity_get(iPcMechanicsSystem *self){ return (csVector3)(self->GetGravity()); } SWIGINTERN void iPcMechanicsSystem_SimulationSpeed_set(iPcMechanicsSystem *self,float _val){ self->SetSimulationSpeed(_val); } SWIGINTERN float iPcMechanicsSystem_SimulationSpeed_get(iPcMechanicsSystem *self){ return (float)(self->GetSimulationSpeed()); } SWIGINTERN void iPcMechanicsObject_Mesh_set(iPcMechanicsObject *self,iPcMesh *_val){ self->SetMesh(_val); } SWIGINTERN iPcMesh *iPcMechanicsObject_Mesh_get(iPcMechanicsObject *self){ return (iPcMesh*)(self->GetMesh()); } SWIGINTERN void iPcMechanicsObject_Light_set(iPcMechanicsObject *self,iPcLight *_val){ self->SetLight(_val); } SWIGINTERN iPcLight *iPcMechanicsObject_Light_get(iPcMechanicsObject *self){ return (iPcLight*)(self->GetLight()); } SWIGINTERN void iPcMechanicsObject_Camera_set(iPcMechanicsObject *self,iPcCamera *_val){ self->SetCamera(_val); } SWIGINTERN iPcCamera *iPcMechanicsObject_Camera_get(iPcMechanicsObject *self){ return (iPcCamera*)(self->GetCamera()); } SWIGINTERN void iPcMechanicsObject_MechanicsSystem_set(iPcMechanicsObject *self,iPcMechanicsSystem *_val){ self->SetMechanicsSystem(_val); } SWIGINTERN iPcMechanicsSystem *iPcMechanicsObject_MechanicsSystem_get(iPcMechanicsObject *self){ return (iPcMechanicsSystem*)(self->GetMechanicsSystem()); } SWIGINTERN iRigidBody *iPcMechanicsObject_Body_get(iPcMechanicsObject *self){ return (iRigidBody*)(self->GetBody()); } SWIGINTERN void iPcMechanicsObject_Friction_set(iPcMechanicsObject *self,float _val){ self->SetFriction(_val); } SWIGINTERN float iPcMechanicsObject_Friction_get(iPcMechanicsObject *self){ return (float)(self->GetFriction()); } SWIGINTERN void iPcMechanicsObject_Mass_set(iPcMechanicsObject *self,float _val){ self->SetMass(_val); } SWIGINTERN float iPcMechanicsObject_Mass_get(iPcMechanicsObject *self){ return (float)(self->GetMass()); } SWIGINTERN void iPcMechanicsObject_Elasticity_set(iPcMechanicsObject *self,float _val){ self->SetElasticity(_val); } SWIGINTERN float iPcMechanicsObject_Elasticity_get(iPcMechanicsObject *self){ return (float)(self->GetElasticity()); } SWIGINTERN void iPcMechanicsObject_Density_set(iPcMechanicsObject *self,float _val){ self->SetDensity(_val); } SWIGINTERN float iPcMechanicsObject_Density_get(iPcMechanicsObject *self){ return (float)(self->GetDensity()); } SWIGINTERN void iPcMechanicsObject_Softness_set(iPcMechanicsObject *self,float _val){ self->SetSoftness(_val); } SWIGINTERN float iPcMechanicsObject_Softness_get(iPcMechanicsObject *self){ return (float)(self->GetSoftness()); } SWIGINTERN void iPcMechanicsObject_Lift_set(iPcMechanicsObject *self,csVector3 &_val){ self->SetLift(_val); } SWIGINTERN csVector3 &iPcMechanicsObject_Lift_get(iPcMechanicsObject *self){ return (csVector3&)(self->GetLift()); } SWIGINTERN void iPcMechanicsObject_Drag_set(iPcMechanicsObject *self,float _val){ self->SetDrag(_val); } SWIGINTERN float iPcMechanicsObject_Drag_get(iPcMechanicsObject *self){ return (float)(self->GetDrag()); } SWIGINTERN void iPcMechanicsObject_LinearVelocity_set(iPcMechanicsObject *self,csVector3 _val){ self->SetLinearVelocity(_val); } SWIGINTERN csVector3 iPcMechanicsObject_LinearVelocity_get(iPcMechanicsObject *self){ return (csVector3)(self->GetLinearVelocity()); } SWIGINTERN void iPcMechanicsObject_AngularVelocity_set(iPcMechanicsObject *self,csVector3 _val){ self->SetAngularVelocity(_val); } SWIGINTERN csVector3 iPcMechanicsObject_AngularVelocity_get(iPcMechanicsObject *self){ return (csVector3)(self->GetAngularVelocity()); } SWIGINTERN void iPcMechanicsObject_Static_set(iPcMechanicsObject *self,bool _val){ self->MakeStatic(_val); } SWIGINTERN bool iPcMechanicsObject_Static_get(iPcMechanicsObject *self){ return (bool)(self->IsStatic()); } SWIGINTERN void iPcMechanicsObject_CollisionCallbackEnabled_set(iPcMechanicsObject *self,bool _val){ self->SetCollisionCallbackEnabled(_val); } SWIGINTERN bool iPcMechanicsObject_CollisionCallbackEnabled_get(iPcMechanicsObject *self){ return (bool)(self->IsCollisionCallbackEnabled()); } SWIGINTERN iJoint *iPcMechanicsJoint_Joint_get(iPcMechanicsJoint *self){ return (iJoint*)(self->GetJoint()); } iPcMechanicsSystem *celCreateMechanicsSystem(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcmechsys" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsSystem * celGetSetMechanicsSystem (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcmechsys" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsSystem * celGetMechanicsSystem (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcMechanicsSystem *scfQuery_iPcMechanicsSystem (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcMechanicsSystem *scfQueryPC_iPcMechanicsSystem (iCelPropertyClassList *pclist) { csRef iface = scfQueryInterface (pclist); if (iface) iface->IncRef (); return iface; } iPcMechanicsObject *celCreateMechanicsObject(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcmechobject" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsObject * celGetSetMechanicsObject (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcmechobject" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsObject * celGetMechanicsObject (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcMechanicsObject *scfQuery_iPcMechanicsObject (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcMechanicsObject *scfQueryPC_iPcMechanicsObject (iCelPropertyClassList *pclist) { csRef iface = scfQueryInterface (pclist); if (iface) iface->IncRef (); return iface; } iPcMechanicsJoint *scfQueryPC_iPcMechanicsJoint (iCelPropertyClassList *pclist) { csRef iface = scfQueryInterface (pclist); if (iface) iface->IncRef (); return iface; } iPcMechanicsJoint *celCreateMechanicsJoint(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcmechjoint" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsJoint * celGetSetMechanicsJoint (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcmechjoint" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsJoint * celGetMechanicsJoint (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcMechanicsJoint *scfQuery_iPcMechanicsJoint (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcMechanicsThruster_MechanicsObject_set(iPcMechanicsThruster *self,iPcMechanicsObject *_val){ self->SetMechanicsObject(_val); } SWIGINTERN iPcMechanicsObject *iPcMechanicsThruster_MechanicsObject_get(iPcMechanicsThruster *self){ return (iPcMechanicsObject*)(self->GetMechanicsObject()); } SWIGINTERN void iPcMechanicsThruster_Position_set(iPcMechanicsThruster *self,csVector3 &_val){ self->SetPosition(_val); } SWIGINTERN csVector3 &iPcMechanicsThruster_Position_get(iPcMechanicsThruster *self){ return (csVector3&)(self->GetPosition()); } SWIGINTERN void iPcMechanicsThruster_Orientation_set(iPcMechanicsThruster *self,csVector3 &_val){ self->SetOrientation(_val); } SWIGINTERN csVector3 &iPcMechanicsThruster_Orientation_get(iPcMechanicsThruster *self){ return (csVector3&)(self->GetOrientation()); } SWIGINTERN float iPcMechanicsThruster_MaxThrust_get(iPcMechanicsThruster *self){ return (float)(self->GetMaxThrust()); } SWIGINTERN void iPcMechanicsBalancedGroup_Type_set(iPcMechanicsBalancedGroup *self,celAxisType _val){ self->SetType(_val); } SWIGINTERN celAxisType iPcMechanicsBalancedGroup_Type_get(iPcMechanicsBalancedGroup *self){ return (celAxisType)(self->GetType()); } SWIGINTERN void iPcMechanicsThrusterController_MechanicsObject_set(iPcMechanicsThrusterController *self,iPcMechanicsObject *_val){ self->SetMechanicsObject(_val); } SWIGINTERN iPcMechanicsObject *iPcMechanicsThrusterController_MechanicsObject_get(iPcMechanicsThrusterController *self){ return (iPcMechanicsObject*)(self->GetMechanicsObject()); } iPcMechanicsThruster *celCreateMechanicsThrusterReactionary(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcmechthrustreactionary" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsThruster * celGetSetMechanicsThrusterReactionary (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcmechthrustreactionary" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsThruster * celGetMechanicsThrusterReactionary (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcMechanicsThruster *scfQuery_iPcMechanicsThruster (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcMechanicsThruster *scfQueryPC_iPcMechanicsThruster (iCelPropertyClassList *pclist) { csRef iface = scfQueryInterface (pclist); if (iface) iface->IncRef (); return iface; } iPcMechanicsBalancedGroup *celCreateMechanicsBalancedGroup(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcmechbalancedgroup" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsBalancedGroup * celGetSetMechanicsBalancedGroup (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcmechbalancedgroup" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsBalancedGroup * celGetMechanicsBalancedGroup (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcMechanicsBalancedGroup *scfQuery_iPcMechanicsBalancedGroup (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcMechanicsBalancedGroup *scfQueryPC_iPcMechanicsBalancedGroup (iCelPropertyClassList *pclist) { csRef iface = scfQueryInterface (pclist); if (iface) iface->IncRef (); return iface; } iPcMechanicsThrusterController *celCreateMechanicsThrusterController(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcmechthrustercontroller" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsThrusterController * celGetSetMechanicsThrusterController (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcmechthrustercontroller" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMechanicsThrusterController * celGetMechanicsThrusterController (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcMechanicsThrusterController *scfQuery_iPcMechanicsThrusterController (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcMechanicsThrusterController *scfQueryPC_iPcMechanicsThrusterController (iCelPropertyClassList *pclist) { csRef iface = scfQueryInterface (pclist); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcBillboard_Name_set(iPcBillboard *self,char const *_val){ self->SetBillboardName(_val); } SWIGINTERN char const *iPcBillboard_Name_get(iPcBillboard *self){ return (const char*)(self->GetBillboardName()); } SWIGINTERN iBillboard *iPcBillboard_Billboard_get(iPcBillboard *self){ return (iBillboard*)(self->GetBillboard()); } SWIGINTERN void iPcBillboard_EventsEnabled_set(iPcBillboard *self,bool _val){ self->EnableEvents(_val); } SWIGINTERN bool iPcBillboard_EventsEnabled_get(iPcBillboard *self){ return (bool)(self->AreEventsEnabled()); } iPcBillboard *celCreateBillboard(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcbillboard" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcBillboard * celGetSetBillboard (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcbillboard" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcBillboard * celGetBillboard (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcBillboard *scfQuery_iPcBillboard (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcBillboard *scfQueryPC_iPcBillboard (iCelPropertyClassList *pclist) { csRef iface = scfQueryInterface (pclist); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcRegion_Name_set(iPcRegion *self,char const *_val){ self->SetRegionName(_val); } SWIGINTERN char const *iPcRegion_Name_get(iPcRegion *self){ return (const char*)(self->GetRegionName()); } SWIGINTERN iRegion *iPcRegion_Region_get(iPcRegion *self){ return (iRegion*)(self->GetRegion()); } SWIGINTERN char const *iPcRegion_StartSector_get(iPcRegion *self){ return (const char*)(self->GetStartSector()); } SWIGINTERN csVector3 iPcRegion_StartPosition_get(iPcRegion *self){ return (csVector3)(self->GetStartPosition()); } SWIGINTERN bool iPcRegion_LoadWorld(iPcRegion *self,char const *vfsdir,char const *name){ self->SetWorldFile (vfsdir, name); return self->Load (); } iPcRegion *celCreateRegion (iCelPlLayer *pl, iCelEntity *entity, const char *name) { csRef pc = pl->CreatePropertyClass(entity, "pcregion"); if (!pc.IsValid()) return 0; csRef pcregion = SCF_QUERY_INTERFACE(pc, iPcRegion); if (!pcregion.IsValid()) return 0; pcregion->SetRegionName (name); return pcregion; } iPcRegion * Region (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcRegion *scfQuery_iPcRegion (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcRegion *scfQueryPC_iPcRegion (iCelPropertyClassList *pclist) { csRef iface = scfQueryInterface (pclist); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iCelMapFile_Path_set(iCelMapFile *self,char const *_val){ self->SetPath(_val); } SWIGINTERN char const *iCelMapFile_Path_get(iCelMapFile *self){ return (const char*)(self->GetPath()); } SWIGINTERN void iCelMapFile_File_set(iCelMapFile *self,char const *_val){ self->SetFile(_val); } SWIGINTERN char const *iCelMapFile_File_get(iCelMapFile *self){ return (const char*)(self->GetFile()); } SWIGINTERN void iCelMapFile_SectorName_set(iCelMapFile *self,char const *_val){ self->SetSectorName(_val); } SWIGINTERN char const *iCelMapFile_SectorName_get(iCelMapFile *self){ return (const char*)(self->GetSectorName()); } SWIGINTERN char const *iCelRegion_Name_get(iCelRegion *self){ return (const char*)(self->GetName()); } SWIGINTERN void iCelRegion_CachePath_set(iCelRegion *self,char const *_val){ self->SetCachePath(_val); } SWIGINTERN char const *iCelRegion_CachePath_get(iCelRegion *self){ return (const char*)(self->GetCachePath()); } SWIGINTERN size_t iCelRegion_MapFileCount_get(iCelRegion *self){ return (size_t)(self->GetMapFileCount()); } SWIGINTERN char const *iCelZone_Name_get(iCelZone *self){ return (const char*)(self->GetName()); } SWIGINTERN size_t iCelZone_RegionCount_get(iCelZone *self){ return (size_t)(self->GetRegionCount()); } SWIGINTERN void iPcZoneManager_ColliderWrappersEnabled_set(iPcZoneManager *self,bool _val){ self->EnableColliderWrappers(_val); } SWIGINTERN bool iPcZoneManager_ColliderWrappersEnabled_get(iPcZoneManager *self){ return (bool)(self->IsColliderWrappers()); } SWIGINTERN void iPcZoneManager_LoadingMode_set(iPcZoneManager *self,int _val){ self->SetLoadingMode(_val); } SWIGINTERN int iPcZoneManager_LoadingMode_get(iPcZoneManager *self){ return (int)(self->GetLoadingMode()); } SWIGINTERN size_t iPcZoneManager_ZoneCount_get(iPcZoneManager *self){ return (size_t)(self->GetZoneCount()); } SWIGINTERN size_t iPcZoneManager_RegionCount_get(iPcZoneManager *self){ return (size_t)(self->GetRegionCount()); } SWIGINTERN char const *iPcZoneManager_LastStartRegionName_get(iPcZoneManager *self){ return (const char*)(self->GetLastStartRegionName()); } SWIGINTERN char const *iPcZoneManager_LastStartName_get(iPcZoneManager *self){ return (const char*)(self->GetLastStartName()); } iPcZoneManager *celCreateZoneManager(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pczonemanager" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcZoneManager * celGetSetZoneManager (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pczonemanager" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcZoneManager * celGetZoneManager (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcZoneManager *scfQuery_iPcZoneManager (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcCommandInput_CookedModeEnabled_set(iPcCommandInput *self,bool _val){ self->SetCookedMode(_val); } SWIGINTERN bool iPcCommandInput_CookedModeEnabled_get(iPcCommandInput *self){ return (bool)(self->GetCookedMode()); } iPcCommandInput *celCreateCommandInput(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pccommandinput" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcCommandInput * celGetSetCommandInput (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pccommandinput" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcCommandInput * celGetCommandInput (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcCommandInput *scfQuery_iPcCommandInput (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcLinearMovement_Anchor_set(iPcLinearMovement *self,iPcMesh *_val){ self->SetAnchor(_val); } SWIGINTERN iPcMesh *iPcLinearMovement_Anchor_get(iPcLinearMovement *self){ return (iPcMesh*)(self->GetAnchor()); } SWIGINTERN iSector *iPcLinearMovement_Sector_get(iPcLinearMovement *self){ return (iSector*)(self->GetSector()); } SWIGINTERN void iPcLinearMovement_OnGround_set(iPcLinearMovement *self,bool _val){ self->SetOnGround(_val); } SWIGINTERN bool iPcLinearMovement_OnGround_get(iPcLinearMovement *self){ return (bool)(self->IsOnGround()); } SWIGINTERN void iPcLinearMovement_Gravity_set(iPcLinearMovement *self,float _val){ self->SetGravity(_val); } SWIGINTERN float iPcLinearMovement_Gravity_get(iPcLinearMovement *self){ return (float)(self->GetGravity()); } SWIGINTERN csVector3 iPcLinearMovement_PortalDisplacement_get(iPcLinearMovement *self){ return (csVector3)(self->GetPortalDisplacement()); } iPcLinearMovement *celCreateLinearMovement(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pclinearmovement" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcLinearMovement * celGetSetLinearMovement (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pclinearmovement" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcLinearMovement * celGetLinearMovement (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcLinearMovement *scfQuery_iPcLinearMovement (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcActorMove_MovingForward_set(iPcActorMove *self,bool _val){ self->Forward(_val); } SWIGINTERN bool iPcActorMove_MovingForward_get(iPcActorMove *self){ return (bool)(self->IsMovingForward()); } SWIGINTERN void iPcActorMove_MovingBackward_set(iPcActorMove *self,bool _val){ self->Backward(_val); } SWIGINTERN bool iPcActorMove_MovingBackward_get(iPcActorMove *self){ return (bool)(self->IsMovingBackward()); } SWIGINTERN void iPcActorMove_StrafingLeft_set(iPcActorMove *self,bool _val){ self->StrafeLeft(_val); } SWIGINTERN bool iPcActorMove_StrafingLeft_get(iPcActorMove *self){ return (bool)(self->IsStrafingLeft()); } SWIGINTERN void iPcActorMove_StrafingRight_set(iPcActorMove *self,bool _val){ self->StrafeRight(_val); } SWIGINTERN bool iPcActorMove_StrafingRight_get(iPcActorMove *self){ return (bool)(self->IsStrafingRight()); } SWIGINTERN void iPcActorMove_RotatingLeft_set(iPcActorMove *self,bool _val){ self->RotateLeft(_val); } SWIGINTERN bool iPcActorMove_RotatingLeft_get(iPcActorMove *self){ return (bool)(self->IsRotatingLeft()); } SWIGINTERN void iPcActorMove_RotatingRight_set(iPcActorMove *self,bool _val){ self->RotateRight(_val); } SWIGINTERN bool iPcActorMove_RotatingRight_get(iPcActorMove *self){ return (bool)(self->IsRotatingRight()); } SWIGINTERN void iPcActorMove_Running_set(iPcActorMove *self,bool _val){ self->Run(_val); } SWIGINTERN bool iPcActorMove_Running_get(iPcActorMove *self){ return (bool)(self->IsRunning()); } SWIGINTERN void iPcActorMove_AutoRunEnabled_set(iPcActorMove *self,bool _val){ self->AutoRun(_val); } SWIGINTERN bool iPcActorMove_AutoRunEnabled_get(iPcActorMove *self){ return (bool)(self->IsAutoRunning()); } SWIGINTERN void iPcActorMove_RunningSpeed_set(iPcActorMove *self,float _val){ self->SetRunningSpeed(_val); } SWIGINTERN float iPcActorMove_RunningSpeed_get(iPcActorMove *self){ return (float)(self->GetRunningSpeed()); } SWIGINTERN void iPcActorMove_RotationSpeed_set(iPcActorMove *self,float _val){ self->SetRotationSpeed(_val); } SWIGINTERN float iPcActorMove_RotationSpeed_get(iPcActorMove *self){ return (float)(self->GetRotationSpeed()); } SWIGINTERN void iPcActorMove_MovementSpeed_set(iPcActorMove *self,float _val){ self->SetMovementSpeed(_val); } SWIGINTERN float iPcActorMove_MovementSpeed_get(iPcActorMove *self){ return (float)(self->GetMovementSpeed()); } SWIGINTERN void iPcActorMove_MouseMoveEnabled_set(iPcActorMove *self,bool _val){ self->EnableMouseMove(_val); } SWIGINTERN bool iPcActorMove_MouseMoveEnabled_get(iPcActorMove *self){ return (bool)(self->IsMouseMoveEnabled()); } SWIGINTERN void iPcActorMove_MouseMoveInverted_set(iPcActorMove *self,bool _val){ self->SetMouseMoveInverted(_val); } SWIGINTERN bool iPcActorMove_MouseMoveInverted_get(iPcActorMove *self){ return (bool)(self->IsMouseMoveInverted()); } iPcActorMove *celCreateActorMove(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcactormove" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcActorMove * celGetSetActorMove (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcactormove" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcActorMove * celGetActorMove (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcActorMove *scfQuery_iPcActorMove (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN iCamera *iPcCamera_Camera_get(iPcCamera *self){ return (iCamera*)(self->GetCamera()); } SWIGINTERN iView *iPcCamera_View_get(iPcCamera *self){ return (iView*)(self->GetView()); } SWIGINTERN void iPcCamera_ClearZBuffer_set(iPcCamera *self,bool _val){ self->SetClearZBuffer(_val); } SWIGINTERN bool iPcCamera_ClearZBuffer_get(iPcCamera *self){ return (bool)(self->GetClearZBuffer()); } SWIGINTERN void iPcCamera_ClearScreen_set(iPcCamera *self,bool _val){ self->SetClearScreen(_val); } SWIGINTERN bool iPcCamera_ClearScreen_get(iPcCamera *self){ return (bool)(self->GetClearScreen()); } SWIGINTERN int iPcCamera_DrawFlags_get(iPcCamera *self){ return (int)(self->GetDrawFlags()); } SWIGINTERN float iPcCamera_FixedDistance_get(iPcCamera *self){ return (float)(self->GetFixedDistance()); } SWIGINTERN float iPcCamera_AdaptiveMaxFPS_get(iPcCamera *self){ return (float)(self->GetAdaptiveMaxFPS()); } SWIGINTERN float iPcCamera_AdaptiveMinFPS_get(iPcCamera *self){ return (float)(self->GetAdaptiveMinFPS()); } SWIGINTERN float iPcCamera_AdaptiveMinDistance_get(iPcCamera *self){ return (float)(self->GetAdaptiveMinDistance()); } iPcCamera *celCreateCamera(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pccamera" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcCamera * celGetSetCamera (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pccamera" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcCamera * celGetCamera (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcCamera *scfQuery_iPcCamera (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcDefaultCamera_Mode_set(iPcDefaultCamera *self,iPcDefaultCamera::CameraMode _val){ self->SetMode(_val); } SWIGINTERN iPcDefaultCamera::CameraMode iPcDefaultCamera_Mode_get(iPcDefaultCamera *self){ return (iPcDefaultCamera::CameraMode)(self->GetMode()); } SWIGINTERN void iPcDefaultCamera_ModeName_set(iPcDefaultCamera *self,char const *_val){ self->SetModeName(_val); } SWIGINTERN char const *iPcDefaultCamera_ModeName_get(iPcDefaultCamera *self){ return (const char*)(self->GetModeName()); } SWIGINTERN void iPcDefaultCamera_Pitch_set(iPcDefaultCamera *self,float _val){ self->SetPitch(_val); } SWIGINTERN float iPcDefaultCamera_Pitch_get(iPcDefaultCamera *self){ return (float)(self->GetPitch()); } SWIGINTERN void iPcDefaultCamera_PitchVelocity_set(iPcDefaultCamera *self,float _val){ self->SetPitchVelocity(_val); } SWIGINTERN float iPcDefaultCamera_PitchVelocity_get(iPcDefaultCamera *self){ return (float)(self->GetPitchVelocity()); } SWIGINTERN void iPcDefaultCamera_Yaw_set(iPcDefaultCamera *self,float _val){ self->SetYaw(_val); } SWIGINTERN float iPcDefaultCamera_Yaw_get(iPcDefaultCamera *self){ return (float)(self->GetYaw()); } SWIGINTERN void iPcDefaultCamera_YawVelocity_set(iPcDefaultCamera *self,float _val){ self->SetYawVelocity(_val); } SWIGINTERN float iPcDefaultCamera_YawVelocity_get(iPcDefaultCamera *self){ return (float)(self->GetYawVelocity()); } SWIGINTERN void iPcDefaultCamera_Distance_set(iPcDefaultCamera *self,float _val){ self->SetDistance(_val); } SWIGINTERN float iPcDefaultCamera_Distance_get(iPcDefaultCamera *self){ return (float)(self->GetDistance()); } SWIGINTERN void iPcDefaultCamera_DistanceVelocity_set(iPcDefaultCamera *self,float _val){ self->SetDistanceVelocity(_val); } SWIGINTERN float iPcDefaultCamera_DistanceVelocity_get(iPcDefaultCamera *self){ return (float)(self->GetDistanceVelocity()); } iPcDefaultCamera *celCreateDefaultCamera(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcdefaultcamera" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcDefaultCamera * celGetSetDefaultCamera (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcdefaultcamera" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcDefaultCamera * celGetDefaultCamera (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcDefaultCamera *scfQuery_iPcDefaultCamera (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcSimpleCamera *celCreateSimpleCamera(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcsimplecamera" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcSimpleCamera * celGetSetSimpleCamera (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcsimplecamera" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcSimpleCamera * celGetSimpleCamera (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcSimpleCamera *scfQuery_iPcSimpleCamera (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcMeshSelect_MouseButtons_set(iPcMeshSelect *self,int _val){ self->SetMouseButtons(_val); } SWIGINTERN int iPcMeshSelect_MouseButtons_get(iPcMeshSelect *self){ return (int)(self->GetMouseButtons()); } SWIGINTERN void iPcMeshSelect_GlobalSelection_set(iPcMeshSelect *self,bool _val){ self->SetGlobalSelection(_val); } SWIGINTERN bool iPcMeshSelect_GlobalSelection_get(iPcMeshSelect *self){ return (bool)(self->HasGlobalSelection()); } SWIGINTERN void iPcMeshSelect_FollowMode_set(iPcMeshSelect *self,bool _val){ self->SetFollowMode(_val); } SWIGINTERN bool iPcMeshSelect_FollowMode_get(iPcMeshSelect *self){ return (bool)(self->HasFollowMode()); } SWIGINTERN void iPcMeshSelect_FollowAlwaysMode_set(iPcMeshSelect *self,bool _val){ self->SetFollowAlwaysMode(_val); } SWIGINTERN bool iPcMeshSelect_FollowAlwaysMode_get(iPcMeshSelect *self){ return (bool)(self->HasFollowAlwaysMode()); } SWIGINTERN void iPcMeshSelect_DragMode_set(iPcMeshSelect *self,bool _val){ self->SetDragMode(_val); } SWIGINTERN bool iPcMeshSelect_DragMode_get(iPcMeshSelect *self){ return (bool)(self->HasDragMode()); } SWIGINTERN void iPcMeshSelect_SendmoveEvent_set(iPcMeshSelect *self,bool _val){ self->SetSendmoveEvent(_val); } SWIGINTERN bool iPcMeshSelect_SendmoveEvent_get(iPcMeshSelect *self){ return (bool)(self->HasSendmoveEvent()); } SWIGINTERN void iPcMeshSelect_SendupEvent_set(iPcMeshSelect *self,bool _val){ self->SetSendupEvent(_val); } SWIGINTERN bool iPcMeshSelect_SendupEvent_get(iPcMeshSelect *self){ return (bool)(self->HasSendupEvent()); } SWIGINTERN void iPcMeshSelect_SenddownEvent_set(iPcMeshSelect *self,bool _val){ self->SetSenddownEvent(_val); } SWIGINTERN bool iPcMeshSelect_SenddownEvent_get(iPcMeshSelect *self){ return (bool)(self->HasSenddownEvent()); } SWIGINTERN void iPcMeshSelect_MaxSelectionDistance_set(iPcMeshSelect *self,float _val){ self->SetMaxSelectionDistance(_val); } SWIGINTERN float iPcMeshSelect_MaxSelectionDistance_get(iPcMeshSelect *self){ return (float)(self->GetMaxSelectionDistance()); } iPcMeshSelect *celCreateMeshSelect(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcmeshselect" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMeshSelect * celGetSetMeshSelect (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcmeshselect" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMeshSelect * celGetMeshSelect (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcMeshSelect *scfQuery_iPcMeshSelect (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcMesh_Mesh_set(iPcMesh *self,iMeshWrapper *_val){ self->SetMesh(_val); } SWIGINTERN iMeshWrapper *iPcMesh_Mesh_get(iPcMesh *self){ return (iMeshWrapper*)(self->GetMesh()); } iPcMesh *celCreateMesh(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcmesh" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMesh * celGetSetMesh (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcmesh" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMesh * celGetMesh (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcMesh *scfQuery_iPcMesh (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcTimer *celCreateTimer(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pctimer" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcTimer * celGetSetTimer (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pctimer" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcTimer * celGetTimer (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcTimer *scfQuery_iPcTimer (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN bool iPcProjectile_Moving_get(iPcProjectile *self){ return (bool)(self->IsMoving()); } iPcProjectile *celCreateProjectile(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcprojectile" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcProjectile * celGetSetProjectile (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcprojectile" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcProjectile * celGetProjectile (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcProjectile *scfQuery_iPcProjectile (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcSolid_Mesh_set(iPcSolid *self,iPcMesh *_val){ self->SetMesh(_val); } SWIGINTERN iPcMesh *iPcSolid_Mesh_get(iPcSolid *self){ return (iPcMesh*)(self->GetMesh()); } SWIGINTERN iCollider *iPcSolid_Collider_get(iPcSolid *self){ return (iCollider*)(self->GetCollider()); } iPcSolid *celCreateSolid(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcsolid" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcSolid * celGetSetSolid (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcsolid" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcSolid * celGetSolid (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcSolid *scfQuery_iPcSolid (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN iCollider *iPcGravity_GravityCollider_get(iPcGravity *self){ return (iCollider*)(self->GetGravityCollider()); } SWIGINTERN void iPcGravity_Movable_set(iPcGravity *self,iPcMovable *_val){ self->SetMovable(_val); } SWIGINTERN iPcMovable *iPcGravity_Movable_get(iPcGravity *self){ return (iPcMovable*)(self->GetMovable()); } SWIGINTERN void iPcGravity_Solid_set(iPcGravity *self,iPcSolid *_val){ self->SetSolid(_val); } SWIGINTERN iPcSolid *iPcGravity_Solid_get(iPcGravity *self){ return (iPcSolid*)(self->GetSolid()); } SWIGINTERN void iPcGravity_Weight_set(iPcGravity *self,float _val){ self->SetWeight(_val); } SWIGINTERN float iPcGravity_Weight_get(iPcGravity *self){ return (float)(self->GetWeight()); } SWIGINTERN void iPcGravity_Active_set(iPcGravity *self,bool _val){ self->SetActive(_val); } SWIGINTERN bool iPcGravity_Active_get(iPcGravity *self){ return (bool)(self->IsActive()); } SWIGINTERN bool iPcGravity_Resting_get(iPcGravity *self){ return (bool)(self->IsResting()); } iPcGravity *celCreateGravity(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcgravity" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcGravity * celGetSetGravity (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcgravity" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcGravity * celGetGravity (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcGravity *scfQuery_iPcGravity (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcMovable_Mesh_set(iPcMovable *self,iPcMesh *_val){ self->SetMesh(_val); } SWIGINTERN iPcMesh *iPcMovable_Mesh_get(iPcMovable *self){ return (iPcMesh*)(self->GetMesh()); } iPcMovable *celCreateMovable(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcmovable" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMovable * celGetSetMovable (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcmovable" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMovable * celGetMovable (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcMovable *scfQuery_iPcMovable (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcInventory *celCreateInventory(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcinventory" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcInventory * celGetSetInventory (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcinventory" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcInventory * celGetInventory (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcInventory *scfQuery_iPcInventory (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcCharacteristics *celCreateCharacteristics(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pccharacteristics" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcCharacteristics * celGetSetCharacteristics (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pccharacteristics" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcCharacteristics * celGetCharacteristics (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcCharacteristics *scfQuery_iPcCharacteristics (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN bool iPcTooltip_Visible_get(iPcTooltip *self){ return (bool)(self->IsVisible()); } iPcTooltip *celCreateToolTip(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pctooltip" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcTooltip * celGetSetToolTip (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pctooltip" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcTooltip * celGetToolTip (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcTooltip *scfQuery_iPcTooltip (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN iSndSysListener *iPcSoundListener_SoundListener_get(iPcSoundListener *self){ return (iSndSysListener*)(self->GetSoundListener()); } SWIGINTERN iSndSysSource *iPcSoundSource_SoundSource_get(iPcSoundSource *self){ return (iSndSysSource*)(self->GetSoundSource()); } SWIGINTERN void iPcSoundSource_SoundName_set(iPcSoundSource *self,char const *_val){ self->SetSoundName(_val); } SWIGINTERN char const *iPcSoundSource_SoundName_get(iPcSoundSource *self){ return (const char*)(self->GetSoundName()); } iPcSoundSource *celCreateSoundSource(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcsoundsource" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcSoundSource * celGetSetSoundSource (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcsoundsource" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcSoundSource * celGetSoundSource (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcSoundSource *scfQuery_iPcSoundSource (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcSoundListener *celCreateSoundListener(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcsoundlistener" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcSoundListener * celGetSetSoundListener (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcsoundlistener" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcSoundListener * celGetSoundListener (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcSoundListener *scfQuery_iPcSoundListener (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } iPcProperties *celCreateProperties(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcproperties" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcProperties * celGetSetProperties (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcproperties" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcProperties * celGetProperties (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcProperties *scfQuery_iPcProperties (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN iSector *iPcMover_Sector_get(iPcMover *self){ return (iSector*)(self->GetSector()); } SWIGINTERN csVector3 &iPcMover_Position_get(iPcMover *self){ return (csVector3&)(self->GetPosition()); } SWIGINTERN csVector3 &iPcMover_Up_get(iPcMover *self){ return (csVector3&)(self->GetUp()); } SWIGINTERN float iPcMover_SqRadius_get(iPcMover *self){ return (float)(self->GetSqRadius()); } SWIGINTERN bool iPcMover_Moving_get(iPcMover *self){ return (bool)(self->IsMoving()); } iPcMover *celCreateMover(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcmover" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMover * celGetSetMover (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcmover" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcMover * celGetMover (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcMover *scfQuery_iPcMover (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN float iPcHover_Height_get(iPcHover *self){ return (float)(self->GetHeight()); } iPcHover *celCreateHover(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pchover" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcHover * celGetSetHover (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pchover" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcHover * celGetHover (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcHover *scfQuery_iPcHover (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN bool iPcCraftController_ThrusterOn_get(iPcCraftController *self){ return (bool)(self->IsThrusterOn()); } iPcCraftController *celCreateCraftController(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pccraft" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcCraftController * celGetSetCraftController (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pccraft" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcCraftController * celGetCraftController (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcCraftController *scfQuery_iPcCraftController (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcWheeled_TankMode_set(iPcWheeled *self,bool _val){ self->SetTankMode(_val); } SWIGINTERN bool iPcWheeled_TankMode_get(iPcWheeled *self){ return (bool)(self->GetTankMode()); } SWIGINTERN void iPcWheeled_Accelerating_set(iPcWheeled *self,bool _val){ self->Accelerate(_val); } SWIGINTERN bool iPcWheeled_Accelerating_get(iPcWheeled *self){ return (bool)(self->IsAccelerating()); } SWIGINTERN void iPcWheeled_Braking_set(iPcWheeled *self,bool _val){ self->Brake(_val); } SWIGINTERN bool iPcWheeled_Braking_get(iPcWheeled *self){ return (bool)(self->IsBraking()); } SWIGINTERN void iPcWheeled_Handbraking_set(iPcWheeled *self,bool _val){ self->Handbrake(_val); } SWIGINTERN bool iPcWheeled_Handbraking_get(iPcWheeled *self){ return (bool)(self->IsHandbraking()); } SWIGINTERN void iPcWheeled_SteerAmount_set(iPcWheeled *self,float _val){ self->SetSteerAmount(_val); } SWIGINTERN float iPcWheeled_SteerAmount_get(iPcWheeled *self){ return (float)(self->GetSteerAmount()); } SWIGINTERN void iPcWheeled_Gear_set(iPcWheeled *self,int _val){ self->SetGear(_val); } SWIGINTERN int iPcWheeled_Gear_get(iPcWheeled *self){ return (int)(self->GetGear()); } SWIGINTERN int iPcWheeled_TopGear_get(iPcWheeled *self){ return (int)(self->GetTopGear()); } SWIGINTERN iBodyGroup *iPcWheeled_BodyGroup_get(iPcWheeled *self){ return (iBodyGroup*)(self->GetBodyGroup()); } iPcWheeled *celCreateWheeled(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcwheeled" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcWheeled * celGetSetWheeled (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcwheeled" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcWheeled * celGetWheeled (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcWheeled *scfQuery_iPcWheeled (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN void iPcDamage_Damage_set(iPcDamage *self,float _val){ self->SetDamage(_val); } SWIGINTERN float iPcDamage_Damage_get(iPcDamage *self){ return (float)(self->GetDamage()); } SWIGINTERN void iPcDamage_DamageType_set(iPcDamage *self,char const *_val){ self->SetDamageType(_val); } SWIGINTERN char const *iPcDamage_DamageType_get(iPcDamage *self){ return (const char*)(self->GetDamageType()); } SWIGINTERN void iPcDamage_FallOff_set(iPcDamage *self,char const *_val){ self->SetFallOff(_val); } SWIGINTERN char const *iPcDamage_FallOff_get(iPcDamage *self){ return (const char*)(self->GetFallOff()); } SWIGINTERN char const *iPcDamage_DamageSector_get(iPcDamage *self){ return (const char*)(self->GetDamageSector()); } SWIGINTERN csVector3 &iPcDamage_DamagePosition_get(iPcDamage *self){ return (csVector3&)(self->GetDamagePosition()); } iPcDamage *celCreateDamage(iCelPlLayer *pl, iCelEntity *entity) { csRef pc = pl->CreatePropertyClass(entity,"pcdamage" ); if (!pc.IsValid()) return 0; csRef pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcDamage * celGetSetDamage (iCelPlLayer *pl, iCelEntity *entity) { csRef pclm = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (pclm.IsValid()) return pclm; csRef pc = pl->CreatePropertyClass(entity,"pcdamage" ); if (!pc.IsValid()) return 0; pclm = scfQueryInterface (pc); if (!pclm.IsValid()) return 0; return pclm; } iPcDamage * celGetDamage (iCelEntity *entity) { csRef pc = (celQueryPropertyClass (entity->GetPropertyClassList ())); if (!pc.IsValid()) return 0; return pc; } iPcDamage *scfQuery_iPcDamage (iCelPropertyClass *pc) { csRef iface = scfQueryInterface (pc); if (iface) iface->IncRef (); return iface; } SWIGINTERN iConsoleInput *iCelConsole_InputConsole_get(iCelConsole *self){ return (iConsoleInput*)(self->GetInputConsole()); } SWIGINTERN iConsoleOutput *iCelConsole_OutputConsole_get(iCelConsole *self){ return (iConsoleOutput*)(self->GetOutputConsole()); } iCelConsole *csQueryRegistry_iCelConsole (iObjectRegistry *object_reg) { csRef bl = CS_QUERY_REGISTRY (object_reg, iCelConsole); return bl; } #ifdef __cplusplus extern "C" { #endif SWIGINTERN PyObject *_wrap__csRef_to_Python(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; csRef *arg1 = 0 ; void *arg2 = (void *) 0 ; char *arg3 = (char *) 0 ; PyObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:_csRef_to_Python",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_csRefTiBase_t, 0 | 0); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "_csRef_to_Python" "', argument " "1"" of type '" "csRef const &""'"); } if (!argp1) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "_csRef_to_Python" "', argument " "1"" of type '" "csRef const &""'"); } arg1 = reinterpret_cast< csRef * >(argp1); res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "_csRef_to_Python" "', argument " "2"" of type '" "void *""'"); } res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "_csRef_to_Python" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (PyObject *)_csRef_to_Python((csRef const &)*arg1,arg2,(char const *)arg3); resultobj = result; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_celInitializer_SetupCelPluginDirs(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celInitializer_SetupCelPluginDirs",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celInitializer_SetupCelPluginDirs" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); celInitializer::SetupCelPluginDirs(arg1); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celInitializer__RequestPlugins(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; csArray *arg2 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celInitializer__RequestPlugins",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celInitializer__RequestPlugins" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csArrayTcsPluginRequest_csArrayElementHandlerTcsPluginRequest_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celInitializer__RequestPlugins" "', argument " "2"" of type '" "csArray const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celInitializer__RequestPlugins" "', argument " "2"" of type '" "csArray const &""'"); } arg2 = reinterpret_cast< csArray * >(argp2); result = (bool)celInitializer::RequestPlugins(arg1,(csArray const &)*arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_celInitializer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celInitializer *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":new_celInitializer")) SWIG_fail; result = (celInitializer *)new celInitializer(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celInitializer, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_celInitializer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celInitializer *arg1 = (celInitializer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_celInitializer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celInitializer, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_celInitializer" "', argument " "1"" of type '" "celInitializer *""'"); } arg1 = reinterpret_cast< celInitializer * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *celInitializer_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_celInitializer, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celData_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; celDataType arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_type_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_type_set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_type_set" "', argument " "2"" of type '" "celDataType""'"); } arg2 = static_cast< celDataType >(val2); if (arg1) (arg1)->type = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; celDataType result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_type_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_type_get" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); result = (celDataType) ((arg1)->type); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_celData__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":new_celData")) SWIG_fail; result = (celData *)new celData(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_celData__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = 0 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:new_celData",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_celData, 0 | 0); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_celData" "', argument " "1"" of type '" "celData const &""'"); } if (!argp1) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_celData" "', argument " "1"" of type '" "celData const &""'"); } arg1 = reinterpret_cast< celData * >(argp1); result = (celData *)new celData((celData const &)*arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_celData(PyObject *self, PyObject *args) { int argc; PyObject *argv[2]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 1); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 0) { return _wrap_new_celData__SWIG_0(self, args); } if (argc == 1) { int _v; int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_new_celData__SWIG_1(self, args); } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'new_celData'"); return NULL; } SWIGINTERN PyObject *_wrap_celData_assign(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; celData *arg2 = 0 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_assign",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_assign" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_celData, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_assign" "', argument " "2"" of type '" "celData const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_assign" "', argument " "2"" of type '" "celData const &""'"); } arg2 = reinterpret_cast< celData * >(argp2); { celData const &_result_ref = (arg1)->operator =((celData const &)*arg2); result = (celData *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_celData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_celData",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_celData" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_Clear",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Clear" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); (arg1)->Clear(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_Set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->Set(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; int8 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_int8_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "int8""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_Set" "', argument " "2"" of type '" "int8""'"); } else { int8 * temp = reinterpret_cast< int8 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } (arg1)->Set(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; uint8 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint8_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "uint8""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_Set" "', argument " "2"" of type '" "uint8""'"); } else { uint8 * temp = reinterpret_cast< uint8 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } (arg1)->Set(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; int16 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_int16_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "int16""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_Set" "', argument " "2"" of type '" "int16""'"); } else { int16 * temp = reinterpret_cast< int16 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } (arg1)->Set(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; uint16 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint16_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "uint16""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_Set" "', argument " "2"" of type '" "uint16""'"); } else { uint16 * temp = reinterpret_cast< uint16 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } (arg1)->Set(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; int32 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_int32_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "int32""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_Set" "', argument " "2"" of type '" "int32""'"); } else { int32 * temp = reinterpret_cast< int32 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } (arg1)->Set(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; uint32 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint32_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "uint32""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_Set" "', argument " "2"" of type '" "uint32""'"); } else { uint32 * temp = reinterpret_cast< uint32 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } (arg1)->Set(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_Set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->Set(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; csVector2 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector2, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "csVector2 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_Set" "', argument " "2"" of type '" "csVector2 const &""'"); } arg2 = reinterpret_cast< csVector2 * >(argp2); (arg1)->Set((csVector2 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_9(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_Set" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->Set((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_10(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; csColor *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csColor, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "csColor const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_Set" "', argument " "2"" of type '" "csColor const &""'"); } arg2 = reinterpret_cast< csColor * >(argp2); (arg1)->Set((csColor const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_11(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->Set((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_12(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; iCelPropertyClass *arg2 = (iCelPropertyClass *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "iCelPropertyClass *""'"); } arg2 = reinterpret_cast< iCelPropertyClass * >(argp2); (arg1)->Set(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set__SWIG_13(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_Set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_Set" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_Set" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); (arg1)->Set(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_Set(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_int8_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_1(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_uint8_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_2(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_int16_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_3(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_uint16_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_4(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_int32_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_5(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_uint32_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_6(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector2, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_8(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_9(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csColor, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_10(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_12(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_13(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_celData_Set__SWIG_7(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celData_Set__SWIG_11(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_celData_Set__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'celData_Set'"); return NULL; } SWIGINTERN PyObject *_wrap_celData_SetAction(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_SetAction",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_SetAction" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_SetAction" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetAction((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_celData_SetIBase(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; iBase *arg2 = (iBase *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_SetIBase",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_SetIBase" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBase, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_SetIBase" "', argument " "2"" of type '" "iBase *""'"); } arg2 = reinterpret_cast< iBase * >(argp2); (arg1)->SetIBase(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_SetParameter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; char *arg2 = (char *) 0 ; celDataType arg3 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:celData_SetParameter",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_SetParameter" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_SetParameter" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "celData_SetParameter" "', argument " "3"" of type '" "celDataType""'"); } arg3 = static_cast< celDataType >(val3); (arg1)->SetParameter((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_celData_value_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData *arg1 = (celData *) 0 ; celData_value *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_get" "', argument " "1"" of type '" "celData *""'"); } arg1 = reinterpret_cast< celData * >(argp1); result = (celData_value *)& ((arg1)->value); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData_value, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *celData_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_celData, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celData_value_bo_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_bo_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_bo_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_value_bo_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); if (arg1) (arg1)->bo = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_bo_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_bo_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_bo_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = (bool) ((arg1)->bo); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_b_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; int8 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_b_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_b_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_int8_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_b_set" "', argument " "2"" of type '" "int8""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_value_b_set" "', argument " "2"" of type '" "int8""'"); } else { int8 * temp = reinterpret_cast< int8 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } if (arg1) (arg1)->b = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_b_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; int8 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_b_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_b_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = ((arg1)->b); resultobj = SWIG_NewPointerObj((new int8(static_cast< const int8& >(result))), SWIGTYPE_p_int8_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_ub_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; uint8 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_ub_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_ub_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint8_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_ub_set" "', argument " "2"" of type '" "uint8""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_value_ub_set" "', argument " "2"" of type '" "uint8""'"); } else { uint8 * temp = reinterpret_cast< uint8 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } if (arg1) (arg1)->ub = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_ub_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; uint8 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_ub_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_ub_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = ((arg1)->ub); resultobj = SWIG_NewPointerObj((new uint8(static_cast< const uint8& >(result))), SWIGTYPE_p_uint8_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_w_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; int16 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_w_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_w_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_int16_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_w_set" "', argument " "2"" of type '" "int16""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_value_w_set" "', argument " "2"" of type '" "int16""'"); } else { int16 * temp = reinterpret_cast< int16 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } if (arg1) (arg1)->w = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_w_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; int16 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_w_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_w_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = ((arg1)->w); resultobj = SWIG_NewPointerObj((new int16(static_cast< const int16& >(result))), SWIGTYPE_p_int16_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_uw_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; uint16 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_uw_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_uw_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint16_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_uw_set" "', argument " "2"" of type '" "uint16""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_value_uw_set" "', argument " "2"" of type '" "uint16""'"); } else { uint16 * temp = reinterpret_cast< uint16 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } if (arg1) (arg1)->uw = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_uw_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; uint16 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_uw_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_uw_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = ((arg1)->uw); resultobj = SWIG_NewPointerObj((new uint16(static_cast< const uint16& >(result))), SWIGTYPE_p_uint16_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_l_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; int32 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_l_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_l_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_int32_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_l_set" "', argument " "2"" of type '" "int32""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_value_l_set" "', argument " "2"" of type '" "int32""'"); } else { int32 * temp = reinterpret_cast< int32 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } if (arg1) (arg1)->l = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_l_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; int32 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_l_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_l_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = ((arg1)->l); resultobj = SWIG_NewPointerObj((new int32(static_cast< const int32& >(result))), SWIGTYPE_p_int32_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_ul_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; uint32 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_ul_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_ul_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint32_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_ul_set" "', argument " "2"" of type '" "uint32""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celData_value_ul_set" "', argument " "2"" of type '" "uint32""'"); } else { uint32 * temp = reinterpret_cast< uint32 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } if (arg1) (arg1)->ul = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_ul_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; uint32 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_ul_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_ul_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = ((arg1)->ul); resultobj = SWIG_NewPointerObj((new uint32(static_cast< const uint32& >(result))), SWIGTYPE_p_uint32_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_f_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_f_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_f_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_value_f_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); if (arg1) (arg1)->f = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_f_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_f_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_f_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = (float) ((arg1)->f); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_s_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; iString *arg2 = (iString *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_s_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_s_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iString, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_s_set" "', argument " "2"" of type '" "iString *""'"); } arg2 = reinterpret_cast< iString * >(argp2); if (arg1) (arg1)->s = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_s_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; iString *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_s_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_s_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = (iString *) ((arg1)->s); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iString, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_pc_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; iCelPropertyClass *arg2 = (iCelPropertyClass *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_pc_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_pc_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyClass, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_pc_set" "', argument " "2"" of type '" "iCelPropertyClass *""'"); } arg2 = reinterpret_cast< iCelPropertyClass * >(argp2); if (arg1) (arg1)->pc = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_pc_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; iCelPropertyClass *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_pc_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_pc_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = (iCelPropertyClass *) ((arg1)->pc); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_ent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_ent_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_ent_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_ent_set" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); if (arg1) (arg1)->ent = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_ent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_ent_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_ent_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = (iCelEntity *) ((arg1)->ent); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_ibase_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; iBase *arg2 = (iBase *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_ibase_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_ibase_set" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBase, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_ibase_set" "', argument " "2"" of type '" "iBase *""'"); } arg2 = reinterpret_cast< iBase * >(argp2); if (arg1) (arg1)->ibase = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_ibase_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; iBase *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_ibase_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_ibase_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = (iBase *) ((arg1)->ibase); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBase, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_par_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; celData_value_par *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_par_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_par_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = (celData_value_par *)& ((arg1)->par); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData_value_par, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_col_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; celData_value_col *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_col_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_col_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = (celData_value_col *)& ((arg1)->col); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData_value_col, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_v_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; celData_value_v *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_v_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_v_get" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); result = (celData_value_v *)& ((arg1)->v); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData_value_v, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_celData_value(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":new_celData_value")) SWIG_fail; result = (celData_value *)new celData_value(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData_value, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_celData_value(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value *arg1 = (celData_value *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_celData_value",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_celData_value" "', argument " "1"" of type '" "celData_value *""'"); } arg1 = reinterpret_cast< celData_value * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *celData_value_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_celData_value, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celData_value_par_parname_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_par *arg1 = (celData_value_par *) 0 ; iString *arg2 = (iString *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_par_parname_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_par, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_par_parname_set" "', argument " "1"" of type '" "celData_value_par *""'"); } arg1 = reinterpret_cast< celData_value_par * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iString, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celData_value_par_parname_set" "', argument " "2"" of type '" "iString *""'"); } arg2 = reinterpret_cast< iString * >(argp2); if (arg1) (arg1)->parname = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_par_parname_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_par *arg1 = (celData_value_par *) 0 ; iString *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_par_parname_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_par, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_par_parname_get" "', argument " "1"" of type '" "celData_value_par *""'"); } arg1 = reinterpret_cast< celData_value_par * >(argp1); result = (iString *) ((arg1)->parname); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iString, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_par_partype_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_par *arg1 = (celData_value_par *) 0 ; celDataType arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_par_partype_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_par, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_par_partype_set" "', argument " "1"" of type '" "celData_value_par *""'"); } arg1 = reinterpret_cast< celData_value_par * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_value_par_partype_set" "', argument " "2"" of type '" "celDataType""'"); } arg2 = static_cast< celDataType >(val2); if (arg1) (arg1)->partype = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_par_partype_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_par *arg1 = (celData_value_par *) 0 ; celDataType result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_par_partype_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_par, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_par_partype_get" "', argument " "1"" of type '" "celData_value_par *""'"); } arg1 = reinterpret_cast< celData_value_par * >(argp1); result = (celDataType) ((arg1)->partype); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_celData_value_par(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_par *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":new_celData_value_par")) SWIG_fail; result = (celData_value_par *)new celData_value_par(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData_value_par, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_celData_value_par(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_par *arg1 = (celData_value_par *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_celData_value_par",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_par, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_celData_value_par" "', argument " "1"" of type '" "celData_value_par *""'"); } arg1 = reinterpret_cast< celData_value_par * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *celData_value_par_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_celData_value_par, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celData_value_col_red_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_col *arg1 = (celData_value_col *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_col_red_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_col, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_col_red_set" "', argument " "1"" of type '" "celData_value_col *""'"); } arg1 = reinterpret_cast< celData_value_col * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_value_col_red_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); if (arg1) (arg1)->red = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_col_red_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_col *arg1 = (celData_value_col *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_col_red_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_col, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_col_red_get" "', argument " "1"" of type '" "celData_value_col *""'"); } arg1 = reinterpret_cast< celData_value_col * >(argp1); result = (float) ((arg1)->red); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_col_green_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_col *arg1 = (celData_value_col *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_col_green_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_col, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_col_green_set" "', argument " "1"" of type '" "celData_value_col *""'"); } arg1 = reinterpret_cast< celData_value_col * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_value_col_green_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); if (arg1) (arg1)->green = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_col_green_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_col *arg1 = (celData_value_col *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_col_green_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_col, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_col_green_get" "', argument " "1"" of type '" "celData_value_col *""'"); } arg1 = reinterpret_cast< celData_value_col * >(argp1); result = (float) ((arg1)->green); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_col_blue_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_col *arg1 = (celData_value_col *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_col_blue_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_col, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_col_blue_set" "', argument " "1"" of type '" "celData_value_col *""'"); } arg1 = reinterpret_cast< celData_value_col * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_value_col_blue_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); if (arg1) (arg1)->blue = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_col_blue_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_col *arg1 = (celData_value_col *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_col_blue_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_col, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_col_blue_get" "', argument " "1"" of type '" "celData_value_col *""'"); } arg1 = reinterpret_cast< celData_value_col * >(argp1); result = (float) ((arg1)->blue); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_celData_value_col(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_col *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":new_celData_value_col")) SWIG_fail; result = (celData_value_col *)new celData_value_col(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData_value_col, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_celData_value_col(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_col *arg1 = (celData_value_col *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_celData_value_col",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_col, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_celData_value_col" "', argument " "1"" of type '" "celData_value_col *""'"); } arg1 = reinterpret_cast< celData_value_col * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *celData_value_col_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_celData_value_col, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celData_value_v_x_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_v *arg1 = (celData_value_v *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_v_x_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_v, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_v_x_set" "', argument " "1"" of type '" "celData_value_v *""'"); } arg1 = reinterpret_cast< celData_value_v * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_value_v_x_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); if (arg1) (arg1)->x = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_v_x_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_v *arg1 = (celData_value_v *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_v_x_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_v, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_v_x_get" "', argument " "1"" of type '" "celData_value_v *""'"); } arg1 = reinterpret_cast< celData_value_v * >(argp1); result = (float) ((arg1)->x); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_v_y_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_v *arg1 = (celData_value_v *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_v_y_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_v, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_v_y_set" "', argument " "1"" of type '" "celData_value_v *""'"); } arg1 = reinterpret_cast< celData_value_v * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_value_v_y_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); if (arg1) (arg1)->y = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_v_y_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_v *arg1 = (celData_value_v *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_v_y_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_v, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_v_y_get" "', argument " "1"" of type '" "celData_value_v *""'"); } arg1 = reinterpret_cast< celData_value_v * >(argp1); result = (float) ((arg1)->y); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_v_z_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_v *arg1 = (celData_value_v *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celData_value_v_z_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_v, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_v_z_set" "', argument " "1"" of type '" "celData_value_v *""'"); } arg1 = reinterpret_cast< celData_value_v * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celData_value_v_z_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); if (arg1) (arg1)->z = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celData_value_v_z_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_v *arg1 = (celData_value_v *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celData_value_v_z_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_v, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celData_value_v_z_get" "', argument " "1"" of type '" "celData_value_v *""'"); } arg1 = reinterpret_cast< celData_value_v * >(argp1); result = (float) ((arg1)->z); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_celData_value_v(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_v *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":new_celData_value_v")) SWIG_fail; result = (celData_value_v *)new celData_value_v(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData_value_v, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_celData_value_v(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celData_value_v *arg1 = (celData_value_v *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_celData_value_v",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celData_value_v, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_celData_value_v" "', argument " "1"" of type '" "celData_value_v *""'"); } arg1 = reinterpret_cast< celData_value_v * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *celData_value_v_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_celData_value_v, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelNewEntityCallback_NewEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelNewEntityCallback *arg1 = (iCelNewEntityCallback *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelNewEntityCallback_NewEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelNewEntityCallback, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelNewEntityCallback_NewEntity" "', argument " "1"" of type '" "iCelNewEntityCallback *""'"); } arg1 = reinterpret_cast< iCelNewEntityCallback * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelNewEntityCallback_NewEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); (arg1)->NewEntity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelNewEntityCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelNewEntityCallback *arg1 = (iCelNewEntityCallback *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelNewEntityCallback",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelNewEntityCallback, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelNewEntityCallback" "', argument " "1"" of type '" "iCelNewEntityCallback *""'"); } arg1 = reinterpret_cast< iCelNewEntityCallback * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelNewEntityCallback_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelNewEntityCallback, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelEntityRemoveCallback_RemoveEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityRemoveCallback *arg1 = (iCelEntityRemoveCallback *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityRemoveCallback_RemoveEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityRemoveCallback, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityRemoveCallback_RemoveEntity" "', argument " "1"" of type '" "iCelEntityRemoveCallback *""'"); } arg1 = reinterpret_cast< iCelEntityRemoveCallback * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityRemoveCallback_RemoveEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); (arg1)->RemoveEntity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelEntityRemoveCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityRemoveCallback *arg1 = (iCelEntityRemoveCallback *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelEntityRemoveCallback",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityRemoveCallback, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelEntityRemoveCallback" "', argument " "1"" of type '" "iCelEntityRemoveCallback *""'"); } arg1 = reinterpret_cast< iCelEntityRemoveCallback * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelEntityRemoveCallback_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelEntityRemoveCallback, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelTimerListener_TickEveryFrame(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelTimerListener *arg1 = (iCelTimerListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelTimerListener_TickEveryFrame",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelTimerListener, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelTimerListener_TickEveryFrame" "', argument " "1"" of type '" "iCelTimerListener *""'"); } arg1 = reinterpret_cast< iCelTimerListener * >(argp1); (arg1)->TickEveryFrame(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelTimerListener_TickOnce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelTimerListener *arg1 = (iCelTimerListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelTimerListener_TickOnce",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelTimerListener, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelTimerListener_TickOnce" "', argument " "1"" of type '" "iCelTimerListener *""'"); } arg1 = reinterpret_cast< iCelTimerListener * >(argp1); (arg1)->TickOnce(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelTimerListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelTimerListener *arg1 = (iCelTimerListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelTimerListener",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelTimerListener, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelTimerListener" "', argument " "1"" of type '" "iCelTimerListener *""'"); } arg1 = reinterpret_cast< iCelTimerListener * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelTimerListener_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelTimerListener, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntity__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPlLayer_CreateEntity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); result = (arg1)->CreateEntity(); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntity *)ref), (void *)(iCelEntity *)ref, "iCelEntity" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntityInScope(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; int arg2 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_CreateEntityInScope",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateEntityInScope" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_CreateEntityInScope" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (arg1)->CreateEntityInScope(arg2); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntity *)ref), (void *)(iCelEntity *)ref, "iCelEntity" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntity__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; uint arg2 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; unsigned int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_CreateEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_CreateEntity" "', argument " "2"" of type '" "uint""'"); } arg2 = static_cast< uint >(val2); result = (arg1)->CreateEntity(arg2); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntity *)ref), (void *)(iCelEntity *)ref, "iCelEntity" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntity__SWIG_2__varargs__(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *varargs) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; iCelBlLayer *arg3 = (iCelBlLayer *) 0 ; char *arg4 = (char *) 0 ; void *arg5 = 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPlLayer_CreateEntity",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_CreateEntity" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelBlLayer, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_CreateEntity" "', argument " "3"" of type '" "iCelBlLayer *""'"); } arg3 = reinterpret_cast< iCelBlLayer * >(argp3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelPlLayer_CreateEntity" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; result = (arg1)->CreateEntity((char const *)arg2,arg3,(char const *)arg4,arg5); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntity *)ref), (void *)(iCelEntity *)ref, "iCelEntity" " *"); /*@SWIG@*/ } if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntity__SWIG_2(PyObject *self, PyObject *args) { PyObject *resultobj; PyObject *varargs; PyObject *newargs; newargs = PyTuple_GetSlice(args,0,4); varargs = PyTuple_GetSlice(args,4,PyTuple_Size(args)+1); resultobj = _wrap_iCelPlLayer_CreateEntity__SWIG_2__varargs__(self,newargs,varargs); Py_XDECREF(newargs); Py_XDECREF(varargs); return resultobj; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RemoveEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_RemoveEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RemoveEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_RemoveEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); (arg1)->RemoveEntity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RemoveEntities(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPlLayer_RemoveEntities",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RemoveEntities" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); (arg1)->RemoveEntities(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntityTemplate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; iCelEntityTemplate *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_CreateEntityTemplate",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateEntityTemplate" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_CreateEntityTemplate" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelEntityTemplate *)(arg1)->CreateEntityTemplate((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RemoveEntityTemplate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntityTemplate *arg2 = (iCelEntityTemplate *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_RemoveEntityTemplate",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RemoveEntityTemplate" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_RemoveEntityTemplate" "', argument " "2"" of type '" "iCelEntityTemplate *""'"); } arg2 = reinterpret_cast< iCelEntityTemplate * >(argp2); (arg1)->RemoveEntityTemplate(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RemoveEntityTemplates(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPlLayer_RemoveEntityTemplates",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RemoveEntityTemplates" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); (arg1)->RemoveEntityTemplates(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindEntityTemplate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; iCelEntityTemplate *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_FindEntityTemplate",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindEntityTemplate" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindEntityTemplate" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelEntityTemplate *)(arg1)->FindEntityTemplate((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetEntityTemplateCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPlLayer_GetEntityTemplateCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetEntityTemplateCount" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); result = ((iCelPlLayer const *)arg1)->GetEntityTemplateCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetEntityTemplate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; size_t arg2 ; iCelEntityTemplate *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_GetEntityTemplate",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetEntityTemplate" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_GetEntityTemplate" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelEntityTemplate *)((iCelPlLayer const *)arg1)->GetEntityTemplate(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntity__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntityTemplate *arg2 = (iCelEntityTemplate *) 0 ; char *arg3 = (char *) 0 ; celEntityTemplateParams *arg4 = 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPlLayer_CreateEntity",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_CreateEntity" "', argument " "2"" of type '" "iCelEntityTemplate *""'"); } arg2 = reinterpret_cast< iCelEntityTemplate * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_CreateEntity" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csHashTcsStrKey_csStrKey_CS__Memory__AllocatorMalloc_t, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelPlLayer_CreateEntity" "', argument " "4"" of type '" "celEntityTemplateParams const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPlLayer_CreateEntity" "', argument " "4"" of type '" "celEntityTemplateParams const &""'"); } arg4 = reinterpret_cast< celEntityTemplateParams * >(argp4); result = (iCelEntity *)(arg1)->CreateEntity(arg2,(char const *)arg3,(celEntityTemplateParams const &)*arg4); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntity__SWIG_4__varargs__(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *varargs) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntityTemplate *arg2 = (iCelEntityTemplate *) 0 ; char *arg3 = (char *) 0 ; void *arg4 = 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPlLayer_CreateEntity",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_CreateEntity" "', argument " "2"" of type '" "iCelEntityTemplate *""'"); } arg2 = reinterpret_cast< iCelEntityTemplate * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_CreateEntity" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (iCelEntity *)(arg1)->CreateEntity(arg2,(char const *)arg3,arg4); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntity__SWIG_4(PyObject *self, PyObject *args) { PyObject *resultobj; PyObject *varargs; PyObject *newargs; newargs = PyTuple_GetSlice(args,0,3); varargs = PyTuple_GetSlice(args,3,PyTuple_Size(args)+1); resultobj = _wrap_iCelPlLayer_CreateEntity__SWIG_4__varargs__(self,newargs,varargs); Py_XDECREF(newargs); Py_XDECREF(varargs); return resultobj; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntity(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPlLayer_CreateEntity__SWIG_0(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelPlLayer_CreateEntity__SWIG_1(self, args); } } } if (argc >= 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntityTemplate, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { if (argc <= 3) { return _wrap_iCelPlLayer_CreateEntity__SWIG_4(self, args); } return _wrap_iCelPlLayer_CreateEntity__SWIG_4(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntityTemplate, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_csHashTcsStrKey_csStrKey_CS__Memory__AllocatorMalloc_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPlLayer_CreateEntity__SWIG_3(self, args); } } } } } if (argc >= 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelBlLayer, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { if (argc <= 4) { return _wrap_iCelPlLayer_CreateEntity__SWIG_2(self, args); } return _wrap_iCelPlLayer_CreateEntity__SWIG_2(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelPlLayer_CreateEntity'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateDataBuffer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; long arg2 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_CreateDataBuffer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateDataBuffer" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_CreateDataBuffer" "', argument " "2"" of type '" "long""'"); } arg2 = static_cast< long >(val2); result = (arg1)->CreateDataBuffer(arg2); resultobj = SWIG_NewPointerObj((new csPtr(static_cast< const csPtr& >(result))), SWIGTYPE_p_csPtrTiCelDataBuffer_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_AttachEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iObject *arg2 = (iObject *) 0 ; iCelEntity *arg3 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPlLayer_AttachEntity",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_AttachEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_AttachEntity" "', argument " "2"" of type '" "iObject *""'"); } arg2 = reinterpret_cast< iObject * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_AttachEntity" "', argument " "3"" of type '" "iCelEntity *""'"); } arg3 = reinterpret_cast< iCelEntity * >(argp3); (arg1)->AttachEntity(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_UnattachEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iObject *arg2 = (iObject *) 0 ; iCelEntity *arg3 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPlLayer_UnattachEntity",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_UnattachEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_UnattachEntity" "', argument " "2"" of type '" "iObject *""'"); } arg2 = reinterpret_cast< iObject * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_UnattachEntity" "', argument " "3"" of type '" "iCelEntity *""'"); } arg3 = reinterpret_cast< iCelEntity * >(argp3); (arg1)->UnattachEntity(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; uint arg2 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_GetEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_GetEntity" "', argument " "2"" of type '" "uint""'"); } arg2 = static_cast< uint >(val2); result = (iCelEntity *)(arg1)->GetEntity(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetEntityCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPlLayer_GetEntityCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetEntityCount" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); result = ((iCelPlLayer const *)arg1)->GetEntityCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetEntityByIndex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; size_t arg2 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_GetEntityByIndex",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetEntityByIndex" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_GetEntityByIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelEntity *)((iCelPlLayer const *)arg1)->GetEntityByIndex(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_FindEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindEntity" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelEntity *)(arg1)->FindEntity((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetBehaviour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; uint arg2 ; iCelBehaviour *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_GetBehaviour",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetBehaviour" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_GetBehaviour" "', argument " "2"" of type '" "uint""'"); } arg2 = static_cast< uint >(val2); result = (iCelBehaviour *)(arg1)->GetBehaviour(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelBehaviour, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindAttachedEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iObject *arg2 = (iObject *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_FindAttachedEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindAttachedEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindAttachedEntity" "', argument " "2"" of type '" "iObject *""'"); } arg2 = reinterpret_cast< iObject * >(argp2); result = (iCelEntity *)(arg1)->FindAttachedEntity(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindNearbyEntities__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 *arg3 = 0 ; float arg4 ; bool arg5 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; float val4 ; int ecode4 = 0 ; bool val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iCelPlLayer_FindNearbyEntities",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_bool(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "5"" of type '" "bool""'"); } arg5 = static_cast< bool >(val5); result = (arg1)->FindNearbyEntities(arg2,(csVector3 const &)*arg3,arg4,arg5); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntityList *)ref), (void *)(iCelEntityList *)ref, "iCelEntityList" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindNearbyEntities__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 *arg3 = 0 ; float arg4 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; float val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPlLayer_FindNearbyEntities",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); result = (arg1)->FindNearbyEntities(arg2,(csVector3 const &)*arg3,arg4); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntityList *)ref), (void *)(iCelEntityList *)ref, "iCelEntityList" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindNearbyEntities__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iSector *arg2 = (iSector *) 0 ; csBox3 *arg3 = 0 ; bool arg4 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; bool val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPlLayer_FindNearbyEntities",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csBox3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csBox3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csBox3 const &""'"); } arg3 = reinterpret_cast< csBox3 * >(argp3); ecode4 = SWIG_AsVal_bool(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "4"" of type '" "bool""'"); } arg4 = static_cast< bool >(val4); result = (arg1)->FindNearbyEntities(arg2,(csBox3 const &)*arg3,arg4); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntityList *)ref), (void *)(iCelEntityList *)ref, "iCelEntityList" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindNearbyEntities__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iSector *arg2 = (iSector *) 0 ; csBox3 *arg3 = 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPlLayer_FindNearbyEntities",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csBox3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csBox3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csBox3 const &""'"); } arg3 = reinterpret_cast< csBox3 * >(argp3); result = (arg1)->FindNearbyEntities(arg2,(csBox3 const &)*arg3); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntityList *)ref), (void *)(iCelEntityList *)ref, "iCelEntityList" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindNearbyEntities__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 *arg3 = 0 ; csVector3 *arg4 = 0 ; bool arg5 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; bool val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iCelPlLayer_FindNearbyEntities",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); ecode5 = SWIG_AsVal_bool(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "5"" of type '" "bool""'"); } arg5 = static_cast< bool >(val5); result = (arg1)->FindNearbyEntities(arg2,(csVector3 const &)*arg3,(csVector3 const &)*arg4,arg5); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntityList *)ref), (void *)(iCelEntityList *)ref, "iCelEntityList" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindNearbyEntities__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 *arg3 = 0 ; csVector3 *arg4 = 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPlLayer_FindNearbyEntities",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPlLayer_FindNearbyEntities" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); result = (arg1)->FindNearbyEntities(arg2,(csVector3 const &)*arg3,(csVector3 const &)*arg4); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntityList *)ref), (void *)(iCelEntityList *)ref, "iCelEntityList" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindNearbyEntities(PyObject *self, PyObject *args) { int argc; PyObject *argv[6]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 5); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csBox3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPlLayer_FindNearbyEntities__SWIG_3(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csBox3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelPlLayer_FindNearbyEntities__SWIG_2(self, args); } } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPlLayer_FindNearbyEntities__SWIG_5(self, args); } } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelPlLayer_FindNearbyEntities__SWIG_1(self, args); } } } } } if (argc == 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelPlLayer_FindNearbyEntities__SWIG_4(self, args); } } } } } } if (argc == 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPlLayer, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelPlLayer_FindNearbyEntities__SWIG_0(self, args); } } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelPlLayer_FindNearbyEntities'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetHitEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCamera *arg2 = (iCamera *) 0 ; int arg3 ; int arg4 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPlLayer_GetHitEntity",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetHitEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCamera, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_GetHitEntity" "', argument " "2"" of type '" "iCamera *""'"); } arg2 = reinterpret_cast< iCamera * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPlLayer_GetHitEntity" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iCelPlLayer_GetHitEntity" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); result = (iCelEntity *)(arg1)->GetHitEntity(arg2,arg3,arg4); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEmptyEntityList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPlLayer_CreateEmptyEntityList",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateEmptyEntityList" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); result = (arg1)->CreateEmptyEntityList(); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntityList *)ref), (void *)(iCelEntityList *)ref, "iCelEntityList" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateEntityTracker(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; iCelEntityTracker *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_CreateEntityTracker",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateEntityTracker" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_CreateEntityTracker" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelEntityTracker *)(arg1)->CreateEntityTracker((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindEntityTracker(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; iCelEntityTracker *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_FindEntityTracker",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindEntityTracker" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindEntityTracker" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelEntityTracker *)(arg1)->FindEntityTracker((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RemoveEntityTracker(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntityTracker *arg2 = (iCelEntityTracker *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_RemoveEntityTracker",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RemoveEntityTracker" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_RemoveEntityTracker" "', argument " "2"" of type '" "iCelEntityTracker *""'"); } arg2 = reinterpret_cast< iCelEntityTracker * >(argp2); (arg1)->RemoveEntityTracker(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_SetEntityAddonAllowed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_SetEntityAddonAllowed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_SetEntityAddonAllowed" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_SetEntityAddonAllowed" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetEntityAddonAllowed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_IsEntityAddonAllowed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPlLayer_IsEntityAddonAllowed",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_IsEntityAddonAllowed" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); result = (bool)((iCelPlLayer const *)arg1)->IsEntityAddonAllowed(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_LoadPropertyClassFactory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_LoadPropertyClassFactory",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_LoadPropertyClassFactory" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_LoadPropertyClassFactory" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)(arg1)->LoadPropertyClassFactory((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RegisterPropertyClassFactory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelPropertyClassFactory *arg2 = (iCelPropertyClassFactory *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_RegisterPropertyClassFactory",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RegisterPropertyClassFactory" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyClassFactory, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_RegisterPropertyClassFactory" "', argument " "2"" of type '" "iCelPropertyClassFactory *""'"); } arg2 = reinterpret_cast< iCelPropertyClassFactory * >(argp2); (arg1)->RegisterPropertyClassFactory(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_UnregisterPropertyClassFactory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelPropertyClassFactory *arg2 = (iCelPropertyClassFactory *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_UnregisterPropertyClassFactory",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_UnregisterPropertyClassFactory" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyClassFactory, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_UnregisterPropertyClassFactory" "', argument " "2"" of type '" "iCelPropertyClassFactory *""'"); } arg2 = reinterpret_cast< iCelPropertyClassFactory * >(argp2); (arg1)->UnregisterPropertyClassFactory(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetPropertyClassFactoryCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPlLayer_GetPropertyClassFactoryCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetPropertyClassFactoryCount" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); result = ((iCelPlLayer const *)arg1)->GetPropertyClassFactoryCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetPropertyClassFactory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; size_t arg2 ; iCelPropertyClassFactory *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_GetPropertyClassFactory",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetPropertyClassFactory" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_GetPropertyClassFactory" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelPropertyClassFactory *)((iCelPlLayer const *)arg1)->GetPropertyClassFactory(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClassFactory, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindPropertyClassFactory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; iCelPropertyClassFactory *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_FindPropertyClassFactory",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindPropertyClassFactory" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindPropertyClassFactory" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelPropertyClassFactory *)((iCelPlLayer const *)arg1)->FindPropertyClassFactory((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClassFactory, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreatePropertyClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; char *arg3 = (char *) 0 ; iCelPropertyClass *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPlLayer_CreatePropertyClass",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreatePropertyClass" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_CreatePropertyClass" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_CreatePropertyClass" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (iCelPropertyClass *)(arg1)->CreatePropertyClass(arg2,(char const *)arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CreateTaggedPropertyClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; char *arg3 = (char *) 0 ; char *arg4 = (char *) 0 ; iCelPropertyClass *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPlLayer_CreateTaggedPropertyClass",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CreateTaggedPropertyClass" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_CreateTaggedPropertyClass" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPlLayer_CreateTaggedPropertyClass" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelPlLayer_CreateTaggedPropertyClass" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; result = (iCelPropertyClass *)(arg1)->CreateTaggedPropertyClass(arg2,(char const *)arg3,(char const *)arg4); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RegisterBehaviourLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelBlLayer *arg2 = (iCelBlLayer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_RegisterBehaviourLayer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RegisterBehaviourLayer" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelBlLayer, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_RegisterBehaviourLayer" "', argument " "2"" of type '" "iCelBlLayer *""'"); } arg2 = reinterpret_cast< iCelBlLayer * >(argp2); (arg1)->RegisterBehaviourLayer(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_UnregisterBehaviourLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelBlLayer *arg2 = (iCelBlLayer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_UnregisterBehaviourLayer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_UnregisterBehaviourLayer" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelBlLayer, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_UnregisterBehaviourLayer" "', argument " "2"" of type '" "iCelBlLayer *""'"); } arg2 = reinterpret_cast< iCelBlLayer * >(argp2); (arg1)->UnregisterBehaviourLayer(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetBehaviourLayerCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPlLayer_GetBehaviourLayerCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetBehaviourLayerCount" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); result = ((iCelPlLayer const *)arg1)->GetBehaviourLayerCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_GetBehaviourLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; size_t arg2 ; iCelBlLayer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_GetBehaviourLayer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_GetBehaviourLayer" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_GetBehaviourLayer" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelBlLayer *)((iCelPlLayer const *)arg1)->GetBehaviourLayer(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelBlLayer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FindBehaviourLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; iCelBlLayer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_FindBehaviourLayer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FindBehaviourLayer" "', argument " "1"" of type '" "iCelPlLayer const *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FindBehaviourLayer" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelBlLayer *)((iCelPlLayer const *)arg1)->FindBehaviourLayer((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelBlLayer, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_Cache(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iBase *arg2 = (iBase *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_Cache",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_Cache" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBase, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_Cache" "', argument " "2"" of type '" "iBase *""'"); } arg2 = reinterpret_cast< iBase * >(argp2); (arg1)->Cache(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_Uncache(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iBase *arg2 = (iBase *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_Uncache",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_Uncache" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBase, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_Uncache" "', argument " "2"" of type '" "iBase *""'"); } arg2 = reinterpret_cast< iBase * >(argp2); (arg1)->Uncache(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CleanCache(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPlLayer_CleanCache",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CleanCache" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); (arg1)->CleanCache(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FetchStringID(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; csStringID result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_FetchStringID",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FetchStringID" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_FetchStringID" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (csStringID)(arg1)->FetchStringID((char const *)arg2); resultobj = SWIG_From_unsigned_SS_long(static_cast< unsigned long >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_FetchString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; csStringID arg2 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_FetchString",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_FetchString" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPlLayer_FetchString" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (char *)(arg1)->FetchString(arg2); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_AddEntityRemoveCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntityRemoveCallback *arg2 = (iCelEntityRemoveCallback *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_AddEntityRemoveCallback",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_AddEntityRemoveCallback" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntityRemoveCallback, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_AddEntityRemoveCallback" "', argument " "2"" of type '" "iCelEntityRemoveCallback *""'"); } arg2 = reinterpret_cast< iCelEntityRemoveCallback * >(argp2); (arg1)->AddEntityRemoveCallback(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RemoveEntityRemoveCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntityRemoveCallback *arg2 = (iCelEntityRemoveCallback *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_RemoveEntityRemoveCallback",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RemoveEntityRemoveCallback" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntityRemoveCallback, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_RemoveEntityRemoveCallback" "', argument " "2"" of type '" "iCelEntityRemoveCallback *""'"); } arg2 = reinterpret_cast< iCelEntityRemoveCallback * >(argp2); (arg1)->RemoveEntityRemoveCallback(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_AddNewEntityCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelNewEntityCallback *arg2 = (iCelNewEntityCallback *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_AddNewEntityCallback",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_AddNewEntityCallback" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelNewEntityCallback, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_AddNewEntityCallback" "', argument " "2"" of type '" "iCelNewEntityCallback *""'"); } arg2 = reinterpret_cast< iCelNewEntityCallback * >(argp2); (arg1)->AddNewEntityCallback(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RemoveNewEntityCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelNewEntityCallback *arg2 = (iCelNewEntityCallback *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPlLayer_RemoveNewEntityCallback",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RemoveNewEntityCallback" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelNewEntityCallback, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_RemoveNewEntityCallback" "', argument " "2"" of type '" "iCelNewEntityCallback *""'"); } arg2 = reinterpret_cast< iCelNewEntityCallback * >(argp2); (arg1)->RemoveNewEntityCallback(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CallbackEveryFrame(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelTimerListener *arg2 = (iCelTimerListener *) 0 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPlLayer_CallbackEveryFrame",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CallbackEveryFrame" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelTimerListener, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_CallbackEveryFrame" "', argument " "2"" of type '" "iCelTimerListener *""'"); } arg2 = reinterpret_cast< iCelTimerListener * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPlLayer_CallbackEveryFrame" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->CallbackEveryFrame(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_CallbackOnce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelTimerListener *arg2 = (iCelTimerListener *) 0 ; csTicks arg3 ; int arg4 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; unsigned int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPlLayer_CallbackOnce",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_CallbackOnce" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelTimerListener, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_CallbackOnce" "', argument " "2"" of type '" "iCelTimerListener *""'"); } arg2 = reinterpret_cast< iCelTimerListener * >(argp2); ecode3 = SWIG_AsVal_unsigned_SS_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPlLayer_CallbackOnce" "', argument " "3"" of type '" "csTicks""'"); } arg3 = static_cast< csTicks >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iCelPlLayer_CallbackOnce" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); (arg1)->CallbackOnce(arg2,arg3,arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RemoveCallbackEveryFrame(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelTimerListener *arg2 = (iCelTimerListener *) 0 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPlLayer_RemoveCallbackEveryFrame",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RemoveCallbackEveryFrame" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelTimerListener, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_RemoveCallbackEveryFrame" "', argument " "2"" of type '" "iCelTimerListener *""'"); } arg2 = reinterpret_cast< iCelTimerListener * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPlLayer_RemoveCallbackEveryFrame" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->RemoveCallbackEveryFrame(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_RemoveCallbackOnce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelTimerListener *arg2 = (iCelTimerListener *) 0 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPlLayer_RemoveCallbackOnce",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_RemoveCallbackOnce" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelTimerListener, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_RemoveCallbackOnce" "', argument " "2"" of type '" "iCelTimerListener *""'"); } arg2 = reinterpret_cast< iCelTimerListener * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPlLayer_RemoveCallbackOnce" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->RemoveCallbackOnce(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPlLayer_AddScope(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; csString arg2 ; int arg3 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPlLayer_AddScope",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPlLayer_AddScope" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csString, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPlLayer_AddScope" "', argument " "2"" of type '" "csString""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPlLayer_AddScope" "', argument " "2"" of type '" "csString""'"); } else { csString * temp = reinterpret_cast< csString * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPlLayer_AddScope" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); result = (int)(arg1)->AddScope(arg2,arg3); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelPlLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelPlLayer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelPlLayer" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelPlLayer_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelPlLayer, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelEntityTracker_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTracker *arg1 = (iCelEntityTracker *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTracker_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTracker_GetName" "', argument " "1"" of type '" "iCelEntityTracker const *""'"); } arg1 = reinterpret_cast< iCelEntityTracker * >(argp1); result = (char *)((iCelEntityTracker const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTracker_AddEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTracker *arg1 = (iCelEntityTracker *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityTracker_AddEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTracker_AddEntity" "', argument " "1"" of type '" "iCelEntityTracker *""'"); } arg1 = reinterpret_cast< iCelEntityTracker * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityTracker_AddEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (bool)(arg1)->AddEntity(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTracker_RemoveEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTracker *arg1 = (iCelEntityTracker *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityTracker_RemoveEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTracker_RemoveEntity" "', argument " "1"" of type '" "iCelEntityTracker *""'"); } arg1 = reinterpret_cast< iCelEntityTracker * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityTracker_RemoveEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); (arg1)->RemoveEntity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTracker_RemoveEntities__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTracker *arg1 = (iCelEntityTracker *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTracker_RemoveEntities",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTracker_RemoveEntities" "', argument " "1"" of type '" "iCelEntityTracker *""'"); } arg1 = reinterpret_cast< iCelEntityTracker * >(argp1); (arg1)->RemoveEntities(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTracker_FindNearbyEntities(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTracker *arg1 = (iCelEntityTracker *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 *arg3 = 0 ; float arg4 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; float val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelEntityTracker_FindNearbyEntities",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTracker_FindNearbyEntities" "', argument " "1"" of type '" "iCelEntityTracker *""'"); } arg1 = reinterpret_cast< iCelEntityTracker * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityTracker_FindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelEntityTracker_FindNearbyEntities" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelEntityTracker_FindNearbyEntities" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iCelEntityTracker_FindNearbyEntities" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); result = (arg1)->FindNearbyEntities(arg2,(csVector3 const &)*arg3,arg4); { /*@SWIG:TYPEMAP_OUT_csRef_BODY@*/ csRef ref((csPtr&)result); /* explicit cast */ resultobj = _csRef_to_Python(csRef( (iCelEntityList *)ref), (void *)(iCelEntityList *)ref, "iCelEntityList" " *"); /*@SWIG@*/ } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTracker_GetIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTracker *arg1 = (iCelEntityTracker *) 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTracker_GetIterator",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTracker_GetIterator" "', argument " "1"" of type '" "iCelEntityTracker *""'"); } arg1 = reinterpret_cast< iCelEntityTracker * >(argp1); result = (arg1)->GetIterator(); resultobj = SWIG_NewPointerObj((new csPtr(static_cast< const csPtr& >(result))), SWIGTYPE_p_csPtrTiCelEntityIterator_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTracker_AddEntities(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTracker *arg1 = (iCelEntityTracker *) 0 ; iCelEntityTracker *arg2 = (iCelEntityTracker *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityTracker_AddEntities",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTracker_AddEntities" "', argument " "1"" of type '" "iCelEntityTracker *""'"); } arg1 = reinterpret_cast< iCelEntityTracker * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityTracker_AddEntities" "', argument " "2"" of type '" "iCelEntityTracker *""'"); } arg2 = reinterpret_cast< iCelEntityTracker * >(argp2); (arg1)->AddEntities(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTracker_RemoveEntities__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTracker *arg1 = (iCelEntityTracker *) 0 ; iCelEntityTracker *arg2 = (iCelEntityTracker *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityTracker_RemoveEntities",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTracker_RemoveEntities" "', argument " "1"" of type '" "iCelEntityTracker *""'"); } arg1 = reinterpret_cast< iCelEntityTracker * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityTracker_RemoveEntities" "', argument " "2"" of type '" "iCelEntityTracker *""'"); } arg2 = reinterpret_cast< iCelEntityTracker * >(argp2); (arg1)->RemoveEntities(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTracker_RemoveEntities(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelEntityTracker, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelEntityTracker_RemoveEntities__SWIG_0(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelEntityTracker, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntityTracker, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelEntityTracker_RemoveEntities__SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelEntityTracker_RemoveEntities'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTracker_Name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTracker *arg1 = (iCelEntityTracker *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTracker_Name_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTracker, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTracker_Name_get" "', argument " "1"" of type '" "iCelEntityTracker *""'"); } arg1 = reinterpret_cast< iCelEntityTracker * >(argp1); result = (char *)iCelEntityTracker_Name_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelEntityTracker(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTracker *arg1 = (iCelEntityTracker *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelEntityTracker",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTracker, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelEntityTracker" "', argument " "1"" of type '" "iCelEntityTracker *""'"); } arg1 = reinterpret_cast< iCelEntityTracker * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelEntityTracker_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelEntityTracker, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_csQueryRegistry_iCelPlLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; iCelPlLayer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:csQueryRegistry_iCelPlLayer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "csQueryRegistry_iCelPlLayer" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); result = (iCelPlLayer *)csQueryRegistry_iCelPlLayer(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPlLayer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_QueryObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_QueryObject",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_QueryObject" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iObject *)(arg1)->QueryObject(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_GetName" "', argument " "1"" of type '" "iCelEntity const *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (char *)((iCelEntity const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_SetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntity_SetName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_SetName" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntity_SetName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetName((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_GetID(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; uint result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_GetID",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_GetID" "', argument " "1"" of type '" "iCelEntity const *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (uint)((iCelEntity const *)arg1)->GetID(); resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_SetID(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; uint arg2 ; void *argp1 = 0 ; int res1 = 0 ; unsigned int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntity_SetID",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_SetID" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntity_SetID" "', argument " "2"" of type '" "uint""'"); } arg2 = static_cast< uint >(val2); (arg1)->SetID(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_GetPropertyClassList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iCelPropertyClassList *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_GetPropertyClassList",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_GetPropertyClassList" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iCelPropertyClassList *)(arg1)->GetPropertyClassList(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_SetBehaviour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iCelBehaviour *arg2 = (iCelBehaviour *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntity_SetBehaviour",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_SetBehaviour" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntity_SetBehaviour" "', argument " "2"" of type '" "iCelBehaviour *""'"); } arg2 = reinterpret_cast< iCelBehaviour * >(argp2); (arg1)->SetBehaviour(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_GetBehaviour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iCelBehaviour *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_GetBehaviour",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_GetBehaviour" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iCelBehaviour *)(arg1)->GetBehaviour(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelBehaviour, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_AddClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; csStringID arg2 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntity_AddClass",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_AddClass" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntity_AddClass" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); (arg1)->AddClass(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_RemoveClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; csStringID arg2 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntity_RemoveClass",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_RemoveClass" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntity_RemoveClass" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); (arg1)->RemoveClass(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_HasClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; csStringID arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntity_HasClass",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_HasClass" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntity_HasClass" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (bool)(arg1)->HasClass(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_GetClasses(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; csSet *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_GetClasses",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_GetClasses" "', argument " "1"" of type '" "iCelEntity const *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); { csSet const &_result_ref = ((iCelEntity const *)arg1)->GetClasses(); result = (csSet *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_Name_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntity_Name_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_Name_set" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntity_Name_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iCelEntity_Name_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_Name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_Name_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_Name_get" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (char *)iCelEntity_Name_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_ID_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; uint arg2 ; void *argp1 = 0 ; int res1 = 0 ; unsigned int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntity_ID_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_ID_set" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntity_ID_set" "', argument " "2"" of type '" "uint""'"); } arg2 = static_cast< uint >(val2); iCelEntity_ID_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_ID_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; uint result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_ID_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_ID_get" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (uint)iCelEntity_ID_get(arg1); resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_Behaviour_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iCelBehaviour *arg2 = (iCelBehaviour *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntity_Behaviour_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_Behaviour_set" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntity_Behaviour_set" "', argument " "2"" of type '" "iCelBehaviour *""'"); } arg2 = reinterpret_cast< iCelBehaviour * >(argp2); iCelEntity_Behaviour_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_Behaviour_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iCelBehaviour *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_Behaviour_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_Behaviour_get" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iCelBehaviour *)iCelEntity_Behaviour_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelBehaviour, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_PropertyClassList_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iCelPropertyClassList *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_PropertyClassList_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_PropertyClassList_get" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iCelPropertyClassList *)iCelEntity_PropertyClassList_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_Classes_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; csSet *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntity_Classes_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_Classes_get" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); { csSet &_result_ref = iCelEntity_Classes_get(arg1); result = (csSet *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_CreateBehaviour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iCelBlLayer *arg2 = (iCelBlLayer *) 0 ; char *arg3 = (char *) 0 ; iCelBehaviour *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelEntity_CreateBehaviour",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntity_CreateBehaviour" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelBlLayer, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntity_CreateBehaviour" "', argument " "2"" of type '" "iCelBlLayer *""'"); } arg2 = reinterpret_cast< iCelBlLayer * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelEntity_CreateBehaviour" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (iCelBehaviour *)iCelEntity_CreateBehaviour(arg1,arg2,(char const *)arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelEntity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelEntity" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); delete_iCelEntity(arg1); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntity_scfGetVersion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int result; if (!PyArg_ParseTuple(args,(char *)":iCelEntity_scfGetVersion")) SWIG_fail; result = (int)iCelEntity_scfGetVersion(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelEntity_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelEntity, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelEntityList_GetCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityList_GetCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList_GetCount" "', argument " "1"" of type '" "iCelEntityList const *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); result = ((iCelEntityList const *)arg1)->GetCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_Get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; size_t arg2 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList_Get",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList_Get" "', argument " "1"" of type '" "iCelEntityList const *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntityList_Get" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelEntity *)((iCelEntityList const *)arg1)->Get(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_Add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList_Add",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList_Add" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityList_Add" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (arg1)->Add(arg2); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_Remove__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList_Remove",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList_Remove" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityList_Remove" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (bool)(arg1)->Remove(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_Remove__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; size_t arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList_Remove",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList_Remove" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntityList_Remove" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (bool)(arg1)->Remove(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_Remove(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelEntityList, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelEntityList_Remove__SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelEntityList, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelEntityList_Remove__SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelEntityList_Remove'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_RemoveAll(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityList_RemoveAll",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList_RemoveAll" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); (arg1)->RemoveAll(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_Find(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList_Find",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList_Find" "', argument " "1"" of type '" "iCelEntityList const *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityList_Find" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = ((iCelEntityList const *)arg1)->Find(arg2); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_FindByName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; char *arg2 = (char *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList_FindByName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList_FindByName" "', argument " "1"" of type '" "iCelEntityList const *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityList_FindByName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelEntity *)((iCelEntityList const *)arg1)->FindByName((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_GetIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityList_GetIterator",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList_GetIterator" "', argument " "1"" of type '" "iCelEntityList const *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); result = ((iCelEntityList const *)arg1)->GetIterator(); resultobj = SWIG_NewPointerObj((new csPtr(static_cast< const csPtr& >(result))), SWIGTYPE_p_csPtrTiCelEntityIterator_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList___getitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; size_t arg2 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList___getitem__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList___getitem__" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntityList___getitem__" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelEntity *)iCelEntityList___getitem____SWIG_0(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList___contains____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList___contains__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList___contains__" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityList___contains__" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (bool)iCelEntityList___contains____SWIG_0(arg1,arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList___delitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; size_t arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList___delitem__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList___delitem__" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntityList___delitem__" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (bool)iCelEntityList___delitem__(arg1,arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityList___len__",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList___len__" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); result = (int)iCelEntityList___len__(arg1); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList_append",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList_append" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityList_append" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); iCelEntityList_append(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList___getitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; char *arg2 = (char *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList___getitem__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList___getitem__" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityList___getitem__" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelEntity *)iCelEntityList___getitem____SWIG_1(arg1,(char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList___getitem__(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelEntityList, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelEntityList___getitem____SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelEntityList, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelEntityList___getitem____SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelEntityList___getitem__'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList___contains____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityList___contains__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityList___contains__" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityList___contains__" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)iCelEntityList___contains____SWIG_1(arg1,(char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList___contains__(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelEntityList, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelEntityList___contains____SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelEntityList, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelEntityList___contains____SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelEntityList___contains__'"); return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelEntityList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityList *arg1 = (iCelEntityList *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelEntityList",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityList, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelEntityList" "', argument " "1"" of type '" "iCelEntityList *""'"); } arg1 = reinterpret_cast< iCelEntityList * >(argp1); delete_iCelEntityList(arg1); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityList_scfGetVersion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int result; if (!PyArg_ParseTuple(args,(char *)":iCelEntityList_scfGetVersion")) SWIG_fail; result = (int)iCelEntityList_scfGetVersion(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelEntityList_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelEntityList, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelEntityIterator_Next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityIterator *arg1 = (iCelEntityIterator *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityIterator_Next",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityIterator, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityIterator_Next" "', argument " "1"" of type '" "iCelEntityIterator *""'"); } arg1 = reinterpret_cast< iCelEntityIterator * >(argp1); result = (iCelEntity *)(arg1)->Next(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityIterator_HasNext(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityIterator *arg1 = (iCelEntityIterator *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityIterator_HasNext",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityIterator, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityIterator_HasNext" "', argument " "1"" of type '" "iCelEntityIterator const *""'"); } arg1 = reinterpret_cast< iCelEntityIterator * >(argp1); result = (bool)((iCelEntityIterator const *)arg1)->HasNext(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelEntityIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityIterator *arg1 = (iCelEntityIterator *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelEntityIterator",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityIterator, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelEntityIterator" "', argument " "1"" of type '" "iCelEntityIterator *""'"); } arg1 = reinterpret_cast< iCelEntityIterator * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelEntityIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelEntityIterator, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celRegisterPCFactory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celRegisterPCFactory",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celRegisterPCFactory" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celRegisterPCFactory" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)celRegisterPCFactory(arg1,(char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_celCreateEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; char *arg2 = (char *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateEntity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateEntity" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelEntity *)celCreateEntity(arg1,(char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_scfQueryInterface_iCelEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBase *arg1 = (iBase *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQueryInterface_iCelEntity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBase, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQueryInterface_iCelEntity" "', argument " "1"" of type '" "iBase *""'"); } arg1 = reinterpret_cast< iBase * >(argp1); result = (iCelEntity *)scfQueryInterface_iCelEntity(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celFindNearbyEntities__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 arg3 ; float arg4 ; bool arg5 ; iCelEntityList *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 ; int res3 = 0 ; float val4 ; int ecode4 = 0 ; bool val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:celFindNearbyEntities",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celFindNearbyEntities" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celFindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csVector3""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "celFindNearbyEntities" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_bool(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "celFindNearbyEntities" "', argument " "5"" of type '" "bool""'"); } arg5 = static_cast< bool >(val5); result = (iCelEntityList *)celFindNearbyEntities(arg1,arg2,arg3,arg4,arg5); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityList, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celFindNearbyEntities__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 arg3 ; float arg4 ; iCelEntityList *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 ; int res3 = 0 ; float val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:celFindNearbyEntities",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celFindNearbyEntities" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celFindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csVector3""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "celFindNearbyEntities" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); result = (iCelEntityList *)celFindNearbyEntities(arg1,arg2,arg3,arg4); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityList, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celFindNearbyEntities__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 arg3 ; csVector3 arg4 ; bool arg5 ; iCelEntityList *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 ; int res3 = 0 ; void *argp4 ; int res4 = 0 ; bool val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:celFindNearbyEntities",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celFindNearbyEntities" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celFindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csVector3""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } { res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "celFindNearbyEntities" "', argument " "4"" of type '" "csVector3""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celFindNearbyEntities" "', argument " "4"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp4); arg4 = *temp; if (SWIG_IsNewObj(res4)) delete temp; } } ecode5 = SWIG_AsVal_bool(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "celFindNearbyEntities" "', argument " "5"" of type '" "bool""'"); } arg5 = static_cast< bool >(val5); result = (iCelEntityList *)celFindNearbyEntities(arg1,arg2,arg3,arg4,arg5); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityList, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celFindNearbyEntities__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 arg3 ; csVector3 arg4 ; iCelEntityList *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 ; int res3 = 0 ; void *argp4 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:celFindNearbyEntities",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celFindNearbyEntities" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celFindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csVector3""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } { res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "celFindNearbyEntities" "', argument " "4"" of type '" "csVector3""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celFindNearbyEntities" "', argument " "4"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp4); arg4 = *temp; if (SWIG_IsNewObj(res4)) delete temp; } } result = (iCelEntityList *)celFindNearbyEntities(arg1,arg2,arg3,arg4); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityList, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celFindNearbyEntities__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; iSector *arg2 = (iSector *) 0 ; csBox3 arg3 ; bool arg4 ; iCelEntityList *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 ; int res3 = 0 ; bool val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:celFindNearbyEntities",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celFindNearbyEntities" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celFindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csBox3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csBox3""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csBox3""'"); } else { csBox3 * temp = reinterpret_cast< csBox3 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } ecode4 = SWIG_AsVal_bool(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "celFindNearbyEntities" "', argument " "4"" of type '" "bool""'"); } arg4 = static_cast< bool >(val4); result = (iCelEntityList *)celFindNearbyEntities(arg1,arg2,arg3,arg4); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityList, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celFindNearbyEntities__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; iSector *arg2 = (iSector *) 0 ; csBox3 arg3 ; iCelEntityList *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:celFindNearbyEntities",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celFindNearbyEntities" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celFindNearbyEntities" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csBox3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csBox3""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celFindNearbyEntities" "', argument " "3"" of type '" "csBox3""'"); } else { csBox3 * temp = reinterpret_cast< csBox3 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } result = (iCelEntityList *)celFindNearbyEntities(arg1,arg2,arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntityList, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celFindNearbyEntities(PyObject *self, PyObject *args) { int argc; PyObject *argv[6]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 5); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iObjectRegistry, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csBox3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celFindNearbyEntities__SWIG_5(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iObjectRegistry, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celFindNearbyEntities__SWIG_3(self, args); } } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iObjectRegistry, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csBox3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_celFindNearbyEntities__SWIG_4(self, args); } } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iObjectRegistry, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_celFindNearbyEntities__SWIG_1(self, args); } } } } } if (argc == 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iObjectRegistry, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_celFindNearbyEntities__SWIG_2(self, args); } } } } } } if (argc == 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iObjectRegistry, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_celFindNearbyEntities__SWIG_0(self, args); } } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'celFindNearbyEntities'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_QueryObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; iObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTemplate_QueryObject",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_QueryObject" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); result = (iObject *)(arg1)->QueryObject(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTemplate_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_GetName" "', argument " "1"" of type '" "iCelEntityTemplate const *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); result = (char *)((iCelEntityTemplate const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_SetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityTemplate_SetName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_SetName" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityTemplate_SetName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetName((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_CreatePropertyClassTemplate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; iCelPropertyClassTemplate *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTemplate_CreatePropertyClassTemplate",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_CreatePropertyClassTemplate" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); result = (iCelPropertyClassTemplate *)(arg1)->CreatePropertyClassTemplate(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_SetBehaviour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelEntityTemplate_SetBehaviour",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_SetBehaviour" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityTemplate_SetBehaviour" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelEntityTemplate_SetBehaviour" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->SetBehaviour((char const *)arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_GetBehaviourLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTemplate_GetBehaviourLayer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_GetBehaviourLayer" "', argument " "1"" of type '" "iCelEntityTemplate const *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); result = (char *)((iCelEntityTemplate const *)arg1)->GetBehaviourLayer(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_GetBehaviour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTemplate_GetBehaviour",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_GetBehaviour" "', argument " "1"" of type '" "iCelEntityTemplate const *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); result = (char *)((iCelEntityTemplate const *)arg1)->GetBehaviour(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_AddMessage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; char *arg2 = (char *) 0 ; iCelParameterBlock *arg3 = (iCelParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelEntityTemplate_AddMessage",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_AddMessage" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityTemplate_AddMessage" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelEntityTemplate_AddMessage" "', argument " "3"" of type '" "iCelParameterBlock *""'"); } arg3 = reinterpret_cast< iCelParameterBlock * >(argp3); (arg1)->AddMessage((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_AddClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; csStringID arg2 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityTemplate_AddClass",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_AddClass" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntityTemplate_AddClass" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); (arg1)->AddClass(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_RemoveClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; csStringID arg2 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityTemplate_RemoveClass",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_RemoveClass" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntityTemplate_RemoveClass" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); (arg1)->RemoveClass(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_HasClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; csStringID arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityTemplate_HasClass",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_HasClass" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelEntityTemplate_HasClass" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (bool)(arg1)->HasClass(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_GetClasses(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; csSet *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTemplate_GetClasses",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_GetClasses" "', argument " "1"" of type '" "iCelEntityTemplate const *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); { csSet const &_result_ref = ((iCelEntityTemplate const *)arg1)->GetClasses(); result = (csSet *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_Name_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelEntityTemplate_Name_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_Name_set" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelEntityTemplate_Name_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iCelEntityTemplate_Name_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_Name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTemplate_Name_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_Name_get" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); result = (char *)iCelEntityTemplate_Name_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_Behaviour_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTemplate_Behaviour_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_Behaviour_get" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); result = (char *)iCelEntityTemplate_Behaviour_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_BehaviourLayer_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTemplate_BehaviourLayer_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_BehaviourLayer_get" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); result = (char *)iCelEntityTemplate_BehaviourLayer_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelEntityTemplate_Classes_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; csSet *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelEntityTemplate_Classes_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelEntityTemplate_Classes_get" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); { csSet &_result_ref = iCelEntityTemplate_Classes_get(arg1); result = (csSet *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelEntityTemplate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntityTemplate *arg1 = (iCelEntityTemplate *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelEntityTemplate",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntityTemplate, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelEntityTemplate" "', argument " "1"" of type '" "iCelEntityTemplate *""'"); } arg1 = reinterpret_cast< iCelEntityTemplate * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelEntityTemplate_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelEntityTemplate, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassTemplate_SetName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetName" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassTemplate_SetName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetName((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClassTemplate_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_GetName" "', argument " "1"" of type '" "iCelPropertyClassTemplate const *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); result = (char *)((iCelPropertyClassTemplate const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetTag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassTemplate_SetTag",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetTag" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassTemplate_SetTag" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetTag((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_GetTag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClassTemplate_GetTag",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_GetTag" "', argument " "1"" of type '" "iCelPropertyClassTemplate const *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); result = (char *)((iCelPropertyClassTemplate const *)arg1)->GetTag(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetPropertyVariable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; celDataType arg3 ; char *arg4 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPropertyClassTemplate_SetPropertyVariable",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetPropertyVariable" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_SetPropertyVariable" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClassTemplate_SetPropertyVariable" "', argument " "3"" of type '" "celDataType""'"); } arg3 = static_cast< celDataType >(val3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelPropertyClassTemplate_SetPropertyVariable" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; (arg1)->SetPropertyVariable(arg2,arg3,(char const *)arg4); resultobj = SWIG_Py_Void(); if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetProperty__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; long arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; long val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassTemplate_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); ecode3 = SWIG_AsVal_long(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "long""'"); } arg3 = static_cast< long >(val3); (arg1)->SetProperty(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetProperty__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassTemplate_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetProperty(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetProperty__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassTemplate_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetProperty(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetProperty__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassTemplate_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->SetProperty(arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetProperty__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; csVector2 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassTemplate_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector2, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "csVector2 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "csVector2 const &""'"); } arg3 = reinterpret_cast< csVector2 * >(argp3); (arg1)->SetProperty(arg2,(csVector2 const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetProperty__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; csVector3 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassTemplate_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); (arg1)->SetProperty(arg2,(csVector3 const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetProperty__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; csColor *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassTemplate_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csColor, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "csColor const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "csColor const &""'"); } arg3 = reinterpret_cast< csColor * >(argp3); (arg1)->SetProperty(arg2,(csColor const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetProperty__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; iCelPropertyClass *arg3 = (iCelPropertyClass *) 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassTemplate_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "iCelPropertyClass *""'"); } arg3 = reinterpret_cast< iCelPropertyClass * >(argp3); (arg1)->SetProperty(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetProperty__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; iCelEntity *arg3 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassTemplate_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClassTemplate_SetProperty" "', argument " "3"" of type '" "iCelEntity *""'"); } arg3 = reinterpret_cast< iCelEntity * >(argp3); (arg1)->SetProperty(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_SetProperty(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassTemplate, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector2, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClassTemplate_SetProperty__SWIG_4(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassTemplate, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClassTemplate_SetProperty__SWIG_5(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassTemplate, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csColor, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClassTemplate_SetProperty__SWIG_6(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassTemplate, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClassTemplate_SetProperty__SWIG_7(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassTemplate, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClassTemplate_SetProperty__SWIG_8(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassTemplate, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_long(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelPropertyClassTemplate_SetProperty__SWIG_0(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassTemplate, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelPropertyClassTemplate_SetProperty__SWIG_1(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassTemplate, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClassTemplate_SetProperty__SWIG_3(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassTemplate, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelPropertyClassTemplate_SetProperty__SWIG_2(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelPropertyClassTemplate_SetProperty'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassTemplate_PerformAction(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; csStringID arg2 ; iCelParameterBlock *arg3 = (iCelParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassTemplate_PerformAction",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassTemplate_PerformAction" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassTemplate_PerformAction" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClassTemplate_PerformAction" "', argument " "3"" of type '" "iCelParameterBlock *""'"); } arg3 = reinterpret_cast< iCelParameterBlock * >(argp3); (arg1)->PerformAction(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelPropertyClassTemplate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassTemplate *arg1 = (iCelPropertyClassTemplate *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelPropertyClassTemplate",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassTemplate, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelPropertyClassTemplate" "', argument " "1"" of type '" "iCelPropertyClassTemplate *""'"); } arg1 = reinterpret_cast< iCelPropertyClassTemplate * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelPropertyClassTemplate_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelPropertyClassTemplate, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelBlLayer_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelBlLayer *arg1 = (iCelBlLayer *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelBlLayer_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelBlLayer_GetName" "', argument " "1"" of type '" "iCelBlLayer const *""'"); } arg1 = reinterpret_cast< iCelBlLayer * >(argp1); result = (char *)((iCelBlLayer const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelBlLayer_CreateBehaviour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelBlLayer *arg1 = (iCelBlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; char *arg3 = (char *) 0 ; iCelBehaviour *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelBlLayer_CreateBehaviour",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelBlLayer_CreateBehaviour" "', argument " "1"" of type '" "iCelBlLayer *""'"); } arg1 = reinterpret_cast< iCelBlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelBlLayer_CreateBehaviour" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelBlLayer_CreateBehaviour" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (iCelBehaviour *)(arg1)->CreateBehaviour(arg2,(char const *)arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelBlLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelBlLayer *arg1 = (iCelBlLayer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelBlLayer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBlLayer, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelBlLayer" "', argument " "1"" of type '" "iCelBlLayer *""'"); } arg1 = reinterpret_cast< iCelBlLayer * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelBlLayer_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelBlLayer, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_csQueryRegistry_iCelBlLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; iCelBlLayer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:csQueryRegistry_iCelBlLayer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "csQueryRegistry_iCelBlLayer" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); result = (iCelBlLayer *)csQueryRegistry_iCelBlLayer(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelBlLayer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock_GetParameterCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelParameterBlock_GetParameterCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock_GetParameterCount" "', argument " "1"" of type '" "iCelParameterBlock const *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); result = ((iCelParameterBlock const *)arg1)->GetParameterCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock_GetParameter__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; size_t arg2 ; csStringID *arg3 = 0 ; celDataType *arg4 = 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelParameterBlock_GetParameter",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock_GetParameter" "', argument " "1"" of type '" "iCelParameterBlock const *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock_GetParameter" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_unsigned_long, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock_GetParameter" "', argument " "3"" of type '" "csStringID &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock_GetParameter" "', argument " "3"" of type '" "csStringID &""'"); } arg3 = reinterpret_cast< csStringID * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_celDataType, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelParameterBlock_GetParameter" "', argument " "4"" of type '" "celDataType &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock_GetParameter" "', argument " "4"" of type '" "celDataType &""'"); } arg4 = reinterpret_cast< celDataType * >(argp4); result = (char *)((iCelParameterBlock const *)arg1)->GetParameter(arg2,*arg3,*arg4); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock_GetParameter__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelParameterBlock_GetParameter",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock_GetParameter" "', argument " "1"" of type '" "iCelParameterBlock const *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock_GetParameter" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (celData *)((iCelParameterBlock const *)arg1)->GetParameter(arg2); { /*@SWIG:CELDATA_RETURN@*/ PyObject *obj = Py_None; if (result) { switch(result->type) { case CEL_DATA_FLOAT: obj = PyFloat_FromDouble((float)result->value.f); break; case CEL_DATA_BOOL: obj = SWIG_From_bool((bool)result->value.bo); break; case CEL_DATA_STRING: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_VECTOR2: { csVector2 *res; res = new csVector2(result->value.v.x,result->value.v.y); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector2, 1); break; } case CEL_DATA_VECTOR3: { csVector3 *res; res = new csVector3(result->value.v.x,result->value.v.y,result->value.v.z); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector3, 1); break; } case CEL_DATA_ENTITY: { iCelEntity *res; res = (iCelEntity *)(result->value.ent); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelEntity, 0); break; } case CEL_DATA_PCLASS: { iCelPropertyClass *res; res = (iCelPropertyClass *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelPropertyClass, 0); break; } case CEL_DATA_ACTION: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_IBASE: { iBase *res; res = (iBase *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iBase, 0); break; } case CEL_DATA_COLOR: { csColor *res; res = new csColor(result->value.col.red,result->value.col.green,result->value.col.blue); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csColor, 1); break; } case CEL_DATA_WORD: { obj = SWIG_From_int((int)result->value.w); break; } case CEL_DATA_LONG: { obj = SWIG_From_long((long)result->value.l); break; } case CEL_DATA_ULONG: { obj = PyLong_FromUnsignedLong((unsigned long)result->value.ul); break; } { break; } /* Still to be done (and some more) */ case CEL_DATA_BYTE: /*result->value.b (int8)*/ case CEL_DATA_UWORD: /*result->value.uw (uint16)*/ case CEL_DATA_PARAMETER: /*result->value.par (iString+celDataType)*/ default: Py_INCREF(Py_None); obj = Py_None; break; } } /*@SWIG@*/ resultobj = obj; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock_GetParameter(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelParameterBlock_GetParameter__SWIG_1(self, args); } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_unsigned_long, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_celDataType, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock_GetParameter__SWIG_0(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelParameterBlock_GetParameter'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock_GetParameterByIndex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; size_t arg2 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelParameterBlock_GetParameterByIndex",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock_GetParameterByIndex" "', argument " "1"" of type '" "iCelParameterBlock const *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock_GetParameterByIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (celData *)((iCelParameterBlock const *)arg1)->GetParameterByIndex(arg2); { /*@SWIG:CELDATA_RETURN@*/ PyObject *obj = Py_None; if (result) { switch(result->type) { case CEL_DATA_FLOAT: obj = PyFloat_FromDouble((float)result->value.f); break; case CEL_DATA_BOOL: obj = SWIG_From_bool((bool)result->value.bo); break; case CEL_DATA_STRING: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_VECTOR2: { csVector2 *res; res = new csVector2(result->value.v.x,result->value.v.y); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector2, 1); break; } case CEL_DATA_VECTOR3: { csVector3 *res; res = new csVector3(result->value.v.x,result->value.v.y,result->value.v.z); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector3, 1); break; } case CEL_DATA_ENTITY: { iCelEntity *res; res = (iCelEntity *)(result->value.ent); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelEntity, 0); break; } case CEL_DATA_PCLASS: { iCelPropertyClass *res; res = (iCelPropertyClass *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelPropertyClass, 0); break; } case CEL_DATA_ACTION: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_IBASE: { iBase *res; res = (iBase *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iBase, 0); break; } case CEL_DATA_COLOR: { csColor *res; res = new csColor(result->value.col.red,result->value.col.green,result->value.col.blue); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csColor, 1); break; } case CEL_DATA_WORD: { obj = SWIG_From_int((int)result->value.w); break; } case CEL_DATA_LONG: { obj = SWIG_From_long((long)result->value.l); break; } case CEL_DATA_ULONG: { obj = PyLong_FromUnsignedLong((unsigned long)result->value.ul); break; } { break; } /* Still to be done (and some more) */ case CEL_DATA_BYTE: /*result->value.b (int8)*/ case CEL_DATA_UWORD: /*result->value.uw (uint16)*/ case CEL_DATA_PARAMETER: /*result->value.par (iString+celDataType)*/ default: Py_INCREF(Py_None); obj = Py_None; break; } } /*@SWIG@*/ resultobj = obj; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock_GetParameterIDByIndex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; size_t arg2 ; csStringID result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelParameterBlock_GetParameterIDByIndex",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock_GetParameterIDByIndex" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock_GetParameterIDByIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (csStringID)iCelParameterBlock_GetParameterIDByIndex(arg1,arg2); resultobj = SWIG_From_unsigned_SS_long(static_cast< unsigned long >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock_GetParameterNameByIndex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; size_t arg2 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelParameterBlock_GetParameterNameByIndex",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock_GetParameterNameByIndex" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock_GetParameterNameByIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (char *)iCelParameterBlock_GetParameterNameByIndex(arg1,arg2); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___contains__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelParameterBlock___contains__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___contains__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___contains__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (bool)iCelParameterBlock___contains__(arg1,arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); iCelParameterBlock___setitem____SWIG_0(arg1,arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; int8 arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_int8_t, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "int8""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "int8""'"); } else { int8 * temp = reinterpret_cast< int8 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } iCelParameterBlock___setitem____SWIG_1(arg1,arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; int16 arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_int16_t, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "int16""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "int16""'"); } else { int16 * temp = reinterpret_cast< int16 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } iCelParameterBlock___setitem____SWIG_2(arg1,arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; int32 arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_int32_t, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "int32""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "int32""'"); } else { int32 * temp = reinterpret_cast< int32 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } iCelParameterBlock___setitem____SWIG_3(arg1,arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; uint8 arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_uint8_t, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "uint8""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "uint8""'"); } else { uint8 * temp = reinterpret_cast< uint8 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } iCelParameterBlock___setitem____SWIG_4(arg1,arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; uint16 arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_uint16_t, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "uint16""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "uint16""'"); } else { uint16 * temp = reinterpret_cast< uint16 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } iCelParameterBlock___setitem____SWIG_5(arg1,arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; uint32 arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_uint32_t, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "uint32""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "uint32""'"); } else { uint32 * temp = reinterpret_cast< uint32 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } iCelParameterBlock___setitem____SWIG_6(arg1,arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); iCelParameterBlock___setitem____SWIG_7(arg1,arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; iCelParameterBlock___setitem____SWIG_8(arg1,arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_9(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; csVector3 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "csVector3 &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "csVector3 &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); iCelParameterBlock___setitem____SWIG_9(arg1,arg2,*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_10(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; csVector2 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector2, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "csVector2 &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "csVector2 &""'"); } arg3 = reinterpret_cast< csVector2 * >(argp3); iCelParameterBlock___setitem____SWIG_10(arg1,arg2,*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_11(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; csColor *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csColor, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "csColor &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "csColor &""'"); } arg3 = reinterpret_cast< csColor * >(argp3); iCelParameterBlock___setitem____SWIG_11(arg1,arg2,*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_12(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; iCelPropertyClass *arg3 = (iCelPropertyClass *) 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "iCelPropertyClass *""'"); } arg3 = reinterpret_cast< iCelPropertyClass * >(argp3); iCelParameterBlock___setitem____SWIG_12(arg1,arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem____SWIG_13(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; csStringID arg2 ; iCelEntity *arg3 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelParameterBlock___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___setitem__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelParameterBlock___setitem__" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelParameterBlock___setitem__" "', argument " "3"" of type '" "iCelEntity *""'"); } arg3 = reinterpret_cast< iCelEntity * >(argp3); iCelParameterBlock___setitem____SWIG_13(arg1,arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___setitem__(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_int8_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_1(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_int16_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_2(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_int32_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_3(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_uint8_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_4(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_uint16_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_5(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_uint32_t, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_6(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_9(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_csVector2, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_10(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_csColor, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_11(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_12(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_13(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_7(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_8(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelParameterBlock___setitem____SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelParameterBlock___setitem__'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelParameterBlock___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelParameterBlock___len__",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelParameterBlock___len__" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); result = (int)iCelParameterBlock___len__(arg1); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelParameterBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelParameterBlock",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelParameterBlock" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelParameterBlock_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelParameterBlock, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelBehaviour_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelBehaviour *arg1 = (iCelBehaviour *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelBehaviour_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelBehaviour_GetName" "', argument " "1"" of type '" "iCelBehaviour const *""'"); } arg1 = reinterpret_cast< iCelBehaviour * >(argp1); result = (char *)((iCelBehaviour const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelBehaviour_GetBehaviourLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelBehaviour *arg1 = (iCelBehaviour *) 0 ; iCelBlLayer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelBehaviour_GetBehaviourLayer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelBehaviour_GetBehaviourLayer" "', argument " "1"" of type '" "iCelBehaviour const *""'"); } arg1 = reinterpret_cast< iCelBehaviour * >(argp1); result = (iCelBlLayer *)((iCelBehaviour const *)arg1)->GetBehaviourLayer(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelBlLayer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelBehaviour_SendMessage__SWIG_0__varargs__(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *varargs) { PyObject *resultobj = 0; iCelBehaviour *arg1 = (iCelBehaviour *) 0 ; char *arg2 = (char *) 0 ; iCelPropertyClass *arg3 = (iCelPropertyClass *) 0 ; celData *arg4 = 0 ; iCelParameterBlock *arg5 = (iCelParameterBlock *) 0 ; void *arg6 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iCelBehaviour_SendMessage",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelBehaviour_SendMessage" "', argument " "1"" of type '" "iCelBehaviour *""'"); } arg1 = reinterpret_cast< iCelBehaviour * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelBehaviour_SendMessage" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelBehaviour_SendMessage" "', argument " "3"" of type '" "iCelPropertyClass *""'"); } arg3 = reinterpret_cast< iCelPropertyClass * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_celData, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelBehaviour_SendMessage" "', argument " "4"" of type '" "celData &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelBehaviour_SendMessage" "', argument " "4"" of type '" "celData &""'"); } arg4 = reinterpret_cast< celData * >(argp4); res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iCelBehaviour_SendMessage" "', argument " "5"" of type '" "iCelParameterBlock *""'"); } arg5 = reinterpret_cast< iCelParameterBlock * >(argp5); result = (bool)(arg1)->SendMessage((char const *)arg2,arg3,*arg4,arg5,arg6); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelBehaviour_SendMessage__SWIG_0(PyObject *self, PyObject *args) { PyObject *resultobj; PyObject *varargs; PyObject *newargs; newargs = PyTuple_GetSlice(args,0,5); varargs = PyTuple_GetSlice(args,5,PyTuple_Size(args)+1); resultobj = _wrap_iCelBehaviour_SendMessage__SWIG_0__varargs__(self,newargs,varargs); Py_XDECREF(newargs); Py_XDECREF(varargs); return resultobj; } SWIGINTERN PyObject *_wrap_iCelBehaviour_Name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelBehaviour *arg1 = (iCelBehaviour *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelBehaviour_Name_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelBehaviour_Name_get" "', argument " "1"" of type '" "iCelBehaviour *""'"); } arg1 = reinterpret_cast< iCelBehaviour * >(argp1); result = (char *)iCelBehaviour_Name_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelBehaviour_BehaviourLayer_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelBehaviour *arg1 = (iCelBehaviour *) 0 ; iCelBlLayer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelBehaviour_BehaviourLayer_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelBehaviour_BehaviourLayer_get" "', argument " "1"" of type '" "iCelBehaviour *""'"); } arg1 = reinterpret_cast< iCelBehaviour * >(argp1); result = (iCelBlLayer *)iCelBehaviour_BehaviourLayer_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelBlLayer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelBehaviour_GetPythonObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelBehaviour *arg1 = (iCelBehaviour *) 0 ; PyObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelBehaviour_GetPythonObject",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelBehaviour_GetPythonObject" "', argument " "1"" of type '" "iCelBehaviour *""'"); } arg1 = reinterpret_cast< iCelBehaviour * >(argp1); result = (PyObject *)iCelBehaviour_GetPythonObject(arg1); resultobj = result; return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelBehaviour_SendMessage__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelBehaviour *arg1 = (iCelBehaviour *) 0 ; char *arg2 = (char *) 0 ; iCelPropertyClass *arg3 = (iCelPropertyClass *) 0 ; iCelParameterBlock *arg4 = (iCelParameterBlock *) 0 ; PyObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelBehaviour_SendMessage",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBehaviour, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelBehaviour_SendMessage" "', argument " "1"" of type '" "iCelBehaviour *""'"); } arg1 = reinterpret_cast< iCelBehaviour * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelBehaviour_SendMessage" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelBehaviour_SendMessage" "', argument " "3"" of type '" "iCelPropertyClass *""'"); } arg3 = reinterpret_cast< iCelPropertyClass * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelBehaviour_SendMessage" "', argument " "4"" of type '" "iCelParameterBlock *""'"); } arg4 = reinterpret_cast< iCelParameterBlock * >(argp4); result = (PyObject *)iCelBehaviour_SendMessage__SWIG_1(arg1,(char const *)arg2,arg3,arg4); resultobj = result; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelBehaviour_SendMessage(PyObject *self, PyObject *args) { int argc; PyObject *argv[6]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 5); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelBehaviour, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelBehaviour_SendMessage__SWIG_1(self, args); } } } } } if (argc >= 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelBehaviour, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_celData, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { if (argc <= 5) { return _wrap_iCelBehaviour_SendMessage__SWIG_0(self, args); } return _wrap_iCelBehaviour_SendMessage__SWIG_0(self, args); } } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelBehaviour_SendMessage'"); return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelBehaviour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelBehaviour *arg1 = (iCelBehaviour *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelBehaviour",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelBehaviour, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelBehaviour" "', argument " "1"" of type '" "iCelBehaviour *""'"); } arg1 = reinterpret_cast< iCelBehaviour * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelBehaviour_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelBehaviour, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_new_celGenericParameterBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; size_t arg1 ; celGenericParameterBlock *result = 0 ; size_t val1 ; int ecode1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:new_celGenericParameterBlock",&obj0)) SWIG_fail; ecode1 = SWIG_AsVal_size_t(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_celGenericParameterBlock" "', argument " "1"" of type '" "size_t""'"); } arg1 = static_cast< size_t >(val1); result = (celGenericParameterBlock *)new celGenericParameterBlock(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celGenericParameterBlock, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_celGenericParameterBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_celGenericParameterBlock",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_celGenericParameterBlock" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_SetParameterDef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; size_t arg2 ; csStringID arg3 ; char *arg4 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; unsigned long val3 ; int ecode3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:celGenericParameterBlock_SetParameterDef",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_SetParameterDef" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celGenericParameterBlock_SetParameterDef" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); ecode3 = SWIG_AsVal_unsigned_SS_long(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "celGenericParameterBlock_SetParameterDef" "', argument " "3"" of type '" "csStringID""'"); } arg3 = static_cast< csStringID >(val3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "celGenericParameterBlock_SetParameterDef" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; (arg1)->SetParameterDef(arg2,arg3,(char const *)arg4); resultobj = SWIG_Py_Void(); if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_scfRefCount_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGenericParameterBlock_scfRefCount_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_scfRefCount_set" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celGenericParameterBlock_scfRefCount_set" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); if (arg1) (arg1)->scfRefCount = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_scfRefCount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGenericParameterBlock_scfRefCount_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_scfRefCount_get" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); result = (int) ((arg1)->scfRefCount); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_scfWeakRefOwners_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; csArray *arg2 = (csArray *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGenericParameterBlock_scfWeakRefOwners_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_scfWeakRefOwners_set" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGenericParameterBlock_scfWeakRefOwners_set" "', argument " "2"" of type '" "csArray *""'"); } arg2 = reinterpret_cast< csArray * >(argp2); if (arg1) (arg1)->scfWeakRefOwners = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_scfWeakRefOwners_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; csArray *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGenericParameterBlock_scfWeakRefOwners_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_scfWeakRefOwners_get" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); result = (csArray *) ((arg1)->scfWeakRefOwners); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_scfRemoveRefOwners(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGenericParameterBlock_scfRemoveRefOwners",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_scfRemoveRefOwners" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); (arg1)->scfRemoveRefOwners(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_scfParent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; iBase *arg2 = (iBase *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGenericParameterBlock_scfParent_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_scfParent_set" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBase, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGenericParameterBlock_scfParent_set" "', argument " "2"" of type '" "iBase *""'"); } arg2 = reinterpret_cast< iBase * >(argp2); if (arg1) (arg1)->scfParent = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_scfParent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; iBase *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGenericParameterBlock_scfParent_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_scfParent_get" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); result = (iBase *) ((arg1)->scfParent); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBase, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_IncRef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGenericParameterBlock_IncRef",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_IncRef" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); (arg1)->IncRef(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_DecRef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGenericParameterBlock_DecRef",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_DecRef" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); (arg1)->DecRef(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_GetRefCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGenericParameterBlock_GetRefCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_GetRefCount" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); result = (int)(arg1)->GetRefCount(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_AddRefOwner(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; void **arg2 = (void **) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGenericParameterBlock_AddRefOwner",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_AddRefOwner" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_void, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGenericParameterBlock_AddRefOwner" "', argument " "2"" of type '" "void **""'"); } arg2 = reinterpret_cast< void ** >(argp2); (arg1)->AddRefOwner(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_RemoveRefOwner(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; void **arg2 = (void **) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGenericParameterBlock_RemoveRefOwner",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_RemoveRefOwner" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_void, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGenericParameterBlock_RemoveRefOwner" "', argument " "2"" of type '" "void **""'"); } arg2 = reinterpret_cast< void ** >(argp2); (arg1)->RemoveRefOwner(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_QueryInterface(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; scfInterfaceID arg2 ; int arg3 ; void *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:celGenericParameterBlock_QueryInterface",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_QueryInterface" "', argument " "1"" of type '" "celGenericParameterBlock *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celGenericParameterBlock_QueryInterface" "', argument " "2"" of type '" "scfInterfaceID""'"); } arg2 = static_cast< scfInterfaceID >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "celGenericParameterBlock_QueryInterface" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); result = (void *)(arg1)->QueryInterface(arg2,arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_GetParameterCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGenericParameterBlock_GetParameterCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_GetParameterCount" "', argument " "1"" of type '" "celGenericParameterBlock const *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); result = ((celGenericParameterBlock const *)arg1)->GetParameterCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_GetParameter__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; size_t arg2 ; csStringID *arg3 = 0 ; celDataType *arg4 = 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:celGenericParameterBlock_GetParameter",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_GetParameter" "', argument " "1"" of type '" "celGenericParameterBlock const *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celGenericParameterBlock_GetParameter" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_unsigned_long, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celGenericParameterBlock_GetParameter" "', argument " "3"" of type '" "csStringID &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celGenericParameterBlock_GetParameter" "', argument " "3"" of type '" "csStringID &""'"); } arg3 = reinterpret_cast< csStringID * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_celDataType, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "celGenericParameterBlock_GetParameter" "', argument " "4"" of type '" "celDataType &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celGenericParameterBlock_GetParameter" "', argument " "4"" of type '" "celDataType &""'"); } arg4 = reinterpret_cast< celDataType * >(argp4); result = (char *)((celGenericParameterBlock const *)arg1)->GetParameter(arg2,*arg3,*arg4); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_GetParameter__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; csStringID arg2 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGenericParameterBlock_GetParameter",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_GetParameter" "', argument " "1"" of type '" "celGenericParameterBlock const *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celGenericParameterBlock_GetParameter" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (celData *)((celGenericParameterBlock const *)arg1)->GetParameter(arg2); { /*@SWIG:CELDATA_RETURN@*/ PyObject *obj = Py_None; if (result) { switch(result->type) { case CEL_DATA_FLOAT: obj = PyFloat_FromDouble((float)result->value.f); break; case CEL_DATA_BOOL: obj = SWIG_From_bool((bool)result->value.bo); break; case CEL_DATA_STRING: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_VECTOR2: { csVector2 *res; res = new csVector2(result->value.v.x,result->value.v.y); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector2, 1); break; } case CEL_DATA_VECTOR3: { csVector3 *res; res = new csVector3(result->value.v.x,result->value.v.y,result->value.v.z); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector3, 1); break; } case CEL_DATA_ENTITY: { iCelEntity *res; res = (iCelEntity *)(result->value.ent); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelEntity, 0); break; } case CEL_DATA_PCLASS: { iCelPropertyClass *res; res = (iCelPropertyClass *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelPropertyClass, 0); break; } case CEL_DATA_ACTION: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_IBASE: { iBase *res; res = (iBase *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iBase, 0); break; } case CEL_DATA_COLOR: { csColor *res; res = new csColor(result->value.col.red,result->value.col.green,result->value.col.blue); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csColor, 1); break; } case CEL_DATA_WORD: { obj = SWIG_From_int((int)result->value.w); break; } case CEL_DATA_LONG: { obj = SWIG_From_long((long)result->value.l); break; } case CEL_DATA_ULONG: { obj = PyLong_FromUnsignedLong((unsigned long)result->value.ul); break; } { break; } /* Still to be done (and some more) */ case CEL_DATA_BYTE: /*result->value.b (int8)*/ case CEL_DATA_UWORD: /*result->value.uw (uint16)*/ case CEL_DATA_PARAMETER: /*result->value.par (iString+celDataType)*/ default: Py_INCREF(Py_None); obj = Py_None; break; } } /*@SWIG@*/ resultobj = obj; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_GetParameter(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celGenericParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_celGenericParameterBlock_GetParameter__SWIG_1(self, args); } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celGenericParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_unsigned_long, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_celDataType, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celGenericParameterBlock_GetParameter__SWIG_0(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'celGenericParameterBlock_GetParameter'"); return NULL; } SWIGINTERN PyObject *_wrap_celGenericParameterBlock_GetParameterByIndex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celGenericParameterBlock *arg1 = (celGenericParameterBlock *) 0 ; size_t arg2 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGenericParameterBlock_GetParameterByIndex",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celGenericParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGenericParameterBlock_GetParameterByIndex" "', argument " "1"" of type '" "celGenericParameterBlock const *""'"); } arg1 = reinterpret_cast< celGenericParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celGenericParameterBlock_GetParameterByIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (celData *)((celGenericParameterBlock const *)arg1)->GetParameterByIndex(arg2); { /*@SWIG:CELDATA_RETURN@*/ PyObject *obj = Py_None; if (result) { switch(result->type) { case CEL_DATA_FLOAT: obj = PyFloat_FromDouble((float)result->value.f); break; case CEL_DATA_BOOL: obj = SWIG_From_bool((bool)result->value.bo); break; case CEL_DATA_STRING: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_VECTOR2: { csVector2 *res; res = new csVector2(result->value.v.x,result->value.v.y); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector2, 1); break; } case CEL_DATA_VECTOR3: { csVector3 *res; res = new csVector3(result->value.v.x,result->value.v.y,result->value.v.z); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector3, 1); break; } case CEL_DATA_ENTITY: { iCelEntity *res; res = (iCelEntity *)(result->value.ent); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelEntity, 0); break; } case CEL_DATA_PCLASS: { iCelPropertyClass *res; res = (iCelPropertyClass *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelPropertyClass, 0); break; } case CEL_DATA_ACTION: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_IBASE: { iBase *res; res = (iBase *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iBase, 0); break; } case CEL_DATA_COLOR: { csColor *res; res = new csColor(result->value.col.red,result->value.col.green,result->value.col.blue); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csColor, 1); break; } case CEL_DATA_WORD: { obj = SWIG_From_int((int)result->value.w); break; } case CEL_DATA_LONG: { obj = SWIG_From_long((long)result->value.l); break; } case CEL_DATA_ULONG: { obj = PyLong_FromUnsignedLong((unsigned long)result->value.ul); break; } { break; } /* Still to be done (and some more) */ case CEL_DATA_BYTE: /*result->value.b (int8)*/ case CEL_DATA_UWORD: /*result->value.uw (uint16)*/ case CEL_DATA_PARAMETER: /*result->value.par (iString+celDataType)*/ default: Py_INCREF(Py_None); obj = Py_None; break; } } /*@SWIG@*/ resultobj = obj; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *celGenericParameterBlock_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_celGenericParameterBlock, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_new_celVariableParameterBlock__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":new_celVariableParameterBlock")) SWIG_fail; result = (celVariableParameterBlock *)new celVariableParameterBlock(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celVariableParameterBlock, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_celVariableParameterBlock__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelParameterBlock *arg1 = (iCelParameterBlock *) 0 ; celVariableParameterBlock *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:new_celVariableParameterBlock",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_celVariableParameterBlock" "', argument " "1"" of type '" "iCelParameterBlock *""'"); } arg1 = reinterpret_cast< iCelParameterBlock * >(argp1); result = (celVariableParameterBlock *)new celVariableParameterBlock(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celVariableParameterBlock, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_celVariableParameterBlock(PyObject *self, PyObject *args) { int argc; PyObject *argv[2]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 1); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 0) { return _wrap_new_celVariableParameterBlock__SWIG_0(self, args); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_new_celVariableParameterBlock__SWIG_1(self, args); } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'new_celVariableParameterBlock'"); return NULL; } SWIGINTERN PyObject *_wrap_delete_celVariableParameterBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_celVariableParameterBlock",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_celVariableParameterBlock" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_SetParameterDef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; size_t arg2 ; csStringID arg3 ; char *arg4 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; unsigned long val3 ; int ecode3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:celVariableParameterBlock_SetParameterDef",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_SetParameterDef" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celVariableParameterBlock_SetParameterDef" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); ecode3 = SWIG_AsVal_unsigned_SS_long(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "celVariableParameterBlock_SetParameterDef" "', argument " "3"" of type '" "csStringID""'"); } arg3 = static_cast< csStringID >(val3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "celVariableParameterBlock_SetParameterDef" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; (arg1)->SetParameterDef(arg2,arg3,(char const *)arg4); resultobj = SWIG_Py_Void(); if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_scfRefCount_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celVariableParameterBlock_scfRefCount_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_scfRefCount_set" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celVariableParameterBlock_scfRefCount_set" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); if (arg1) (arg1)->scfRefCount = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_scfRefCount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celVariableParameterBlock_scfRefCount_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_scfRefCount_get" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); result = (int) ((arg1)->scfRefCount); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_scfWeakRefOwners_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; csArray *arg2 = (csArray *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celVariableParameterBlock_scfWeakRefOwners_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_scfWeakRefOwners_set" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celVariableParameterBlock_scfWeakRefOwners_set" "', argument " "2"" of type '" "csArray *""'"); } arg2 = reinterpret_cast< csArray * >(argp2); if (arg1) (arg1)->scfWeakRefOwners = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_scfWeakRefOwners_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; csArray *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celVariableParameterBlock_scfWeakRefOwners_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_scfWeakRefOwners_get" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); result = (csArray *) ((arg1)->scfWeakRefOwners); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_scfRemoveRefOwners(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celVariableParameterBlock_scfRemoveRefOwners",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_scfRemoveRefOwners" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); (arg1)->scfRemoveRefOwners(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_scfParent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; iBase *arg2 = (iBase *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celVariableParameterBlock_scfParent_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_scfParent_set" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBase, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celVariableParameterBlock_scfParent_set" "', argument " "2"" of type '" "iBase *""'"); } arg2 = reinterpret_cast< iBase * >(argp2); if (arg1) (arg1)->scfParent = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_scfParent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; iBase *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celVariableParameterBlock_scfParent_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_scfParent_get" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); result = (iBase *) ((arg1)->scfParent); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBase, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_IncRef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celVariableParameterBlock_IncRef",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_IncRef" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); (arg1)->IncRef(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_DecRef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celVariableParameterBlock_DecRef",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_DecRef" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); (arg1)->DecRef(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_GetRefCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celVariableParameterBlock_GetRefCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_GetRefCount" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); result = (int)(arg1)->GetRefCount(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_AddRefOwner(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; void **arg2 = (void **) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celVariableParameterBlock_AddRefOwner",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_AddRefOwner" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_void, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celVariableParameterBlock_AddRefOwner" "', argument " "2"" of type '" "void **""'"); } arg2 = reinterpret_cast< void ** >(argp2); (arg1)->AddRefOwner(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_RemoveRefOwner(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; void **arg2 = (void **) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celVariableParameterBlock_RemoveRefOwner",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_RemoveRefOwner" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_void, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celVariableParameterBlock_RemoveRefOwner" "', argument " "2"" of type '" "void **""'"); } arg2 = reinterpret_cast< void ** >(argp2); (arg1)->RemoveRefOwner(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_QueryInterface(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; scfInterfaceID arg2 ; int arg3 ; void *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:celVariableParameterBlock_QueryInterface",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_QueryInterface" "', argument " "1"" of type '" "celVariableParameterBlock *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celVariableParameterBlock_QueryInterface" "', argument " "2"" of type '" "scfInterfaceID""'"); } arg2 = static_cast< scfInterfaceID >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "celVariableParameterBlock_QueryInterface" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); result = (void *)(arg1)->QueryInterface(arg2,arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_GetParameterCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celVariableParameterBlock_GetParameterCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_GetParameterCount" "', argument " "1"" of type '" "celVariableParameterBlock const *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); result = ((celVariableParameterBlock const *)arg1)->GetParameterCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_GetParameter__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; size_t arg2 ; csStringID *arg3 = 0 ; celDataType *arg4 = 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:celVariableParameterBlock_GetParameter",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_GetParameter" "', argument " "1"" of type '" "celVariableParameterBlock const *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celVariableParameterBlock_GetParameter" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_unsigned_long, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celVariableParameterBlock_GetParameter" "', argument " "3"" of type '" "csStringID &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celVariableParameterBlock_GetParameter" "', argument " "3"" of type '" "csStringID &""'"); } arg3 = reinterpret_cast< csStringID * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_celDataType, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "celVariableParameterBlock_GetParameter" "', argument " "4"" of type '" "celDataType &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celVariableParameterBlock_GetParameter" "', argument " "4"" of type '" "celDataType &""'"); } arg4 = reinterpret_cast< celDataType * >(argp4); result = (char *)((celVariableParameterBlock const *)arg1)->GetParameter(arg2,*arg3,*arg4); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_GetParameter__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; csStringID arg2 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celVariableParameterBlock_GetParameter",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_GetParameter" "', argument " "1"" of type '" "celVariableParameterBlock const *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celVariableParameterBlock_GetParameter" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (celData *)((celVariableParameterBlock const *)arg1)->GetParameter(arg2); { /*@SWIG:CELDATA_RETURN@*/ PyObject *obj = Py_None; if (result) { switch(result->type) { case CEL_DATA_FLOAT: obj = PyFloat_FromDouble((float)result->value.f); break; case CEL_DATA_BOOL: obj = SWIG_From_bool((bool)result->value.bo); break; case CEL_DATA_STRING: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_VECTOR2: { csVector2 *res; res = new csVector2(result->value.v.x,result->value.v.y); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector2, 1); break; } case CEL_DATA_VECTOR3: { csVector3 *res; res = new csVector3(result->value.v.x,result->value.v.y,result->value.v.z); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector3, 1); break; } case CEL_DATA_ENTITY: { iCelEntity *res; res = (iCelEntity *)(result->value.ent); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelEntity, 0); break; } case CEL_DATA_PCLASS: { iCelPropertyClass *res; res = (iCelPropertyClass *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelPropertyClass, 0); break; } case CEL_DATA_ACTION: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_IBASE: { iBase *res; res = (iBase *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iBase, 0); break; } case CEL_DATA_COLOR: { csColor *res; res = new csColor(result->value.col.red,result->value.col.green,result->value.col.blue); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csColor, 1); break; } case CEL_DATA_WORD: { obj = SWIG_From_int((int)result->value.w); break; } case CEL_DATA_LONG: { obj = SWIG_From_long((long)result->value.l); break; } case CEL_DATA_ULONG: { obj = PyLong_FromUnsignedLong((unsigned long)result->value.ul); break; } { break; } /* Still to be done (and some more) */ case CEL_DATA_BYTE: /*result->value.b (int8)*/ case CEL_DATA_UWORD: /*result->value.uw (uint16)*/ case CEL_DATA_PARAMETER: /*result->value.par (iString+celDataType)*/ default: Py_INCREF(Py_None); obj = Py_None; break; } } /*@SWIG@*/ resultobj = obj; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_GetParameter(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celVariableParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_celVariableParameterBlock_GetParameter__SWIG_1(self, args); } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celVariableParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_unsigned_long, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_celDataType, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celVariableParameterBlock_GetParameter__SWIG_0(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'celVariableParameterBlock_GetParameter'"); return NULL; } SWIGINTERN PyObject *_wrap_celVariableParameterBlock_GetParameterByIndex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celVariableParameterBlock *arg1 = (celVariableParameterBlock *) 0 ; size_t arg2 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celVariableParameterBlock_GetParameterByIndex",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celVariableParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celVariableParameterBlock_GetParameterByIndex" "', argument " "1"" of type '" "celVariableParameterBlock const *""'"); } arg1 = reinterpret_cast< celVariableParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celVariableParameterBlock_GetParameterByIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (celData *)((celVariableParameterBlock const *)arg1)->GetParameterByIndex(arg2); { /*@SWIG:CELDATA_RETURN@*/ PyObject *obj = Py_None; if (result) { switch(result->type) { case CEL_DATA_FLOAT: obj = PyFloat_FromDouble((float)result->value.f); break; case CEL_DATA_BOOL: obj = SWIG_From_bool((bool)result->value.bo); break; case CEL_DATA_STRING: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_VECTOR2: { csVector2 *res; res = new csVector2(result->value.v.x,result->value.v.y); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector2, 1); break; } case CEL_DATA_VECTOR3: { csVector3 *res; res = new csVector3(result->value.v.x,result->value.v.y,result->value.v.z); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector3, 1); break; } case CEL_DATA_ENTITY: { iCelEntity *res; res = (iCelEntity *)(result->value.ent); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelEntity, 0); break; } case CEL_DATA_PCLASS: { iCelPropertyClass *res; res = (iCelPropertyClass *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelPropertyClass, 0); break; } case CEL_DATA_ACTION: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_IBASE: { iBase *res; res = (iBase *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iBase, 0); break; } case CEL_DATA_COLOR: { csColor *res; res = new csColor(result->value.col.red,result->value.col.green,result->value.col.blue); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csColor, 1); break; } case CEL_DATA_WORD: { obj = SWIG_From_int((int)result->value.w); break; } case CEL_DATA_LONG: { obj = SWIG_From_long((long)result->value.l); break; } case CEL_DATA_ULONG: { obj = PyLong_FromUnsignedLong((unsigned long)result->value.ul); break; } { break; } /* Still to be done (and some more) */ case CEL_DATA_BYTE: /*result->value.b (int8)*/ case CEL_DATA_UWORD: /*result->value.uw (uint16)*/ case CEL_DATA_PARAMETER: /*result->value.par (iString+celDataType)*/ default: Py_INCREF(Py_None); obj = Py_None; break; } } /*@SWIG@*/ resultobj = obj; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *celVariableParameterBlock_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_celVariableParameterBlock, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_new_celOneParameterBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":new_celOneParameterBlock")) SWIG_fail; result = (celOneParameterBlock *)new celOneParameterBlock(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celOneParameterBlock, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_celOneParameterBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_celOneParameterBlock",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_celOneParameterBlock" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_SetParameterDef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; csStringID arg2 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:celOneParameterBlock_SetParameterDef",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_SetParameterDef" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celOneParameterBlock_SetParameterDef" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celOneParameterBlock_SetParameterDef" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->SetParameterDef(arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_GetParameter__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; int arg2 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celOneParameterBlock_GetParameter",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_GetParameter" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celOneParameterBlock_GetParameter" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { celData &_result_ref = (arg1)->GetParameter(arg2); result = (celData *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_celData, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_scfRefCount_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celOneParameterBlock_scfRefCount_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_scfRefCount_set" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celOneParameterBlock_scfRefCount_set" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); if (arg1) (arg1)->scfRefCount = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_scfRefCount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celOneParameterBlock_scfRefCount_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_scfRefCount_get" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); result = (int) ((arg1)->scfRefCount); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_scfWeakRefOwners_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; csArray *arg2 = (csArray *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celOneParameterBlock_scfWeakRefOwners_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_scfWeakRefOwners_set" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celOneParameterBlock_scfWeakRefOwners_set" "', argument " "2"" of type '" "csArray *""'"); } arg2 = reinterpret_cast< csArray * >(argp2); if (arg1) (arg1)->scfWeakRefOwners = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_scfWeakRefOwners_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; csArray *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celOneParameterBlock_scfWeakRefOwners_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_scfWeakRefOwners_get" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); result = (csArray *) ((arg1)->scfWeakRefOwners); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_scfRemoveRefOwners(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celOneParameterBlock_scfRemoveRefOwners",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_scfRemoveRefOwners" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); (arg1)->scfRemoveRefOwners(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_scfParent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; iBase *arg2 = (iBase *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celOneParameterBlock_scfParent_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_scfParent_set" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBase, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celOneParameterBlock_scfParent_set" "', argument " "2"" of type '" "iBase *""'"); } arg2 = reinterpret_cast< iBase * >(argp2); if (arg1) (arg1)->scfParent = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_scfParent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; iBase *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celOneParameterBlock_scfParent_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_scfParent_get" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); result = (iBase *) ((arg1)->scfParent); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBase, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_IncRef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celOneParameterBlock_IncRef",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_IncRef" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); (arg1)->IncRef(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_DecRef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celOneParameterBlock_DecRef",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_DecRef" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); (arg1)->DecRef(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_GetRefCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celOneParameterBlock_GetRefCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_GetRefCount" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); result = (int)(arg1)->GetRefCount(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_AddRefOwner(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; void **arg2 = (void **) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celOneParameterBlock_AddRefOwner",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_AddRefOwner" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_void, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celOneParameterBlock_AddRefOwner" "', argument " "2"" of type '" "void **""'"); } arg2 = reinterpret_cast< void ** >(argp2); (arg1)->AddRefOwner(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_RemoveRefOwner(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; void **arg2 = (void **) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celOneParameterBlock_RemoveRefOwner",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_RemoveRefOwner" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_void, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celOneParameterBlock_RemoveRefOwner" "', argument " "2"" of type '" "void **""'"); } arg2 = reinterpret_cast< void ** >(argp2); (arg1)->RemoveRefOwner(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_QueryInterface(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; scfInterfaceID arg2 ; int arg3 ; void *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:celOneParameterBlock_QueryInterface",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_QueryInterface" "', argument " "1"" of type '" "celOneParameterBlock *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celOneParameterBlock_QueryInterface" "', argument " "2"" of type '" "scfInterfaceID""'"); } arg2 = static_cast< scfInterfaceID >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "celOneParameterBlock_QueryInterface" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); result = (void *)(arg1)->QueryInterface(arg2,arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_GetParameterCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celOneParameterBlock_GetParameterCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_GetParameterCount" "', argument " "1"" of type '" "celOneParameterBlock const *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); result = ((celOneParameterBlock const *)arg1)->GetParameterCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_GetParameter__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; size_t arg2 ; csStringID *arg3 = 0 ; celDataType *arg4 = 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:celOneParameterBlock_GetParameter",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_GetParameter" "', argument " "1"" of type '" "celOneParameterBlock const *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celOneParameterBlock_GetParameter" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_unsigned_long, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celOneParameterBlock_GetParameter" "', argument " "3"" of type '" "csStringID &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celOneParameterBlock_GetParameter" "', argument " "3"" of type '" "csStringID &""'"); } arg3 = reinterpret_cast< csStringID * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_celDataType, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "celOneParameterBlock_GetParameter" "', argument " "4"" of type '" "celDataType &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "celOneParameterBlock_GetParameter" "', argument " "4"" of type '" "celDataType &""'"); } arg4 = reinterpret_cast< celDataType * >(argp4); result = (char *)((celOneParameterBlock const *)arg1)->GetParameter(arg2,*arg3,*arg4); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_GetParameter__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; csStringID arg2 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celOneParameterBlock_GetParameter",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_GetParameter" "', argument " "1"" of type '" "celOneParameterBlock const *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celOneParameterBlock_GetParameter" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (celData *)((celOneParameterBlock const *)arg1)->GetParameter(arg2); { /*@SWIG:CELDATA_RETURN@*/ PyObject *obj = Py_None; if (result) { switch(result->type) { case CEL_DATA_FLOAT: obj = PyFloat_FromDouble((float)result->value.f); break; case CEL_DATA_BOOL: obj = SWIG_From_bool((bool)result->value.bo); break; case CEL_DATA_STRING: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_VECTOR2: { csVector2 *res; res = new csVector2(result->value.v.x,result->value.v.y); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector2, 1); break; } case CEL_DATA_VECTOR3: { csVector3 *res; res = new csVector3(result->value.v.x,result->value.v.y,result->value.v.z); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector3, 1); break; } case CEL_DATA_ENTITY: { iCelEntity *res; res = (iCelEntity *)(result->value.ent); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelEntity, 0); break; } case CEL_DATA_PCLASS: { iCelPropertyClass *res; res = (iCelPropertyClass *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelPropertyClass, 0); break; } case CEL_DATA_ACTION: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_IBASE: { iBase *res; res = (iBase *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iBase, 0); break; } case CEL_DATA_COLOR: { csColor *res; res = new csColor(result->value.col.red,result->value.col.green,result->value.col.blue); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csColor, 1); break; } case CEL_DATA_WORD: { obj = SWIG_From_int((int)result->value.w); break; } case CEL_DATA_LONG: { obj = SWIG_From_long((long)result->value.l); break; } case CEL_DATA_ULONG: { obj = PyLong_FromUnsignedLong((unsigned long)result->value.ul); break; } { break; } /* Still to be done (and some more) */ case CEL_DATA_BYTE: /*result->value.b (int8)*/ case CEL_DATA_UWORD: /*result->value.uw (uint16)*/ case CEL_DATA_PARAMETER: /*result->value.par (iString+celDataType)*/ default: Py_INCREF(Py_None); obj = Py_None; break; } } /*@SWIG@*/ resultobj = obj; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_GetParameter(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celOneParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_celOneParameterBlock_GetParameter__SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celOneParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_celOneParameterBlock_GetParameter__SWIG_2(self, args); } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_celOneParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_unsigned_long, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_celDataType, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_celOneParameterBlock_GetParameter__SWIG_1(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'celOneParameterBlock_GetParameter'"); return NULL; } SWIGINTERN PyObject *_wrap_celOneParameterBlock_GetParameterByIndex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; celOneParameterBlock *arg1 = (celOneParameterBlock *) 0 ; size_t arg2 ; celData *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celOneParameterBlock_GetParameterByIndex",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_celOneParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celOneParameterBlock_GetParameterByIndex" "', argument " "1"" of type '" "celOneParameterBlock const *""'"); } arg1 = reinterpret_cast< celOneParameterBlock * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "celOneParameterBlock_GetParameterByIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (celData *)((celOneParameterBlock const *)arg1)->GetParameterByIndex(arg2); { /*@SWIG:CELDATA_RETURN@*/ PyObject *obj = Py_None; if (result) { switch(result->type) { case CEL_DATA_FLOAT: obj = PyFloat_FromDouble((float)result->value.f); break; case CEL_DATA_BOOL: obj = SWIG_From_bool((bool)result->value.bo); break; case CEL_DATA_STRING: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_VECTOR2: { csVector2 *res; res = new csVector2(result->value.v.x,result->value.v.y); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector2, 1); break; } case CEL_DATA_VECTOR3: { csVector3 *res; res = new csVector3(result->value.v.x,result->value.v.y,result->value.v.z); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csVector3, 1); break; } case CEL_DATA_ENTITY: { iCelEntity *res; res = (iCelEntity *)(result->value.ent); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelEntity, 0); break; } case CEL_DATA_PCLASS: { iCelPropertyClass *res; res = (iCelPropertyClass *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iCelPropertyClass, 0); break; } case CEL_DATA_ACTION: { char *res; res = (char*)((iString const *)(result->value.s)->GetData()); obj = SWIG_FromCharPtr(res); break; } case CEL_DATA_IBASE: { iBase *res; res = (iBase *)(result->value.pc); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_iBase, 0); break; } case CEL_DATA_COLOR: { csColor *res; res = new csColor(result->value.col.red,result->value.col.green,result->value.col.blue); obj = SWIG_NewPointerObj((void*)(res), SWIGTYPE_p_csColor, 1); break; } case CEL_DATA_WORD: { obj = SWIG_From_int((int)result->value.w); break; } case CEL_DATA_LONG: { obj = SWIG_From_long((long)result->value.l); break; } case CEL_DATA_ULONG: { obj = PyLong_FromUnsignedLong((unsigned long)result->value.ul); break; } { break; } /* Still to be done (and some more) */ case CEL_DATA_BYTE: /*result->value.b (int8)*/ case CEL_DATA_UWORD: /*result->value.uw (uint16)*/ case CEL_DATA_PARAMETER: /*result->value.par (iString+celDataType)*/ default: Py_INCREF(Py_None); obj = Py_None; break; } } /*@SWIG@*/ resultobj = obj; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *celOneParameterBlock_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_celOneParameterBlock, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelPropertyClassFactory_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassFactory *arg1 = (iCelPropertyClassFactory *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClassFactory_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassFactory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassFactory_GetName" "', argument " "1"" of type '" "iCelPropertyClassFactory const *""'"); } arg1 = reinterpret_cast< iCelPropertyClassFactory * >(argp1); result = (char *)((iCelPropertyClassFactory const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassFactory_CreatePropertyClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassFactory *arg1 = (iCelPropertyClassFactory *) 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClassFactory_CreatePropertyClass",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassFactory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassFactory_CreatePropertyClass" "', argument " "1"" of type '" "iCelPropertyClassFactory *""'"); } arg1 = reinterpret_cast< iCelPropertyClassFactory * >(argp1); result = (arg1)->CreatePropertyClass(); resultobj = SWIG_NewPointerObj((new csPtr(static_cast< const csPtr& >(result))), SWIGTYPE_p_csPtrTiCelPropertyClass_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassFactory_Name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassFactory *arg1 = (iCelPropertyClassFactory *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClassFactory_Name_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassFactory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassFactory_Name_get" "', argument " "1"" of type '" "iCelPropertyClassFactory *""'"); } arg1 = reinterpret_cast< iCelPropertyClassFactory * >(argp1); result = (char *)iCelPropertyClassFactory_Name_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelPropertyClassFactory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassFactory *arg1 = (iCelPropertyClassFactory *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelPropertyClassFactory",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassFactory, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelPropertyClassFactory" "', argument " "1"" of type '" "iCelPropertyClassFactory *""'"); } arg1 = reinterpret_cast< iCelPropertyClassFactory * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelPropertyClassFactory_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelPropertyClassFactory, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClass_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetName" "', argument " "1"" of type '" "iCelPropertyClass const *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (char *)((iCelPropertyClass const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_SetTag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_SetTag",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_SetTag" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClass_SetTag" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetTag((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetTag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClass_GetTag",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetTag" "', argument " "1"" of type '" "iCelPropertyClass const *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (char *)((iCelPropertyClass const *)arg1)->GetTag(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClass_GetEntity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetEntity" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iCelEntity *)(arg1)->GetEntity(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_SetEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_SetEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_SetEntity" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClass_SetEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); (arg1)->SetEntity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_SaveFirstPass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClass_SaveFirstPass",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_SaveFirstPass" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (arg1)->SaveFirstPass(); resultobj = SWIG_NewPointerObj((new csPtr(static_cast< const csPtr& >(result))), SWIGTYPE_p_csPtrTiCelDataBuffer_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_LoadFirstPass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iCelDataBuffer *arg2 = (iCelDataBuffer *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_LoadFirstPass",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_LoadFirstPass" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelDataBuffer, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClass_LoadFirstPass" "', argument " "2"" of type '" "iCelDataBuffer *""'"); } arg2 = reinterpret_cast< iCelDataBuffer * >(argp2); result = (bool)(arg1)->LoadFirstPass(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_Save(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClass_Save",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_Save" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (arg1)->Save(); resultobj = SWIG_NewPointerObj((new csPtr(static_cast< const csPtr& >(result))), SWIGTYPE_p_csPtrTiCelDataBuffer_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_Load(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iCelDataBuffer *arg2 = (iCelDataBuffer *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_Load",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_Load" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelDataBuffer, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClass_Load" "', argument " "2"" of type '" "iCelDataBuffer *""'"); } arg2 = reinterpret_cast< iCelDataBuffer * >(argp2); result = (bool)(arg1)->Load(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_AddPropertyChangeCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iCelPropertyChangeCallback *arg2 = (iCelPropertyChangeCallback *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_AddPropertyChangeCallback",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_AddPropertyChangeCallback" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyChangeCallback, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClass_AddPropertyChangeCallback" "', argument " "2"" of type '" "iCelPropertyChangeCallback *""'"); } arg2 = reinterpret_cast< iCelPropertyChangeCallback * >(argp2); result = (bool)(arg1)->AddPropertyChangeCallback(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_RemovePropertyChangeCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iCelPropertyChangeCallback *arg2 = (iCelPropertyChangeCallback *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_RemovePropertyChangeCallback",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_RemovePropertyChangeCallback" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyChangeCallback, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClass_RemovePropertyChangeCallback" "', argument " "2"" of type '" "iCelPropertyChangeCallback *""'"); } arg2 = reinterpret_cast< iCelPropertyChangeCallback * >(argp2); result = (bool)(arg1)->RemovePropertyChangeCallback(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyOrActionType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; celDataType result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPropertyOrActionType",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyOrActionType" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyOrActionType" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (celDataType)(arg1)->GetPropertyOrActionType(arg2); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_IsPropertyReadOnly(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_IsPropertyReadOnly",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_IsPropertyReadOnly" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_IsPropertyReadOnly" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (bool)(arg1)->IsPropertyReadOnly(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyLong(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; long result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPropertyLong",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyLong" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyLong" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (long)(arg1)->GetPropertyLong(arg2); resultobj = SWIG_From_long(static_cast< long >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyFloat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPropertyFloat",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyFloat" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyFloat" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (float)(arg1)->GetPropertyFloat(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyBool(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPropertyBool",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyBool" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyBool" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (bool)(arg1)->GetPropertyBool(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPropertyString",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyString" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyString" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (char *)(arg1)->GetPropertyString(arg2); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyVector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; csVector2 *arg3 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClass_GetPropertyVector",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyVector" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyVector" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector2, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClass_GetPropertyVector" "', argument " "3"" of type '" "csVector2 &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPropertyClass_GetPropertyVector" "', argument " "3"" of type '" "csVector2 &""'"); } arg3 = reinterpret_cast< csVector2 * >(argp3); result = (bool)(arg1)->GetPropertyVector(arg2,*arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyVector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; csVector3 *arg3 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClass_GetPropertyVector",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyVector" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyVector" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClass_GetPropertyVector" "', argument " "3"" of type '" "csVector3 &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPropertyClass_GetPropertyVector" "', argument " "3"" of type '" "csVector3 &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); result = (bool)(arg1)->GetPropertyVector(arg2,*arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyVector(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_csVector2, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClass_GetPropertyVector__SWIG_0(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_long(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClass_GetPropertyVector__SWIG_1(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelPropertyClass_GetPropertyVector'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; csColor *arg3 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClass_GetPropertyColor",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyColor" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyColor" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csColor, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClass_GetPropertyColor" "', argument " "3"" of type '" "csColor &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPropertyClass_GetPropertyColor" "', argument " "3"" of type '" "csColor &""'"); } arg3 = reinterpret_cast< csColor * >(argp3); result = (bool)(arg1)->GetPropertyColor(arg2,*arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyPClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; iCelPropertyClass *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPropertyPClass",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyPClass" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyPClass" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (iCelPropertyClass *)(arg1)->GetPropertyPClass(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPropertyEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyEntity" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyEntity" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (iCelEntity *)(arg1)->GetPropertyEntity(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyIBase(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; iBase *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPropertyIBase",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyIBase" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyIBase" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (iBase *)(arg1)->GetPropertyIBase(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBase, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_PerformAction(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; iCelParameterBlock *arg3 = (iCelParameterBlock *) 0 ; celData *arg4 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPropertyClass_PerformAction",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_PerformAction" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_PerformAction" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClass_PerformAction" "', argument " "3"" of type '" "iCelParameterBlock *""'"); } arg3 = reinterpret_cast< iCelParameterBlock * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_celData, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelPropertyClass_PerformAction" "', argument " "4"" of type '" "celData &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPropertyClass_PerformAction" "', argument " "4"" of type '" "celData &""'"); } arg4 = reinterpret_cast< celData * >(argp4); result = (bool)(arg1)->PerformAction(arg2,arg3,*arg4); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyAndActionCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClass_GetPropertyAndActionCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyAndActionCount" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (arg1)->GetPropertyAndActionCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyOrActionID(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; size_t arg2 ; csStringID result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPropertyOrActionID",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyOrActionID" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyOrActionID" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (csStringID)(arg1)->GetPropertyOrActionID(arg2); resultobj = SWIG_From_unsigned_SS_long(static_cast< unsigned long >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPropertyOrActionDescription(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPropertyOrActionDescription",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPropertyOrActionDescription" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_GetPropertyOrActionDescription" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); result = (char *)(arg1)->GetPropertyOrActionDescription(arg2); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_PropertyClassesHaveChanged(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClass_PropertyClassesHaveChanged",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_PropertyClassesHaveChanged" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); (arg1)->PropertyClassesHaveChanged(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_GetPersistentData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; celPersistenceType arg2 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_GetPersistentData",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_GetPersistentData" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_celPersistenceType, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClass_GetPersistentData" "', argument " "2"" of type '" "celPersistenceType""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPropertyClass_GetPersistentData" "', argument " "2"" of type '" "celPersistenceType""'"); } else { celPersistenceType * temp = reinterpret_cast< celPersistenceType * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } result = (arg1)->GetPersistentData(arg2); resultobj = SWIG_NewPointerObj((new csPtr(static_cast< const csPtr& >(result))), SWIGTYPE_p_csPtrTiCelDataBuffer_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_SetPersistentData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csTicks arg2 ; iCelDataBuffer *arg3 = (iCelDataBuffer *) 0 ; celPersistenceType arg4 ; celPersistenceResult result; void *argp1 = 0 ; int res1 = 0 ; unsigned int val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPropertyClass_SetPersistentData",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_SetPersistentData" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_SetPersistentData" "', argument " "2"" of type '" "csTicks""'"); } arg2 = static_cast< csTicks >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelDataBuffer, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClass_SetPersistentData" "', argument " "3"" of type '" "iCelDataBuffer *""'"); } arg3 = reinterpret_cast< iCelDataBuffer * >(argp3); { res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_celPersistenceType, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelPropertyClass_SetPersistentData" "', argument " "4"" of type '" "celPersistenceType""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPropertyClass_SetPersistentData" "', argument " "4"" of type '" "celPersistenceType""'"); } else { celPersistenceType * temp = reinterpret_cast< celPersistenceType * >(argp4); arg4 = *temp; if (SWIG_IsNewObj(res4)) delete temp; } } result = (arg1)->SetPersistentData(arg2,arg3,arg4); resultobj = SWIG_NewPointerObj((new celPersistenceResult(static_cast< const celPersistenceResult& >(result))), SWIGTYPE_p_celPersistenceResult, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_Name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClass_Name_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_Name_get" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (char *)iCelPropertyClass_Name_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_Tag_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_Tag_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_Tag_set" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClass_Tag_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iCelPropertyClass_Tag_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_Tag_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClass_Tag_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_Tag_get" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (char *)iCelPropertyClass_Tag_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_Entity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClass_Entity_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_Entity_set" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClass_Entity_set" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); iCelPropertyClass_Entity_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_Entity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClass_Entity_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_Entity_get" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iCelEntity *)iCelPropertyClass_Entity_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_SetPropertyLong(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; long arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; long val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClass_SetPropertyLong",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_SetPropertyLong" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_SetPropertyLong" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); ecode3 = SWIG_AsVal_long(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClass_SetPropertyLong" "', argument " "3"" of type '" "long""'"); } arg3 = static_cast< long >(val3); result = (bool)iCelPropertyClass_SetPropertyLong(arg1,arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_SetPropertyFloat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; float arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClass_SetPropertyFloat",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_SetPropertyFloat" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_SetPropertyFloat" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClass_SetPropertyFloat" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); result = (bool)iCelPropertyClass_SetPropertyFloat(arg1,arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_SetPropertyBool(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; bool arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClass_SetPropertyBool",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_SetPropertyBool" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_SetPropertyBool" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClass_SetPropertyBool" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); result = (bool)iCelPropertyClass_SetPropertyBool(arg1,arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_SetPropertyString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; char *arg3 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClass_SetPropertyString",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_SetPropertyString" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_SetPropertyString" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClass_SetPropertyString" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (bool)iCelPropertyClass_SetPropertyString(arg1,arg2,(char const *)arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClass_SetPropertyVector3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; csStringID arg2 ; csVector3 *arg3 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClass_SetPropertyVector3",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClass_SetPropertyVector3" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClass_SetPropertyVector3" "', argument " "2"" of type '" "csStringID""'"); } arg2 = static_cast< csStringID >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClass_SetPropertyVector3" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelPropertyClass_SetPropertyVector3" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); result = (bool)iCelPropertyClass_SetPropertyVector3(arg1,arg2,(csVector3 const &)*arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelPropertyClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelPropertyClass",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelPropertyClass" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelPropertyClass_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelPropertyClass, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_GetCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClassList_GetCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_GetCount" "', argument " "1"" of type '" "iCelPropertyClassList const *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); result = ((iCelPropertyClassList const *)arg1)->GetCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_Get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; size_t arg2 ; iCelPropertyClass *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList_Get",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_Get" "', argument " "1"" of type '" "iCelPropertyClassList const *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassList_Get" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelPropertyClass *)((iCelPropertyClassList const *)arg1)->Get(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_Add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iCelPropertyClass *arg2 = (iCelPropertyClass *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList_Add",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_Add" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassList_Add" "', argument " "2"" of type '" "iCelPropertyClass *""'"); } arg2 = reinterpret_cast< iCelPropertyClass * >(argp2); result = (arg1)->Add(arg2); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_Remove__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iCelPropertyClass *arg2 = (iCelPropertyClass *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList_Remove",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_Remove" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassList_Remove" "', argument " "2"" of type '" "iCelPropertyClass *""'"); } arg2 = reinterpret_cast< iCelPropertyClass * >(argp2); result = (bool)(arg1)->Remove(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_Remove__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; size_t arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList_Remove",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_Remove" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassList_Remove" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (bool)(arg1)->Remove(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_Remove(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassList, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClassList_Remove__SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassList, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelPropertyClassList_Remove__SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelPropertyClassList_Remove'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_RemoveByInterface(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; scfInterfaceID arg2 ; int arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassList_RemoveByInterface",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_RemoveByInterface" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassList_RemoveByInterface" "', argument " "2"" of type '" "scfInterfaceID""'"); } arg2 = static_cast< scfInterfaceID >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClassList_RemoveByInterface" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); result = (bool)(arg1)->RemoveByInterface(arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_RemoveByInterfaceAndTag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; scfInterfaceID arg2 ; int arg3 ; char *arg4 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPropertyClassList_RemoveByInterfaceAndTag",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_RemoveByInterfaceAndTag" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassList_RemoveByInterfaceAndTag" "', argument " "2"" of type '" "scfInterfaceID""'"); } arg2 = static_cast< scfInterfaceID >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClassList_RemoveByInterfaceAndTag" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelPropertyClassList_RemoveByInterfaceAndTag" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; result = (bool)(arg1)->RemoveByInterfaceAndTag(arg2,arg3,(char const *)arg4); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_RemoveAll(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClassList_RemoveAll",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_RemoveAll" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); (arg1)->RemoveAll(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_Find(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iCelPropertyClass *arg2 = (iCelPropertyClass *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList_Find",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_Find" "', argument " "1"" of type '" "iCelPropertyClassList const *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassList_Find" "', argument " "2"" of type '" "iCelPropertyClass *""'"); } arg2 = reinterpret_cast< iCelPropertyClass * >(argp2); result = ((iCelPropertyClassList const *)arg1)->Find(arg2); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_FindByName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; char *arg2 = (char *) 0 ; iCelPropertyClass *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList_FindByName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_FindByName" "', argument " "1"" of type '" "iCelPropertyClassList const *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassList_FindByName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelPropertyClass *)((iCelPropertyClassList const *)arg1)->FindByName((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_FindByNameAndTag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; iCelPropertyClass *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassList_FindByNameAndTag",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_FindByNameAndTag" "', argument " "1"" of type '" "iCelPropertyClassList const *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassList_FindByNameAndTag" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelPropertyClassList_FindByNameAndTag" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (iCelPropertyClass *)((iCelPropertyClassList const *)arg1)->FindByNameAndTag((char const *)arg2,(char const *)arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_FindByInterface(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; scfInterfaceID arg2 ; int arg3 ; iBase *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelPropertyClassList_FindByInterface",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_FindByInterface" "', argument " "1"" of type '" "iCelPropertyClassList const *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassList_FindByInterface" "', argument " "2"" of type '" "scfInterfaceID""'"); } arg2 = static_cast< scfInterfaceID >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClassList_FindByInterface" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); result = (iBase *)((iCelPropertyClassList const *)arg1)->FindByInterface(arg2,arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBase, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_FindByInterfaceAndTag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; scfInterfaceID arg2 ; int arg3 ; char *arg4 = (char *) 0 ; iBase *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; unsigned long val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iCelPropertyClassList_FindByInterfaceAndTag",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_FindByInterfaceAndTag" "', argument " "1"" of type '" "iCelPropertyClassList const *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassList_FindByInterfaceAndTag" "', argument " "2"" of type '" "scfInterfaceID""'"); } arg2 = static_cast< scfInterfaceID >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iCelPropertyClassList_FindByInterfaceAndTag" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iCelPropertyClassList_FindByInterfaceAndTag" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; result = (iBase *)((iCelPropertyClassList const *)arg1)->FindByInterfaceAndTag(arg2,arg3,(char const *)arg4); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBase, 0 | 0 ); if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList___getitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; size_t arg2 ; iCelPropertyClass *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList___getitem__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList___getitem__" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassList___getitem__" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelPropertyClass *)iCelPropertyClassList___getitem____SWIG_0(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList___contains____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iCelPropertyClass *arg2 = (iCelPropertyClass *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList___contains__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList___contains__" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassList___contains__" "', argument " "2"" of type '" "iCelPropertyClass *""'"); } arg2 = reinterpret_cast< iCelPropertyClass * >(argp2); result = (bool)iCelPropertyClassList___contains____SWIG_0(arg1,arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList___delitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; size_t arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList___delitem__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList___delitem__" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelPropertyClassList___delitem__" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (bool)iCelPropertyClassList___delitem__(arg1,arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelPropertyClassList___len__",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList___len__" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); result = (int)iCelPropertyClassList___len__(arg1); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iCelPropertyClass *arg2 = (iCelPropertyClass *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList_append",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList_append" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassList_append" "', argument " "2"" of type '" "iCelPropertyClass *""'"); } arg2 = reinterpret_cast< iCelPropertyClass * >(argp2); iCelPropertyClassList_append(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList___getitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; char *arg2 = (char *) 0 ; iCelPropertyClass *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList___getitem__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList___getitem__" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassList___getitem__" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelPropertyClass *)iCelPropertyClassList___getitem____SWIG_1(arg1,(char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList___getitem__(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassList, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iCelPropertyClassList___getitem____SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassList, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClassList___getitem____SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelPropertyClassList___getitem__'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList___contains____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelPropertyClassList___contains__",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelPropertyClassList___contains__" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelPropertyClassList___contains__" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)iCelPropertyClassList___contains____SWIG_1(arg1,(char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelPropertyClassList___contains__(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassList, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClassList___contains____SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelPropertyClassList, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelPropertyClassList___contains____SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelPropertyClassList___contains__'"); return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelPropertyClassList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelPropertyClassList",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelPropertyClassList" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelPropertyClassList_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelPropertyClassList, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_SetDynamicSystem__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iDynamicSystem *arg2 = (iDynamicSystem *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_SetDynamicSystem",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_SetDynamicSystem" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iDynamicSystem, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_SetDynamicSystem" "', argument " "2"" of type '" "iDynamicSystem *""'"); } arg2 = reinterpret_cast< iDynamicSystem * >(argp2); (arg1)->SetDynamicSystem(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_SetDynamicSystem__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_SetDynamicSystem",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_SetDynamicSystem" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_SetDynamicSystem" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetDynamicSystem((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_SetDynamicSystem(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMechanicsSystem, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iDynamicSystem, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMechanicsSystem_SetDynamicSystem__SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMechanicsSystem, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMechanicsSystem_SetDynamicSystem__SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcMechanicsSystem_SetDynamicSystem'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_GetDynamicSystem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iDynamicSystem *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_GetDynamicSystem",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_GetDynamicSystem" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); result = (iDynamicSystem *)(arg1)->GetDynamicSystem(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iDynamicSystem, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_SetStepTime(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_SetStepTime",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_SetStepTime" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsSystem_SetStepTime" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetStepTime(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_GetStepTime(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_GetStepTime",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_GetStepTime" "', argument " "1"" of type '" "iPcMechanicsSystem const *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); result = (float)((iPcMechanicsSystem const *)arg1)->GetStepTime(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_SetSimulationSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_SetSimulationSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_SetSimulationSpeed" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsSystem_SetSimulationSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetSimulationSpeed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_GetSimulationSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_GetSimulationSpeed",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_GetSimulationSpeed" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); result = (float)(arg1)->GetSimulationSpeed(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_SetGravity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_SetGravity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_SetGravity" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_SetGravity" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsSystem_SetGravity" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetGravity((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_GetGravity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_GetGravity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_GetGravity" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); result = (arg1)->GetGravity(); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_AddForceDuration(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iPcMechanicsObject *arg2 = (iPcMechanicsObject *) 0 ; csVector3 *arg3 = 0 ; bool arg4 ; csVector3 *arg5 = 0 ; float arg6 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; bool val4 ; int ecode4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; float val6 ; int ecode6 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOO:iPcMechanicsSystem_AddForceDuration",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_AddForceDuration" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_AddForceDuration" "', argument " "2"" of type '" "iPcMechanicsObject *""'"); } arg2 = reinterpret_cast< iPcMechanicsObject * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsSystem_AddForceDuration" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsSystem_AddForceDuration" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); ecode4 = SWIG_AsVal_bool(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcMechanicsSystem_AddForceDuration" "', argument " "4"" of type '" "bool""'"); } arg4 = static_cast< bool >(val4); res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcMechanicsSystem_AddForceDuration" "', argument " "5"" of type '" "csVector3 const &""'"); } if (!argp5) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsSystem_AddForceDuration" "', argument " "5"" of type '" "csVector3 const &""'"); } arg5 = reinterpret_cast< csVector3 * >(argp5); ecode6 = SWIG_AsVal_float(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "iPcMechanicsSystem_AddForceDuration" "', argument " "6"" of type '" "float""'"); } arg6 = static_cast< float >(val6); (arg1)->AddForceDuration(arg2,(csVector3 const &)*arg3,arg4,(csVector3 const &)*arg5,arg6); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_AddForceFrame(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iPcMechanicsObject *arg2 = (iPcMechanicsObject *) 0 ; csVector3 *arg3 = 0 ; bool arg4 ; csVector3 *arg5 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; bool val4 ; int ecode4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcMechanicsSystem_AddForceFrame",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_AddForceFrame" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_AddForceFrame" "', argument " "2"" of type '" "iPcMechanicsObject *""'"); } arg2 = reinterpret_cast< iPcMechanicsObject * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsSystem_AddForceFrame" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsSystem_AddForceFrame" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); ecode4 = SWIG_AsVal_bool(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcMechanicsSystem_AddForceFrame" "', argument " "4"" of type '" "bool""'"); } arg4 = static_cast< bool >(val4); res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcMechanicsSystem_AddForceFrame" "', argument " "5"" of type '" "csVector3 const &""'"); } if (!argp5) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsSystem_AddForceFrame" "', argument " "5"" of type '" "csVector3 const &""'"); } arg5 = reinterpret_cast< csVector3 * >(argp5); (arg1)->AddForceFrame(arg2,(csVector3 const &)*arg3,arg4,(csVector3 const &)*arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_AddForceTagged(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iPcMechanicsObject *arg2 = (iPcMechanicsObject *) 0 ; csVector3 *arg3 = 0 ; bool arg4 ; csVector3 *arg5 = 0 ; uint32 arg6 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; bool val4 ; int ecode4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; void *argp6 ; int res6 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOO:iPcMechanicsSystem_AddForceTagged",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_AddForceTagged" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_AddForceTagged" "', argument " "2"" of type '" "iPcMechanicsObject *""'"); } arg2 = reinterpret_cast< iPcMechanicsObject * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsSystem_AddForceTagged" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsSystem_AddForceTagged" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); ecode4 = SWIG_AsVal_bool(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcMechanicsSystem_AddForceTagged" "', argument " "4"" of type '" "bool""'"); } arg4 = static_cast< bool >(val4); res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcMechanicsSystem_AddForceTagged" "', argument " "5"" of type '" "csVector3 const &""'"); } if (!argp5) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsSystem_AddForceTagged" "', argument " "5"" of type '" "csVector3 const &""'"); } arg5 = reinterpret_cast< csVector3 * >(argp5); { res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_uint32_t, 0 | 0); if (!SWIG_IsOK(res6)) { SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "iPcMechanicsSystem_AddForceTagged" "', argument " "6"" of type '" "uint32""'"); } if (!argp6) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsSystem_AddForceTagged" "', argument " "6"" of type '" "uint32""'"); } else { uint32 * temp = reinterpret_cast< uint32 * >(argp6); arg6 = *temp; if (SWIG_IsNewObj(res6)) delete temp; } } (arg1)->AddForceTagged(arg2,(csVector3 const &)*arg3,arg4,(csVector3 const &)*arg5,arg6); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_RemoveForceTagged(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iPcMechanicsObject *arg2 = (iPcMechanicsObject *) 0 ; uint32 arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMechanicsSystem_RemoveForceTagged",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_RemoveForceTagged" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_RemoveForceTagged" "', argument " "2"" of type '" "iPcMechanicsObject *""'"); } arg2 = reinterpret_cast< iPcMechanicsObject * >(argp2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_uint32_t, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsSystem_RemoveForceTagged" "', argument " "3"" of type '" "uint32""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsSystem_RemoveForceTagged" "', argument " "3"" of type '" "uint32""'"); } else { uint32 * temp = reinterpret_cast< uint32 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } (arg1)->RemoveForceTagged(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_ClearForces(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iPcMechanicsObject *arg2 = (iPcMechanicsObject *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_ClearForces",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_ClearForces" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_ClearForces" "', argument " "2"" of type '" "iPcMechanicsObject *""'"); } arg2 = reinterpret_cast< iPcMechanicsObject * >(argp2); (arg1)->ClearForces(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_ClearAllForces(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_ClearAllForces",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_ClearAllForces" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); (arg1)->ClearAllForces(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_CreateBody(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; SwigValueWrapper > result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_CreateBody",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_CreateBody" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); result = (arg1)->CreateBody(); resultobj = SWIG_NewPointerObj((new csPtr(static_cast< const csPtr& >(result))), SWIGTYPE_p_csPtrTiRigidBody_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_RemoveBody(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iRigidBody *arg2 = (iRigidBody *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_RemoveBody",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_RemoveBody" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iRigidBody, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_RemoveBody" "', argument " "2"" of type '" "iRigidBody *""'"); } arg2 = reinterpret_cast< iRigidBody * >(argp2); (arg1)->RemoveBody(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_AddBodyToGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iRigidBody *arg2 = (iRigidBody *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMechanicsSystem_AddBodyToGroup",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_AddBodyToGroup" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iRigidBody, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_AddBodyToGroup" "', argument " "2"" of type '" "iRigidBody *""'"); } arg2 = reinterpret_cast< iRigidBody * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsSystem_AddBodyToGroup" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->AddBodyToGroup(arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_RemoveBodyFromGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iRigidBody *arg2 = (iRigidBody *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMechanicsSystem_RemoveBodyFromGroup",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_RemoveBodyFromGroup" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iRigidBody, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_RemoveBodyFromGroup" "', argument " "2"" of type '" "iRigidBody *""'"); } arg2 = reinterpret_cast< iRigidBody * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsSystem_RemoveBodyFromGroup" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->RemoveBodyFromGroup(arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_CreateJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iRigidBody *arg2 = (iRigidBody *) 0 ; iRigidBody *arg3 = (iRigidBody *) 0 ; iJoint *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMechanicsSystem_CreateJoint",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_CreateJoint" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iRigidBody, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_CreateJoint" "', argument " "2"" of type '" "iRigidBody *""'"); } arg2 = reinterpret_cast< iRigidBody * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iRigidBody, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsSystem_CreateJoint" "', argument " "3"" of type '" "iRigidBody *""'"); } arg3 = reinterpret_cast< iRigidBody * >(argp3); result = (iJoint *)(arg1)->CreateJoint(arg2,arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iJoint, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_RemoveJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iJoint *arg2 = (iJoint *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_RemoveJoint",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_RemoveJoint" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iJoint, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_RemoveJoint" "', argument " "2"" of type '" "iJoint *""'"); } arg2 = reinterpret_cast< iJoint * >(argp2); (arg1)->RemoveJoint(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_DisableStepFast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_DisableStepFast",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_DisableStepFast" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); (arg1)->DisableStepFast(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_EnableStepFast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_EnableStepFast",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_EnableStepFast" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); (arg1)->EnableStepFast(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_EnableQuickStep(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_EnableQuickStep",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_EnableQuickStep" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); (arg1)->EnableQuickStep(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_DynamicSystem_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iDynamicSystem *arg2 = (iDynamicSystem *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_DynamicSystem_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_DynamicSystem_set" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iDynamicSystem, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_DynamicSystem_set" "', argument " "2"" of type '" "iDynamicSystem *""'"); } arg2 = reinterpret_cast< iDynamicSystem * >(argp2); iPcMechanicsSystem_DynamicSystem_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_DynamicSystem_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; iDynamicSystem *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_DynamicSystem_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_DynamicSystem_get" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); result = (iDynamicSystem *)iPcMechanicsSystem_DynamicSystem_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iDynamicSystem, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_StepTime_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_StepTime_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_StepTime_set" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsSystem_StepTime_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcMechanicsSystem_StepTime_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_StepTime_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_StepTime_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_StepTime_get" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); result = (float)iPcMechanicsSystem_StepTime_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_Gravity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; csVector3 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_Gravity_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_Gravity_set" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsSystem_Gravity_set" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsSystem_Gravity_set" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } iPcMechanicsSystem_Gravity_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_Gravity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_Gravity_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_Gravity_get" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); result = iPcMechanicsSystem_Gravity_get(arg1); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_SimulationSpeed_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsSystem_SimulationSpeed_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_SimulationSpeed_set" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsSystem_SimulationSpeed_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcMechanicsSystem_SimulationSpeed_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsSystem_SimulationSpeed_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsSystem_SimulationSpeed_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsSystem_SimulationSpeed_get" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); result = (float)iPcMechanicsSystem_SimulationSpeed_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMechanicsSystem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsSystem *arg1 = (iPcMechanicsSystem *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMechanicsSystem",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsSystem, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMechanicsSystem" "', argument " "1"" of type '" "iPcMechanicsSystem *""'"); } arg1 = reinterpret_cast< iPcMechanicsSystem * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMechanicsSystem_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMechanicsSystem, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcMesh *arg2 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetMesh",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetMesh" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_SetMesh" "', argument " "2"" of type '" "iPcMesh *""'"); } arg2 = reinterpret_cast< iPcMesh * >(argp2); (arg1)->SetMesh(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetMesh",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetMesh" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (iPcMesh *)(arg1)->GetMesh(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetLight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcLight *arg2 = (iPcLight *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetLight",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetLight" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcLight, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_SetLight" "', argument " "2"" of type '" "iPcLight *""'"); } arg2 = reinterpret_cast< iPcLight * >(argp2); (arg1)->SetLight(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetLight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcLight *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetLight",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetLight" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (iPcLight *)(arg1)->GetLight(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcLight, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcCamera *arg2 = (iPcCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetCamera",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetCamera" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_SetCamera" "', argument " "2"" of type '" "iPcCamera *""'"); } arg2 = reinterpret_cast< iPcCamera * >(argp2); (arg1)->SetCamera(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetCamera" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (iPcCamera *)(arg1)->GetCamera(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetMechanicsSystem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcMechanicsSystem *arg2 = (iPcMechanicsSystem *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetMechanicsSystem",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetMechanicsSystem" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_SetMechanicsSystem" "', argument " "2"" of type '" "iPcMechanicsSystem *""'"); } arg2 = reinterpret_cast< iPcMechanicsSystem * >(argp2); (arg1)->SetMechanicsSystem(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetMechanicsSystem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcMechanicsSystem *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetMechanicsSystem",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetMechanicsSystem" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (iPcMechanicsSystem *)(arg1)->GetMechanicsSystem(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetBody(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iRigidBody *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetBody",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetBody" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (iRigidBody *)(arg1)->GetBody(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iRigidBody, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetFriction(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetFriction",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetFriction" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_SetFriction" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetFriction(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetMass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetMass",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetMass" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_SetMass" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetMass(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetElasticity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetElasticity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetElasticity" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_SetElasticity" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetElasticity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetDensity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetDensity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetDensity" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_SetDensity" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetDensity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetSoftness(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetSoftness",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetSoftness" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_SetSoftness" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetSoftness(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetLift(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetLift",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetLift" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_SetLift" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_SetLift" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetLift((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetDrag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetDrag",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetDrag" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_SetDrag" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetDrag(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetFriction(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetFriction",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetFriction" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)(arg1)->GetFriction(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetMass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetMass",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetMass" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)(arg1)->GetMass(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetElasticity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetElasticity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetElasticity" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)(arg1)->GetElasticity(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetDensity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetDensity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetDensity" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)(arg1)->GetDensity(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetSoftness(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetSoftness",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetSoftness" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)(arg1)->GetSoftness(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetLift(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetLift",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetLift" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); { csVector3 const &_result_ref = (arg1)->GetLift(); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetDrag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetDrag",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetDrag" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)(arg1)->GetDrag(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetLinearVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetLinearVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetLinearVelocity" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_SetLinearVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_SetLinearVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetLinearVelocity((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetAngularVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetAngularVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetAngularVelocity" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_SetAngularVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_SetAngularVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetAngularVelocity((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetLinearVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetLinearVelocity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetLinearVelocity" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (arg1)->GetLinearVelocity(); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_GetAngularVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_GetAngularVelocity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_GetAngularVelocity" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (arg1)->GetAngularVelocity(); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_MakeStatic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_MakeStatic",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_MakeStatic" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_MakeStatic" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->MakeStatic(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_IsStatic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_IsStatic",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_IsStatic" "', argument " "1"" of type '" "iPcMechanicsObject const *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (bool)((iPcMechanicsObject const *)arg1)->IsStatic(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_SetCollisionCallbackEnabled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_SetCollisionCallbackEnabled",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_SetCollisionCallbackEnabled" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_SetCollisionCallbackEnabled" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetCollisionCallbackEnabled(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_IsCollisionCallbackEnabled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_IsCollisionCallbackEnabled",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_IsCollisionCallbackEnabled" "', argument " "1"" of type '" "iPcMechanicsObject const *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (bool)((iPcMechanicsObject const *)arg1)->IsCollisionCallbackEnabled(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderBoundingSphere__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_AttachColliderBoundingSphere",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AttachColliderBoundingSphere" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_AttachColliderBoundingSphere" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->AttachColliderBoundingSphere(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderBoundingSphere__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_AttachColliderBoundingSphere",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AttachColliderBoundingSphere" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); (arg1)->AttachColliderBoundingSphere(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderBoundingSphere(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMechanicsObject, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMechanicsObject_AttachColliderBoundingSphere__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMechanicsObject, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcMechanicsObject_AttachColliderBoundingSphere__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcMechanicsObject_AttachColliderBoundingSphere'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderSphere(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; csVector3 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMechanicsObject_AttachColliderSphere",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AttachColliderSphere" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_AttachColliderSphere" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsObject_AttachColliderSphere" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AttachColliderSphere" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); (arg1)->AttachColliderSphere(arg2,(csVector3 const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderCylinder(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; float arg3 ; csOrthoTransform *arg4 = 0 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcMechanicsObject_AttachColliderCylinder",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AttachColliderCylinder" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_AttachColliderCylinder" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMechanicsObject_AttachColliderCylinder" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csOrthoTransform, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcMechanicsObject_AttachColliderCylinder" "', argument " "4"" of type '" "csOrthoTransform const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AttachColliderCylinder" "', argument " "4"" of type '" "csOrthoTransform const &""'"); } arg4 = reinterpret_cast< csOrthoTransform * >(argp4); (arg1)->AttachColliderCylinder(arg2,arg3,(csOrthoTransform const &)*arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderBoundingBox__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_AttachColliderBoundingBox",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AttachColliderBoundingBox" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_AttachColliderBoundingBox" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AttachColliderBoundingBox" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->AttachColliderBoundingBox((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderBoundingBox__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_AttachColliderBoundingBox",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AttachColliderBoundingBox" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); (arg1)->AttachColliderBoundingBox(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderBoundingBox(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMechanicsObject, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMechanicsObject_AttachColliderBoundingBox__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMechanicsObject, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMechanicsObject_AttachColliderBoundingBox__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcMechanicsObject_AttachColliderBoundingBox'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderBox(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *arg2 = 0 ; csOrthoTransform *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMechanicsObject_AttachColliderBox",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AttachColliderBox" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_AttachColliderBox" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AttachColliderBox" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csOrthoTransform, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsObject_AttachColliderBox" "', argument " "3"" of type '" "csOrthoTransform const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AttachColliderBox" "', argument " "3"" of type '" "csOrthoTransform const &""'"); } arg3 = reinterpret_cast< csOrthoTransform * >(argp3); (arg1)->AttachColliderBox((csVector3 const &)*arg2,(csOrthoTransform const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderPlane(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csPlane3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_AttachColliderPlane",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AttachColliderPlane" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csPlane3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_AttachColliderPlane" "', argument " "2"" of type '" "csPlane3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AttachColliderPlane" "', argument " "2"" of type '" "csPlane3 const &""'"); } arg2 = reinterpret_cast< csPlane3 * >(argp2); (arg1)->AttachColliderPlane((csPlane3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AttachColliderMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_AttachColliderMesh",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AttachColliderMesh" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); (arg1)->AttachColliderMesh(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AddForceOnce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *arg2 = 0 ; bool arg3 ; csVector3 *arg4 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcMechanicsObject_AddForceOnce",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AddForceOnce" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_AddForceOnce" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AddForceOnce" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMechanicsObject_AddForceOnce" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcMechanicsObject_AddForceOnce" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AddForceOnce" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); (arg1)->AddForceOnce((csVector3 const &)*arg2,arg3,(csVector3 const &)*arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AddForceDuration(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *arg2 = 0 ; bool arg3 ; csVector3 *arg4 = 0 ; float arg5 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; float val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcMechanicsObject_AddForceDuration",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AddForceDuration" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_AddForceDuration" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AddForceDuration" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMechanicsObject_AddForceDuration" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcMechanicsObject_AddForceDuration" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AddForceDuration" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcMechanicsObject_AddForceDuration" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); (arg1)->AddForceDuration((csVector3 const &)*arg2,arg3,(csVector3 const &)*arg4,arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AddForceFrame(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *arg2 = 0 ; bool arg3 ; csVector3 *arg4 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcMechanicsObject_AddForceFrame",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AddForceFrame" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_AddForceFrame" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AddForceFrame" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMechanicsObject_AddForceFrame" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcMechanicsObject_AddForceFrame" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AddForceFrame" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); (arg1)->AddForceFrame((csVector3 const &)*arg2,arg3,(csVector3 const &)*arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AddForceTagged(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *arg2 = 0 ; bool arg3 ; csVector3 *arg4 = 0 ; uint32 result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcMechanicsObject_AddForceTagged",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AddForceTagged" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_AddForceTagged" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AddForceTagged" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMechanicsObject_AddForceTagged" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcMechanicsObject_AddForceTagged" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AddForceTagged" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); result = (arg1)->AddForceTagged((csVector3 const &)*arg2,arg3,(csVector3 const &)*arg4); resultobj = SWIG_NewPointerObj((new uint32(static_cast< const uint32& >(result))), SWIGTYPE_p_uint32_t, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_RemoveForceTagged(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; uint32 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_RemoveForceTagged",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_RemoveForceTagged" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint32_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_RemoveForceTagged" "', argument " "2"" of type '" "uint32""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_RemoveForceTagged" "', argument " "2"" of type '" "uint32""'"); } else { uint32 * temp = reinterpret_cast< uint32 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } (arg1)->RemoveForceTagged(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_ClearForces(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_ClearForces",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_ClearForces" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); (arg1)->ClearForces(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AddToGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_AddToGroup",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AddToGroup" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_AddToGroup" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->AddToGroup((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_RemoveFromGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_RemoveFromGroup",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_RemoveFromGroup" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_RemoveFromGroup" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->RemoveFromGroup((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_CreateJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcMechanicsObject *arg2 = (iPcMechanicsObject *) 0 ; iJoint *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_CreateJoint",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_CreateJoint" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_CreateJoint" "', argument " "2"" of type '" "iPcMechanicsObject *""'"); } arg2 = reinterpret_cast< iPcMechanicsObject * >(argp2); result = (iJoint *)(arg1)->CreateJoint(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iJoint, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_LocalToWorld(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 arg2 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_LocalToWorld",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_LocalToWorld" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_LocalToWorld" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_LocalToWorld" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } result = (arg1)->LocalToWorld(arg2); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_WorldToLocal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 arg2 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_WorldToLocal",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_WorldToLocal" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_WorldToLocal" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_WorldToLocal" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } result = (arg1)->WorldToLocal(arg2); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Mesh_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcMesh *arg2 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Mesh_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Mesh_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_Mesh_set" "', argument " "2"" of type '" "iPcMesh *""'"); } arg2 = reinterpret_cast< iPcMesh * >(argp2); iPcMechanicsObject_Mesh_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Mesh_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Mesh_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Mesh_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (iPcMesh *)iPcMechanicsObject_Mesh_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Light_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcLight *arg2 = (iPcLight *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Light_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Light_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcLight, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_Light_set" "', argument " "2"" of type '" "iPcLight *""'"); } arg2 = reinterpret_cast< iPcLight * >(argp2); iPcMechanicsObject_Light_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Light_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcLight *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Light_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Light_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (iPcLight *)iPcMechanicsObject_Light_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcLight, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Camera_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcCamera *arg2 = (iPcCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Camera_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Camera_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_Camera_set" "', argument " "2"" of type '" "iPcCamera *""'"); } arg2 = reinterpret_cast< iPcCamera * >(argp2); iPcMechanicsObject_Camera_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Camera_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Camera_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Camera_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (iPcCamera *)iPcMechanicsObject_Camera_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_MechanicsSystem_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcMechanicsSystem *arg2 = (iPcMechanicsSystem *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_MechanicsSystem_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_MechanicsSystem_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_MechanicsSystem_set" "', argument " "2"" of type '" "iPcMechanicsSystem *""'"); } arg2 = reinterpret_cast< iPcMechanicsSystem * >(argp2); iPcMechanicsObject_MechanicsSystem_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_MechanicsSystem_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iPcMechanicsSystem *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_MechanicsSystem_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_MechanicsSystem_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (iPcMechanicsSystem *)iPcMechanicsObject_MechanicsSystem_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Body_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; iRigidBody *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Body_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Body_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (iRigidBody *)iPcMechanicsObject_Body_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iRigidBody, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Friction_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Friction_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Friction_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_Friction_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcMechanicsObject_Friction_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Friction_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Friction_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Friction_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)iPcMechanicsObject_Friction_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Mass_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Mass_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Mass_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_Mass_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcMechanicsObject_Mass_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Mass_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Mass_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Mass_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)iPcMechanicsObject_Mass_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Elasticity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Elasticity_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Elasticity_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_Elasticity_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcMechanicsObject_Elasticity_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Elasticity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Elasticity_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Elasticity_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)iPcMechanicsObject_Elasticity_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Density_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Density_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Density_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_Density_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcMechanicsObject_Density_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Density_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Density_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Density_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)iPcMechanicsObject_Density_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Softness_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Softness_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Softness_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_Softness_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcMechanicsObject_Softness_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Softness_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Softness_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Softness_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)iPcMechanicsObject_Softness_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Lift_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Lift_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Lift_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_Lift_set" "', argument " "2"" of type '" "csVector3 &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_Lift_set" "', argument " "2"" of type '" "csVector3 &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); iPcMechanicsObject_Lift_set(arg1,*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Lift_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Lift_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Lift_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); { csVector3 &_result_ref = iPcMechanicsObject_Lift_get(arg1); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Drag_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Drag_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Drag_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_Drag_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcMechanicsObject_Drag_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Drag_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Drag_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Drag_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (float)iPcMechanicsObject_Drag_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_LinearVelocity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_LinearVelocity_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_LinearVelocity_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_LinearVelocity_set" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_LinearVelocity_set" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } iPcMechanicsObject_LinearVelocity_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_LinearVelocity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_LinearVelocity_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_LinearVelocity_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = iPcMechanicsObject_LinearVelocity_get(arg1); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AngularVelocity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_AngularVelocity_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AngularVelocity_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsObject_AngularVelocity_set" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsObject_AngularVelocity_set" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } iPcMechanicsObject_AngularVelocity_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_AngularVelocity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_AngularVelocity_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_AngularVelocity_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = iPcMechanicsObject_AngularVelocity_get(arg1); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Static_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_Static_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Static_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_Static_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcMechanicsObject_Static_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_Static_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_Static_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_Static_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (bool)iPcMechanicsObject_Static_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_CollisionCallbackEnabled_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsObject_CollisionCallbackEnabled_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_CollisionCallbackEnabled_set" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsObject_CollisionCallbackEnabled_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcMechanicsObject_CollisionCallbackEnabled_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsObject_CollisionCallbackEnabled_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsObject_CollisionCallbackEnabled_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsObject_CollisionCallbackEnabled_get" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); result = (bool)iPcMechanicsObject_CollisionCallbackEnabled_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMechanicsObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsObject *arg1 = (iPcMechanicsObject *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMechanicsObject",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsObject, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMechanicsObject" "', argument " "1"" of type '" "iPcMechanicsObject *""'"); } arg1 = reinterpret_cast< iPcMechanicsObject * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMechanicsObject_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMechanicsObject, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcMechanicsJoint_GetJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsJoint *arg1 = (iPcMechanicsJoint *) 0 ; iJoint *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsJoint_GetJoint",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsJoint, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsJoint_GetJoint" "', argument " "1"" of type '" "iPcMechanicsJoint *""'"); } arg1 = reinterpret_cast< iPcMechanicsJoint * >(argp1); result = (iJoint *)(arg1)->GetJoint(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iJoint, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsJoint_Joint_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsJoint *arg1 = (iPcMechanicsJoint *) 0 ; iJoint *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsJoint_Joint_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsJoint, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsJoint_Joint_get" "', argument " "1"" of type '" "iPcMechanicsJoint *""'"); } arg1 = reinterpret_cast< iPcMechanicsJoint * >(argp1); result = (iJoint *)iPcMechanicsJoint_Joint_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iJoint, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMechanicsJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsJoint *arg1 = (iPcMechanicsJoint *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMechanicsJoint",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsJoint, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMechanicsJoint" "', argument " "1"" of type '" "iPcMechanicsJoint *""'"); } arg1 = reinterpret_cast< iPcMechanicsJoint * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMechanicsJoint_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMechanicsJoint, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateMechanicsSystem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsSystem *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateMechanicsSystem",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateMechanicsSystem" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateMechanicsSystem" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsSystem *)celCreateMechanicsSystem(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetMechanicsSystem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsSystem *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetMechanicsSystem",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetMechanicsSystem" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetMechanicsSystem" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsSystem *)celGetSetMechanicsSystem(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetMechanicsSystem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcMechanicsSystem *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetMechanicsSystem",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetMechanicsSystem" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcMechanicsSystem *)celGetMechanicsSystem(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcMechanicsSystem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcMechanicsSystem *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcMechanicsSystem",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcMechanicsSystem" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcMechanicsSystem *)scfQuery_iPcMechanicsSystem(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQueryPC_iPcMechanicsSystem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iPcMechanicsSystem *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQueryPC_iPcMechanicsSystem",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQueryPC_iPcMechanicsSystem" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); result = (iPcMechanicsSystem *)scfQueryPC_iPcMechanicsSystem(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsSystem, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celCreateMechanicsObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateMechanicsObject",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateMechanicsObject" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateMechanicsObject" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsObject *)celCreateMechanicsObject(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetMechanicsObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetMechanicsObject",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetMechanicsObject" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetMechanicsObject" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsObject *)celGetSetMechanicsObject(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetMechanicsObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcMechanicsObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetMechanicsObject",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetMechanicsObject" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcMechanicsObject *)celGetMechanicsObject(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcMechanicsObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcMechanicsObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcMechanicsObject",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcMechanicsObject" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcMechanicsObject *)scfQuery_iPcMechanicsObject(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQueryPC_iPcMechanicsObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iPcMechanicsObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQueryPC_iPcMechanicsObject",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQueryPC_iPcMechanicsObject" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); result = (iPcMechanicsObject *)scfQueryPC_iPcMechanicsObject(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQueryPC_iPcMechanicsJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iPcMechanicsJoint *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQueryPC_iPcMechanicsJoint",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQueryPC_iPcMechanicsJoint" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); result = (iPcMechanicsJoint *)scfQueryPC_iPcMechanicsJoint(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsJoint, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celCreateMechanicsJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsJoint *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateMechanicsJoint",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateMechanicsJoint" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateMechanicsJoint" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsJoint *)celCreateMechanicsJoint(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsJoint, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetMechanicsJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsJoint *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetMechanicsJoint",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetMechanicsJoint" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetMechanicsJoint" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsJoint *)celGetSetMechanicsJoint(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsJoint, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetMechanicsJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcMechanicsJoint *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetMechanicsJoint",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetMechanicsJoint" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcMechanicsJoint *)celGetMechanicsJoint(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsJoint, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcMechanicsJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcMechanicsJoint *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcMechanicsJoint",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcMechanicsJoint" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcMechanicsJoint *)scfQuery_iPcMechanicsJoint(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsJoint, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_SetMechanicsObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; iPcMechanicsObject *arg2 = (iPcMechanicsObject *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThruster_SetMechanicsObject",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_SetMechanicsObject" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThruster_SetMechanicsObject" "', argument " "2"" of type '" "iPcMechanicsObject *""'"); } arg2 = reinterpret_cast< iPcMechanicsObject * >(argp2); (arg1)->SetMechanicsObject(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_GetMechanicsObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; iPcMechanicsObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThruster_GetMechanicsObject",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_GetMechanicsObject" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); result = (iPcMechanicsObject *)(arg1)->GetMechanicsObject(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_SetPosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThruster_SetPosition",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_SetPosition" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThruster_SetPosition" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsThruster_SetPosition" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetPosition((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_GetPosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThruster_GetPosition",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_GetPosition" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); { csVector3 const &_result_ref = (arg1)->GetPosition(); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_SetOrientation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThruster_SetOrientation",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_SetOrientation" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThruster_SetOrientation" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsThruster_SetOrientation" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetOrientation((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_GetOrientation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThruster_GetOrientation",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_GetOrientation" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); { csVector3 const &_result_ref = (arg1)->GetOrientation(); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_SetMaxThrust(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThruster_SetMaxThrust",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_SetMaxThrust" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsThruster_SetMaxThrust" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetMaxThrust(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_GetMaxThrust(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThruster_GetMaxThrust",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_GetMaxThrust" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); result = (float)(arg1)->GetMaxThrust(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_GetThrustForce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; float arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThruster_GetThrustForce",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_GetThrustForce" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsThruster_GetThrustForce" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); result = (float)(arg1)->GetThrustForce(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_AvailableThrust(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThruster_AvailableThrust",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_AvailableThrust" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); result = (float)(arg1)->AvailableThrust(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_ThrustChange(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThruster_ThrustChange",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_ThrustChange" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsThruster_ThrustChange" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->ThrustChange(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_MechanicsObject_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; iPcMechanicsObject *arg2 = (iPcMechanicsObject *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThruster_MechanicsObject_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_MechanicsObject_set" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThruster_MechanicsObject_set" "', argument " "2"" of type '" "iPcMechanicsObject *""'"); } arg2 = reinterpret_cast< iPcMechanicsObject * >(argp2); iPcMechanicsThruster_MechanicsObject_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_MechanicsObject_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; iPcMechanicsObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThruster_MechanicsObject_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_MechanicsObject_get" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); result = (iPcMechanicsObject *)iPcMechanicsThruster_MechanicsObject_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_Position_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThruster_Position_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_Position_set" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThruster_Position_set" "', argument " "2"" of type '" "csVector3 &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsThruster_Position_set" "', argument " "2"" of type '" "csVector3 &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); iPcMechanicsThruster_Position_set(arg1,*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_Position_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThruster_Position_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_Position_get" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); { csVector3 &_result_ref = iPcMechanicsThruster_Position_get(arg1); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_Orientation_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThruster_Orientation_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_Orientation_set" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThruster_Orientation_set" "', argument " "2"" of type '" "csVector3 &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsThruster_Orientation_set" "', argument " "2"" of type '" "csVector3 &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); iPcMechanicsThruster_Orientation_set(arg1,*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_Orientation_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThruster_Orientation_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_Orientation_get" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); { csVector3 &_result_ref = iPcMechanicsThruster_Orientation_get(arg1); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThruster_MaxThrust_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThruster_MaxThrust_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThruster_MaxThrust_get" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); result = (float)iPcMechanicsThruster_MaxThrust_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMechanicsThruster(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThruster *arg1 = (iPcMechanicsThruster *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMechanicsThruster",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThruster, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMechanicsThruster" "', argument " "1"" of type '" "iPcMechanicsThruster *""'"); } arg1 = reinterpret_cast< iPcMechanicsThruster * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMechanicsThruster_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMechanicsThruster, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcMechanicsBalancedGroup_SetType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; celAxisType arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsBalancedGroup_SetType",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsBalancedGroup_SetType" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsBalancedGroup_SetType" "', argument " "2"" of type '" "celAxisType""'"); } arg2 = static_cast< celAxisType >(val2); (arg1)->SetType(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsBalancedGroup_GetType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; celAxisType result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsBalancedGroup_GetType",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsBalancedGroup_GetType" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); result = (celAxisType)(arg1)->GetType(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsBalancedGroup_AddThruster(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; iPcMechanicsThruster *arg2 = (iPcMechanicsThruster *) 0 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMechanicsBalancedGroup_AddThruster",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsBalancedGroup_AddThruster" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsBalancedGroup_AddThruster" "', argument " "2"" of type '" "iPcMechanicsThruster *""'"); } arg2 = reinterpret_cast< iPcMechanicsThruster * >(argp2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMechanicsBalancedGroup_AddThruster" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->AddThruster(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsBalancedGroup_RemoveThruster(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsBalancedGroup_RemoveThruster",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsBalancedGroup_RemoveThruster" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsBalancedGroup_RemoveThruster" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->RemoveThruster((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsBalancedGroup_GetThruster(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; char *arg2 = (char *) 0 ; iPcMechanicsThruster *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsBalancedGroup_GetThruster",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsBalancedGroup_GetThruster" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsBalancedGroup_GetThruster" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iPcMechanicsThruster *)(arg1)->GetThruster((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsBalancedGroup_AvailableThrust(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsBalancedGroup_AvailableThrust",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsBalancedGroup_AvailableThrust" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); result = (float)(arg1)->AvailableThrust(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsBalancedGroup_AvailableThrustForce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsBalancedGroup_AvailableThrustForce",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsBalancedGroup_AvailableThrustForce" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); result = (float)(arg1)->AvailableThrustForce(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsBalancedGroup_ChangeThrust(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsBalancedGroup_ChangeThrust",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsBalancedGroup_ChangeThrust" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsBalancedGroup_ChangeThrust" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->ChangeThrust(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsBalancedGroup_Type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; celAxisType arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsBalancedGroup_Type_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsBalancedGroup_Type_set" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsBalancedGroup_Type_set" "', argument " "2"" of type '" "celAxisType""'"); } arg2 = static_cast< celAxisType >(val2); iPcMechanicsBalancedGroup_Type_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsBalancedGroup_Type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; celAxisType result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsBalancedGroup_Type_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsBalancedGroup_Type_get" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); result = (celAxisType)iPcMechanicsBalancedGroup_Type_get(arg1); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMechanicsBalancedGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsBalancedGroup *arg1 = (iPcMechanicsBalancedGroup *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMechanicsBalancedGroup",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsBalancedGroup, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMechanicsBalancedGroup" "', argument " "1"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg1 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMechanicsBalancedGroup_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMechanicsBalancedGroup, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_SetMechanicsObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; iPcMechanicsObject *arg2 = (iPcMechanicsObject *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThrusterController_SetMechanicsObject",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_SetMechanicsObject" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_SetMechanicsObject" "', argument " "2"" of type '" "iPcMechanicsObject *""'"); } arg2 = reinterpret_cast< iPcMechanicsObject * >(argp2); (arg1)->SetMechanicsObject(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_GetMechanicsObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; iPcMechanicsObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThrusterController_GetMechanicsObject",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_GetMechanicsObject" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); result = (iPcMechanicsObject *)(arg1)->GetMechanicsObject(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_AddAxis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; char *arg2 = (char *) 0 ; celAxisType arg3 ; csVector3 arg4 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int val3 ; int ecode3 = 0 ; void *argp4 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcMechanicsThrusterController_AddAxis",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_AddAxis" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_AddAxis" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMechanicsThrusterController_AddAxis" "', argument " "3"" of type '" "celAxisType""'"); } arg3 = static_cast< celAxisType >(val3); { res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcMechanicsThrusterController_AddAxis" "', argument " "4"" of type '" "csVector3 const""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsThrusterController_AddAxis" "', argument " "4"" of type '" "csVector3 const""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp4); arg4 = *temp; if (SWIG_IsNewObj(res4)) delete temp; } } (arg1)->AddAxis((char const *)arg2,arg3,arg4); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_GetAxis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; char *arg2 = (char *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThrusterController_GetAxis",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_GetAxis" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_GetAxis" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (arg1)->GetAxis((char const *)arg2); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_GetAxisType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; char *arg2 = (char *) 0 ; celAxisType result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThrusterController_GetAxisType",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_GetAxisType" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_GetAxisType" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (celAxisType)(arg1)->GetAxisType((char const *)arg2); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_GetAxisVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; char *arg2 = (char *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThrusterController_GetAxisVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_GetAxisVelocity" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_GetAxisVelocity" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (float)(arg1)->GetAxisVelocity((char const *)arg2); resultobj = SWIG_From_float(static_cast< float >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_GetAxisMaxForce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; char *arg2 = (char *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThrusterController_GetAxisMaxForce",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_GetAxisMaxForce" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_GetAxisMaxForce" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (float)(arg1)->GetAxisMaxForce((char const *)arg2); resultobj = SWIG_From_float(static_cast< float >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_GetAxisMaxThrust(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; char *arg2 = (char *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThrusterController_GetAxisMaxThrust",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_GetAxisMaxThrust" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_GetAxisMaxThrust" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (float)(arg1)->GetAxisMaxThrust((char const *)arg2); resultobj = SWIG_From_float(static_cast< float >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_AddBalancedGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; iPcMechanicsBalancedGroup *arg2 = (iPcMechanicsBalancedGroup *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMechanicsThrusterController_AddBalancedGroup",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_AddBalancedGroup" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_AddBalancedGroup" "', argument " "2"" of type '" "iPcMechanicsBalancedGroup *""'"); } arg2 = reinterpret_cast< iPcMechanicsBalancedGroup * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsThrusterController_AddBalancedGroup" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->AddBalancedGroup(arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_RemoveBalancedGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMechanicsThrusterController_RemoveBalancedGroup",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_RemoveBalancedGroup" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_RemoveBalancedGroup" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsThrusterController_RemoveBalancedGroup" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->RemoveBalancedGroup((char const *)arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_ApplyThrust(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; float arg2 ; char *arg3 = (char *) 0 ; uint32 *arg4 = 0 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcMechanicsThrusterController_ApplyThrust",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_ApplyThrust" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMechanicsThrusterController_ApplyThrust" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMechanicsThrusterController_ApplyThrust" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_uint32_t, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcMechanicsThrusterController_ApplyThrust" "', argument " "4"" of type '" "uint32 &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsThrusterController_ApplyThrust" "', argument " "4"" of type '" "uint32 &""'"); } arg4 = reinterpret_cast< uint32 * >(argp4); (arg1)->ApplyThrust(arg2,(char const *)arg3,*arg4); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_CancelThrust(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; uint32 arg2 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThrusterController_CancelThrust",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_CancelThrust" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint32_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_CancelThrust" "', argument " "2"" of type '" "uint32""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMechanicsThrusterController_CancelThrust" "', argument " "2"" of type '" "uint32""'"); } else { uint32 * temp = reinterpret_cast< uint32 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } (arg1)->CancelThrust(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_MechanicsObject_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; iPcMechanicsObject *arg2 = (iPcMechanicsObject *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMechanicsThrusterController_MechanicsObject_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_MechanicsObject_set" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMechanicsThrusterController_MechanicsObject_set" "', argument " "2"" of type '" "iPcMechanicsObject *""'"); } arg2 = reinterpret_cast< iPcMechanicsObject * >(argp2); iPcMechanicsThrusterController_MechanicsObject_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMechanicsThrusterController_MechanicsObject_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; iPcMechanicsObject *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMechanicsThrusterController_MechanicsObject_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMechanicsThrusterController_MechanicsObject_get" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); result = (iPcMechanicsObject *)iPcMechanicsThrusterController_MechanicsObject_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsObject, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMechanicsThrusterController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMechanicsThrusterController *arg1 = (iPcMechanicsThrusterController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMechanicsThrusterController",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMechanicsThrusterController, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMechanicsThrusterController" "', argument " "1"" of type '" "iPcMechanicsThrusterController *""'"); } arg1 = reinterpret_cast< iPcMechanicsThrusterController * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMechanicsThrusterController_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMechanicsThrusterController, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateMechanicsThrusterReactionary(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsThruster *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateMechanicsThrusterReactionary",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateMechanicsThrusterReactionary" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateMechanicsThrusterReactionary" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsThruster *)celCreateMechanicsThrusterReactionary(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetMechanicsThrusterReactionary(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsThruster *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetMechanicsThrusterReactionary",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetMechanicsThrusterReactionary" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetMechanicsThrusterReactionary" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsThruster *)celGetSetMechanicsThrusterReactionary(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetMechanicsThrusterReactionary(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcMechanicsThruster *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetMechanicsThrusterReactionary",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetMechanicsThrusterReactionary" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcMechanicsThruster *)celGetMechanicsThrusterReactionary(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcMechanicsThruster(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcMechanicsThruster *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcMechanicsThruster",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcMechanicsThruster" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcMechanicsThruster *)scfQuery_iPcMechanicsThruster(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQueryPC_iPcMechanicsThruster(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iPcMechanicsThruster *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQueryPC_iPcMechanicsThruster",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQueryPC_iPcMechanicsThruster" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); result = (iPcMechanicsThruster *)scfQueryPC_iPcMechanicsThruster(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThruster, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celCreateMechanicsBalancedGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsBalancedGroup *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateMechanicsBalancedGroup",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateMechanicsBalancedGroup" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateMechanicsBalancedGroup" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsBalancedGroup *)celCreateMechanicsBalancedGroup(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetMechanicsBalancedGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsBalancedGroup *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetMechanicsBalancedGroup",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetMechanicsBalancedGroup" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetMechanicsBalancedGroup" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsBalancedGroup *)celGetSetMechanicsBalancedGroup(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetMechanicsBalancedGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcMechanicsBalancedGroup *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetMechanicsBalancedGroup",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetMechanicsBalancedGroup" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcMechanicsBalancedGroup *)celGetMechanicsBalancedGroup(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcMechanicsBalancedGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcMechanicsBalancedGroup *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcMechanicsBalancedGroup",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcMechanicsBalancedGroup" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcMechanicsBalancedGroup *)scfQuery_iPcMechanicsBalancedGroup(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQueryPC_iPcMechanicsBalancedGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iPcMechanicsBalancedGroup *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQueryPC_iPcMechanicsBalancedGroup",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQueryPC_iPcMechanicsBalancedGroup" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); result = (iPcMechanicsBalancedGroup *)scfQueryPC_iPcMechanicsBalancedGroup(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsBalancedGroup, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celCreateMechanicsThrusterController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsThrusterController *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateMechanicsThrusterController",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateMechanicsThrusterController" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateMechanicsThrusterController" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsThrusterController *)celCreateMechanicsThrusterController(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetMechanicsThrusterController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMechanicsThrusterController *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetMechanicsThrusterController",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetMechanicsThrusterController" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetMechanicsThrusterController" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMechanicsThrusterController *)celGetSetMechanicsThrusterController(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetMechanicsThrusterController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcMechanicsThrusterController *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetMechanicsThrusterController",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetMechanicsThrusterController" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcMechanicsThrusterController *)celGetMechanicsThrusterController(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcMechanicsThrusterController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcMechanicsThrusterController *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcMechanicsThrusterController",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcMechanicsThrusterController" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcMechanicsThrusterController *)scfQuery_iPcMechanicsThrusterController(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQueryPC_iPcMechanicsThrusterController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iPcMechanicsThrusterController *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQueryPC_iPcMechanicsThrusterController",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQueryPC_iPcMechanicsThrusterController" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); result = (iPcMechanicsThrusterController *)scfQueryPC_iPcMechanicsThrusterController(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMechanicsThrusterController, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardLayer_GetOffset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardLayer *arg1 = (iBillboardLayer *) 0 ; int *arg2 = 0 ; int *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; int temp2 ; int res2 = SWIG_TMPOBJ ; int temp3 ; int res3 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; arg2 = &temp2; arg3 = &temp3; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardLayer_GetOffset",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardLayer_GetOffset" "', argument " "1"" of type '" "iBillboardLayer const *""'"); } arg1 = reinterpret_cast< iBillboardLayer * >(argp1); ((iBillboardLayer const *)arg1)->GetOffset(*arg2,*arg3); resultobj = SWIG_Py_Void(); if (SWIG_IsTmpObj(res2)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg2))); } else { int new_flags = SWIG_IsNewObj(res2) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg2), SWIGTYPE_p_int, new_flags)); } if (SWIG_IsTmpObj(res3)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg3))); } else { int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_int, new_flags)); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardLayer_SetOffset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardLayer *arg1 = (iBillboardLayer *) 0 ; int arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboardLayer_SetOffset",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardLayer_SetOffset" "', argument " "1"" of type '" "iBillboardLayer *""'"); } arg1 = reinterpret_cast< iBillboardLayer * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboardLayer_SetOffset" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboardLayer_SetOffset" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->SetOffset(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardLayer_Move(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardLayer *arg1 = (iBillboardLayer *) 0 ; int arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboardLayer_Move",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardLayer_Move" "', argument " "1"" of type '" "iBillboardLayer *""'"); } arg1 = reinterpret_cast< iBillboardLayer * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboardLayer_Move" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboardLayer_Move" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->Move(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardLayer_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardLayer *arg1 = (iBillboardLayer *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardLayer_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardLayer_GetName" "', argument " "1"" of type '" "iBillboardLayer const *""'"); } arg1 = reinterpret_cast< iBillboardLayer * >(argp1); result = (char *)((iBillboardLayer const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iBillboardLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardLayer *arg1 = (iBillboardLayer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iBillboardLayer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardLayer, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iBillboardLayer" "', argument " "1"" of type '" "iBillboardLayer *""'"); } arg1 = reinterpret_cast< iBillboardLayer * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iBillboardLayer_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iBillboardLayer, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iBillboardEventHandler_Select(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardEventHandler *arg1 = (iBillboardEventHandler *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; int arg3 ; int arg4 ; int arg5 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iBillboardEventHandler_Select",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardEventHandler, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardEventHandler_Select" "', argument " "1"" of type '" "iBillboardEventHandler *""'"); } arg1 = reinterpret_cast< iBillboardEventHandler * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardEventHandler_Select" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboardEventHandler_Select" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iBillboardEventHandler_Select" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iBillboardEventHandler_Select" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); (arg1)->Select(arg2,arg3,arg4,arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardEventHandler_MouseMove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardEventHandler *arg1 = (iBillboardEventHandler *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; int arg3 ; int arg4 ; int arg5 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iBillboardEventHandler_MouseMove",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardEventHandler, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardEventHandler_MouseMove" "', argument " "1"" of type '" "iBillboardEventHandler *""'"); } arg1 = reinterpret_cast< iBillboardEventHandler * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardEventHandler_MouseMove" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboardEventHandler_MouseMove" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iBillboardEventHandler_MouseMove" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iBillboardEventHandler_MouseMove" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); (arg1)->MouseMove(arg2,arg3,arg4,arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardEventHandler_MouseMoveAway(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardEventHandler *arg1 = (iBillboardEventHandler *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; int arg3 ; int arg4 ; int arg5 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iBillboardEventHandler_MouseMoveAway",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardEventHandler, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardEventHandler_MouseMoveAway" "', argument " "1"" of type '" "iBillboardEventHandler *""'"); } arg1 = reinterpret_cast< iBillboardEventHandler * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardEventHandler_MouseMoveAway" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboardEventHandler_MouseMoveAway" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iBillboardEventHandler_MouseMoveAway" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iBillboardEventHandler_MouseMoveAway" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); (arg1)->MouseMoveAway(arg2,arg3,arg4,arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardEventHandler_Unselect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardEventHandler *arg1 = (iBillboardEventHandler *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; int arg3 ; int arg4 ; int arg5 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iBillboardEventHandler_Unselect",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardEventHandler, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardEventHandler_Unselect" "', argument " "1"" of type '" "iBillboardEventHandler *""'"); } arg1 = reinterpret_cast< iBillboardEventHandler * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardEventHandler_Unselect" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboardEventHandler_Unselect" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iBillboardEventHandler_Unselect" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iBillboardEventHandler_Unselect" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); (arg1)->Unselect(arg2,arg3,arg4,arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardEventHandler_DoubleClick(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardEventHandler *arg1 = (iBillboardEventHandler *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; int arg3 ; int arg4 ; int arg5 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iBillboardEventHandler_DoubleClick",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardEventHandler, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardEventHandler_DoubleClick" "', argument " "1"" of type '" "iBillboardEventHandler *""'"); } arg1 = reinterpret_cast< iBillboardEventHandler * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardEventHandler_DoubleClick" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboardEventHandler_DoubleClick" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iBillboardEventHandler_DoubleClick" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iBillboardEventHandler_DoubleClick" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); (arg1)->DoubleClick(arg2,arg3,arg4,arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iBillboardEventHandler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardEventHandler *arg1 = (iBillboardEventHandler *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iBillboardEventHandler",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardEventHandler, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iBillboardEventHandler" "', argument " "1"" of type '" "iBillboardEventHandler *""'"); } arg1 = reinterpret_cast< iBillboardEventHandler * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iBillboardEventHandler_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iBillboardEventHandler, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iBillboard_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetName" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); result = (char *)((iBillboard const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetFlags(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csFlags *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetFlags",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetFlags" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); { csFlags &_result_ref = (arg1)->GetFlags(); result = (csFlags *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csFlags, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetMaterialName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_SetMaterialName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetMaterialName" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_SetMaterialName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)(arg1)->SetMaterialName((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetMaterialNameFast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_SetMaterialNameFast",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetMaterialNameFast" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_SetMaterialNameFast" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)(arg1)->SetMaterialNameFast((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetMaterialName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetMaterialName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetMaterialName" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); result = (char *)(arg1)->GetMaterialName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_DrawMesh__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; csVector3 *arg4 = 0 ; float arg5 ; float arg6 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; float val5 ; int ecode5 = 0 ; float val6 ; int ecode6 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOO:iBillboard_DrawMesh",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_DrawMesh" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_DrawMesh" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iBillboard_DrawMesh" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iBillboard_DrawMesh" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboard_DrawMesh" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iBillboard_DrawMesh" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); ecode6 = SWIG_AsVal_float(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "iBillboard_DrawMesh" "', argument " "6"" of type '" "float""'"); } arg6 = static_cast< float >(val6); result = (bool)(arg1)->DrawMesh((char const *)arg2,(char const *)arg3,(csVector3 const &)*arg4,arg5,arg6); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_DrawMesh__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; csVector3 *arg4 = 0 ; float arg5 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; float val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iBillboard_DrawMesh",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_DrawMesh" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_DrawMesh" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iBillboard_DrawMesh" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iBillboard_DrawMesh" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboard_DrawMesh" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iBillboard_DrawMesh" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); result = (bool)(arg1)->DrawMesh((char const *)arg2,(char const *)arg3,(csVector3 const &)*arg4,arg5); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_DrawMesh__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; csVector3 *arg4 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iBillboard_DrawMesh",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_DrawMesh" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_DrawMesh" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iBillboard_DrawMesh" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iBillboard_DrawMesh" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboard_DrawMesh" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); result = (bool)(arg1)->DrawMesh((char const *)arg2,(char const *)arg3,(csVector3 const &)*arg4); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_DrawMesh__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboard_DrawMesh",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_DrawMesh" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_DrawMesh" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iBillboard_DrawMesh" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (bool)(arg1)->DrawMesh((char const *)arg2,(char const *)arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_DrawMesh(PyObject *self, PyObject *args) { int argc; PyObject *argv[7]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 6); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iBillboard, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iBillboard_DrawMesh__SWIG_3(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iBillboard, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iBillboard_DrawMesh__SWIG_2(self, args); } } } } } if (argc == 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iBillboard, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iBillboard_DrawMesh__SWIG_1(self, args); } } } } } } if (argc == 6) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iBillboard, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[5], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iBillboard_DrawMesh__SWIG_0(self, args); } } } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iBillboard_DrawMesh'"); return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; int arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboard_SetSize",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetSize" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboard_SetSize" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboard_SetSize" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->SetSize(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; int *arg2 = 0 ; int *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; int temp2 ; int res2 = SWIG_TMPOBJ ; int temp3 ; int res3 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; arg2 = &temp2; arg3 = &temp3; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetSize",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetSize" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); (arg1)->GetSize(*arg2,*arg3); resultobj = SWIG_Py_Void(); if (SWIG_IsTmpObj(res2)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg2))); } else { int new_flags = SWIG_IsNewObj(res2) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg2), SWIGTYPE_p_int, new_flags)); } if (SWIG_IsTmpObj(res3)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg3))); } else { int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_int, new_flags)); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetImageSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; int *arg2 = 0 ; int *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; int temp2 ; int res2 = SWIG_TMPOBJ ; int temp3 ; int res3 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; arg2 = &temp2; arg3 = &temp3; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetImageSize",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetImageSize" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); (arg1)->GetImageSize(*arg2,*arg3); resultobj = SWIG_Py_Void(); if (SWIG_IsTmpObj(res2)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg2))); } else { int new_flags = SWIG_IsNewObj(res2) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg2), SWIGTYPE_p_int, new_flags)); } if (SWIG_IsTmpObj(res3)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg3))); } else { int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_int, new_flags)); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetPosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; int arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboard_SetPosition",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetPosition" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboard_SetPosition" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboard_SetPosition" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->SetPosition(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_MoveToPosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csTicks arg2 ; int arg3 ; int arg4 ; void *argp1 = 0 ; int res1 = 0 ; unsigned int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iBillboard_MoveToPosition",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_MoveToPosition" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboard_MoveToPosition" "', argument " "2"" of type '" "csTicks""'"); } arg2 = static_cast< csTicks >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboard_MoveToPosition" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iBillboard_MoveToPosition" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); (arg1)->MoveToPosition(arg2,arg3,arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetPosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; int *arg2 = 0 ; int *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; int temp2 ; int res2 = SWIG_TMPOBJ ; int temp3 ; int res3 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; arg2 = &temp2; arg3 = &temp3; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetPosition",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetPosition" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); ((iBillboard const *)arg1)->GetPosition(*arg2,*arg3); resultobj = SWIG_Py_Void(); if (SWIG_IsTmpObj(res2)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg2))); } else { int new_flags = SWIG_IsNewObj(res2) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg2), SWIGTYPE_p_int, new_flags)); } if (SWIG_IsTmpObj(res3)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg3))); } else { int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_int, new_flags)); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_Move(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; int arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboard_Move",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_Move" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboard_Move" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboard_Move" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->Move(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetRotation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_SetRotation",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetRotation" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboard_SetRotation" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetRotation(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetRotation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetRotation",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetRotation" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); result = (float)((iBillboard const *)arg1)->GetRotation(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_StackTop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_StackTop",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_StackTop" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); (arg1)->StackTop(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_StackBottom(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_StackBottom",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_StackBottom" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); (arg1)->StackBottom(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_StackUp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_StackUp",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_StackUp" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); (arg1)->StackUp(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_StackDown(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_StackDown",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_StackDown" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); (arg1)->StackDown(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetUVTopLeft(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csVector2 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_SetUVTopLeft",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetUVTopLeft" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector2, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_SetUVTopLeft" "', argument " "2"" of type '" "csVector2 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboard_SetUVTopLeft" "', argument " "2"" of type '" "csVector2 const &""'"); } arg2 = reinterpret_cast< csVector2 * >(argp2); (arg1)->SetUVTopLeft((csVector2 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetUVTopLeft(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csVector2 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetUVTopLeft",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetUVTopLeft" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); { csVector2 const &_result_ref = ((iBillboard const *)arg1)->GetUVTopLeft(); result = (csVector2 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector2, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetUVBottomRight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csVector2 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_SetUVBottomRight",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetUVBottomRight" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector2, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_SetUVBottomRight" "', argument " "2"" of type '" "csVector2 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboard_SetUVBottomRight" "', argument " "2"" of type '" "csVector2 const &""'"); } arg2 = reinterpret_cast< csVector2 * >(argp2); (arg1)->SetUVBottomRight((csVector2 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetUVBottomRight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csVector2 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetUVBottomRight",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetUVBottomRight" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); { csVector2 const &_result_ref = ((iBillboard const *)arg1)->GetUVBottomRight(); result = (csVector2 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector2, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csColor *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_SetColor",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetColor" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csColor, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_SetColor" "', argument " "2"" of type '" "csColor const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboard_SetColor" "', argument " "2"" of type '" "csColor const &""'"); } arg2 = reinterpret_cast< csColor * >(argp2); (arg1)->SetColor((csColor const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csColor *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetColor",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetColor" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); { csColor const &_result_ref = ((iBillboard const *)arg1)->GetColor(); result = (csColor *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csColor, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; iBillboardLayer *arg2 = (iBillboardLayer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_SetLayer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetLayer" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboardLayer, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_SetLayer" "', argument " "2"" of type '" "iBillboardLayer *""'"); } arg2 = reinterpret_cast< iBillboardLayer * >(argp2); (arg1)->SetLayer(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; iBillboardLayer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetLayer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetLayer" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); result = (iBillboardLayer *)((iBillboard const *)arg1)->GetLayer(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBillboardLayer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_AddEventHandler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; iBillboardEventHandler *arg2 = (iBillboardEventHandler *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_AddEventHandler",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_AddEventHandler" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboardEventHandler, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_AddEventHandler" "', argument " "2"" of type '" "iBillboardEventHandler *""'"); } arg2 = reinterpret_cast< iBillboardEventHandler * >(argp2); (arg1)->AddEventHandler(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_RemoveEventHandler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; iBillboardEventHandler *arg2 = (iBillboardEventHandler *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_RemoveEventHandler",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_RemoveEventHandler" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboardEventHandler, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_RemoveEventHandler" "', argument " "2"" of type '" "iBillboardEventHandler *""'"); } arg2 = reinterpret_cast< iBillboardEventHandler * >(argp2); (arg1)->RemoveEventHandler(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetText(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_SetText",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetText" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_SetText" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetText((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetText(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetText",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetText" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); result = (char *)((iBillboard const *)arg1)->GetText(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetTextDimensions(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; int *arg2 = 0 ; int *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; int temp2 ; int res2 = SWIG_TMPOBJ ; int temp3 ; int res3 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; arg2 = &temp2; arg3 = &temp3; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetTextDimensions",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetTextDimensions" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); (arg1)->GetTextDimensions(*arg2,*arg3); resultobj = SWIG_Py_Void(); if (SWIG_IsTmpObj(res2)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg2))); } else { int new_flags = SWIG_IsNewObj(res2) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg2), SWIGTYPE_p_int, new_flags)); } if (SWIG_IsTmpObj(res3)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg3))); } else { int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_int, new_flags)); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetTextOffset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; int arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboard_SetTextOffset",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetTextOffset" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboard_SetTextOffset" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboard_SetTextOffset" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->SetTextOffset(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetTextOffsetDX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetTextOffsetDX",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetTextOffsetDX" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); result = (int)((iBillboard const *)arg1)->GetTextOffsetDX(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetTextOffsetDY(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetTextOffsetDY",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetTextOffsetDY" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); result = (int)((iBillboard const *)arg1)->GetTextOffsetDY(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetTextFont(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *arg2 = (char *) 0 ; float arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboard_SetTextFont",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetTextFont" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_SetTextFont" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboard_SetTextFont" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); result = (bool)(arg1)->SetTextFont((char const *)arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetTextFont(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetTextFont",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetTextFont" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); result = (char *)((iBillboard const *)arg1)->GetTextFont(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetTextFontSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetTextFontSize",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetTextFontSize" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); result = (float)((iBillboard const *)arg1)->GetTextFontSize(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetTextFgColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csColor *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_SetTextFgColor",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetTextFgColor" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csColor, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_SetTextFgColor" "', argument " "2"" of type '" "csColor const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboard_SetTextFgColor" "', argument " "2"" of type '" "csColor const &""'"); } arg2 = reinterpret_cast< csColor * >(argp2); (arg1)->SetTextFgColor((csColor const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetTextFgColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csColor *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetTextFgColor",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetTextFgColor" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); { csColor const &_result_ref = ((iBillboard const *)arg1)->GetTextFgColor(); result = (csColor *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csColor, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_ClearTextFgColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_ClearTextFgColor",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_ClearTextFgColor" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); (arg1)->ClearTextFgColor(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetTextBgColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csColor *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboard_SetTextBgColor",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetTextBgColor" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csColor, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboard_SetTextBgColor" "', argument " "2"" of type '" "csColor const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboard_SetTextBgColor" "', argument " "2"" of type '" "csColor const &""'"); } arg2 = reinterpret_cast< csColor * >(argp2); (arg1)->SetTextBgColor((csColor const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_GetTextBgColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; csColor *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_GetTextBgColor",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_GetTextBgColor" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); { csColor const &_result_ref = ((iBillboard const *)arg1)->GetTextBgColor(); result = (csColor *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csColor, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_SetTextBgTransparent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_SetTextBgTransparent",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_SetTextBgTransparent" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); (arg1)->SetTextBgTransparent(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_IsTextBgTransparent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_IsTextBgTransparent",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_IsTextBgTransparent" "', argument " "1"" of type '" "iBillboard const *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); result = (bool)((iBillboard const *)arg1)->IsTextBgTransparent(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboard_ClearTextBgColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboard_ClearTextBgColor",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboard_ClearTextBgColor" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); (arg1)->ClearTextBgColor(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboard *arg1 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iBillboard",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboard, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iBillboard" "', argument " "1"" of type '" "iBillboard *""'"); } arg1 = reinterpret_cast< iBillboard * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iBillboard_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iBillboard, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iBillboardManager_ScreenToBillboardX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; int arg2 ; int result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_ScreenToBillboardX",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_ScreenToBillboardX" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboardManager_ScreenToBillboardX" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (int)((iBillboardManager const *)arg1)->ScreenToBillboardX(arg2); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_ScreenToBillboardY(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; int arg2 ; int result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_ScreenToBillboardY",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_ScreenToBillboardY" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboardManager_ScreenToBillboardY" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (int)((iBillboardManager const *)arg1)->ScreenToBillboardY(arg2); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_BillboardToScreenX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; int arg2 ; int result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_BillboardToScreenX",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_BillboardToScreenX" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboardManager_BillboardToScreenX" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (int)((iBillboardManager const *)arg1)->BillboardToScreenX(arg2); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_BillboardToScreenY(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; int arg2 ; int result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_BillboardToScreenY",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_BillboardToScreenY" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboardManager_BillboardToScreenY" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (int)((iBillboardManager const *)arg1)->BillboardToScreenY(arg2); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_CreateBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; char *arg2 = (char *) 0 ; iBillboard *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_CreateBillboard",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_CreateBillboard" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_CreateBillboard" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iBillboard *)(arg1)->CreateBillboard((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBillboard, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_FindBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; char *arg2 = (char *) 0 ; iBillboard *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_FindBillboard",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_FindBillboard" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_FindBillboard" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iBillboard *)((iBillboardManager const *)arg1)->FindBillboard((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBillboard, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_RemoveBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_RemoveBillboard",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_RemoveBillboard" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_RemoveBillboard" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); (arg1)->RemoveBillboard(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_GetBillboardCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardManager_GetBillboardCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_GetBillboardCount" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); result = ((iBillboardManager const *)arg1)->GetBillboardCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_GetBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; size_t arg2 ; iBillboard *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_GetBillboard",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_GetBillboard" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboardManager_GetBillboard" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iBillboard *)((iBillboardManager const *)arg1)->GetBillboard(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBillboard, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_CreateBillboardLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; char *arg2 = (char *) 0 ; iBillboardLayer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_CreateBillboardLayer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_CreateBillboardLayer" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_CreateBillboardLayer" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iBillboardLayer *)(arg1)->CreateBillboardLayer((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBillboardLayer, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_FindBillboardLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; char *arg2 = (char *) 0 ; iBillboardLayer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_FindBillboardLayer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_FindBillboardLayer" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_FindBillboardLayer" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iBillboardLayer *)((iBillboardManager const *)arg1)->FindBillboardLayer((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBillboardLayer, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_RemoveBillboardLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; iBillboardLayer *arg2 = (iBillboardLayer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_RemoveBillboardLayer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_RemoveBillboardLayer" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboardLayer, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_RemoveBillboardLayer" "', argument " "2"" of type '" "iBillboardLayer *""'"); } arg2 = reinterpret_cast< iBillboardLayer * >(argp2); (arg1)->RemoveBillboardLayer(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_GetBillboardLayerCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardManager_GetBillboardLayerCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_GetBillboardLayerCount" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); result = ((iBillboardManager const *)arg1)->GetBillboardLayerCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_GetBillboardLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; size_t arg2 ; iBillboardLayer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_GetBillboardLayer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_GetBillboardLayer" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iBillboardManager_GetBillboardLayer" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iBillboardLayer *)((iBillboardManager const *)arg1)->GetBillboardLayer(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBillboardLayer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_RemoveAll(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardManager_RemoveAll",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_RemoveAll" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); (arg1)->RemoveAll(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_SetFlags(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; uint32 arg2 ; uint32 arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboardManager_SetFlags",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_SetFlags" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint32_t, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_SetFlags" "', argument " "2"" of type '" "uint32""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboardManager_SetFlags" "', argument " "2"" of type '" "uint32""'"); } else { uint32 * temp = reinterpret_cast< uint32 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_uint32_t, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iBillboardManager_SetFlags" "', argument " "3"" of type '" "uint32""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboardManager_SetFlags" "', argument " "3"" of type '" "uint32""'"); } else { uint32 * temp = reinterpret_cast< uint32 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } (arg1)->SetFlags(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_StackTop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_StackTop",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_StackTop" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_StackTop" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); (arg1)->StackTop(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_StackBottom(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_StackBottom",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_StackBottom" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_StackBottom" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); (arg1)->StackBottom(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_StackUp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_StackUp",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_StackUp" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_StackUp" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); (arg1)->StackUp(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_StackDown(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_StackDown",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_StackDown" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_StackDown" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); (arg1)->StackDown(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_StackBefore(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; iBillboard *arg3 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboardManager_StackBefore",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_StackBefore" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_StackBefore" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iBillboardManager_StackBefore" "', argument " "3"" of type '" "iBillboard *""'"); } arg3 = reinterpret_cast< iBillboard * >(argp3); (arg1)->StackBefore(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_StackAfter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; iBillboard *arg3 = (iBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboardManager_StackAfter",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_StackAfter" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_StackAfter" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iBillboardManager_StackAfter" "', argument " "3"" of type '" "iBillboard *""'"); } arg3 = reinterpret_cast< iBillboard * >(argp3); (arg1)->StackAfter(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_TestCollision(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; iBillboard *arg2 = (iBillboard *) 0 ; iBillboard *arg3 = (iBillboard *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboardManager_TestCollision",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_TestCollision" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_TestCollision" "', argument " "2"" of type '" "iBillboard *""'"); } arg2 = reinterpret_cast< iBillboard * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iBillboard, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iBillboardManager_TestCollision" "', argument " "3"" of type '" "iBillboard *""'"); } arg3 = reinterpret_cast< iBillboard * >(argp3); result = (bool)(arg1)->TestCollision(arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_SetDefaultTextFont(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; char *arg2 = (char *) 0 ; float arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iBillboardManager_SetDefaultTextFont",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_SetDefaultTextFont" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_SetDefaultTextFont" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iBillboardManager_SetDefaultTextFont" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); result = (bool)(arg1)->SetDefaultTextFont((char const *)arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_GetDefaultTextFont(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardManager_GetDefaultTextFont",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_GetDefaultTextFont" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); result = (char *)((iBillboardManager const *)arg1)->GetDefaultTextFont(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_GetDefaultTextFontSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardManager_GetDefaultTextFontSize",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_GetDefaultTextFontSize" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); result = (float)((iBillboardManager const *)arg1)->GetDefaultTextFontSize(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_SetDefaultTextFgColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; csColor *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_SetDefaultTextFgColor",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_SetDefaultTextFgColor" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csColor, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_SetDefaultTextFgColor" "', argument " "2"" of type '" "csColor const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboardManager_SetDefaultTextFgColor" "', argument " "2"" of type '" "csColor const &""'"); } arg2 = reinterpret_cast< csColor * >(argp2); (arg1)->SetDefaultTextFgColor((csColor const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_GetDefaultTextFgColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; csColor *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardManager_GetDefaultTextFgColor",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_GetDefaultTextFgColor" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); { csColor const &_result_ref = ((iBillboardManager const *)arg1)->GetDefaultTextFgColor(); result = (csColor *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csColor, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_SetDefaultTextBgColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; csColor *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iBillboardManager_SetDefaultTextBgColor",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_SetDefaultTextBgColor" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csColor, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iBillboardManager_SetDefaultTextBgColor" "', argument " "2"" of type '" "csColor const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iBillboardManager_SetDefaultTextBgColor" "', argument " "2"" of type '" "csColor const &""'"); } arg2 = reinterpret_cast< csColor * >(argp2); (arg1)->SetDefaultTextBgColor((csColor const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_GetDefaultTextBgColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; csColor *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardManager_GetDefaultTextBgColor",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_GetDefaultTextBgColor" "', argument " "1"" of type '" "iBillboardManager const *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); { csColor const &_result_ref = ((iBillboardManager const *)arg1)->GetDefaultTextBgColor(); result = (csColor *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csColor, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_SetDefaultTextBgTransparent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardManager_SetDefaultTextBgTransparent",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_SetDefaultTextBgTransparent" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); (arg1)->SetDefaultTextBgTransparent(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iBillboardManager_GetShowroom(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; iSector *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iBillboardManager_GetShowroom",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iBillboardManager_GetShowroom" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); result = (iSector *)(arg1)->GetShowroom(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSector, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iBillboardManager(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iBillboardManager *arg1 = (iBillboardManager *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iBillboardManager",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iBillboardManager, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iBillboardManager" "', argument " "1"" of type '" "iBillboardManager *""'"); } arg1 = reinterpret_cast< iBillboardManager * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iBillboardManager_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iBillboardManager, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcBillboard_SetBillboardName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcBillboard_SetBillboardName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcBillboard_SetBillboardName" "', argument " "1"" of type '" "iPcBillboard *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcBillboard_SetBillboardName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetBillboardName((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcBillboard_GetBillboardName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcBillboard_GetBillboardName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcBillboard_GetBillboardName" "', argument " "1"" of type '" "iPcBillboard *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); result = (char *)(arg1)->GetBillboardName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcBillboard_GetBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; iBillboard *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcBillboard_GetBillboard",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcBillboard_GetBillboard" "', argument " "1"" of type '" "iPcBillboard *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); result = (iBillboard *)(arg1)->GetBillboard(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBillboard, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcBillboard_EnableEvents(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcBillboard_EnableEvents",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcBillboard_EnableEvents" "', argument " "1"" of type '" "iPcBillboard *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcBillboard_EnableEvents" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->EnableEvents(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcBillboard_AreEventsEnabled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcBillboard_AreEventsEnabled",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcBillboard_AreEventsEnabled" "', argument " "1"" of type '" "iPcBillboard const *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); result = (bool)((iPcBillboard const *)arg1)->AreEventsEnabled(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcBillboard_Name_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcBillboard_Name_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcBillboard_Name_set" "', argument " "1"" of type '" "iPcBillboard *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcBillboard_Name_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iPcBillboard_Name_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcBillboard_Name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcBillboard_Name_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcBillboard_Name_get" "', argument " "1"" of type '" "iPcBillboard *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); result = (char *)iPcBillboard_Name_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcBillboard_Billboard_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; iBillboard *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcBillboard_Billboard_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcBillboard_Billboard_get" "', argument " "1"" of type '" "iPcBillboard *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); result = (iBillboard *)iPcBillboard_Billboard_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBillboard, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcBillboard_EventsEnabled_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcBillboard_EventsEnabled_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcBillboard_EventsEnabled_set" "', argument " "1"" of type '" "iPcBillboard *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcBillboard_EventsEnabled_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcBillboard_EventsEnabled_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcBillboard_EventsEnabled_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcBillboard_EventsEnabled_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcBillboard_EventsEnabled_get" "', argument " "1"" of type '" "iPcBillboard *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); result = (bool)iPcBillboard_EventsEnabled_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcBillboard *arg1 = (iPcBillboard *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcBillboard",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcBillboard, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcBillboard" "', argument " "1"" of type '" "iPcBillboard *""'"); } arg1 = reinterpret_cast< iPcBillboard * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcBillboard_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcBillboard, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcBillboard *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateBillboard",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateBillboard" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateBillboard" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcBillboard *)celCreateBillboard(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcBillboard, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcBillboard *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetBillboard",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetBillboard" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetBillboard" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcBillboard *)celGetSetBillboard(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcBillboard, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcBillboard *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetBillboard",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetBillboard" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcBillboard *)celGetBillboard(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcBillboard, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcBillboard *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcBillboard",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcBillboard" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcBillboard *)scfQuery_iPcBillboard(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcBillboard, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQueryPC_iPcBillboard(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iPcBillboard *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQueryPC_iPcBillboard",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQueryPC_iPcBillboard" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); result = (iPcBillboard *)scfQueryPC_iPcBillboard(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcBillboard, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_SetWorldFile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcRegion_SetWorldFile",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_SetWorldFile" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcRegion_SetWorldFile" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcRegion_SetWorldFile" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->SetWorldFile((char const *)arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_GetWorldDir(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_GetWorldDir",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_GetWorldDir" "', argument " "1"" of type '" "iPcRegion const *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = (char *)((iPcRegion const *)arg1)->GetWorldDir(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_GetWorldFile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_GetWorldFile",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_GetWorldFile" "', argument " "1"" of type '" "iPcRegion const *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = (char *)((iPcRegion const *)arg1)->GetWorldFile(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_SetRegionName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcRegion_SetRegionName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_SetRegionName" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcRegion_SetRegionName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetRegionName((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_GetRegionName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_GetRegionName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_GetRegionName" "', argument " "1"" of type '" "iPcRegion const *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = (char *)((iPcRegion const *)arg1)->GetRegionName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_CreateEmptySector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcRegion_CreateEmptySector",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_CreateEmptySector" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcRegion_CreateEmptySector" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->CreateEmptySector((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_Load(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_Load",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_Load" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = (bool)(arg1)->Load(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_Unload(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_Unload",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_Unload" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); (arg1)->Unload(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_FindSector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *arg2 = (char *) 0 ; iSector *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcRegion_FindSector",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_FindSector" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcRegion_FindSector" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iSector *)(arg1)->FindSector((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSector, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_GetStartSector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *arg2 = (char *) 0 ; iSector *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcRegion_GetStartSector",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_GetStartSector" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcRegion_GetStartSector" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iSector *)(arg1)->GetStartSector((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSector, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_GetStartSector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; iSector *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_GetStartSector",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_GetStartSector" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = (iSector *)(arg1)->GetStartSector(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSector, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_GetStartSector(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcRegion, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcRegion_GetStartSector__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcRegion, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcRegion_GetStartSector__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcRegion_GetStartSector'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_GetStartPosition__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *arg2 = (char *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcRegion_GetStartPosition",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_GetStartPosition" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcRegion_GetStartPosition" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (arg1)->GetStartPosition((char const *)arg2); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_GetStartPosition__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_GetStartPosition",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_GetStartPosition" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = (arg1)->GetStartPosition(); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_GetStartPosition(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcRegion, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcRegion_GetStartPosition__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcRegion, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcRegion_GetStartPosition__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcRegion_GetStartPosition'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_PointCamera__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; iPcCamera *arg2 = (iPcCamera *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcRegion_PointCamera",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_PointCamera" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcRegion_PointCamera" "', argument " "2"" of type '" "iPcCamera *""'"); } arg2 = reinterpret_cast< iPcCamera * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcRegion_PointCamera" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->PointCamera(arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_PointCamera__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; iPcCamera *arg2 = (iPcCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcRegion_PointCamera",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_PointCamera" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcRegion_PointCamera" "', argument " "2"" of type '" "iPcCamera *""'"); } arg2 = reinterpret_cast< iPcCamera * >(argp2); (arg1)->PointCamera(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_PointCamera(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcRegion, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iPcCamera, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcRegion_PointCamera__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcRegion, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iPcCamera, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcRegion_PointCamera__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcRegion_PointCamera'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_GetRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; iRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_GetRegion",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_GetRegion" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = (iRegion *)(arg1)->GetRegion(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iRegion, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_Name_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcRegion_Name_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_Name_set" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcRegion_Name_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iPcRegion_Name_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_Name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_Name_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_Name_get" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = (char *)iPcRegion_Name_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_Region_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; iRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_Region_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_Region_get" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = (iRegion *)iPcRegion_Region_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iRegion, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_StartSector_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_StartSector_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_StartSector_get" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = (char *)iPcRegion_StartSector_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_StartPosition_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcRegion_StartPosition_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_StartPosition_get" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); result = iPcRegion_StartPosition_get(arg1); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcRegion_LoadWorld(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcRegion_LoadWorld",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcRegion_LoadWorld" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcRegion_LoadWorld" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcRegion_LoadWorld" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (bool)iPcRegion_LoadWorld(arg1,(char const *)arg2,(char const *)arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcRegion *arg1 = (iPcRegion *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcRegion",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcRegion, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcRegion" "', argument " "1"" of type '" "iPcRegion *""'"); } arg1 = reinterpret_cast< iPcRegion * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcRegion_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcRegion, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; char *arg3 = (char *) 0 ; iPcRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:celCreateRegion",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateRegion" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateRegion" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "celCreateRegion" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (iPcRegion *)celCreateRegion(arg1,arg2,(char const *)arg3); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcRegion, 0 | 0 ); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_Region(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Region",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Region" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcRegion *)Region(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcRegion, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcRegion",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcRegion" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcRegion *)scfQuery_iPcRegion(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcRegion, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQueryPC_iPcRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClassList *arg1 = (iCelPropertyClassList *) 0 ; iPcRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQueryPC_iPcRegion",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClassList, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQueryPC_iPcRegion" "', argument " "1"" of type '" "iCelPropertyClassList *""'"); } arg1 = reinterpret_cast< iCelPropertyClassList * >(argp1); result = (iPcRegion *)scfQueryPC_iPcRegion(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcRegion, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_SetPath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelMapFile_SetPath",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_SetPath" "', argument " "1"" of type '" "iCelMapFile *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelMapFile_SetPath" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetPath((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_SetFile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelMapFile_SetFile",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_SetFile" "', argument " "1"" of type '" "iCelMapFile *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelMapFile_SetFile" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetFile((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_GetPath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelMapFile_GetPath",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_GetPath" "', argument " "1"" of type '" "iCelMapFile const *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); result = (char *)((iCelMapFile const *)arg1)->GetPath(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_GetFile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelMapFile_GetFile",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_GetFile" "', argument " "1"" of type '" "iCelMapFile const *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); result = (char *)((iCelMapFile const *)arg1)->GetFile(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_SetSectorName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelMapFile_SetSectorName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_SetSectorName" "', argument " "1"" of type '" "iCelMapFile *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelMapFile_SetSectorName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetSectorName((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_GetSectorName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelMapFile_GetSectorName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_GetSectorName" "', argument " "1"" of type '" "iCelMapFile const *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); result = (char *)((iCelMapFile const *)arg1)->GetSectorName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_Path_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelMapFile_Path_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_Path_set" "', argument " "1"" of type '" "iCelMapFile *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelMapFile_Path_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iCelMapFile_Path_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_Path_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelMapFile_Path_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_Path_get" "', argument " "1"" of type '" "iCelMapFile *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); result = (char *)iCelMapFile_Path_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_File_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelMapFile_File_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_File_set" "', argument " "1"" of type '" "iCelMapFile *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelMapFile_File_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iCelMapFile_File_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_File_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelMapFile_File_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_File_get" "', argument " "1"" of type '" "iCelMapFile *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); result = (char *)iCelMapFile_File_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_SectorName_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelMapFile_SectorName_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_SectorName_set" "', argument " "1"" of type '" "iCelMapFile *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelMapFile_SectorName_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iCelMapFile_SectorName_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelMapFile_SectorName_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelMapFile_SectorName_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelMapFile_SectorName_get" "', argument " "1"" of type '" "iCelMapFile *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); result = (char *)iCelMapFile_SectorName_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelMapFile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelMapFile *arg1 = (iCelMapFile *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelMapFile",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelMapFile, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelMapFile" "', argument " "1"" of type '" "iCelMapFile *""'"); } arg1 = reinterpret_cast< iCelMapFile * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelMapFile_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelMapFile, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelRegion_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelRegion_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_GetName" "', argument " "1"" of type '" "iCelRegion const *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); result = (char *)((iCelRegion const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_SetCachePath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelRegion_SetCachePath",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_SetCachePath" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelRegion_SetCachePath" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetCachePath((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_GetCachePath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelRegion_GetCachePath",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_GetCachePath" "', argument " "1"" of type '" "iCelRegion const *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); result = (char *)((iCelRegion const *)arg1)->GetCachePath(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_CreateMapFile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; iCelMapFile *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelRegion_CreateMapFile",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_CreateMapFile" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); result = (iCelMapFile *)(arg1)->CreateMapFile(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelMapFile, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_GetMapFileCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelRegion_GetMapFileCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_GetMapFileCount" "', argument " "1"" of type '" "iCelRegion const *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); result = ((iCelRegion const *)arg1)->GetMapFileCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_GetMapFile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; int arg2 ; iCelMapFile *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelRegion_GetMapFile",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_GetMapFile" "', argument " "1"" of type '" "iCelRegion const *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelRegion_GetMapFile" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (iCelMapFile *)((iCelRegion const *)arg1)->GetMapFile(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelMapFile, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_RemoveMapFile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; iCelMapFile *arg2 = (iCelMapFile *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelRegion_RemoveMapFile",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_RemoveMapFile" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelMapFile, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelRegion_RemoveMapFile" "', argument " "2"" of type '" "iCelMapFile *""'"); } arg2 = reinterpret_cast< iCelMapFile * >(argp2); result = (bool)(arg1)->RemoveMapFile(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_RemoveAllMapFiles(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelRegion_RemoveAllMapFiles",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_RemoveAllMapFiles" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); (arg1)->RemoveAllMapFiles(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_AssociateEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelRegion_AssociateEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_AssociateEntity" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelRegion_AssociateEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); (arg1)->AssociateEntity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_DissociateEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelRegion_DissociateEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_DissociateEntity" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelRegion_DissociateEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); (arg1)->DissociateEntity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_Name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelRegion_Name_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_Name_get" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); result = (char *)iCelRegion_Name_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_CachePath_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelRegion_CachePath_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_CachePath_set" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelRegion_CachePath_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iCelRegion_CachePath_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_CachePath_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelRegion_CachePath_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_CachePath_get" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); result = (char *)iCelRegion_CachePath_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelRegion_MapFileCount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelRegion_MapFileCount_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelRegion_MapFileCount_get" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); result = iCelRegion_MapFileCount_get(arg1); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelRegion *arg1 = (iCelRegion *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelRegion",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelRegion, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelRegion" "', argument " "1"" of type '" "iCelRegion *""'"); } arg1 = reinterpret_cast< iCelRegion * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelRegion_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelRegion, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelZone_GetName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelZone *arg1 = (iCelZone *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelZone_GetName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelZone, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelZone_GetName" "', argument " "1"" of type '" "iCelZone const *""'"); } arg1 = reinterpret_cast< iCelZone * >(argp1); result = (char *)((iCelZone const *)arg1)->GetName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelZone_LinkRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelZone *arg1 = (iCelZone *) 0 ; iCelRegion *arg2 = (iCelRegion *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelZone_LinkRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelZone, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelZone_LinkRegion" "', argument " "1"" of type '" "iCelZone *""'"); } arg1 = reinterpret_cast< iCelZone * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelZone_LinkRegion" "', argument " "2"" of type '" "iCelRegion *""'"); } arg2 = reinterpret_cast< iCelRegion * >(argp2); (arg1)->LinkRegion(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelZone_GetRegionCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelZone *arg1 = (iCelZone *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelZone_GetRegionCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelZone, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelZone_GetRegionCount" "', argument " "1"" of type '" "iCelZone const *""'"); } arg1 = reinterpret_cast< iCelZone * >(argp1); result = ((iCelZone const *)arg1)->GetRegionCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelZone_GetRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelZone *arg1 = (iCelZone *) 0 ; size_t arg2 ; iCelRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelZone_GetRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelZone, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelZone_GetRegion" "', argument " "1"" of type '" "iCelZone const *""'"); } arg1 = reinterpret_cast< iCelZone * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iCelZone_GetRegion" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelRegion *)((iCelZone const *)arg1)->GetRegion(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelRegion, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelZone_FindRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelZone *arg1 = (iCelZone *) 0 ; char *arg2 = (char *) 0 ; iCelRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelZone_FindRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelZone, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelZone_FindRegion" "', argument " "1"" of type '" "iCelZone const *""'"); } arg1 = reinterpret_cast< iCelZone * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelZone_FindRegion" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelRegion *)((iCelZone const *)arg1)->FindRegion((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelRegion, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iCelZone_UnlinkRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelZone *arg1 = (iCelZone *) 0 ; iCelRegion *arg2 = (iCelRegion *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelZone_UnlinkRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelZone, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelZone_UnlinkRegion" "', argument " "1"" of type '" "iCelZone *""'"); } arg1 = reinterpret_cast< iCelZone * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelZone_UnlinkRegion" "', argument " "2"" of type '" "iCelRegion *""'"); } arg2 = reinterpret_cast< iCelRegion * >(argp2); result = (bool)(arg1)->UnlinkRegion(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelZone_UnlinkAllRegions(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelZone *arg1 = (iCelZone *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelZone_UnlinkAllRegions",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelZone, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelZone_UnlinkAllRegions" "', argument " "1"" of type '" "iCelZone *""'"); } arg1 = reinterpret_cast< iCelZone * >(argp1); (arg1)->UnlinkAllRegions(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelZone_Name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelZone *arg1 = (iCelZone *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelZone_Name_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelZone, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelZone_Name_get" "', argument " "1"" of type '" "iCelZone *""'"); } arg1 = reinterpret_cast< iCelZone * >(argp1); result = (char *)iCelZone_Name_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelZone_RegionCount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelZone *arg1 = (iCelZone *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelZone_RegionCount_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelZone, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelZone_RegionCount_get" "', argument " "1"" of type '" "iCelZone *""'"); } arg1 = reinterpret_cast< iCelZone * >(argp1); result = iCelZone_RegionCount_get(arg1); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelZone(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelZone *arg1 = (iCelZone *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelZone",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelZone, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelZone" "', argument " "1"" of type '" "iCelZone *""'"); } arg1 = reinterpret_cast< iCelZone * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelZone_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelZone, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcZoneManager_EnableColliderWrappers(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_EnableColliderWrappers",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_EnableColliderWrappers" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcZoneManager_EnableColliderWrappers" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->EnableColliderWrappers(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_IsColliderWrappers(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_IsColliderWrappers",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_IsColliderWrappers" "', argument " "1"" of type '" "iPcZoneManager const *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = (bool)((iPcZoneManager const *)arg1)->IsColliderWrappers(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_SetLoadingMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_SetLoadingMode",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_SetLoadingMode" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcZoneManager_SetLoadingMode" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); (arg1)->SetLoadingMode(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_GetLoadingMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_GetLoadingMode",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_GetLoadingMode" "', argument " "1"" of type '" "iPcZoneManager const *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = (int)((iPcZoneManager const *)arg1)->GetLoadingMode(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_Load__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; iDocumentNode *arg2 = (iDocumentNode *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_Load",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_Load" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iDocumentNode, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_Load" "', argument " "2"" of type '" "iDocumentNode *""'"); } arg2 = reinterpret_cast< iDocumentNode * >(argp2); result = (bool)(arg1)->Load(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_Load__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcZoneManager_Load",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_Load" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_Load" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcZoneManager_Load" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (bool)(arg1)->Load((char const *)arg2,(char const *)arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_Load(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcZoneManager, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iDocumentNode, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcZoneManager_Load__SWIG_0(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcZoneManager, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcZoneManager_Load__SWIG_1(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcZoneManager_Load'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_CreateZone(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *arg2 = (char *) 0 ; iCelZone *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_CreateZone",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_CreateZone" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_CreateZone" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelZone *)(arg1)->CreateZone((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelZone, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_GetZoneCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_GetZoneCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_GetZoneCount" "', argument " "1"" of type '" "iPcZoneManager const *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = ((iPcZoneManager const *)arg1)->GetZoneCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_GetZone(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; int arg2 ; iCelZone *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_GetZone",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_GetZone" "', argument " "1"" of type '" "iPcZoneManager const *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcZoneManager_GetZone" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (iCelZone *)((iPcZoneManager const *)arg1)->GetZone(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelZone, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_FindZone(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *arg2 = (char *) 0 ; iCelZone *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_FindZone",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_FindZone" "', argument " "1"" of type '" "iPcZoneManager const *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_FindZone" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelZone *)((iPcZoneManager const *)arg1)->FindZone((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelZone, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_RemoveZone(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; iCelZone *arg2 = (iCelZone *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_RemoveZone",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_RemoveZone" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelZone, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_RemoveZone" "', argument " "2"" of type '" "iCelZone *""'"); } arg2 = reinterpret_cast< iCelZone * >(argp2); result = (bool)(arg1)->RemoveZone(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_RemoveAllZones(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_RemoveAllZones",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_RemoveAllZones" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); (arg1)->RemoveAllZones(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_CreateRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *arg2 = (char *) 0 ; iCelRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_CreateRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_CreateRegion" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_CreateRegion" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelRegion *)(arg1)->CreateRegion((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelRegion, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_GetRegionCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_GetRegionCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_GetRegionCount" "', argument " "1"" of type '" "iPcZoneManager const *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = ((iPcZoneManager const *)arg1)->GetRegionCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_GetRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; int arg2 ; iCelRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_GetRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_GetRegion" "', argument " "1"" of type '" "iPcZoneManager const *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcZoneManager_GetRegion" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (iCelRegion *)((iPcZoneManager const *)arg1)->GetRegion(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelRegion, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_FindRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *arg2 = (char *) 0 ; iCelRegion *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_FindRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_FindRegion" "', argument " "1"" of type '" "iPcZoneManager const *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_FindRegion" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (iCelRegion *)((iPcZoneManager const *)arg1)->FindRegion((char const *)arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelRegion, 0 | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_RemoveRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; iCelRegion *arg2 = (iCelRegion *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_RemoveRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_RemoveRegion" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_RemoveRegion" "', argument " "2"" of type '" "iCelRegion *""'"); } arg2 = reinterpret_cast< iCelRegion * >(argp2); result = (bool)(arg1)->RemoveRegion(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_RemoveAllRegions(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_RemoveAllRegions",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_RemoveAllRegions" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); (arg1)->RemoveAllRegions(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_FindStartLocations(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; iStringArray *arg2 = (iStringArray *) 0 ; iStringArray *arg3 = (iStringArray *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcZoneManager_FindStartLocations",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_FindStartLocations" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iStringArray, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_FindStartLocations" "', argument " "2"" of type '" "iStringArray *""'"); } arg2 = reinterpret_cast< iStringArray * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iStringArray, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcZoneManager_FindStartLocations" "', argument " "3"" of type '" "iStringArray *""'"); } arg3 = reinterpret_cast< iStringArray * >(argp3); (arg1)->FindStartLocations(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_GetLastStartLocation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; iString *arg2 = (iString *) 0 ; iString *arg3 = (iString *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcZoneManager_GetLastStartLocation",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_GetLastStartLocation" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iString, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_GetLastStartLocation" "', argument " "2"" of type '" "iString *""'"); } arg2 = reinterpret_cast< iString * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iString, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcZoneManager_GetLastStartLocation" "', argument " "3"" of type '" "iString *""'"); } arg3 = reinterpret_cast< iString * >(argp3); (arg1)->GetLastStartLocation(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_GetLastStartRegionName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_GetLastStartRegionName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_GetLastStartRegionName" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = (char *)(arg1)->GetLastStartRegionName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_GetLastStartName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_GetLastStartName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_GetLastStartName" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = (char *)(arg1)->GetLastStartName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_PointCamera__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; char *arg4 = (char *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcZoneManager_PointCamera",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_PointCamera" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_PointCamera" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcZoneManager_PointCamera" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcZoneManager_PointCamera" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; result = (int)(arg1)->PointCamera((char const *)arg2,(char const *)arg3,(char const *)arg4); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_PointCamera__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcZoneManager_PointCamera",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_PointCamera" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_PointCamera" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcZoneManager_PointCamera" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (int)(arg1)->PointCamera((char const *)arg2,(char const *)arg3); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_PointCamera(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcZoneManager, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcZoneManager_PointCamera__SWIG_1(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcZoneManager, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcZoneManager_PointCamera__SWIG_0(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcZoneManager_PointCamera'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_PointMesh__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; char *arg4 = (char *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcZoneManager_PointMesh",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_PointMesh" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_PointMesh" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcZoneManager_PointMesh" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcZoneManager_PointMesh" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; result = (int)(arg1)->PointMesh((char const *)arg2,(char const *)arg3,(char const *)arg4); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_PointMesh__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcZoneManager_PointMesh",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_PointMesh" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_PointMesh" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcZoneManager_PointMesh" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (int)(arg1)->PointMesh((char const *)arg2,(char const *)arg3); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_PointMesh(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcZoneManager, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcZoneManager_PointMesh__SWIG_1(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcZoneManager, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcZoneManager_PointMesh__SWIG_0(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcZoneManager_PointMesh'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_ActivateRegion__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; iCelRegion *arg2 = (iCelRegion *) 0 ; bool arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcZoneManager_ActivateRegion",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_ActivateRegion" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_ActivateRegion" "', argument " "2"" of type '" "iCelRegion *""'"); } arg2 = reinterpret_cast< iCelRegion * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcZoneManager_ActivateRegion" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); result = (bool)(arg1)->ActivateRegion(arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_ActivateRegion__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; iCelRegion *arg2 = (iCelRegion *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_ActivateRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_ActivateRegion" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelRegion, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcZoneManager_ActivateRegion" "', argument " "2"" of type '" "iCelRegion *""'"); } arg2 = reinterpret_cast< iCelRegion * >(argp2); result = (bool)(arg1)->ActivateRegion(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_ActivateRegion(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcZoneManager, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelRegion, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcZoneManager_ActivateRegion__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcZoneManager, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelRegion, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcZoneManager_ActivateRegion__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcZoneManager_ActivateRegion'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_ColliderWrappersEnabled_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_ColliderWrappersEnabled_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_ColliderWrappersEnabled_set" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcZoneManager_ColliderWrappersEnabled_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcZoneManager_ColliderWrappersEnabled_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_ColliderWrappersEnabled_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_ColliderWrappersEnabled_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_ColliderWrappersEnabled_get" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = (bool)iPcZoneManager_ColliderWrappersEnabled_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_LoadingMode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcZoneManager_LoadingMode_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_LoadingMode_set" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcZoneManager_LoadingMode_set" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); iPcZoneManager_LoadingMode_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_LoadingMode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_LoadingMode_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_LoadingMode_get" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = (int)iPcZoneManager_LoadingMode_get(arg1); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_ZoneCount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_ZoneCount_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_ZoneCount_get" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = iPcZoneManager_ZoneCount_get(arg1); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_RegionCount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_RegionCount_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_RegionCount_get" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = iPcZoneManager_RegionCount_get(arg1); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_LastStartRegionName_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_LastStartRegionName_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_LastStartRegionName_get" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = (char *)iPcZoneManager_LastStartRegionName_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcZoneManager_LastStartName_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcZoneManager_LastStartName_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcZoneManager_LastStartName_get" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); result = (char *)iPcZoneManager_LastStartName_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcZoneManager(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcZoneManager *arg1 = (iPcZoneManager *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcZoneManager",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcZoneManager, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcZoneManager" "', argument " "1"" of type '" "iPcZoneManager *""'"); } arg1 = reinterpret_cast< iPcZoneManager * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcZoneManager_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcZoneManager, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateZoneManager(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcZoneManager *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateZoneManager",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateZoneManager" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateZoneManager" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcZoneManager *)celCreateZoneManager(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcZoneManager, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetZoneManager(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcZoneManager *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetZoneManager",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetZoneManager" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetZoneManager" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcZoneManager *)celGetSetZoneManager(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcZoneManager, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetZoneManager(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcZoneManager *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetZoneManager",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetZoneManager" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcZoneManager *)celGetZoneManager(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcZoneManager, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcZoneManager(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcZoneManager *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcZoneManager",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcZoneManager" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcZoneManager *)scfQuery_iPcZoneManager(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcZoneManager, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_Activate__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCommandInput_Activate",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_Activate" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCommandInput_Activate" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->Activate(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_Activate__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCommandInput_Activate",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_Activate" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); (arg1)->Activate(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_Activate(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCommandInput, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcCommandInput_Activate__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCommandInput, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcCommandInput_Activate__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcCommandInput_Activate'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_SetSendTrigger(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCommandInput_SetSendTrigger",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_SetSendTrigger" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCommandInput_SetSendTrigger" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetSendTrigger(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_IsSendTriggerEnabled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCommandInput_IsSendTriggerEnabled",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_IsSendTriggerEnabled" "', argument " "1"" of type '" "iPcCommandInput const *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); result = (bool)((iPcCommandInput const *)arg1)->IsSendTriggerEnabled(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_SetCookedMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCommandInput_SetCookedMode",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_SetCookedMode" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCommandInput_SetCookedMode" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetCookedMode(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_GetCookedMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCommandInput_GetCookedMode",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_GetCookedMode" "', argument " "1"" of type '" "iPcCommandInput const *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); result = (bool)((iPcCommandInput const *)arg1)->GetCookedMode(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_ScreenCoordinates__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCommandInput_ScreenCoordinates",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_ScreenCoordinates" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCommandInput_ScreenCoordinates" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->ScreenCoordinates(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_ScreenCoordinates__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCommandInput_ScreenCoordinates",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_ScreenCoordinates" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); (arg1)->ScreenCoordinates(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_ScreenCoordinates(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCommandInput, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcCommandInput_ScreenCoordinates__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCommandInput, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcCommandInput_ScreenCoordinates__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcCommandInput_ScreenCoordinates'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_ScreenToCentered__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; float arg2 ; float arg3 ; float result; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcCommandInput_ScreenToCentered",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_ScreenToCentered" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCommandInput_ScreenToCentered" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCommandInput_ScreenToCentered" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); result = (float)(arg1)->ScreenToCentered(arg2,arg3); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_ScreenToCentered__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; float arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCommandInput_ScreenToCentered",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_ScreenToCentered" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCommandInput_ScreenToCentered" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); result = (float)(arg1)->ScreenToCentered(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_ScreenToCentered(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCommandInput, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcCommandInput_ScreenToCentered__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCommandInput, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcCommandInput_ScreenToCentered__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcCommandInput_ScreenToCentered'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_CenteredToScreen__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; float arg2 ; float arg3 ; float result; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcCommandInput_CenteredToScreen",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_CenteredToScreen" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCommandInput_CenteredToScreen" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCommandInput_CenteredToScreen" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); result = (float)(arg1)->CenteredToScreen(arg2,arg3); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_CenteredToScreen__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; float arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCommandInput_CenteredToScreen",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_CenteredToScreen" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCommandInput_CenteredToScreen" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); result = (float)(arg1)->CenteredToScreen(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_CenteredToScreen(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCommandInput, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcCommandInput_CenteredToScreen__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCommandInput, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcCommandInput_CenteredToScreen__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcCommandInput_CenteredToScreen'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_LoadConfig(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCommandInput_LoadConfig",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_LoadConfig" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCommandInput_LoadConfig" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)(arg1)->LoadConfig((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_SaveConfig(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCommandInput_SaveConfig",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_SaveConfig" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCommandInput_SaveConfig" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SaveConfig((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_Bind(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcCommandInput_Bind",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_Bind" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCommandInput_Bind" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcCommandInput_Bind" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (bool)(arg1)->Bind((char const *)arg2,(char const *)arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_GetBind(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; char *arg2 = (char *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCommandInput_GetBind",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_GetBind" "', argument " "1"" of type '" "iPcCommandInput const *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCommandInput_GetBind" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (char *)((iPcCommandInput const *)arg1)->GetBind((char const *)arg2); resultobj = SWIG_FromCharPtr(result); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_RemoveBind(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcCommandInput_RemoveBind",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_RemoveBind" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCommandInput_RemoveBind" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcCommandInput_RemoveBind" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (bool)(arg1)->RemoveBind((char const *)arg2,(char const *)arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_RemoveAllBinds(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCommandInput_RemoveAllBinds",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_RemoveAllBinds" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); (arg1)->RemoveAllBinds(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_CookedModeEnabled_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCommandInput_CookedModeEnabled_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_CookedModeEnabled_set" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCommandInput_CookedModeEnabled_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcCommandInput_CookedModeEnabled_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCommandInput_CookedModeEnabled_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCommandInput_CookedModeEnabled_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCommandInput_CookedModeEnabled_get" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); result = (bool)iPcCommandInput_CookedModeEnabled_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcCommandInput(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCommandInput *arg1 = (iPcCommandInput *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcCommandInput",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCommandInput, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcCommandInput" "', argument " "1"" of type '" "iPcCommandInput *""'"); } arg1 = reinterpret_cast< iPcCommandInput * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcCommandInput_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcCommandInput, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateCommandInput(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcCommandInput *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateCommandInput",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateCommandInput" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateCommandInput" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcCommandInput *)celCreateCommandInput(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCommandInput, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetCommandInput(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcCommandInput *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetCommandInput",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetCommandInput" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetCommandInput" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcCommandInput *)celGetSetCommandInput(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCommandInput, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetCommandInput(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcCommandInput *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetCommandInput",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetCommandInput" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcCommandInput *)celGetCommandInput(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCommandInput, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcCommandInput(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcCommandInput *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcCommandInput",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcCommandInput" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcCommandInput *)scfQuery_iPcCommandInput(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCommandInput, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravityCallback_Callback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravityCallback *arg1 = (iPcGravityCallback *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravityCallback_Callback",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravityCallback, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravityCallback_Callback" "', argument " "1"" of type '" "iPcGravityCallback *""'"); } arg1 = reinterpret_cast< iPcGravityCallback * >(argp1); (arg1)->Callback(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcGravityCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravityCallback *arg1 = (iPcGravityCallback *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcGravityCallback",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravityCallback, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcGravityCallback" "', argument " "1"" of type '" "iPcGravityCallback *""'"); } arg1 = reinterpret_cast< iPcGravityCallback * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcGravityCallback_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcGravityCallback, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetAnchor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iPcMesh *arg2 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetAnchor",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetAnchor" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_SetAnchor" "', argument " "2"" of type '" "iPcMesh *""'"); } arg2 = reinterpret_cast< iPcMesh * >(argp2); (arg1)->SetAnchor(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_GetAnchor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_GetAnchor",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_GetAnchor" "', argument " "1"" of type '" "iPcLinearMovement const *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (iPcMesh *)((iPcLinearMovement const *)arg1)->GetAnchor(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetAngularVelocity__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetAngularVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetAngularVelocity" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_SetAngularVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetAngularVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetAngularVelocity((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetAngularVelocity__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; csVector3 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcLinearMovement_SetAngularVelocity",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetAngularVelocity" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_SetAngularVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetAngularVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcLinearMovement_SetAngularVelocity" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetAngularVelocity" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); (arg1)->SetAngularVelocity((csVector3 const &)*arg2,(csVector3 const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetAngularVelocity(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_SetAngularVelocity__SWIG_0(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_SetAngularVelocity__SWIG_1(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcLinearMovement_SetAngularVelocity'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetSpeed" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_SetSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetSpeed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetVelocity" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_SetVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetVelocity((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_AddVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_AddVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_AddVelocity" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_AddVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_AddVelocity" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->AddVelocity((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_ClearWorldVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_ClearWorldVelocity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_ClearWorldVelocity" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); (arg1)->ClearWorldVelocity(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_GetVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_GetVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_GetVelocity" "', argument " "1"" of type '" "iPcLinearMovement const *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_GetVelocity" "', argument " "2"" of type '" "csVector3 &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetVelocity" "', argument " "2"" of type '" "csVector3 &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ((iPcLinearMovement const *)arg1)->GetVelocity(*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_GetAngularVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_GetAngularVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_GetAngularVelocity" "', argument " "1"" of type '" "iPcLinearMovement const *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_GetAngularVelocity" "', argument " "2"" of type '" "csVector3 &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetAngularVelocity" "', argument " "2"" of type '" "csVector3 &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ((iPcLinearMovement const *)arg1)->GetAngularVelocity(*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_InitCD__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iMeshWrapper *arg2 = (iMeshWrapper *) 0 ; float arg3 ; iPcCollisionDetection *arg4 = (iPcCollisionDetection *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcLinearMovement_InitCD",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_InitCD" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iMeshWrapper, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_InitCD" "', argument " "2"" of type '" "iMeshWrapper *""'"); } arg2 = reinterpret_cast< iMeshWrapper * >(argp2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcLinearMovement_InitCD" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_iPcCollisionDetection, 0 | 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_InitCD" "', argument " "4"" of type '" "iPcCollisionDetection *""'"); } arg4 = reinterpret_cast< iPcCollisionDetection * >(argp4); result = (bool)(arg1)->InitCD(arg2,arg3,arg4); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_InitCD__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iMeshWrapper *arg2 = (iMeshWrapper *) 0 ; float arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcLinearMovement_InitCD",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_InitCD" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iMeshWrapper, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_InitCD" "', argument " "2"" of type '" "iMeshWrapper *""'"); } arg2 = reinterpret_cast< iMeshWrapper * >(argp2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcLinearMovement_InitCD" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); result = (bool)(arg1)->InitCD(arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_InitCD__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; csVector3 *arg3 = 0 ; csVector3 *arg4 = 0 ; iPcCollisionDetection *arg5 = (iPcCollisionDetection *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcLinearMovement_InitCD",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_InitCD" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_InitCD" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_InitCD" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcLinearMovement_InitCD" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_InitCD" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_InitCD" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_InitCD" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_iPcCollisionDetection, 0 | 0 ); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcLinearMovement_InitCD" "', argument " "5"" of type '" "iPcCollisionDetection *""'"); } arg5 = reinterpret_cast< iPcCollisionDetection * >(argp5); result = (bool)(arg1)->InitCD((csVector3 const &)*arg2,(csVector3 const &)*arg3,(csVector3 const &)*arg4,arg5); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_InitCD__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; csVector3 *arg3 = 0 ; csVector3 *arg4 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcLinearMovement_InitCD",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_InitCD" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_InitCD" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_InitCD" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcLinearMovement_InitCD" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_InitCD" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_InitCD" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_InitCD" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); result = (bool)(arg1)->InitCD((csVector3 const &)*arg2,(csVector3 const &)*arg3,(csVector3 const &)*arg4); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_GetCDDimensions(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; csVector3 *arg3 = 0 ; csVector3 *arg4 = 0 ; iPcCollisionDetection **arg5 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcLinearMovement_GetCDDimensions",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_GetCDDimensions" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_GetCDDimensions" "', argument " "2"" of type '" "csVector3 &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetCDDimensions" "', argument " "2"" of type '" "csVector3 &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcLinearMovement_GetCDDimensions" "', argument " "3"" of type '" "csVector3 &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetCDDimensions" "', argument " "3"" of type '" "csVector3 &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_GetCDDimensions" "', argument " "4"" of type '" "csVector3 &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetCDDimensions" "', argument " "4"" of type '" "csVector3 &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_p_iPcCollisionDetection, 0 ); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcLinearMovement_GetCDDimensions" "', argument " "5"" of type '" "iPcCollisionDetection *&""'"); } if (!argp5) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetCDDimensions" "', argument " "5"" of type '" "iPcCollisionDetection *&""'"); } arg5 = reinterpret_cast< iPcCollisionDetection ** >(argp5); (arg1)->GetCDDimensions(*arg2,*arg3,*arg4,*arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_InitCD__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iPcCollisionDetection *arg2 = (iPcCollisionDetection *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_InitCD",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_InitCD" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcCollisionDetection, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_InitCD" "', argument " "2"" of type '" "iPcCollisionDetection *""'"); } arg2 = reinterpret_cast< iPcCollisionDetection * >(argp2); result = (bool)(arg1)->InitCD(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_InitCD__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_InitCD",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_InitCD" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (bool)(arg1)->InitCD(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_InitCD(PyObject *self, PyObject *args) { int argc; PyObject *argv[6]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 5); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_InitCD__SWIG_5(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iPcCollisionDetection, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_InitCD__SWIG_4(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iMeshWrapper, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcLinearMovement_InitCD__SWIG_1(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iMeshWrapper, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_iPcCollisionDetection, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_InitCD__SWIG_0(self, args); } } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_InitCD__SWIG_3(self, args); } } } } } if (argc == 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_iPcCollisionDetection, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_InitCD__SWIG_2(self, args); } } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcLinearMovement_InitCD'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_TimeDiff(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csTicks result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_TimeDiff",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_TimeDiff" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (csTicks)(arg1)->TimeDiff(); resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_GetDRData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; bool *arg2 = 0 ; float *arg3 = 0 ; csVector3 *arg4 = 0 ; float *arg5 = 0 ; iSector **arg6 = 0 ; csVector3 *arg7 = 0 ; csVector3 *arg8 = 0 ; float *arg9 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; void *argp6 = 0 ; int res6 = 0 ; void *argp7 = 0 ; int res7 = 0 ; void *argp8 = 0 ; int res8 = 0 ; void *argp9 = 0 ; int res9 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:iPcLinearMovement_GetDRData",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_GetDRData" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_bool, 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_GetDRData" "', argument " "2"" of type '" "bool &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetDRData" "', argument " "2"" of type '" "bool &""'"); } arg2 = reinterpret_cast< bool * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_float, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcLinearMovement_GetDRData" "', argument " "3"" of type '" "float &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetDRData" "', argument " "3"" of type '" "float &""'"); } arg3 = reinterpret_cast< float * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_GetDRData" "', argument " "4"" of type '" "csVector3 &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetDRData" "', argument " "4"" of type '" "csVector3 &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_float, 0 ); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcLinearMovement_GetDRData" "', argument " "5"" of type '" "float &""'"); } if (!argp5) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetDRData" "', argument " "5"" of type '" "float &""'"); } arg5 = reinterpret_cast< float * >(argp5); res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_p_iSector, 0 ); if (!SWIG_IsOK(res6)) { SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "iPcLinearMovement_GetDRData" "', argument " "6"" of type '" "iSector *&""'"); } if (!argp6) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetDRData" "', argument " "6"" of type '" "iSector *&""'"); } arg6 = reinterpret_cast< iSector ** >(argp6); res7 = SWIG_ConvertPtr(obj6, &argp7, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res7)) { SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "iPcLinearMovement_GetDRData" "', argument " "7"" of type '" "csVector3 &""'"); } if (!argp7) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetDRData" "', argument " "7"" of type '" "csVector3 &""'"); } arg7 = reinterpret_cast< csVector3 * >(argp7); res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res8)) { SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "iPcLinearMovement_GetDRData" "', argument " "8"" of type '" "csVector3 &""'"); } if (!argp8) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetDRData" "', argument " "8"" of type '" "csVector3 &""'"); } arg8 = reinterpret_cast< csVector3 * >(argp8); res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_float, 0 ); if (!SWIG_IsOK(res9)) { SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "iPcLinearMovement_GetDRData" "', argument " "9"" of type '" "float &""'"); } if (!argp9) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetDRData" "', argument " "9"" of type '" "float &""'"); } arg9 = reinterpret_cast< float * >(argp9); (arg1)->GetDRData(*arg2,*arg3,*arg4,*arg5,*arg6,*arg7,*arg8,*arg9); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetDRData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; bool arg2 ; float arg3 ; csVector3 *arg4 = 0 ; float arg5 ; iSector *arg6 = (iSector *) 0 ; csVector3 *arg7 = 0 ; csVector3 *arg8 = 0 ; float arg9 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; float val5 ; int ecode5 = 0 ; void *argp6 = 0 ; int res6 = 0 ; void *argp7 = 0 ; int res7 = 0 ; void *argp8 = 0 ; int res8 = 0 ; float val9 ; int ecode9 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:iPcLinearMovement_SetDRData",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetDRData" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_SetDRData" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcLinearMovement_SetDRData" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_SetDRData" "', argument " "4"" of type '" "csVector3 &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetDRData" "', argument " "4"" of type '" "csVector3 &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcLinearMovement_SetDRData" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res6)) { SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "iPcLinearMovement_SetDRData" "', argument " "6"" of type '" "iSector *""'"); } arg6 = reinterpret_cast< iSector * >(argp6); res7 = SWIG_ConvertPtr(obj6, &argp7, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res7)) { SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "iPcLinearMovement_SetDRData" "', argument " "7"" of type '" "csVector3 &""'"); } if (!argp7) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetDRData" "', argument " "7"" of type '" "csVector3 &""'"); } arg7 = reinterpret_cast< csVector3 * >(argp7); res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res8)) { SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "iPcLinearMovement_SetDRData" "', argument " "8"" of type '" "csVector3 &""'"); } if (!argp8) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetDRData" "', argument " "8"" of type '" "csVector3 &""'"); } arg8 = reinterpret_cast< csVector3 * >(argp8); ecode9 = SWIG_AsVal_float(obj8, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "iPcLinearMovement_SetDRData" "', argument " "9"" of type '" "float""'"); } arg9 = static_cast< float >(val9); (arg1)->SetDRData(arg2,arg3,*arg4,arg5,arg6,*arg7,*arg8,arg9); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetSoftDRData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; bool arg2 ; float arg3 ; csVector3 *arg4 = 0 ; float arg5 ; iSector *arg6 = (iSector *) 0 ; csVector3 *arg7 = 0 ; csVector3 *arg8 = 0 ; float arg9 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; float val5 ; int ecode5 = 0 ; void *argp6 = 0 ; int res6 = 0 ; void *argp7 = 0 ; int res7 = 0 ; void *argp8 = 0 ; int res8 = 0 ; float val9 ; int ecode9 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:iPcLinearMovement_SetSoftDRData",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "4"" of type '" "csVector3 &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "4"" of type '" "csVector3 &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res6)) { SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "6"" of type '" "iSector *""'"); } arg6 = reinterpret_cast< iSector * >(argp6); res7 = SWIG_ConvertPtr(obj6, &argp7, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res7)) { SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "7"" of type '" "csVector3 &""'"); } if (!argp7) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "7"" of type '" "csVector3 &""'"); } arg7 = reinterpret_cast< csVector3 * >(argp7); res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res8)) { SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "8"" of type '" "csVector3 &""'"); } if (!argp8) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "8"" of type '" "csVector3 &""'"); } arg8 = reinterpret_cast< csVector3 * >(argp8); ecode9 = SWIG_AsVal_float(obj8, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "iPcLinearMovement_SetSoftDRData" "', argument " "9"" of type '" "float""'"); } arg9 = static_cast< float >(val9); (arg1)->SetSoftDRData(arg2,arg3,*arg4,arg5,arg6,*arg7,*arg8,arg9); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetFullPosition__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; float arg3 ; iSector *arg4 = (iSector *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcLinearMovement_SetFullPosition",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetFullPosition" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_SetFullPosition" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetFullPosition" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcLinearMovement_SetFullPosition" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_SetFullPosition" "', argument " "4"" of type '" "iSector const *""'"); } arg4 = reinterpret_cast< iSector * >(argp4); (arg1)->SetFullPosition((csVector3 const &)*arg2,arg3,(iSector const *)arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetPosition__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; float arg3 ; iSector *arg4 = (iSector *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcLinearMovement_SetPosition",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetPosition" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_SetPosition" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_SetPosition" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcLinearMovement_SetPosition" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_SetPosition" "', argument " "4"" of type '" "iSector const *""'"); } arg4 = reinterpret_cast< iSector * >(argp4); (arg1)->SetPosition((csVector3 const &)*arg2,arg3,(iSector const *)arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_GetLastPosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; float *arg3 = 0 ; iSector **arg4 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcLinearMovement_GetLastPosition",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_GetLastPosition" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_GetLastPosition" "', argument " "2"" of type '" "csVector3 &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetLastPosition" "', argument " "2"" of type '" "csVector3 &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_float, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcLinearMovement_GetLastPosition" "', argument " "3"" of type '" "float &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetLastPosition" "', argument " "3"" of type '" "float &""'"); } arg3 = reinterpret_cast< float * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_p_iSector, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_GetLastPosition" "', argument " "4"" of type '" "iSector *&""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetLastPosition" "', argument " "4"" of type '" "iSector *&""'"); } arg4 = reinterpret_cast< iSector ** >(argp4); (arg1)->GetLastPosition(*arg2,*arg3,*arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_GetLastFullPosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 *arg2 = 0 ; float *arg3 = 0 ; iSector **arg4 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcLinearMovement_GetLastFullPosition",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_GetLastFullPosition" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_GetLastFullPosition" "', argument " "2"" of type '" "csVector3 &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetLastFullPosition" "', argument " "2"" of type '" "csVector3 &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_float, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcLinearMovement_GetLastFullPosition" "', argument " "3"" of type '" "float &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetLastFullPosition" "', argument " "3"" of type '" "float &""'"); } arg3 = reinterpret_cast< float * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_p_iSector, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_GetLastFullPosition" "', argument " "4"" of type '" "iSector *&""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcLinearMovement_GetLastFullPosition" "', argument " "4"" of type '" "iSector *&""'"); } arg4 = reinterpret_cast< iSector ** >(argp4); (arg1)->GetLastFullPosition(*arg2,*arg3,*arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_IsPath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_IsPath",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_IsPath" "', argument " "1"" of type '" "iPcLinearMovement const *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (bool)((iPcLinearMovement const *)arg1)->IsPath(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_GetSector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iSector *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_GetSector",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_GetSector" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (iSector *)(arg1)->GetSector(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSector, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_ExtrapolatePosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_ExtrapolatePosition",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_ExtrapolatePosition" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_ExtrapolatePosition" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->ExtrapolatePosition(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_UpdateDRDelta(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csTicks arg2 ; void *argp1 = 0 ; int res1 = 0 ; unsigned int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_UpdateDRDelta",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_UpdateDRDelta" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_UpdateDRDelta" "', argument " "2"" of type '" "csTicks""'"); } arg2 = static_cast< csTicks >(val2); (arg1)->UpdateDRDelta(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_UpdateDR__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csTicks arg2 ; void *argp1 = 0 ; int res1 = 0 ; unsigned int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_UpdateDR",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_UpdateDR" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_UpdateDR" "', argument " "2"" of type '" "csTicks""'"); } arg2 = static_cast< csTicks >(val2); (arg1)->UpdateDR(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_UpdateDR__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_UpdateDR",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_UpdateDR" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); (arg1)->UpdateDR(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_UpdateDR(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_UpdateDR__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_unsigned_SS_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcLinearMovement_UpdateDR__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcLinearMovement_UpdateDR'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetPath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iPath *arg2 = (iPath *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetPath",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetPath" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPath, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_SetPath" "', argument " "2"" of type '" "iPath *""'"); } arg2 = reinterpret_cast< iPath * >(argp2); (arg1)->SetPath(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetPathTime(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetPathTime",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetPathTime" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_SetPathTime" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetPathTime(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetPathSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetPathSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetPathSpeed" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_SetPathSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetPathSpeed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetPathAction(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; int arg2 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcLinearMovement_SetPathAction",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetPathAction" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_SetPathAction" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcLinearMovement_SetPathAction" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->SetPathAction(arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetPathSector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetPathSector",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetPathSector" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_SetPathSector" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetPathSector((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_IsOnGround(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_IsOnGround",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_IsOnGround" "', argument " "1"" of type '" "iPcLinearMovement const *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (bool)((iPcLinearMovement const *)arg1)->IsOnGround(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetOnGround(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetOnGround",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetOnGround" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_SetOnGround" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetOnGround(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetHugGround(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetHugGround",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetHugGround" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_SetHugGround" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetHugGround(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetDeltaLimit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetDeltaLimit",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetDeltaLimit" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_SetDeltaLimit" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetDeltaLimit(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_RotateV(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; float arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_RotateV",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_RotateV" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_RotateV" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); result = (bool)(arg1)->RotateV(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetGravity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_SetGravity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetGravity" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_SetGravity" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetGravity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_GetGravity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_GetGravity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_GetGravity" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (float)(arg1)->GetGravity(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_ResetGravity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_ResetGravity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_ResetGravity" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); (arg1)->ResetGravity(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_AddGravityCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iPcGravityCallback *arg2 = (iPcGravityCallback *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_AddGravityCallback",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_AddGravityCallback" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcGravityCallback, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_AddGravityCallback" "', argument " "2"" of type '" "iPcGravityCallback *""'"); } arg2 = reinterpret_cast< iPcGravityCallback * >(argp2); (arg1)->AddGravityCallback(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_RemoveGravityCallback(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iPcGravityCallback *arg2 = (iPcGravityCallback *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_RemoveGravityCallback",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_RemoveGravityCallback" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcGravityCallback, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_RemoveGravityCallback" "', argument " "2"" of type '" "iPcGravityCallback *""'"); } arg2 = reinterpret_cast< iPcGravityCallback * >(argp2); (arg1)->RemoveGravityCallback(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_GetPortalDisplacement(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_GetPortalDisplacement",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_GetPortalDisplacement" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (arg1)->GetPortalDisplacement(); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_ClearPortalDisplacement(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_ClearPortalDisplacement",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_ClearPortalDisplacement" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); (arg1)->ClearPortalDisplacement(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetFullPosition__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; char *arg2 = (char *) 0 ; float arg3 ; iSector *arg4 = (iSector *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; float val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcLinearMovement_SetFullPosition",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetFullPosition" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_SetFullPosition" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcLinearMovement_SetFullPosition" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_SetFullPosition" "', argument " "4"" of type '" "iSector *""'"); } arg4 = reinterpret_cast< iSector * >(argp4); (arg1)->SetFullPosition((char const *)arg2,arg3,arg4); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetFullPosition(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_SetFullPosition__SWIG_0(self, args); } } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_SetFullPosition__SWIG_1(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcLinearMovement_SetFullPosition'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetPosition__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; char *arg2 = (char *) 0 ; float arg3 ; iSector *arg4 = (iSector *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; float val3 ; int ecode3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcLinearMovement_SetPosition",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_SetPosition" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_SetPosition" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcLinearMovement_SetPosition" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcLinearMovement_SetPosition" "', argument " "4"" of type '" "iSector *""'"); } arg4 = reinterpret_cast< iSector * >(argp4); (arg1)->SetPosition((char const *)arg2,arg3,arg4); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_SetPosition(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_SetPosition__SWIG_0(self, args); } } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcLinearMovement, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcLinearMovement_SetPosition__SWIG_1(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcLinearMovement_SetPosition'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_Anchor_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iPcMesh *arg2 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_Anchor_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_Anchor_set" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcLinearMovement_Anchor_set" "', argument " "2"" of type '" "iPcMesh *""'"); } arg2 = reinterpret_cast< iPcMesh * >(argp2); iPcLinearMovement_Anchor_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_Anchor_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_Anchor_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_Anchor_get" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (iPcMesh *)iPcLinearMovement_Anchor_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_Sector_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; iSector *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_Sector_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_Sector_get" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (iSector *)iPcLinearMovement_Sector_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSector, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_OnGround_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_OnGround_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_OnGround_set" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_OnGround_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcLinearMovement_OnGround_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_OnGround_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_OnGround_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_OnGround_get" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (bool)iPcLinearMovement_OnGround_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_Gravity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcLinearMovement_Gravity_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_Gravity_set" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcLinearMovement_Gravity_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcLinearMovement_Gravity_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_Gravity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_Gravity_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_Gravity_get" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = (float)iPcLinearMovement_Gravity_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcLinearMovement_PortalDisplacement_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcLinearMovement_PortalDisplacement_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcLinearMovement_PortalDisplacement_get" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); result = iPcLinearMovement_PortalDisplacement_get(arg1); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcLinearMovement(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcLinearMovement *arg1 = (iPcLinearMovement *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcLinearMovement",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcLinearMovement, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcLinearMovement" "', argument " "1"" of type '" "iPcLinearMovement *""'"); } arg1 = reinterpret_cast< iPcLinearMovement * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcLinearMovement_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcLinearMovement, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateLinearMovement(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcLinearMovement *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateLinearMovement",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateLinearMovement" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateLinearMovement" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcLinearMovement *)celCreateLinearMovement(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetLinearMovement(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcLinearMovement *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetLinearMovement",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetLinearMovement" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetLinearMovement" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcLinearMovement *)celGetSetLinearMovement(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetLinearMovement(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcLinearMovement *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetLinearMovement",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetLinearMovement" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcLinearMovement *)celGetLinearMovement(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcLinearMovement(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcLinearMovement *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcLinearMovement",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcLinearMovement" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcLinearMovement *)scfQuery_iPcLinearMovement(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcLinearMovement, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_Forward(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_Forward",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_Forward" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_Forward" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->Forward(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_IsMovingForward(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_IsMovingForward",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_IsMovingForward" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)(arg1)->IsMovingForward(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_Backward(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_Backward",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_Backward" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_Backward" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->Backward(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_IsMovingBackward(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_IsMovingBackward",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_IsMovingBackward" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)(arg1)->IsMovingBackward(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_StrafeLeft(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_StrafeLeft",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_StrafeLeft" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_StrafeLeft" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->StrafeLeft(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_IsStrafingLeft(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_IsStrafingLeft",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_IsStrafingLeft" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)(arg1)->IsStrafingLeft(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_StrafeRight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_StrafeRight",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_StrafeRight" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_StrafeRight" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->StrafeRight(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_IsStrafingRight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_IsStrafingRight",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_IsStrafingRight" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)(arg1)->IsStrafingRight(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RotateLeft(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_RotateLeft",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RotateLeft" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_RotateLeft" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->RotateLeft(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_IsRotatingLeft(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_IsRotatingLeft",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_IsRotatingLeft" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)(arg1)->IsRotatingLeft(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RotateRight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_RotateRight",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RotateRight" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_RotateRight" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->RotateRight(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_IsRotatingRight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_IsRotatingRight",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_IsRotatingRight" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)(arg1)->IsRotatingRight(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RotateTo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_RotateTo",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RotateTo" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_RotateTo" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->RotateTo(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_Run(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_Run",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_Run" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_Run" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->Run(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_IsRunning(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_IsRunning",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_IsRunning" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)(arg1)->IsRunning(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_AutoRun(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_AutoRun",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_AutoRun" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_AutoRun" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->AutoRun(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_IsAutoRunning(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_IsAutoRunning",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_IsAutoRunning" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)(arg1)->IsAutoRunning(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MouseMove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcActorMove_MouseMove",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MouseMove" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_MouseMove" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcActorMove_MouseMove" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->MouseMove(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_Jump(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_Jump",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_Jump" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); (arg1)->Jump(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_ToggleCameraMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_ToggleCameraMode",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_ToggleCameraMode" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); (arg1)->ToggleCameraMode(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_EnableMouseMove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_EnableMouseMove",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_EnableMouseMove" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_EnableMouseMove" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->EnableMouseMove(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_IsMouseMoveEnabled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_IsMouseMoveEnabled",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_IsMouseMoveEnabled" "', argument " "1"" of type '" "iPcActorMove const *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)((iPcActorMove const *)arg1)->IsMouseMoveEnabled(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_SetMouseMoveInverted(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_SetMouseMoveInverted",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_SetMouseMoveInverted" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_SetMouseMoveInverted" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetMouseMoveInverted(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_IsMouseMoveInverted(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_IsMouseMoveInverted",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_IsMouseMoveInverted" "', argument " "1"" of type '" "iPcActorMove const *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)((iPcActorMove const *)arg1)->IsMouseMoveInverted(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_SetMouseMoveSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcActorMove_SetMouseMoveSpeed",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_SetMouseMoveSpeed" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_SetMouseMoveSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcActorMove_SetMouseMoveSpeed" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetMouseMoveSpeed(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_GetMouseMoveSpeedX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_GetMouseMoveSpeedX",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_GetMouseMoveSpeedX" "', argument " "1"" of type '" "iPcActorMove const *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (float)((iPcActorMove const *)arg1)->GetMouseMoveSpeedX(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_GetMouseMoveSpeedY(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_GetMouseMoveSpeedY",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_GetMouseMoveSpeedY" "', argument " "1"" of type '" "iPcActorMove const *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (float)((iPcActorMove const *)arg1)->GetMouseMoveSpeedY(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_SetMovementSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_SetMovementSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_SetMovementSpeed" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_SetMovementSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetMovementSpeed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_GetMovementSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_GetMovementSpeed",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_GetMovementSpeed" "', argument " "1"" of type '" "iPcActorMove const *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (float)((iPcActorMove const *)arg1)->GetMovementSpeed(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_SetRunningSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_SetRunningSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_SetRunningSpeed" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_SetRunningSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetRunningSpeed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_GetRunningSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_GetRunningSpeed",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_GetRunningSpeed" "', argument " "1"" of type '" "iPcActorMove const *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (float)((iPcActorMove const *)arg1)->GetRunningSpeed(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_SetRotationSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_SetRotationSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_SetRotationSpeed" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_SetRotationSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetRotationSpeed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_GetRotationSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_GetRotationSpeed",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_GetRotationSpeed" "', argument " "1"" of type '" "iPcActorMove const *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (float)((iPcActorMove const *)arg1)->GetRotationSpeed(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_SetJumpingVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_SetJumpingVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_SetJumpingVelocity" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_SetJumpingVelocity" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetJumpingVelocity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_GetJumpingVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_GetJumpingVelocity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_GetJumpingVelocity" "', argument " "1"" of type '" "iPcActorMove const *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (float)((iPcActorMove const *)arg1)->GetJumpingVelocity(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_SetAnimation__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcActorMove_SetAnimation",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_SetAnimation" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcActorMove_SetAnimation" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcActorMove_SetAnimation" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetAnimation((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_SetAnimation__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_SetAnimation",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_SetAnimation" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcActorMove_SetAnimation" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetAnimation((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_SetAnimation(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcActorMove, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcActorMove_SetAnimation__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcActorMove, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcActorMove_SetAnimation__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcActorMove_SetAnimation'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MovingForward_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_MovingForward_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MovingForward_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_MovingForward_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcActorMove_MovingForward_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MovingForward_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_MovingForward_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MovingForward_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)iPcActorMove_MovingForward_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MovingBackward_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_MovingBackward_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MovingBackward_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_MovingBackward_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcActorMove_MovingBackward_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MovingBackward_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_MovingBackward_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MovingBackward_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)iPcActorMove_MovingBackward_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_StrafingLeft_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_StrafingLeft_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_StrafingLeft_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_StrafingLeft_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcActorMove_StrafingLeft_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_StrafingLeft_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_StrafingLeft_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_StrafingLeft_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)iPcActorMove_StrafingLeft_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_StrafingRight_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_StrafingRight_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_StrafingRight_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_StrafingRight_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcActorMove_StrafingRight_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_StrafingRight_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_StrafingRight_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_StrafingRight_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)iPcActorMove_StrafingRight_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RotatingLeft_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_RotatingLeft_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RotatingLeft_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_RotatingLeft_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcActorMove_RotatingLeft_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RotatingLeft_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_RotatingLeft_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RotatingLeft_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)iPcActorMove_RotatingLeft_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RotatingRight_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_RotatingRight_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RotatingRight_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_RotatingRight_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcActorMove_RotatingRight_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RotatingRight_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_RotatingRight_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RotatingRight_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)iPcActorMove_RotatingRight_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_Running_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_Running_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_Running_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_Running_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcActorMove_Running_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_Running_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_Running_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_Running_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)iPcActorMove_Running_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_AutoRunEnabled_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_AutoRunEnabled_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_AutoRunEnabled_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_AutoRunEnabled_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcActorMove_AutoRunEnabled_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_AutoRunEnabled_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_AutoRunEnabled_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_AutoRunEnabled_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)iPcActorMove_AutoRunEnabled_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RunningSpeed_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_RunningSpeed_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RunningSpeed_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_RunningSpeed_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcActorMove_RunningSpeed_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RunningSpeed_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_RunningSpeed_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RunningSpeed_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (float)iPcActorMove_RunningSpeed_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RotationSpeed_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_RotationSpeed_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RotationSpeed_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_RotationSpeed_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcActorMove_RotationSpeed_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_RotationSpeed_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_RotationSpeed_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_RotationSpeed_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (float)iPcActorMove_RotationSpeed_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MovementSpeed_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_MovementSpeed_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MovementSpeed_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_MovementSpeed_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcActorMove_MovementSpeed_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MovementSpeed_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_MovementSpeed_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MovementSpeed_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (float)iPcActorMove_MovementSpeed_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MouseMoveEnabled_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_MouseMoveEnabled_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MouseMoveEnabled_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_MouseMoveEnabled_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcActorMove_MouseMoveEnabled_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MouseMoveEnabled_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_MouseMoveEnabled_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MouseMoveEnabled_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)iPcActorMove_MouseMoveEnabled_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MouseMoveInverted_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcActorMove_MouseMoveInverted_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MouseMoveInverted_set" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcActorMove_MouseMoveInverted_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcActorMove_MouseMoveInverted_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcActorMove_MouseMoveInverted_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcActorMove_MouseMoveInverted_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcActorMove_MouseMoveInverted_get" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); result = (bool)iPcActorMove_MouseMoveInverted_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcActorMove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcActorMove *arg1 = (iPcActorMove *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcActorMove",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcActorMove, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcActorMove" "', argument " "1"" of type '" "iPcActorMove *""'"); } arg1 = reinterpret_cast< iPcActorMove * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcActorMove_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcActorMove, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateActorMove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcActorMove *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateActorMove",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateActorMove" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateActorMove" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcActorMove *)celCreateActorMove(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcActorMove, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetActorMove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcActorMove *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetActorMove",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetActorMove" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetActorMove" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcActorMove *)celGetSetActorMove(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcActorMove, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetActorMove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcActorMove *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetActorMove",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetActorMove" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcActorMove *)celGetActorMove(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcActorMove, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcActorMove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcActorMove *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcActorMove",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcActorMove" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcActorMove *)scfQuery_iPcActorMove(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcActorMove, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetRegion__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; iPcRegion *arg2 = (iPcRegion *) 0 ; bool arg3 ; char *arg4 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcCamera_SetRegion",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetRegion" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCamera_SetRegion" "', argument " "2"" of type '" "iPcRegion *""'"); } arg2 = reinterpret_cast< iPcRegion * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCamera_SetRegion" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcCamera_SetRegion" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; result = (bool)(arg1)->SetRegion(arg2,arg3,(char const *)arg4); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetRegion__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; iPcRegion *arg2 = (iPcRegion *) 0 ; bool arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcCamera_SetRegion",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetRegion" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCamera_SetRegion" "', argument " "2"" of type '" "iPcRegion *""'"); } arg2 = reinterpret_cast< iPcRegion * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCamera_SetRegion" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); result = (bool)(arg1)->SetRegion(arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetRegion__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; iPcRegion *arg2 = (iPcRegion *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCamera_SetRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetRegion" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcRegion, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCamera_SetRegion" "', argument " "2"" of type '" "iPcRegion *""'"); } arg2 = reinterpret_cast< iPcRegion * >(argp2); result = (bool)(arg1)->SetRegion(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetRegion(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCamera, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iPcRegion, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcCamera_SetRegion__SWIG_2(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCamera, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iPcRegion, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcCamera_SetRegion__SWIG_1(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCamera, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iPcRegion, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcCamera_SetRegion__SWIG_0(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcCamera_SetRegion'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetZoneManager__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; iPcZoneManager *arg2 = (iPcZoneManager *) 0 ; bool arg3 ; char *arg4 = (char *) 0 ; char *arg5 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; int res5 ; char *buf5 = 0 ; int alloc5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcCamera_SetZoneManager",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetZoneManager" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCamera_SetZoneManager" "', argument " "2"" of type '" "iPcZoneManager *""'"); } arg2 = reinterpret_cast< iPcZoneManager * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCamera_SetZoneManager" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcCamera_SetZoneManager" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; res5 = SWIG_AsCharPtrAndSize(obj4, &buf5, NULL, &alloc5); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcCamera_SetZoneManager" "', argument " "5"" of type '" "char const *""'"); } arg5 = buf5; result = (bool)(arg1)->SetZoneManager(arg2,arg3,(char const *)arg4,(char const *)arg5); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc4 == SWIG_NEWOBJ) delete[] buf4; if (alloc5 == SWIG_NEWOBJ) delete[] buf5; return resultobj; fail: if (alloc4 == SWIG_NEWOBJ) delete[] buf4; if (alloc5 == SWIG_NEWOBJ) delete[] buf5; return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetZoneManager__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; iPcZoneManager *arg2 = (iPcZoneManager *) 0 ; bool arg3 ; char *arg4 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcCamera_SetZoneManager",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetZoneManager" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcZoneManager, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCamera_SetZoneManager" "', argument " "2"" of type '" "iPcZoneManager *""'"); } arg2 = reinterpret_cast< iPcZoneManager * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCamera_SetZoneManager" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcCamera_SetZoneManager" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; result = (bool)(arg1)->SetZoneManager(arg2,arg3,(char const *)arg4); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetZoneManager__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; char *arg4 = (char *) 0 ; char *arg5 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; int res5 ; char *buf5 = 0 ; int alloc5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcCamera_SetZoneManager",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetZoneManager" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCamera_SetZoneManager" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCamera_SetZoneManager" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcCamera_SetZoneManager" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; res5 = SWIG_AsCharPtrAndSize(obj4, &buf5, NULL, &alloc5); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcCamera_SetZoneManager" "', argument " "5"" of type '" "char const *""'"); } arg5 = buf5; result = (bool)(arg1)->SetZoneManager((char const *)arg2,arg3,(char const *)arg4,(char const *)arg5); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; if (alloc5 == SWIG_NEWOBJ) delete[] buf5; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; if (alloc5 == SWIG_NEWOBJ) delete[] buf5; return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetZoneManager__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; char *arg4 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcCamera_SetZoneManager",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetZoneManager" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCamera_SetZoneManager" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCamera_SetZoneManager" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcCamera_SetZoneManager" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; result = (bool)(arg1)->SetZoneManager((char const *)arg2,arg3,(char const *)arg4); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetZoneManager(PyObject *self, PyObject *args) { int argc; PyObject *argv[6]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 5); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCamera, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iPcZoneManager, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcCamera_SetZoneManager__SWIG_1(self, args); } } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCamera, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcCamera_SetZoneManager__SWIG_3(self, args); } } } } } if (argc == 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCamera, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iPcZoneManager, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[4], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcCamera_SetZoneManager__SWIG_0(self, args); } } } } } } if (argc == 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcCamera, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[4], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcCamera_SetZoneManager__SWIG_2(self, args); } } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcCamera_SetZoneManager'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetRectangle(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; int arg2 ; int arg3 ; int arg4 ; int arg5 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcCamera_SetRectangle",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetRectangle" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCamera_SetRectangle" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCamera_SetRectangle" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcCamera_SetRectangle" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcCamera_SetRectangle" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); (arg1)->SetRectangle(arg2,arg3,arg4,arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_GetCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; iCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_GetCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_GetCamera" "', argument " "1"" of type '" "iPcCamera const *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (iCamera *)((iPcCamera const *)arg1)->GetCamera(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_GetView(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; iView *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_GetView",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_GetView" "', argument " "1"" of type '" "iPcCamera const *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (iView *)((iPcCamera const *)arg1)->GetView(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iView, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetClearZBuffer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCamera_SetClearZBuffer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetClearZBuffer" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCamera_SetClearZBuffer" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetClearZBuffer(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_GetClearZBuffer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_GetClearZBuffer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_GetClearZBuffer" "', argument " "1"" of type '" "iPcCamera const *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (bool)((iPcCamera const *)arg1)->GetClearZBuffer(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetClearScreen(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCamera_SetClearScreen",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetClearScreen" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCamera_SetClearScreen" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetClearScreen(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_GetClearScreen(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_GetClearScreen",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_GetClearScreen" "', argument " "1"" of type '" "iPcCamera const *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (bool)((iPcCamera const *)arg1)->GetClearScreen(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_DisableDistanceClipping(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_DisableDistanceClipping",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_DisableDistanceClipping" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); (arg1)->DisableDistanceClipping(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_EnableFixedDistanceClipping(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCamera_EnableFixedDistanceClipping",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_EnableFixedDistanceClipping" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCamera_EnableFixedDistanceClipping" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->EnableFixedDistanceClipping(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_EnableAdaptiveDistanceClipping(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; float arg2 ; float arg3 ; float arg4 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcCamera_EnableAdaptiveDistanceClipping",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_EnableAdaptiveDistanceClipping" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCamera_EnableAdaptiveDistanceClipping" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCamera_EnableAdaptiveDistanceClipping" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcCamera_EnableAdaptiveDistanceClipping" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); (arg1)->EnableAdaptiveDistanceClipping(arg2,arg3,arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_UseDistanceClipping(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_UseDistanceClipping",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_UseDistanceClipping" "', argument " "1"" of type '" "iPcCamera const *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (bool)((iPcCamera const *)arg1)->UseDistanceClipping(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_UseFixedDistanceClipping(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_UseFixedDistanceClipping",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_UseFixedDistanceClipping" "', argument " "1"" of type '" "iPcCamera const *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (bool)((iPcCamera const *)arg1)->UseFixedDistanceClipping(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_GetFixedDistance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_GetFixedDistance",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_GetFixedDistance" "', argument " "1"" of type '" "iPcCamera const *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (float)((iPcCamera const *)arg1)->GetFixedDistance(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_GetAdaptiveMinFPS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_GetAdaptiveMinFPS",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_GetAdaptiveMinFPS" "', argument " "1"" of type '" "iPcCamera const *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (float)((iPcCamera const *)arg1)->GetAdaptiveMinFPS(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_GetAdaptiveMaxFPS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_GetAdaptiveMaxFPS",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_GetAdaptiveMaxFPS" "', argument " "1"" of type '" "iPcCamera const *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (float)((iPcCamera const *)arg1)->GetAdaptiveMaxFPS(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_GetAdaptiveMinDistance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_GetAdaptiveMinDistance",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_GetAdaptiveMinDistance" "', argument " "1"" of type '" "iPcCamera const *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (float)((iPcCamera const *)arg1)->GetAdaptiveMinDistance(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_SetAutoDraw(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCamera_SetAutoDraw",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_SetAutoDraw" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCamera_SetAutoDraw" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetAutoDraw(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_Draw(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_Draw",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_Draw" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); (arg1)->Draw(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_UpdateCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_UpdateCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_UpdateCamera" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); (arg1)->UpdateCamera(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_GetDrawFlags(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_GetDrawFlags",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_GetDrawFlags" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (int)(arg1)->GetDrawFlags(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_Camera_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; iCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_Camera_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_Camera_get" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (iCamera *)iPcCamera_Camera_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_View_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; iView *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_View_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_View_get" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (iView *)iPcCamera_View_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iView, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_ClearZBuffer_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCamera_ClearZBuffer_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_ClearZBuffer_set" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCamera_ClearZBuffer_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcCamera_ClearZBuffer_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_ClearZBuffer_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_ClearZBuffer_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_ClearZBuffer_get" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (bool)iPcCamera_ClearZBuffer_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_ClearScreen_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCamera_ClearScreen_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_ClearScreen_set" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCamera_ClearScreen_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcCamera_ClearScreen_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_ClearScreen_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_ClearScreen_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_ClearScreen_get" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (bool)iPcCamera_ClearScreen_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_DrawFlags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_DrawFlags_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_DrawFlags_get" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (int)iPcCamera_DrawFlags_get(arg1); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_FixedDistance_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_FixedDistance_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_FixedDistance_get" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (float)iPcCamera_FixedDistance_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_AdaptiveMaxFPS_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_AdaptiveMaxFPS_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_AdaptiveMaxFPS_get" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (float)iPcCamera_AdaptiveMaxFPS_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_AdaptiveMinFPS_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_AdaptiveMinFPS_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_AdaptiveMinFPS_get" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (float)iPcCamera_AdaptiveMinFPS_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCamera_AdaptiveMinDistance_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCamera_AdaptiveMinDistance_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCamera_AdaptiveMinDistance_get" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); result = (float)iPcCamera_AdaptiveMinDistance_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCamera *arg1 = (iPcCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCamera, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcCamera" "', argument " "1"" of type '" "iPcCamera *""'"); } arg1 = reinterpret_cast< iPcCamera * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcCamera_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcCamera, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateCamera",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateCamera" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateCamera" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcCamera *)celCreateCamera(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetCamera",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetCamera" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetCamera" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcCamera *)celGetSetCamera(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetCamera" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcCamera *)celGetCamera(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcCamera" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcCamera *)scfQuery_iPcCamera(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetFollowEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetFollowEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetFollowEntity" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDefaultCamera_SetFollowEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); (arg1)->SetFollowEntity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetMode__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; iPcDefaultCamera::CameraMode arg2 ; bool arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcDefaultCamera_SetMode",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetMode" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetMode" "', argument " "2"" of type '" "iPcDefaultCamera::CameraMode""'"); } arg2 = static_cast< iPcDefaultCamera::CameraMode >(val2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcDefaultCamera_SetMode" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); result = (bool)(arg1)->SetMode(arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetMode__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; iPcDefaultCamera::CameraMode arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetMode",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetMode" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetMode" "', argument " "2"" of type '" "iPcDefaultCamera::CameraMode""'"); } arg2 = static_cast< iPcDefaultCamera::CameraMode >(val2); result = (bool)(arg1)->SetMode(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetMode(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_SetMode__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_SetMode__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcDefaultCamera_SetMode'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; iPcDefaultCamera::CameraMode result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_GetMode",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetMode" "', argument " "1"" of type '" "iPcDefaultCamera const *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (iPcDefaultCamera::CameraMode)((iPcDefaultCamera const *)arg1)->GetMode(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetModeName__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcDefaultCamera_SetModeName",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetModeName" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDefaultCamera_SetModeName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcDefaultCamera_SetModeName" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); result = (bool)(arg1)->SetModeName((char const *)arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetModeName__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetModeName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetModeName" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDefaultCamera_SetModeName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)(arg1)->SetModeName((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetModeName(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcDefaultCamera_SetModeName__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_SetModeName__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcDefaultCamera_SetModeName'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetModeName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_GetModeName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetModeName" "', argument " "1"" of type '" "iPcDefaultCamera const *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (char *)((iPcDefaultCamera const *)arg1)->GetModeName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetNextMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; iPcDefaultCamera::CameraMode result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_GetNextMode",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetNextMode" "', argument " "1"" of type '" "iPcDefaultCamera const *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (iPcDefaultCamera::CameraMode)((iPcDefaultCamera const *)arg1)->GetNextMode(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_PointCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_PointCamera",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_PointCamera" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDefaultCamera_PointCamera" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)(arg1)->PointCamera((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetSpringParameters(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; float arg3 ; float arg4 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcDefaultCamera_SetSpringParameters",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetSpringParameters" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetSpringParameters" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcDefaultCamera_SetSpringParameters" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcDefaultCamera_SetSpringParameters" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); (arg1)->SetSpringParameters(arg2,arg3,arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetMinMaxCameraDistance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcDefaultCamera_SetMinMaxCameraDistance",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetMinMaxCameraDistance" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetMinMaxCameraDistance" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcDefaultCamera_SetMinMaxCameraDistance" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetMinMaxCameraDistance(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetTurnSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetTurnSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetTurnSpeed" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetTurnSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetTurnSpeed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetSwingCoef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetSwingCoef",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetSwingCoef" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetSwingCoef" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetSwingCoef(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetFirstPersonOffset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetFirstPersonOffset",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetFirstPersonOffset" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDefaultCamera_SetFirstPersonOffset" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcDefaultCamera_SetFirstPersonOffset" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetFirstPersonOffset((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetThirdPersonOffset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetThirdPersonOffset",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetThirdPersonOffset" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDefaultCamera_SetThirdPersonOffset" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcDefaultCamera_SetThirdPersonOffset" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetThirdPersonOffset((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_CenterCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_CenterCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_CenterCamera" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); (arg1)->CenterCamera(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetPitch(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetPitch",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetPitch" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetPitch" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetPitch(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetPitch(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_GetPitch",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetPitch" "', argument " "1"" of type '" "iPcDefaultCamera const *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)((iPcDefaultCamera const *)arg1)->GetPitch(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetPitchVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetPitchVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetPitchVelocity" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetPitchVelocity" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetPitchVelocity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetPitchVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_GetPitchVelocity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetPitchVelocity" "', argument " "1"" of type '" "iPcDefaultCamera const *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)((iPcDefaultCamera const *)arg1)->GetPitchVelocity(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_MovePitch__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcDefaultCamera_MovePitch",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_MovePitch" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_MovePitch" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcDefaultCamera_MovePitch" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->MovePitch(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_MovePitch__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_MovePitch",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_MovePitch" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_MovePitch" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->MovePitch(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_MovePitch(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_MovePitch__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_int(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_MovePitch__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcDefaultCamera_MovePitch'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetYaw__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcDefaultCamera_SetYaw",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetYaw" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetYaw" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcDefaultCamera_SetYaw" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->SetYaw(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetYaw__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetYaw",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetYaw" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetYaw" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetYaw(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetYaw(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_SetYaw__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_int(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_SetYaw__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcDefaultCamera_SetYaw'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_MoveYaw__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcDefaultCamera_MoveYaw",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_MoveYaw" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_MoveYaw" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcDefaultCamera_MoveYaw" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->MoveYaw(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_MoveYaw__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_MoveYaw",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_MoveYaw" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_MoveYaw" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->MoveYaw(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_MoveYaw(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_MoveYaw__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_int(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_MoveYaw__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcDefaultCamera_MoveYaw'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetYaw__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; int arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_GetYaw",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetYaw" "', argument " "1"" of type '" "iPcDefaultCamera const *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_GetYaw" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (float)((iPcDefaultCamera const *)arg1)->GetYaw(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetYaw__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_GetYaw",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetYaw" "', argument " "1"" of type '" "iPcDefaultCamera const *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)((iPcDefaultCamera const *)arg1)->GetYaw(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetYaw(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcDefaultCamera_GetYaw__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_GetYaw__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcDefaultCamera_GetYaw'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetYawVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetYawVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetYawVelocity" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetYawVelocity" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetYawVelocity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetYawVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_GetYawVelocity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetYawVelocity" "', argument " "1"" of type '" "iPcDefaultCamera const *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)((iPcDefaultCamera const *)arg1)->GetYawVelocity(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetDistance__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcDefaultCamera_SetDistance",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetDistance" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetDistance" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcDefaultCamera_SetDistance" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->SetDistance(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetDistance__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetDistance",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetDistance" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetDistance" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetDistance(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetDistance(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_SetDistance__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_int(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_SetDistance__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcDefaultCamera_SetDistance'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetDistance__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; int arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_GetDistance",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetDistance" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_GetDistance" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (float)(arg1)->GetDistance(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetDistance__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_GetDistance",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetDistance" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)(arg1)->GetDistance(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetDistance(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcDefaultCamera_GetDistance__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcDefaultCamera, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcDefaultCamera_GetDistance__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcDefaultCamera_GetDistance'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_SetDistanceVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_SetDistanceVelocity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_SetDistanceVelocity" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_SetDistanceVelocity" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetDistanceVelocity(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_GetDistanceVelocity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_GetDistanceVelocity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_GetDistanceVelocity" "', argument " "1"" of type '" "iPcDefaultCamera const *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)((iPcDefaultCamera const *)arg1)->GetDistanceVelocity(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_Mode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; iPcDefaultCamera::CameraMode arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_Mode_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_Mode_set" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_Mode_set" "', argument " "2"" of type '" "iPcDefaultCamera::CameraMode""'"); } arg2 = static_cast< iPcDefaultCamera::CameraMode >(val2); iPcDefaultCamera_Mode_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_Mode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; iPcDefaultCamera::CameraMode result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_Mode_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_Mode_get" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (iPcDefaultCamera::CameraMode)iPcDefaultCamera_Mode_get(arg1); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_ModeName_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_ModeName_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_ModeName_set" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDefaultCamera_ModeName_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iPcDefaultCamera_ModeName_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_ModeName_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_ModeName_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_ModeName_get" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (char *)iPcDefaultCamera_ModeName_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_Pitch_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_Pitch_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_Pitch_set" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_Pitch_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcDefaultCamera_Pitch_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_Pitch_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_Pitch_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_Pitch_get" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)iPcDefaultCamera_Pitch_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_PitchVelocity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_PitchVelocity_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_PitchVelocity_set" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_PitchVelocity_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcDefaultCamera_PitchVelocity_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_PitchVelocity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_PitchVelocity_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_PitchVelocity_get" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)iPcDefaultCamera_PitchVelocity_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_Yaw_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_Yaw_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_Yaw_set" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_Yaw_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcDefaultCamera_Yaw_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_Yaw_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_Yaw_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_Yaw_get" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)iPcDefaultCamera_Yaw_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_YawVelocity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_YawVelocity_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_YawVelocity_set" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_YawVelocity_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcDefaultCamera_YawVelocity_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_YawVelocity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_YawVelocity_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_YawVelocity_get" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)iPcDefaultCamera_YawVelocity_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_Distance_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_Distance_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_Distance_set" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_Distance_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcDefaultCamera_Distance_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_Distance_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_Distance_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_Distance_get" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)iPcDefaultCamera_Distance_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_DistanceVelocity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDefaultCamera_DistanceVelocity_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_DistanceVelocity_set" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDefaultCamera_DistanceVelocity_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcDefaultCamera_DistanceVelocity_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDefaultCamera_DistanceVelocity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDefaultCamera_DistanceVelocity_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDefaultCamera_DistanceVelocity_get" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); result = (float)iPcDefaultCamera_DistanceVelocity_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcDefaultCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDefaultCamera *arg1 = (iPcDefaultCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcDefaultCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDefaultCamera, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcDefaultCamera" "', argument " "1"" of type '" "iPcDefaultCamera *""'"); } arg1 = reinterpret_cast< iPcDefaultCamera * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcDefaultCamera_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcDefaultCamera, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateDefaultCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcDefaultCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateDefaultCamera",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateDefaultCamera" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateDefaultCamera" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcDefaultCamera *)celCreateDefaultCamera(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetDefaultCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcDefaultCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetDefaultCamera",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetDefaultCamera" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetDefaultCamera" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcDefaultCamera *)celGetSetDefaultCamera(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetDefaultCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcDefaultCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetDefaultCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetDefaultCamera" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcDefaultCamera *)celGetDefaultCamera(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcDefaultCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcDefaultCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcDefaultCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcDefaultCamera" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcDefaultCamera *)scfQuery_iPcDefaultCamera(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcDefaultCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSimpleCamera_SetDrawMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSimpleCamera *arg1 = (iPcSimpleCamera *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcSimpleCamera_SetDrawMesh",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSimpleCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSimpleCamera_SetDrawMesh" "', argument " "1"" of type '" "iPcSimpleCamera *""'"); } arg1 = reinterpret_cast< iPcSimpleCamera * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcSimpleCamera_SetDrawMesh" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetDrawMesh(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSimpleCamera_SetCameraOffset__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSimpleCamera *arg1 = (iPcSimpleCamera *) 0 ; csVector3 *arg2 = 0 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcSimpleCamera_SetCameraOffset",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSimpleCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSimpleCamera_SetCameraOffset" "', argument " "1"" of type '" "iPcSimpleCamera *""'"); } arg1 = reinterpret_cast< iPcSimpleCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcSimpleCamera_SetCameraOffset" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcSimpleCamera_SetCameraOffset" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcSimpleCamera_SetCameraOffset" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetCameraOffset((csVector3 const &)*arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSimpleCamera_SetCameraOffset__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSimpleCamera *arg1 = (iPcSimpleCamera *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcSimpleCamera_SetCameraOffset",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSimpleCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSimpleCamera_SetCameraOffset" "', argument " "1"" of type '" "iPcSimpleCamera *""'"); } arg1 = reinterpret_cast< iPcSimpleCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcSimpleCamera_SetCameraOffset" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcSimpleCamera_SetCameraOffset" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetCameraOffset((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSimpleCamera_SetCameraOffset(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcSimpleCamera, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcSimpleCamera_SetCameraOffset__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcSimpleCamera, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcSimpleCamera_SetCameraOffset__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcSimpleCamera_SetCameraOffset'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcSimpleCamera_SetLookAtOffset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSimpleCamera *arg1 = (iPcSimpleCamera *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcSimpleCamera_SetLookAtOffset",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSimpleCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSimpleCamera_SetLookAtOffset" "', argument " "1"" of type '" "iPcSimpleCamera *""'"); } arg1 = reinterpret_cast< iPcSimpleCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcSimpleCamera_SetLookAtOffset" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcSimpleCamera_SetLookAtOffset" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->SetLookAtOffset((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSimpleCamera_SetMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSimpleCamera *arg1 = (iPcSimpleCamera *) 0 ; iPcMesh *arg2 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcSimpleCamera_SetMesh",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSimpleCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSimpleCamera_SetMesh" "', argument " "1"" of type '" "iPcSimpleCamera *""'"); } arg1 = reinterpret_cast< iPcSimpleCamera * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcSimpleCamera_SetMesh" "', argument " "2"" of type '" "iPcMesh *""'"); } arg2 = reinterpret_cast< iPcMesh * >(argp2); (arg1)->SetMesh(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSimpleCamera_Draw(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSimpleCamera *arg1 = (iPcSimpleCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSimpleCamera_Draw",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSimpleCamera, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSimpleCamera_Draw" "', argument " "1"" of type '" "iPcSimpleCamera *""'"); } arg1 = reinterpret_cast< iPcSimpleCamera * >(argp1); (arg1)->Draw(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcSimpleCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSimpleCamera *arg1 = (iPcSimpleCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcSimpleCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSimpleCamera, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcSimpleCamera" "', argument " "1"" of type '" "iPcSimpleCamera *""'"); } arg1 = reinterpret_cast< iPcSimpleCamera * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcSimpleCamera_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcSimpleCamera, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateSimpleCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcSimpleCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateSimpleCamera",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateSimpleCamera" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateSimpleCamera" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcSimpleCamera *)celCreateSimpleCamera(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSimpleCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetSimpleCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcSimpleCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetSimpleCamera",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetSimpleCamera" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetSimpleCamera" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcSimpleCamera *)celGetSetSimpleCamera(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSimpleCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSimpleCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcSimpleCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetSimpleCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSimpleCamera" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcSimpleCamera *)celGetSimpleCamera(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSimpleCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcSimpleCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcSimpleCamera *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcSimpleCamera",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcSimpleCamera" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcSimpleCamera *)scfQuery_iPcSimpleCamera(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSimpleCamera, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelectListener_MouseDown(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelectListener *arg1 = (iPcMeshSelectListener *) 0 ; iPcMeshSelect *arg2 = (iPcMeshSelect *) 0 ; int arg3 ; int arg4 ; int arg5 ; iCelEntity *arg6 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; void *argp6 = 0 ; int res6 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOO:iPcMeshSelectListener_MouseDown",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelectListener, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelectListener_MouseDown" "', argument " "1"" of type '" "iPcMeshSelectListener *""'"); } arg1 = reinterpret_cast< iPcMeshSelectListener * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMeshSelectListener_MouseDown" "', argument " "2"" of type '" "iPcMeshSelect *""'"); } arg2 = reinterpret_cast< iPcMeshSelect * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMeshSelectListener_MouseDown" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcMeshSelectListener_MouseDown" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcMeshSelectListener_MouseDown" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res6)) { SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "iPcMeshSelectListener_MouseDown" "', argument " "6"" of type '" "iCelEntity *""'"); } arg6 = reinterpret_cast< iCelEntity * >(argp6); (arg1)->MouseDown(arg2,arg3,arg4,arg5,arg6); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelectListener_MouseUp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelectListener *arg1 = (iPcMeshSelectListener *) 0 ; iPcMeshSelect *arg2 = (iPcMeshSelect *) 0 ; int arg3 ; int arg4 ; int arg5 ; iCelEntity *arg6 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; void *argp6 = 0 ; int res6 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOO:iPcMeshSelectListener_MouseUp",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelectListener, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelectListener_MouseUp" "', argument " "1"" of type '" "iPcMeshSelectListener *""'"); } arg1 = reinterpret_cast< iPcMeshSelectListener * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMeshSelectListener_MouseUp" "', argument " "2"" of type '" "iPcMeshSelect *""'"); } arg2 = reinterpret_cast< iPcMeshSelect * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMeshSelectListener_MouseUp" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcMeshSelectListener_MouseUp" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcMeshSelectListener_MouseUp" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res6)) { SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "iPcMeshSelectListener_MouseUp" "', argument " "6"" of type '" "iCelEntity *""'"); } arg6 = reinterpret_cast< iCelEntity * >(argp6); (arg1)->MouseUp(arg2,arg3,arg4,arg5,arg6); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelectListener_MouseMove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelectListener *arg1 = (iPcMeshSelectListener *) 0 ; iPcMeshSelect *arg2 = (iPcMeshSelect *) 0 ; int arg3 ; int arg4 ; int arg5 ; iCelEntity *arg6 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; void *argp6 = 0 ; int res6 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOO:iPcMeshSelectListener_MouseMove",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelectListener, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelectListener_MouseMove" "', argument " "1"" of type '" "iPcMeshSelectListener *""'"); } arg1 = reinterpret_cast< iPcMeshSelectListener * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMeshSelectListener_MouseMove" "', argument " "2"" of type '" "iPcMeshSelect *""'"); } arg2 = reinterpret_cast< iPcMeshSelect * >(argp2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMeshSelectListener_MouseMove" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcMeshSelectListener_MouseMove" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcMeshSelectListener_MouseMove" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res6)) { SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "iPcMeshSelectListener_MouseMove" "', argument " "6"" of type '" "iCelEntity *""'"); } arg6 = reinterpret_cast< iCelEntity * >(argp6); (arg1)->MouseMove(arg2,arg3,arg4,arg5,arg6); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMeshSelectListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelectListener *arg1 = (iPcMeshSelectListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMeshSelectListener",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelectListener, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMeshSelectListener" "', argument " "1"" of type '" "iPcMeshSelectListener *""'"); } arg1 = reinterpret_cast< iPcMeshSelectListener * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMeshSelectListener_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMeshSelectListener, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcMeshSelect_AddMeshSelectListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; iPcMeshSelectListener *arg2 = (iPcMeshSelectListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_AddMeshSelectListener",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_AddMeshSelectListener" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMeshSelectListener, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMeshSelect_AddMeshSelectListener" "', argument " "2"" of type '" "iPcMeshSelectListener *""'"); } arg2 = reinterpret_cast< iPcMeshSelectListener * >(argp2); (arg1)->AddMeshSelectListener(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_RemoveMeshSelectListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; iPcMeshSelectListener *arg2 = (iPcMeshSelectListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_RemoveMeshSelectListener",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_RemoveMeshSelectListener" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMeshSelectListener, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMeshSelect_RemoveMeshSelectListener" "', argument " "2"" of type '" "iPcMeshSelectListener *""'"); } arg2 = reinterpret_cast< iPcMeshSelectListener * >(argp2); (arg1)->RemoveMeshSelectListener(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetCamera(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; iPcCamera *arg2 = (iPcCamera *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetCamera",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetCamera" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcCamera, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMeshSelect_SetCamera" "', argument " "2"" of type '" "iPcCamera *""'"); } arg2 = reinterpret_cast< iPcCamera * >(argp2); (arg1)->SetCamera(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetMouseButtons__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetMouseButtons",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetMouseButtons" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SetMouseButtons" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); (arg1)->SetMouseButtons(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetMouseButtons__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetMouseButtons",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetMouseButtons" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMeshSelect_SetMouseButtons" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetMouseButtons((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetMouseButtons(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMeshSelect, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcMeshSelect_SetMouseButtons__SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMeshSelect, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMeshSelect_SetMouseButtons__SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcMeshSelect_SetMouseButtons'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_GetMouseButtons(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_GetMouseButtons",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_GetMouseButtons" "', argument " "1"" of type '" "iPcMeshSelect const *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (int)((iPcMeshSelect const *)arg1)->GetMouseButtons(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetGlobalSelection(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetGlobalSelection",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetGlobalSelection" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SetGlobalSelection" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetGlobalSelection(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_HasGlobalSelection(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_HasGlobalSelection",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_HasGlobalSelection" "', argument " "1"" of type '" "iPcMeshSelect const *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)((iPcMeshSelect const *)arg1)->HasGlobalSelection(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetFollowMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetFollowMode",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetFollowMode" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SetFollowMode" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetFollowMode(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_HasFollowMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_HasFollowMode",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_HasFollowMode" "', argument " "1"" of type '" "iPcMeshSelect const *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)((iPcMeshSelect const *)arg1)->HasFollowMode(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetFollowAlwaysMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetFollowAlwaysMode",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetFollowAlwaysMode" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SetFollowAlwaysMode" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetFollowAlwaysMode(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_HasFollowAlwaysMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_HasFollowAlwaysMode",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_HasFollowAlwaysMode" "', argument " "1"" of type '" "iPcMeshSelect const *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)((iPcMeshSelect const *)arg1)->HasFollowAlwaysMode(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetDragMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetDragMode",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetDragMode" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SetDragMode" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetDragMode(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_HasDragMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_HasDragMode",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_HasDragMode" "', argument " "1"" of type '" "iPcMeshSelect const *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)((iPcMeshSelect const *)arg1)->HasDragMode(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetDragPlaneNormal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; csVector3 *arg2 = 0 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMeshSelect_SetDragPlaneNormal",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetDragPlaneNormal" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMeshSelect_SetDragPlaneNormal" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMeshSelect_SetDragPlaneNormal" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMeshSelect_SetDragPlaneNormal" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetDragPlaneNormal((csVector3 const &)*arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_GetDragPlaneNormal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; csVector3 *arg2 = 0 ; bool *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMeshSelect_GetDragPlaneNormal",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_GetDragPlaneNormal" "', argument " "1"" of type '" "iPcMeshSelect const *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMeshSelect_GetDragPlaneNormal" "', argument " "2"" of type '" "csVector3 &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMeshSelect_GetDragPlaneNormal" "', argument " "2"" of type '" "csVector3 &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_bool, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMeshSelect_GetDragPlaneNormal" "', argument " "3"" of type '" "bool &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMeshSelect_GetDragPlaneNormal" "', argument " "3"" of type '" "bool &""'"); } arg3 = reinterpret_cast< bool * >(argp3); ((iPcMeshSelect const *)arg1)->GetDragPlaneNormal(*arg2,*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetSendmoveEvent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetSendmoveEvent",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetSendmoveEvent" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SetSendmoveEvent" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetSendmoveEvent(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_HasSendmoveEvent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_HasSendmoveEvent",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_HasSendmoveEvent" "', argument " "1"" of type '" "iPcMeshSelect const *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)((iPcMeshSelect const *)arg1)->HasSendmoveEvent(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetSendupEvent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetSendupEvent",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetSendupEvent" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SetSendupEvent" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetSendupEvent(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_HasSendupEvent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_HasSendupEvent",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_HasSendupEvent" "', argument " "1"" of type '" "iPcMeshSelect const *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)((iPcMeshSelect const *)arg1)->HasSendupEvent(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetSenddownEvent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetSenddownEvent",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetSenddownEvent" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SetSenddownEvent" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetSenddownEvent(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_HasSenddownEvent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_HasSenddownEvent",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_HasSenddownEvent" "', argument " "1"" of type '" "iPcMeshSelect const *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)((iPcMeshSelect const *)arg1)->HasSenddownEvent(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SetMaxSelectionDistance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SetMaxSelectionDistance",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SetMaxSelectionDistance" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SetMaxSelectionDistance" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetMaxSelectionDistance(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_GetMaxSelectionDistance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_GetMaxSelectionDistance",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_GetMaxSelectionDistance" "', argument " "1"" of type '" "iPcMeshSelect const *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (float)((iPcMeshSelect const *)arg1)->GetMaxSelectionDistance(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_MouseButtons_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_MouseButtons_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_MouseButtons_set" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_MouseButtons_set" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); iPcMeshSelect_MouseButtons_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_MouseButtons_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_MouseButtons_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_MouseButtons_get" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (int)iPcMeshSelect_MouseButtons_get(arg1); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_GlobalSelection_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_GlobalSelection_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_GlobalSelection_set" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_GlobalSelection_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcMeshSelect_GlobalSelection_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_GlobalSelection_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_GlobalSelection_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_GlobalSelection_get" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)iPcMeshSelect_GlobalSelection_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_FollowMode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_FollowMode_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_FollowMode_set" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_FollowMode_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcMeshSelect_FollowMode_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_FollowMode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_FollowMode_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_FollowMode_get" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)iPcMeshSelect_FollowMode_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_FollowAlwaysMode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_FollowAlwaysMode_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_FollowAlwaysMode_set" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_FollowAlwaysMode_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcMeshSelect_FollowAlwaysMode_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_FollowAlwaysMode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_FollowAlwaysMode_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_FollowAlwaysMode_get" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)iPcMeshSelect_FollowAlwaysMode_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_DragMode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_DragMode_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_DragMode_set" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_DragMode_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcMeshSelect_DragMode_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_DragMode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_DragMode_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_DragMode_get" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)iPcMeshSelect_DragMode_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SendmoveEvent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SendmoveEvent_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SendmoveEvent_set" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SendmoveEvent_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcMeshSelect_SendmoveEvent_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SendmoveEvent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_SendmoveEvent_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SendmoveEvent_get" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)iPcMeshSelect_SendmoveEvent_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SendupEvent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SendupEvent_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SendupEvent_set" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SendupEvent_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcMeshSelect_SendupEvent_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SendupEvent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_SendupEvent_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SendupEvent_get" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)iPcMeshSelect_SendupEvent_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SenddownEvent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_SenddownEvent_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SenddownEvent_set" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_SenddownEvent_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcMeshSelect_SenddownEvent_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_SenddownEvent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_SenddownEvent_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_SenddownEvent_get" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (bool)iPcMeshSelect_SenddownEvent_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_MaxSelectionDistance_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMeshSelect_MaxSelectionDistance_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_MaxSelectionDistance_set" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMeshSelect_MaxSelectionDistance_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcMeshSelect_MaxSelectionDistance_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMeshSelect_MaxSelectionDistance_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMeshSelect_MaxSelectionDistance_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMeshSelect_MaxSelectionDistance_get" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); result = (float)iPcMeshSelect_MaxSelectionDistance_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMeshSelect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMeshSelect *arg1 = (iPcMeshSelect *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMeshSelect",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMeshSelect, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMeshSelect" "', argument " "1"" of type '" "iPcMeshSelect *""'"); } arg1 = reinterpret_cast< iPcMeshSelect * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMeshSelect_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMeshSelect, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateMeshSelect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMeshSelect *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateMeshSelect",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateMeshSelect" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateMeshSelect" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMeshSelect *)celCreateMeshSelect(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetMeshSelect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMeshSelect *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetMeshSelect",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetMeshSelect" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetMeshSelect" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMeshSelect *)celGetSetMeshSelect(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetMeshSelect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcMeshSelect *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetMeshSelect",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetMeshSelect" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcMeshSelect *)celGetMeshSelect(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcMeshSelect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcMeshSelect *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcMeshSelect",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcMeshSelect" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcMeshSelect *)scfQuery_iPcMeshSelect(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMeshSelect, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetPath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMesh_SetPath",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetPath" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_SetPath" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetPath((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_LoadMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMesh_LoadMesh",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_LoadMesh" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_LoadMesh" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMesh_LoadMesh" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (bool)(arg1)->SetMesh((char const *)arg2,(char const *)arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetMesh__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; iMeshWrapper *arg2 = (iMeshWrapper *) 0 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMesh_SetMesh",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetMesh" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iMeshWrapper, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_SetMesh" "', argument " "2"" of type '" "iMeshWrapper *""'"); } arg2 = reinterpret_cast< iMeshWrapper * >(argp2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMesh_SetMesh" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetMesh(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetMesh__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; iMeshWrapper *arg2 = (iMeshWrapper *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMesh_SetMesh",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetMesh" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iMeshWrapper, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_SetMesh" "', argument " "2"" of type '" "iMeshWrapper *""'"); } arg2 = reinterpret_cast< iMeshWrapper * >(argp2); (arg1)->SetMesh(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetMesh(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iMeshWrapper, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMesh_SetMesh__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iMeshWrapper, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcMesh_SetMesh__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcMesh_SetMesh'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_CreateEmptyThing(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMesh_CreateEmptyThing",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_CreateEmptyThing" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_CreateEmptyThing" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->CreateEmptyThing((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_CreateEmptyGenmesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMesh_CreateEmptyGenmesh",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_CreateEmptyGenmesh" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_CreateEmptyGenmesh" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->CreateEmptyGenmesh((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_CreateNullMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; csBox3 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMesh_CreateNullMesh",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_CreateNullMesh" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_CreateNullMesh" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csBox3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMesh_CreateNullMesh" "', argument " "3"" of type '" "csBox3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMesh_CreateNullMesh" "', argument " "3"" of type '" "csBox3 const &""'"); } arg3 = reinterpret_cast< csBox3 * >(argp3); (arg1)->CreateNullMesh((char const *)arg2,(csBox3 const &)*arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_GetMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; iMeshWrapper *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMesh_GetMesh",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_GetMesh" "', argument " "1"" of type '" "iPcMesh const *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); result = (iMeshWrapper *)((iPcMesh const *)arg1)->GetMesh(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iMeshWrapper, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_MoveMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMesh_MoveMesh",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_MoveMesh" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_MoveMesh" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMesh_MoveMesh" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMesh_MoveMesh" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); (arg1)->MoveMesh(arg2,(csVector3 const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetAction__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMesh_SetAction",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetAction" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_SetAction" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMesh_SetAction" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetAction((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetAction__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMesh_SetAction",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetAction" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_SetAction" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetAction((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetAction(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMesh_SetAction__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcMesh_SetAction__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcMesh_SetAction'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_GetAction(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMesh_GetAction",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_GetAction" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); result = (char *)(arg1)->GetAction(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetReverseAction__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMesh_SetReverseAction",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetReverseAction" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcMesh_SetReverseAction" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetReverseAction(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetReverseAction__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMesh_SetReverseAction",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetReverseAction" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); (arg1)->SetReverseAction(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetReverseAction(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMesh_SetReverseAction__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcMesh_SetReverseAction__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcMesh_SetReverseAction'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetAnimation__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; float arg4 ; float arg5 ; float arg6 ; bool arg7 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; float val5 ; int ecode5 = 0 ; float val6 ; int ecode6 = 0 ; bool val7 ; int ecode7 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:iPcMesh_SetAnimation",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetAnimation" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_SetAnimation" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMesh_SetAnimation" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcMesh_SetAnimation" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcMesh_SetAnimation" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); ecode6 = SWIG_AsVal_float(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "iPcMesh_SetAnimation" "', argument " "6"" of type '" "float""'"); } arg6 = static_cast< float >(val6); ecode7 = SWIG_AsVal_bool(obj6, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "iPcMesh_SetAnimation" "', argument " "7"" of type '" "bool""'"); } arg7 = static_cast< bool >(val7); (arg1)->SetAnimation((char const *)arg2,arg3,arg4,arg5,arg6,arg7); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetAnimation__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; float arg4 ; float arg5 ; float arg6 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; float val5 ; int ecode5 = 0 ; float val6 ; int ecode6 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOO:iPcMesh_SetAnimation",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetAnimation" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_SetAnimation" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMesh_SetAnimation" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcMesh_SetAnimation" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcMesh_SetAnimation" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); ecode6 = SWIG_AsVal_float(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "iPcMesh_SetAnimation" "', argument " "6"" of type '" "float""'"); } arg6 = static_cast< float >(val6); (arg1)->SetAnimation((char const *)arg2,arg3,arg4,arg5,arg6); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetAnimation__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; float arg4 ; float arg5 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; float val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcMesh_SetAnimation",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetAnimation" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_SetAnimation" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMesh_SetAnimation" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcMesh_SetAnimation" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcMesh_SetAnimation" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); (arg1)->SetAnimation((char const *)arg2,arg3,arg4,arg5); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetAnimation__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; float arg4 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcMesh_SetAnimation",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetAnimation" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_SetAnimation" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMesh_SetAnimation" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcMesh_SetAnimation" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); (arg1)->SetAnimation((char const *)arg2,arg3,arg4); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetAnimation__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMesh_SetAnimation",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_SetAnimation" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_SetAnimation" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcMesh_SetAnimation" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetAnimation((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_SetAnimation(PyObject *self, PyObject *args) { int argc; PyObject *argv[8]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 7); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcMesh_SetAnimation__SWIG_4(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcMesh_SetAnimation__SWIG_3(self, args); } } } } } if (argc == 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcMesh_SetAnimation__SWIG_2(self, args); } } } } } } if (argc == 6) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[5], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcMesh_SetAnimation__SWIG_1(self, args); } } } } } } } if (argc == 7) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[5], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[6], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcMesh_SetAnimation__SWIG_0(self, args); } } } } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcMesh_SetAnimation'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_Hide(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMesh_Hide",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_Hide" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); (arg1)->Hide(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_Show(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMesh_Show",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_Show" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); (arg1)->Show(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_IsVisible(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMesh_IsVisible",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_IsVisible" "', argument " "1"" of type '" "iPcMesh const *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); result = (bool)((iPcMesh const *)arg1)->IsVisible(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_Mesh_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; iMeshWrapper *arg2 = (iMeshWrapper *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMesh_Mesh_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_Mesh_set" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iMeshWrapper, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMesh_Mesh_set" "', argument " "2"" of type '" "iMeshWrapper *""'"); } arg2 = reinterpret_cast< iMeshWrapper * >(argp2); iPcMesh_Mesh_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMesh_Mesh_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; iMeshWrapper *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMesh_Mesh_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMesh_Mesh_get" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); result = (iMeshWrapper *)iPcMesh_Mesh_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iMeshWrapper, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMesh *arg1 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMesh",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMesh, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMesh" "', argument " "1"" of type '" "iPcMesh *""'"); } arg1 = reinterpret_cast< iPcMesh * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMesh_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMesh, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateMesh",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateMesh" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateMesh" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMesh *)celCreateMesh(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetMesh",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetMesh" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetMesh" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMesh *)celGetSetMesh(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetMesh",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetMesh" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcMesh *)celGetMesh(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcMesh",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcMesh" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcMesh *)scfQuery_iPcMesh(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTimer_WakeUp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTimer *arg1 = (iPcTimer *) 0 ; csTicks arg2 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; unsigned int val2 ; int ecode2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcTimer_WakeUp",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTimer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTimer_WakeUp" "', argument " "1"" of type '" "iPcTimer *""'"); } arg1 = reinterpret_cast< iPcTimer * >(argp1); ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcTimer_WakeUp" "', argument " "2"" of type '" "csTicks""'"); } arg2 = static_cast< csTicks >(val2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcTimer_WakeUp" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->WakeUp(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTimer_WakeUpFrame(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTimer *arg1 = (iPcTimer *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcTimer_WakeUpFrame",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTimer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTimer_WakeUpFrame" "', argument " "1"" of type '" "iPcTimer *""'"); } arg1 = reinterpret_cast< iPcTimer * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcTimer_WakeUpFrame" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); (arg1)->WakeUpFrame(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTimer_Clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTimer *arg1 = (iPcTimer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcTimer_Clear",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTimer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTimer_Clear" "', argument " "1"" of type '" "iPcTimer *""'"); } arg1 = reinterpret_cast< iPcTimer * >(argp1); (arg1)->Clear(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcTimer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTimer *arg1 = (iPcTimer *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcTimer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTimer, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcTimer" "', argument " "1"" of type '" "iPcTimer *""'"); } arg1 = reinterpret_cast< iPcTimer * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcTimer_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcTimer, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateTimer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcTimer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateTimer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateTimer" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateTimer" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcTimer *)celCreateTimer(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcTimer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetTimer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcTimer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetTimer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetTimer" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetTimer" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcTimer *)celGetSetTimer(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcTimer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetTimer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcTimer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetTimer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetTimer" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcTimer *)celGetTimer(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcTimer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcTimer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcTimer *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcTimer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcTimer" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcTimer *)scfQuery_iPcTimer(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcTimer, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProjectile_Start(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProjectile *arg1 = (iPcProjectile *) 0 ; csVector3 *arg2 = 0 ; float arg3 ; float arg4 ; int arg5 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcProjectile_Start",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProjectile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProjectile_Start" "', argument " "1"" of type '" "iPcProjectile *""'"); } arg1 = reinterpret_cast< iPcProjectile * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProjectile_Start" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcProjectile_Start" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcProjectile_Start" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcProjectile_Start" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcProjectile_Start" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); result = (bool)(arg1)->Start((csVector3 const &)*arg2,arg3,arg4,arg5); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProjectile_Interrupt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProjectile *arg1 = (iPcProjectile *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcProjectile_Interrupt",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProjectile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProjectile_Interrupt" "', argument " "1"" of type '" "iPcProjectile *""'"); } arg1 = reinterpret_cast< iPcProjectile * >(argp1); (arg1)->Interrupt(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProjectile_IsMoving(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProjectile *arg1 = (iPcProjectile *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcProjectile_IsMoving",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProjectile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProjectile_IsMoving" "', argument " "1"" of type '" "iPcProjectile const *""'"); } arg1 = reinterpret_cast< iPcProjectile * >(argp1); result = (bool)((iPcProjectile const *)arg1)->IsMoving(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProjectile_Moving_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProjectile *arg1 = (iPcProjectile *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcProjectile_Moving_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProjectile, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProjectile_Moving_get" "', argument " "1"" of type '" "iPcProjectile *""'"); } arg1 = reinterpret_cast< iPcProjectile * >(argp1); result = (bool)iPcProjectile_Moving_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcProjectile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProjectile *arg1 = (iPcProjectile *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcProjectile",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProjectile, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcProjectile" "', argument " "1"" of type '" "iPcProjectile *""'"); } arg1 = reinterpret_cast< iPcProjectile * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcProjectile_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcProjectile, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateProjectile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcProjectile *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateProjectile",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateProjectile" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateProjectile" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcProjectile *)celCreateProjectile(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcProjectile, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetProjectile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcProjectile *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetProjectile",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetProjectile" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetProjectile" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcProjectile *)celGetSetProjectile(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcProjectile, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetProjectile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcProjectile *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetProjectile",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetProjectile" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcProjectile *)celGetProjectile(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcProjectile, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcProjectile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcProjectile *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcProjectile",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcProjectile" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcProjectile *)scfQuery_iPcProjectile(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcProjectile, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSolid_SetMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSolid *arg1 = (iPcSolid *) 0 ; iPcMesh *arg2 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcSolid_SetMesh",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSolid, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSolid_SetMesh" "', argument " "1"" of type '" "iPcSolid *""'"); } arg1 = reinterpret_cast< iPcSolid * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcSolid_SetMesh" "', argument " "2"" of type '" "iPcMesh *""'"); } arg2 = reinterpret_cast< iPcMesh * >(argp2); (arg1)->SetMesh(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSolid_GetMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSolid *arg1 = (iPcSolid *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSolid_GetMesh",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSolid, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSolid_GetMesh" "', argument " "1"" of type '" "iPcSolid const *""'"); } arg1 = reinterpret_cast< iPcSolid * >(argp1); result = (iPcMesh *)((iPcSolid const *)arg1)->GetMesh(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSolid_GetCollider(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSolid *arg1 = (iPcSolid *) 0 ; iCollider *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSolid_GetCollider",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSolid, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSolid_GetCollider" "', argument " "1"" of type '" "iPcSolid *""'"); } arg1 = reinterpret_cast< iPcSolid * >(argp1); result = (iCollider *)(arg1)->GetCollider(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCollider, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSolid_Setup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSolid *arg1 = (iPcSolid *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSolid_Setup",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSolid, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSolid_Setup" "', argument " "1"" of type '" "iPcSolid *""'"); } arg1 = reinterpret_cast< iPcSolid * >(argp1); (arg1)->Setup(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSolid_SetupBox(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSolid *arg1 = (iPcSolid *) 0 ; csBox3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcSolid_SetupBox",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSolid, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSolid_SetupBox" "', argument " "1"" of type '" "iPcSolid *""'"); } arg1 = reinterpret_cast< iPcSolid * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csBox3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcSolid_SetupBox" "', argument " "2"" of type '" "csBox3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcSolid_SetupBox" "', argument " "2"" of type '" "csBox3 const &""'"); } arg2 = reinterpret_cast< csBox3 * >(argp2); (arg1)->SetupBox((csBox3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSolid_Mesh_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSolid *arg1 = (iPcSolid *) 0 ; iPcMesh *arg2 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcSolid_Mesh_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSolid, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSolid_Mesh_set" "', argument " "1"" of type '" "iPcSolid *""'"); } arg1 = reinterpret_cast< iPcSolid * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcSolid_Mesh_set" "', argument " "2"" of type '" "iPcMesh *""'"); } arg2 = reinterpret_cast< iPcMesh * >(argp2); iPcSolid_Mesh_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSolid_Mesh_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSolid *arg1 = (iPcSolid *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSolid_Mesh_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSolid, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSolid_Mesh_get" "', argument " "1"" of type '" "iPcSolid *""'"); } arg1 = reinterpret_cast< iPcSolid * >(argp1); result = (iPcMesh *)iPcSolid_Mesh_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSolid_Collider_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSolid *arg1 = (iPcSolid *) 0 ; iCollider *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSolid_Collider_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSolid, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSolid_Collider_get" "', argument " "1"" of type '" "iPcSolid *""'"); } arg1 = reinterpret_cast< iPcSolid * >(argp1); result = (iCollider *)iPcSolid_Collider_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCollider, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcSolid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSolid *arg1 = (iPcSolid *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcSolid",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSolid, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcSolid" "', argument " "1"" of type '" "iPcSolid *""'"); } arg1 = reinterpret_cast< iPcSolid * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcSolid_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcSolid, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateSolid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcSolid *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateSolid",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateSolid" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateSolid" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcSolid *)celCreateSolid(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSolid, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetSolid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcSolid *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetSolid",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetSolid" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetSolid" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcSolid *)celGetSetSolid(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSolid, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSolid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcSolid *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetSolid",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSolid" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcSolid *)celGetSolid(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSolid, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcSolid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcSolid *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcSolid",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcSolid" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcSolid *)scfQuery_iPcSolid(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSolid, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_CreateGravityColliderFromMesh__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iPcMesh *arg2 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcGravity_CreateGravityColliderFromMesh",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_CreateGravityColliderFromMesh" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcGravity_CreateGravityColliderFromMesh" "', argument " "2"" of type '" "iPcMesh *""'"); } arg2 = reinterpret_cast< iPcMesh * >(argp2); (arg1)->CreateGravityCollider(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_CreateGravityColliderFromMesh__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; csVector3 *arg2 = 0 ; csVector3 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcGravity_CreateGravityColliderFromMesh",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_CreateGravityColliderFromMesh" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcGravity_CreateGravityColliderFromMesh" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcGravity_CreateGravityColliderFromMesh" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcGravity_CreateGravityColliderFromMesh" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcGravity_CreateGravityColliderFromMesh" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); (arg1)->CreateGravityCollider((csVector3 const &)*arg2,(csVector3 const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_CreateGravityColliderFromMesh(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcGravity, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iPcMesh, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcGravity_CreateGravityColliderFromMesh__SWIG_0(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcGravity, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcGravity_CreateGravityColliderFromMesh__SWIG_1(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcGravity_CreateGravityColliderFromMesh'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_GetGravityCollider(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iCollider *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_GetGravityCollider",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_GetGravityCollider" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (iCollider *)(arg1)->GetGravityCollider(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCollider, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_SetMovable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iPcMovable *arg2 = (iPcMovable *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcGravity_SetMovable",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_SetMovable" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcGravity_SetMovable" "', argument " "2"" of type '" "iPcMovable *""'"); } arg2 = reinterpret_cast< iPcMovable * >(argp2); (arg1)->SetMovable(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_GetMovable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iPcMovable *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_GetMovable",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_GetMovable" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (iPcMovable *)(arg1)->GetMovable(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMovable, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_SetSolid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iPcSolid *arg2 = (iPcSolid *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcGravity_SetSolid",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_SetSolid" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcSolid, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcGravity_SetSolid" "', argument " "2"" of type '" "iPcSolid *""'"); } arg2 = reinterpret_cast< iPcSolid * >(argp2); (arg1)->SetSolid(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_GetSolid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iPcSolid *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_GetSolid",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_GetSolid" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (iPcSolid *)(arg1)->GetSolid(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSolid, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_SetWeight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcGravity_SetWeight",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_SetWeight" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcGravity_SetWeight" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetWeight(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_GetWeight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_GetWeight",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_GetWeight" "', argument " "1"" of type '" "iPcGravity const *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (float)((iPcGravity const *)arg1)->GetWeight(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_ClearForces(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_ClearForces",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_ClearForces" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); (arg1)->ClearForces(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_ClearPermanentForces(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_ClearPermanentForces",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_ClearPermanentForces" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); (arg1)->ClearPermanentForces(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_ResetSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_ResetSpeed",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_ResetSpeed" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); (arg1)->ResetSpeed(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_ApplyForce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; csVector3 *arg2 = 0 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcGravity_ApplyForce",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_ApplyForce" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcGravity_ApplyForce" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcGravity_ApplyForce" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcGravity_ApplyForce" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->ApplyForce((csVector3 const &)*arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_ApplyPermanentForce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; csVector3 *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcGravity_ApplyPermanentForce",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_ApplyPermanentForce" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcGravity_ApplyPermanentForce" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcGravity_ApplyPermanentForce" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); (arg1)->ApplyPermanentForce((csVector3 const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_IsResting(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_IsResting",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_IsResting" "', argument " "1"" of type '" "iPcGravity const *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (bool)((iPcGravity const *)arg1)->IsResting(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_SetActive(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcGravity_SetActive",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_SetActive" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcGravity_SetActive" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetActive(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_IsActive(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_IsActive",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_IsActive" "', argument " "1"" of type '" "iPcGravity const *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (bool)((iPcGravity const *)arg1)->IsActive(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_GravityCollider_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iCollider *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_GravityCollider_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_GravityCollider_get" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (iCollider *)iPcGravity_GravityCollider_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCollider, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_Movable_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iPcMovable *arg2 = (iPcMovable *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcGravity_Movable_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_Movable_set" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcGravity_Movable_set" "', argument " "2"" of type '" "iPcMovable *""'"); } arg2 = reinterpret_cast< iPcMovable * >(argp2); iPcGravity_Movable_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_Movable_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iPcMovable *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_Movable_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_Movable_get" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (iPcMovable *)iPcGravity_Movable_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMovable, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_Solid_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iPcSolid *arg2 = (iPcSolid *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcGravity_Solid_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_Solid_set" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcSolid, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcGravity_Solid_set" "', argument " "2"" of type '" "iPcSolid *""'"); } arg2 = reinterpret_cast< iPcSolid * >(argp2); iPcGravity_Solid_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_Solid_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; iPcSolid *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_Solid_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_Solid_get" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (iPcSolid *)iPcGravity_Solid_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSolid, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_Weight_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcGravity_Weight_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_Weight_set" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcGravity_Weight_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcGravity_Weight_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_Weight_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_Weight_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_Weight_get" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (float)iPcGravity_Weight_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_Active_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcGravity_Active_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_Active_set" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcGravity_Active_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcGravity_Active_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_Active_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_Active_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_Active_get" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (bool)iPcGravity_Active_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcGravity_Resting_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcGravity_Resting_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcGravity_Resting_get" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); result = (bool)iPcGravity_Resting_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcGravity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcGravity *arg1 = (iPcGravity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcGravity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcGravity, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcGravity" "', argument " "1"" of type '" "iPcGravity *""'"); } arg1 = reinterpret_cast< iPcGravity * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcGravity_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcGravity, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateGravity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcGravity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateGravity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateGravity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateGravity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcGravity *)celCreateGravity(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcGravity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetGravity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcGravity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetGravity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetGravity" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetGravity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcGravity *)celGetSetGravity(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcGravity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetGravity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcGravity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetGravity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetGravity" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcGravity *)celGetGravity(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcGravity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcGravity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcGravity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcGravity",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcGravity" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcGravity *)scfQuery_iPcGravity(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcGravity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMovable_SetMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovable *arg1 = (iPcMovable *) 0 ; iPcMesh *arg2 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMovable_SetMesh",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMovable_SetMesh" "', argument " "1"" of type '" "iPcMovable *""'"); } arg1 = reinterpret_cast< iPcMovable * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMovable_SetMesh" "', argument " "2"" of type '" "iPcMesh *""'"); } arg2 = reinterpret_cast< iPcMesh * >(argp2); (arg1)->SetMesh(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMovable_GetMesh(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovable *arg1 = (iPcMovable *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMovable_GetMesh",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMovable_GetMesh" "', argument " "1"" of type '" "iPcMovable *""'"); } arg1 = reinterpret_cast< iPcMovable * >(argp1); result = (iPcMesh *)(arg1)->GetMesh(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMovable_SetPos__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovable *arg1 = (iPcMovable *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 *arg3 = 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcMovable_SetPos",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMovable_SetPos" "', argument " "1"" of type '" "iPcMovable *""'"); } arg1 = reinterpret_cast< iPcMovable * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMovable_SetPos" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMovable_SetPos" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMovable_SetPos" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); result = (int)(arg1)->Move(arg2,(csVector3 const &)*arg3); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMovable_SetPos__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovable *arg1 = (iPcMovable *) 0 ; csVector3 *arg2 = 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMovable_SetPos",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMovable_SetPos" "', argument " "1"" of type '" "iPcMovable *""'"); } arg1 = reinterpret_cast< iPcMovable * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMovable_SetPos" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMovable_SetPos" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); result = (int)(arg1)->Move((csVector3 const &)*arg2); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMovable_SetPos(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMovable, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMovable_SetPos__SWIG_1(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcMovable, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iSector, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcMovable_SetPos__SWIG_0(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcMovable_SetPos'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcMovable_AddConstraint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovable *arg1 = (iPcMovable *) 0 ; iPcMovableConstraint *arg2 = (iPcMovableConstraint *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMovable_AddConstraint",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMovable_AddConstraint" "', argument " "1"" of type '" "iPcMovable *""'"); } arg1 = reinterpret_cast< iPcMovable * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMovableConstraint, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMovable_AddConstraint" "', argument " "2"" of type '" "iPcMovableConstraint *""'"); } arg2 = reinterpret_cast< iPcMovableConstraint * >(argp2); (arg1)->AddConstraint(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMovable_RemoveConstraint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovable *arg1 = (iPcMovable *) 0 ; iPcMovableConstraint *arg2 = (iPcMovableConstraint *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMovable_RemoveConstraint",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMovable_RemoveConstraint" "', argument " "1"" of type '" "iPcMovable *""'"); } arg1 = reinterpret_cast< iPcMovable * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMovableConstraint, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMovable_RemoveConstraint" "', argument " "2"" of type '" "iPcMovableConstraint *""'"); } arg2 = reinterpret_cast< iPcMovableConstraint * >(argp2); (arg1)->RemoveConstraint(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMovable_RemoveAllConstraints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovable *arg1 = (iPcMovable *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMovable_RemoveAllConstraints",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMovable_RemoveAllConstraints" "', argument " "1"" of type '" "iPcMovable *""'"); } arg1 = reinterpret_cast< iPcMovable * >(argp1); (arg1)->RemoveAllConstraints(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMovable_Mesh_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovable *arg1 = (iPcMovable *) 0 ; iPcMesh *arg2 = (iPcMesh *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcMovable_Mesh_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMovable_Mesh_set" "', argument " "1"" of type '" "iPcMovable *""'"); } arg1 = reinterpret_cast< iPcMovable * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcMesh, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMovable_Mesh_set" "', argument " "2"" of type '" "iPcMesh *""'"); } arg2 = reinterpret_cast< iPcMesh * >(argp2); iPcMovable_Mesh_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMovable_Mesh_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovable *arg1 = (iPcMovable *) 0 ; iPcMesh *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMovable_Mesh_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovable, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMovable_Mesh_get" "', argument " "1"" of type '" "iPcMovable *""'"); } arg1 = reinterpret_cast< iPcMovable * >(argp1); result = (iPcMesh *)iPcMovable_Mesh_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMesh, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMovable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovable *arg1 = (iPcMovable *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMovable",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovable, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMovable" "', argument " "1"" of type '" "iPcMovable *""'"); } arg1 = reinterpret_cast< iPcMovable * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMovable_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMovable, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcMovableConstraint_CheckMove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovableConstraint *arg1 = (iPcMovableConstraint *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 *arg3 = 0 ; csVector3 *arg4 = 0 ; csVector3 *arg5 = 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcMovableConstraint_CheckMove",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovableConstraint, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMovableConstraint_CheckMove" "', argument " "1"" of type '" "iPcMovableConstraint *""'"); } arg1 = reinterpret_cast< iPcMovableConstraint * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMovableConstraint_CheckMove" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMovableConstraint_CheckMove" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMovableConstraint_CheckMove" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcMovableConstraint_CheckMove" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMovableConstraint_CheckMove" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcMovableConstraint_CheckMove" "', argument " "5"" of type '" "csVector3 &""'"); } if (!argp5) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMovableConstraint_CheckMove" "', argument " "5"" of type '" "csVector3 &""'"); } arg5 = reinterpret_cast< csVector3 * >(argp5); result = (int)(arg1)->CheckMove(arg2,(csVector3 const &)*arg3,(csVector3 const &)*arg4,*arg5); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMovableConstraint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMovableConstraint *arg1 = (iPcMovableConstraint *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMovableConstraint",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMovableConstraint, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMovableConstraint" "', argument " "1"" of type '" "iPcMovableConstraint *""'"); } arg1 = reinterpret_cast< iPcMovableConstraint * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMovableConstraint_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMovableConstraint, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateMovable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMovable *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateMovable",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateMovable" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateMovable" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMovable *)celCreateMovable(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMovable, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetMovable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMovable *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetMovable",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetMovable" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetMovable" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMovable *)celGetSetMovable(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMovable, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetMovable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcMovable *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetMovable",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetMovable" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcMovable *)celGetMovable(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMovable, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcMovable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcMovable *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcMovable",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcMovable" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcMovable *)scfQuery_iPcMovable(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMovable, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventoryListener_AddChild(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventoryListener *arg1 = (iPcInventoryListener *) 0 ; iPcInventory *arg2 = (iPcInventory *) 0 ; iCelEntity *arg3 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcInventoryListener_AddChild",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventoryListener, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventoryListener_AddChild" "', argument " "1"" of type '" "iPcInventoryListener *""'"); } arg1 = reinterpret_cast< iPcInventoryListener * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventoryListener_AddChild" "', argument " "2"" of type '" "iPcInventory *""'"); } arg2 = reinterpret_cast< iPcInventory * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcInventoryListener_AddChild" "', argument " "3"" of type '" "iCelEntity *""'"); } arg3 = reinterpret_cast< iCelEntity * >(argp3); (arg1)->AddChild(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventoryListener_RemoveChild(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventoryListener *arg1 = (iPcInventoryListener *) 0 ; iPcInventory *arg2 = (iPcInventory *) 0 ; iCelEntity *arg3 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcInventoryListener_RemoveChild",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventoryListener, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventoryListener_RemoveChild" "', argument " "1"" of type '" "iPcInventoryListener *""'"); } arg1 = reinterpret_cast< iPcInventoryListener * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventoryListener_RemoveChild" "', argument " "2"" of type '" "iPcInventory *""'"); } arg2 = reinterpret_cast< iPcInventory * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcInventoryListener_RemoveChild" "', argument " "3"" of type '" "iCelEntity *""'"); } arg3 = reinterpret_cast< iCelEntity * >(argp3); (arg1)->RemoveChild(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcInventoryListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventoryListener *arg1 = (iPcInventoryListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcInventoryListener",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventoryListener, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcInventoryListener" "', argument " "1"" of type '" "iPcInventoryListener *""'"); } arg1 = reinterpret_cast< iPcInventoryListener * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcInventoryListener_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcInventoryListener, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelInventorySpaceSlot_GetEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpaceSlot *arg1 = (iCelInventorySpaceSlot *) 0 ; iCelParameterBlock *arg2 = (iCelParameterBlock *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelInventorySpaceSlot_GetEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpaceSlot, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpaceSlot_GetEntity" "', argument " "1"" of type '" "iCelInventorySpaceSlot *""'"); } arg1 = reinterpret_cast< iCelInventorySpaceSlot * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelInventorySpaceSlot_GetEntity" "', argument " "2"" of type '" "iCelParameterBlock *""'"); } arg2 = reinterpret_cast< iCelParameterBlock * >(argp2); result = (iCelEntity *)(arg1)->GetEntity(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpaceSlot_AddEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpaceSlot *arg1 = (iCelInventorySpaceSlot *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iCelParameterBlock *arg3 = (iCelParameterBlock *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelInventorySpaceSlot_AddEntity",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpaceSlot, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpaceSlot_AddEntity" "', argument " "1"" of type '" "iCelInventorySpaceSlot *""'"); } arg1 = reinterpret_cast< iCelInventorySpaceSlot * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelInventorySpaceSlot_AddEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelInventorySpaceSlot_AddEntity" "', argument " "3"" of type '" "iCelParameterBlock *""'"); } arg3 = reinterpret_cast< iCelParameterBlock * >(argp3); result = (bool)(arg1)->AddEntity(arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpaceSlot_RemoveEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpaceSlot *arg1 = (iCelInventorySpaceSlot *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelInventorySpaceSlot_RemoveEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpaceSlot, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpaceSlot_RemoveEntity" "', argument " "1"" of type '" "iCelInventorySpaceSlot *""'"); } arg1 = reinterpret_cast< iCelInventorySpaceSlot * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelInventorySpaceSlot_RemoveEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (bool)(arg1)->RemoveEntity(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpaceSlot_GetCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpaceSlot *arg1 = (iCelInventorySpaceSlot *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelInventorySpaceSlot_GetCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpaceSlot, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpaceSlot_GetCount" "', argument " "1"" of type '" "iCelInventorySpaceSlot *""'"); } arg1 = reinterpret_cast< iCelInventorySpaceSlot * >(argp1); result = (int)(arg1)->GetCount(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpaceSlot_RemoveAll(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpaceSlot *arg1 = (iCelInventorySpaceSlot *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelInventorySpaceSlot_RemoveAll",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpaceSlot, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpaceSlot_RemoveAll" "', argument " "1"" of type '" "iCelInventorySpaceSlot *""'"); } arg1 = reinterpret_cast< iCelInventorySpaceSlot * >(argp1); (arg1)->RemoveAll(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpaceSlot_IsEmpty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpaceSlot *arg1 = (iCelInventorySpaceSlot *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelInventorySpaceSlot_IsEmpty",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpaceSlot, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpaceSlot_IsEmpty" "', argument " "1"" of type '" "iCelInventorySpaceSlot *""'"); } arg1 = reinterpret_cast< iCelInventorySpaceSlot * >(argp1); result = (bool)(arg1)->IsEmpty(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelInventorySpaceSlot(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpaceSlot *arg1 = (iCelInventorySpaceSlot *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelInventorySpaceSlot",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpaceSlot, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelInventorySpaceSlot" "', argument " "1"" of type '" "iCelInventorySpaceSlot *""'"); } arg1 = reinterpret_cast< iCelInventorySpaceSlot * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelInventorySpaceSlot_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelInventorySpaceSlot, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelInventorySpace_GetSpaceTotal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelInventorySpace_GetSpaceTotal",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpace_GetSpaceTotal" "', argument " "1"" of type '" "iCelInventorySpace const *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); result = (int)((iCelInventorySpace const *)arg1)->GetSpaceTotal(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_GetSpaceLeft(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelInventorySpace_GetSpaceLeft",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpace_GetSpaceLeft" "', argument " "1"" of type '" "iCelInventorySpace const *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); result = (int)((iCelInventorySpace const *)arg1)->GetSpaceLeft(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_GetSpaceTaken(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelInventorySpace_GetSpaceTaken",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpace_GetSpaceTaken" "', argument " "1"" of type '" "iCelInventorySpace const *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); result = (int)((iCelInventorySpace const *)arg1)->GetSpaceTaken(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_AddEntity__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelInventorySpace_AddEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpace_AddEntity" "', argument " "1"" of type '" "iCelInventorySpace *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelInventorySpace_AddEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (bool)(arg1)->AddEntity(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_RemoveEntity__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelInventorySpace_RemoveEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpace_RemoveEntity" "', argument " "1"" of type '" "iCelInventorySpace *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelInventorySpace_RemoveEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (bool)(arg1)->RemoveEntity(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_AddEntity__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iCelParameterBlock *arg3 = (iCelParameterBlock *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iCelInventorySpace_AddEntity",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpace_AddEntity" "', argument " "1"" of type '" "iCelInventorySpace *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelInventorySpace_AddEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iCelInventorySpace_AddEntity" "', argument " "3"" of type '" "iCelParameterBlock *""'"); } arg3 = reinterpret_cast< iCelParameterBlock * >(argp3); result = (bool)(arg1)->AddEntity(arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_AddEntity(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelInventorySpace, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelInventorySpace_AddEntity__SWIG_0(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelInventorySpace, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelInventorySpace_AddEntity__SWIG_1(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelInventorySpace_AddEntity'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_RemoveEntity__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; iCelParameterBlock *arg2 = (iCelParameterBlock *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelInventorySpace_RemoveEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpace_RemoveEntity" "', argument " "1"" of type '" "iCelInventorySpace *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelInventorySpace_RemoveEntity" "', argument " "2"" of type '" "iCelParameterBlock *""'"); } arg2 = reinterpret_cast< iCelParameterBlock * >(argp2); result = (bool)(arg1)->RemoveEntity(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_RemoveEntity(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelInventorySpace, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelInventorySpace_RemoveEntity__SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iCelInventorySpace, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iCelInventorySpace_RemoveEntity__SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iCelInventorySpace_RemoveEntity'"); return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_RemoveAll(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelInventorySpace_RemoveAll",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpace_RemoveAll" "', argument " "1"" of type '" "iCelInventorySpace *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); (arg1)->RemoveAll(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_GetSlot(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; iCelParameterBlock *arg2 = (iCelParameterBlock *) 0 ; iCelInventorySpaceSlot *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelInventorySpace_GetSlot",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpace_GetSlot" "', argument " "1"" of type '" "iCelInventorySpace *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelInventorySpace_GetSlot" "', argument " "2"" of type '" "iCelParameterBlock *""'"); } arg2 = reinterpret_cast< iCelParameterBlock * >(argp2); result = (iCelInventorySpaceSlot *)(arg1)->GetSlot(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelInventorySpaceSlot, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelInventorySpace_GetEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; iCelParameterBlock *arg2 = (iCelParameterBlock *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelInventorySpace_GetEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelInventorySpace_GetEntity" "', argument " "1"" of type '" "iCelInventorySpace *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelInventorySpace_GetEntity" "', argument " "2"" of type '" "iCelParameterBlock *""'"); } arg2 = reinterpret_cast< iCelParameterBlock * >(argp2); result = (iCelEntity *)(arg1)->GetEntity(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelInventorySpace(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelInventorySpace *arg1 = (iCelInventorySpace *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelInventorySpace",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelInventorySpace, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelInventorySpace" "', argument " "1"" of type '" "iCelInventorySpace *""'"); } arg1 = reinterpret_cast< iCelInventorySpace * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelInventorySpace_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelInventorySpace, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcInventory_AddInventoryListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iPcInventoryListener *arg2 = (iPcInventoryListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_AddInventoryListener",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_AddInventoryListener" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcInventoryListener, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_AddInventoryListener" "', argument " "2"" of type '" "iPcInventoryListener *""'"); } arg2 = reinterpret_cast< iPcInventoryListener * >(argp2); (arg1)->AddInventoryListener(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_RemoveInventoryListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iPcInventoryListener *arg2 = (iPcInventoryListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_RemoveInventoryListener",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_RemoveInventoryListener" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcInventoryListener, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_RemoveInventoryListener" "', argument " "2"" of type '" "iPcInventoryListener *""'"); } arg2 = reinterpret_cast< iPcInventoryListener * >(argp2); (arg1)->RemoveInventoryListener(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_AddEntity__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_AddEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_AddEntity" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_AddEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (bool)(arg1)->AddEntity(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_AddEntity__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iCelParameterBlock *arg3 = (iCelParameterBlock *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcInventory_AddEntity",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_AddEntity" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_AddEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcInventory_AddEntity" "', argument " "3"" of type '" "iCelParameterBlock *""'"); } arg3 = reinterpret_cast< iCelParameterBlock * >(argp3); result = (bool)(arg1)->AddEntity(arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_AddEntity(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcInventory, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcInventory_AddEntity__SWIG_0(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcInventory, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcInventory_AddEntity__SWIG_1(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcInventory_AddEntity'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_RemoveEntity__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_RemoveEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_RemoveEntity" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_RemoveEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (bool)(arg1)->RemoveEntity(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_RemoveEntity__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iCelParameterBlock *arg2 = (iCelParameterBlock *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_RemoveEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_RemoveEntity" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_RemoveEntity" "', argument " "2"" of type '" "iCelParameterBlock *""'"); } arg2 = reinterpret_cast< iCelParameterBlock * >(argp2); result = (bool)(arg1)->RemoveEntity(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_RemoveEntity(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcInventory, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcInventory_RemoveEntity__SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcInventory, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelParameterBlock, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcInventory_RemoveEntity__SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcInventory_RemoveEntity'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_RemoveAll(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcInventory_RemoveAll",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_RemoveAll" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); result = (bool)(arg1)->RemoveAll(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_GetEntityCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcInventory_GetEntityCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_GetEntityCount" "', argument " "1"" of type '" "iPcInventory const *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); result = ((iPcInventory const *)arg1)->GetEntityCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_GetEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; size_t arg2 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_GetEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_GetEntity" "', argument " "1"" of type '" "iPcInventory const *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcInventory_GetEntity" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelEntity *)((iPcInventory const *)arg1)->GetEntity(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_In__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_In",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_In" "', argument " "1"" of type '" "iPcInventory const *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_In" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (bool)((iPcInventory const *)arg1)->In(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_In__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_In",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_In" "', argument " "1"" of type '" "iPcInventory const *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_In" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)((iPcInventory const *)arg1)->In((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_In(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcInventory, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcInventory_In__SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcInventory, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcInventory_In__SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcInventory_In'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_FindEntity__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_FindEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_FindEntity" "', argument " "1"" of type '" "iPcInventory const *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_FindEntity" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = ((iPcInventory const *)arg1)->FindEntity(arg2); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_FindEntity__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; char *arg2 = (char *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_FindEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_FindEntity" "', argument " "1"" of type '" "iPcInventory const *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_FindEntity" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = ((iPcInventory const *)arg1)->FindEntity((char const *)arg2); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_FindEntity(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcInventory, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcInventory_FindEntity__SWIG_0(self, args); } } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcInventory, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcInventory_FindEntity__SWIG_1(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcInventory_FindEntity'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_GetEntitySlot(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iCelParameterBlock *arg2 = (iCelParameterBlock *) 0 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_GetEntitySlot",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_GetEntitySlot" "', argument " "1"" of type '" "iPcInventory const *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelParameterBlock, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_GetEntitySlot" "', argument " "2"" of type '" "iCelParameterBlock *""'"); } arg2 = reinterpret_cast< iCelParameterBlock * >(argp2); result = (iCelEntity *)((iPcInventory const *)arg1)->GetEntitySlot(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_SetStrictCharacteristics(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcInventory_SetStrictCharacteristics",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_SetStrictCharacteristics" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_SetStrictCharacteristics" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcInventory_SetStrictCharacteristics" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); result = (bool)(arg1)->SetStrictCharacteristics((char const *)arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_HasStrictCharacteristics(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_HasStrictCharacteristics",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_HasStrictCharacteristics" "', argument " "1"" of type '" "iPcInventory const *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_HasStrictCharacteristics" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)((iPcInventory const *)arg1)->HasStrictCharacteristics((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_SetConstraints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; char *arg2 = (char *) 0 ; float arg3 ; float arg4 ; float arg5 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; float val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcInventory_SetConstraints",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_SetConstraints" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_SetConstraints" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcInventory_SetConstraints" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcInventory_SetConstraints" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcInventory_SetConstraints" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); result = (bool)(arg1)->SetConstraints((char const *)arg2,arg3,arg4,arg5); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_GetConstraints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; char *arg2 = (char *) 0 ; float *arg3 = 0 ; float *arg4 = 0 ; float *arg5 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcInventory_GetConstraints",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_GetConstraints" "', argument " "1"" of type '" "iPcInventory const *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_GetConstraints" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_float, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcInventory_GetConstraints" "', argument " "3"" of type '" "float &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcInventory_GetConstraints" "', argument " "3"" of type '" "float &""'"); } arg3 = reinterpret_cast< float * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_float, 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcInventory_GetConstraints" "', argument " "4"" of type '" "float &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcInventory_GetConstraints" "', argument " "4"" of type '" "float &""'"); } arg4 = reinterpret_cast< float * >(argp4); res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_float, 0 ); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcInventory_GetConstraints" "', argument " "5"" of type '" "float &""'"); } if (!argp5) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcInventory_GetConstraints" "', argument " "5"" of type '" "float &""'"); } arg5 = reinterpret_cast< float * >(argp5); result = (bool)((iPcInventory const *)arg1)->GetConstraints((char const *)arg2,*arg3,*arg4,*arg5); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_RemoveConstraints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_RemoveConstraints",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_RemoveConstraints" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_RemoveConstraints" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->RemoveConstraints((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_RemoveAllConstraints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcInventory_RemoveAllConstraints",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_RemoveAllConstraints" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); (arg1)->RemoveAllConstraints(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_GetCurrentCharacteristic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; char *arg2 = (char *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_GetCurrentCharacteristic",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_GetCurrentCharacteristic" "', argument " "1"" of type '" "iPcInventory const *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_GetCurrentCharacteristic" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (float)((iPcInventory const *)arg1)->GetCurrentCharacteristic((char const *)arg2); resultobj = SWIG_From_float(static_cast< float >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_MarkDirty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_MarkDirty",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_MarkDirty" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_MarkDirty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->MarkDirty((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_TestConstraints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_TestConstraints",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_TestConstraints" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_TestConstraints" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)(arg1)->TestConstraints((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_Dump(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcInventory_Dump",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_Dump" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); (arg1)->Dump(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_SetSpace(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iCelInventorySpace *arg2 = (iCelInventorySpace *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcInventory_SetSpace",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_SetSpace" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcInventory_SetSpace" "', argument " "2"" of type '" "iCelInventorySpace *""'"); } arg2 = reinterpret_cast< iCelInventorySpace * >(argp2); (arg1)->SetSpace(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcInventory_GetSpace(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; iCelInventorySpace *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcInventory_GetSpace",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcInventory_GetSpace" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); result = (iCelInventorySpace *)(arg1)->GetSpace(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelInventorySpace, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcInventory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcInventory *arg1 = (iPcInventory *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcInventory",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcInventory, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcInventory" "', argument " "1"" of type '" "iPcInventory *""'"); } arg1 = reinterpret_cast< iPcInventory * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcInventory_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcInventory, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateInventory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcInventory *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateInventory",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateInventory" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateInventory" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcInventory *)celCreateInventory(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcInventory, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetInventory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcInventory *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetInventory",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetInventory" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetInventory" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcInventory *)celGetSetInventory(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcInventory, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetInventory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcInventory *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetInventory",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetInventory" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcInventory *)celGetInventory(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcInventory, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcInventory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcInventory *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcInventory",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcInventory" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcInventory *)scfQuery_iPcInventory(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcInventory, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_SetCharacteristic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; char *arg2 = (char *) 0 ; float arg3 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcCharacteristics_SetCharacteristic",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_SetCharacteristic" "', argument " "1"" of type '" "iPcCharacteristics *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_SetCharacteristic" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCharacteristics_SetCharacteristic" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); result = (bool)(arg1)->SetCharacteristic((char const *)arg2,arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_SetInheritedCharacteristic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; char *arg2 = (char *) 0 ; float arg3 ; float arg4 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcCharacteristics_SetInheritedCharacteristic",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_SetInheritedCharacteristic" "', argument " "1"" of type '" "iPcCharacteristics *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_SetInheritedCharacteristic" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcCharacteristics_SetInheritedCharacteristic" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcCharacteristics_SetInheritedCharacteristic" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); result = (bool)(arg1)->SetInheritedCharacteristic((char const *)arg2,arg3,arg4); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_GetCharacteristic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; char *arg2 = (char *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCharacteristics_GetCharacteristic",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_GetCharacteristic" "', argument " "1"" of type '" "iPcCharacteristics const *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_GetCharacteristic" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (float)((iPcCharacteristics const *)arg1)->GetCharacteristic((char const *)arg2); resultobj = SWIG_From_float(static_cast< float >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_GetLocalCharacteristic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; char *arg2 = (char *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCharacteristics_GetLocalCharacteristic",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_GetLocalCharacteristic" "', argument " "1"" of type '" "iPcCharacteristics const *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_GetLocalCharacteristic" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (float)((iPcCharacteristics const *)arg1)->GetLocalCharacteristic((char const *)arg2); resultobj = SWIG_From_float(static_cast< float >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_GetInheritedCharacteristic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; char *arg2 = (char *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCharacteristics_GetInheritedCharacteristic",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_GetInheritedCharacteristic" "', argument " "1"" of type '" "iPcCharacteristics const *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_GetInheritedCharacteristic" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (float)((iPcCharacteristics const *)arg1)->GetInheritedCharacteristic((char const *)arg2); resultobj = SWIG_From_float(static_cast< float >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_ClearCharacteristic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCharacteristics_ClearCharacteristic",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_ClearCharacteristic" "', argument " "1"" of type '" "iPcCharacteristics *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_ClearCharacteristic" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)(arg1)->ClearCharacteristic((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_HasCharacteristic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCharacteristics_HasCharacteristic",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_HasCharacteristic" "', argument " "1"" of type '" "iPcCharacteristics const *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_HasCharacteristic" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)((iPcCharacteristics const *)arg1)->HasCharacteristic((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_ClearAll(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCharacteristics_ClearAll",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_ClearAll" "', argument " "1"" of type '" "iPcCharacteristics *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); result = (bool)(arg1)->ClearAll(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_AddToInventory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; iPcInventory *arg2 = (iPcInventory *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCharacteristics_AddToInventory",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_AddToInventory" "', argument " "1"" of type '" "iPcCharacteristics *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_AddToInventory" "', argument " "2"" of type '" "iPcInventory *""'"); } arg2 = reinterpret_cast< iPcInventory * >(argp2); (arg1)->AddToInventory(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_RemoveFromInventory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; iPcInventory *arg2 = (iPcInventory *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCharacteristics_RemoveFromInventory",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_RemoveFromInventory" "', argument " "1"" of type '" "iPcCharacteristics *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcInventory, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_RemoveFromInventory" "', argument " "2"" of type '" "iPcInventory *""'"); } arg2 = reinterpret_cast< iPcInventory * >(argp2); (arg1)->RemoveFromInventory(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_MarkDirty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCharacteristics_MarkDirty",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_MarkDirty" "', argument " "1"" of type '" "iPcCharacteristics *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_MarkDirty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->MarkDirty((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_TestConstraints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; char *arg2 = (char *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCharacteristics_TestConstraints",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_TestConstraints" "', argument " "1"" of type '" "iPcCharacteristics *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcCharacteristics_TestConstraints" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (bool)(arg1)->TestConstraints((char const *)arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcCharacteristics_Dump(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCharacteristics_Dump",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCharacteristics_Dump" "', argument " "1"" of type '" "iPcCharacteristics *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); (arg1)->Dump(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcCharacteristics(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCharacteristics *arg1 = (iPcCharacteristics *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcCharacteristics",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCharacteristics, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcCharacteristics" "', argument " "1"" of type '" "iPcCharacteristics *""'"); } arg1 = reinterpret_cast< iPcCharacteristics * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcCharacteristics_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcCharacteristics, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateCharacteristics(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcCharacteristics *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateCharacteristics",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateCharacteristics" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateCharacteristics" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcCharacteristics *)celCreateCharacteristics(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetCharacteristics(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcCharacteristics *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetCharacteristics",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetCharacteristics" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetCharacteristics" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcCharacteristics *)celGetSetCharacteristics(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetCharacteristics(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcCharacteristics *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetCharacteristics",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetCharacteristics" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcCharacteristics *)celGetCharacteristics(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcCharacteristics(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcCharacteristics *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcCharacteristics",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcCharacteristics" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcCharacteristics *)scfQuery_iPcCharacteristics(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCharacteristics, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTooltip_SetText(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTooltip *arg1 = (iPcTooltip *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcTooltip_SetText",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTooltip, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTooltip_SetText" "', argument " "1"" of type '" "iPcTooltip *""'"); } arg1 = reinterpret_cast< iPcTooltip * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcTooltip_SetText" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetText((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcTooltip_Show(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTooltip *arg1 = (iPcTooltip *) 0 ; int arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcTooltip_Show",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTooltip, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTooltip_Show" "', argument " "1"" of type '" "iPcTooltip *""'"); } arg1 = reinterpret_cast< iPcTooltip * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcTooltip_Show" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcTooltip_Show" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); (arg1)->Show(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTooltip_Hide(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTooltip *arg1 = (iPcTooltip *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcTooltip_Hide",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTooltip, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTooltip_Hide" "', argument " "1"" of type '" "iPcTooltip *""'"); } arg1 = reinterpret_cast< iPcTooltip * >(argp1); (arg1)->Hide(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTooltip_IsVisible(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTooltip *arg1 = (iPcTooltip *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcTooltip_IsVisible",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTooltip, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTooltip_IsVisible" "', argument " "1"" of type '" "iPcTooltip const *""'"); } arg1 = reinterpret_cast< iPcTooltip * >(argp1); result = (bool)((iPcTooltip const *)arg1)->IsVisible(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTooltip_SetTextColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTooltip *arg1 = (iPcTooltip *) 0 ; int arg2 ; int arg3 ; int arg4 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcTooltip_SetTextColor",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTooltip, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTooltip_SetTextColor" "', argument " "1"" of type '" "iPcTooltip *""'"); } arg1 = reinterpret_cast< iPcTooltip * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcTooltip_SetTextColor" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcTooltip_SetTextColor" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcTooltip_SetTextColor" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); (arg1)->SetTextColor(arg2,arg3,arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTooltip_SetBackgroundColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTooltip *arg1 = (iPcTooltip *) 0 ; int arg2 ; int arg3 ; int arg4 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcTooltip_SetBackgroundColor",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTooltip, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTooltip_SetBackgroundColor" "', argument " "1"" of type '" "iPcTooltip *""'"); } arg1 = reinterpret_cast< iPcTooltip * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcTooltip_SetBackgroundColor" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcTooltip_SetBackgroundColor" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcTooltip_SetBackgroundColor" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); (arg1)->SetBackgroundColor(arg2,arg3,arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTooltip_SetFont(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTooltip *arg1 = (iPcTooltip *) 0 ; iFont *arg2 = (iFont *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcTooltip_SetFont",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTooltip, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTooltip_SetFont" "', argument " "1"" of type '" "iPcTooltip *""'"); } arg1 = reinterpret_cast< iPcTooltip * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iFont, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcTooltip_SetFont" "', argument " "2"" of type '" "iFont *""'"); } arg2 = reinterpret_cast< iFont * >(argp2); (arg1)->SetFont(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTooltip_SetJustify(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTooltip *arg1 = (iPcTooltip *) 0 ; celTooltipJustify arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcTooltip_SetJustify",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTooltip, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTooltip_SetJustify" "', argument " "1"" of type '" "iPcTooltip *""'"); } arg1 = reinterpret_cast< iPcTooltip * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcTooltip_SetJustify" "', argument " "2"" of type '" "celTooltipJustify""'"); } arg2 = static_cast< celTooltipJustify >(val2); (arg1)->SetJustify(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcTooltip_Visible_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTooltip *arg1 = (iPcTooltip *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcTooltip_Visible_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTooltip, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcTooltip_Visible_get" "', argument " "1"" of type '" "iPcTooltip *""'"); } arg1 = reinterpret_cast< iPcTooltip * >(argp1); result = (bool)iPcTooltip_Visible_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcTooltip(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcTooltip *arg1 = (iPcTooltip *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcTooltip",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcTooltip, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcTooltip" "', argument " "1"" of type '" "iPcTooltip *""'"); } arg1 = reinterpret_cast< iPcTooltip * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcTooltip_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcTooltip, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateToolTip(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcTooltip *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateToolTip",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateToolTip" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateToolTip" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcTooltip *)celCreateToolTip(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcTooltip, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetToolTip(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcTooltip *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetToolTip",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetToolTip" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetToolTip" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcTooltip *)celGetSetToolTip(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcTooltip, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetToolTip(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcTooltip *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetToolTip",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetToolTip" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcTooltip *)celGetToolTip(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcTooltip, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcTooltip(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcTooltip *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcTooltip",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcTooltip" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcTooltip *)scfQuery_iPcTooltip(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcTooltip, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSoundListener_GetSoundListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSoundListener *arg1 = (iPcSoundListener *) 0 ; iSndSysListener *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSoundListener_GetSoundListener",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSoundListener, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSoundListener_GetSoundListener" "', argument " "1"" of type '" "iPcSoundListener *""'"); } arg1 = reinterpret_cast< iPcSoundListener * >(argp1); result = (iSndSysListener *)(arg1)->GetSoundListener(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSndSysListener, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSoundListener_SoundListener_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSoundListener *arg1 = (iPcSoundListener *) 0 ; iSndSysListener *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSoundListener_SoundListener_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSoundListener, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSoundListener_SoundListener_get" "', argument " "1"" of type '" "iPcSoundListener *""'"); } arg1 = reinterpret_cast< iPcSoundListener * >(argp1); result = (iSndSysListener *)iPcSoundListener_SoundListener_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSndSysListener, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcSoundListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSoundListener *arg1 = (iPcSoundListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcSoundListener",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSoundListener, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcSoundListener" "', argument " "1"" of type '" "iPcSoundListener *""'"); } arg1 = reinterpret_cast< iPcSoundListener * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcSoundListener_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcSoundListener, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcSoundSource_GetSoundSource(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSoundSource *arg1 = (iPcSoundSource *) 0 ; iSndSysSource *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSoundSource_GetSoundSource",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSoundSource, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSoundSource_GetSoundSource" "', argument " "1"" of type '" "iPcSoundSource *""'"); } arg1 = reinterpret_cast< iPcSoundSource * >(argp1); result = (iSndSysSource *)(arg1)->GetSoundSource(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSndSysSource, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSoundSource_SetSoundName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSoundSource *arg1 = (iPcSoundSource *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcSoundSource_SetSoundName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSoundSource, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSoundSource_SetSoundName" "', argument " "1"" of type '" "iPcSoundSource *""'"); } arg1 = reinterpret_cast< iPcSoundSource * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcSoundSource_SetSoundName" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetSoundName((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcSoundSource_GetSoundName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSoundSource *arg1 = (iPcSoundSource *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSoundSource_GetSoundName",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSoundSource, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSoundSource_GetSoundName" "', argument " "1"" of type '" "iPcSoundSource const *""'"); } arg1 = reinterpret_cast< iPcSoundSource * >(argp1); result = (char *)((iPcSoundSource const *)arg1)->GetSoundName(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSoundSource_SoundSource_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSoundSource *arg1 = (iPcSoundSource *) 0 ; iSndSysSource *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSoundSource_SoundSource_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSoundSource, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSoundSource_SoundSource_get" "', argument " "1"" of type '" "iPcSoundSource *""'"); } arg1 = reinterpret_cast< iPcSoundSource * >(argp1); result = (iSndSysSource *)iPcSoundSource_SoundSource_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSndSysSource, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcSoundSource_SoundName_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSoundSource *arg1 = (iPcSoundSource *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcSoundSource_SoundName_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSoundSource, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSoundSource_SoundName_set" "', argument " "1"" of type '" "iPcSoundSource *""'"); } arg1 = reinterpret_cast< iPcSoundSource * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcSoundSource_SoundName_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iPcSoundSource_SoundName_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcSoundSource_SoundName_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSoundSource *arg1 = (iPcSoundSource *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcSoundSource_SoundName_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSoundSource, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcSoundSource_SoundName_get" "', argument " "1"" of type '" "iPcSoundSource *""'"); } arg1 = reinterpret_cast< iPcSoundSource * >(argp1); result = (char *)iPcSoundSource_SoundName_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcSoundSource(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcSoundSource *arg1 = (iPcSoundSource *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcSoundSource",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcSoundSource, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcSoundSource" "', argument " "1"" of type '" "iPcSoundSource *""'"); } arg1 = reinterpret_cast< iPcSoundSource * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcSoundSource_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcSoundSource, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateSoundSource(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcSoundSource *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateSoundSource",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateSoundSource" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateSoundSource" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcSoundSource *)celCreateSoundSource(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSoundSource, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetSoundSource(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcSoundSource *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetSoundSource",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetSoundSource" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetSoundSource" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcSoundSource *)celGetSetSoundSource(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSoundSource, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSoundSource(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcSoundSource *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetSoundSource",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSoundSource" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcSoundSource *)celGetSoundSource(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSoundSource, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcSoundSource(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcSoundSource *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcSoundSource",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcSoundSource" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcSoundSource *)scfQuery_iPcSoundSource(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSoundSource, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celCreateSoundListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcSoundListener *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateSoundListener",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateSoundListener" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateSoundListener" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcSoundListener *)celCreateSoundListener(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSoundListener, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetSoundListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcSoundListener *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetSoundListener",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetSoundListener" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetSoundListener" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcSoundListener *)celGetSetSoundListener(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSoundListener, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSoundListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcSoundListener *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetSoundListener",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSoundListener" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcSoundListener *)celGetSoundListener(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSoundListener, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcSoundListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcSoundListener *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcSoundListener",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcSoundListener" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcSoundListener *)scfQuery_iPcSoundListener(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcSoundListener, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcPropertyListener_PropertyChanged(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcPropertyListener *arg1 = (iPcPropertyListener *) 0 ; iPcProperties *arg2 = (iPcProperties *) 0 ; size_t arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; size_t val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcPropertyListener_PropertyChanged",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcPropertyListener, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcPropertyListener_PropertyChanged" "', argument " "1"" of type '" "iPcPropertyListener *""'"); } arg1 = reinterpret_cast< iPcPropertyListener * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcPropertyListener_PropertyChanged" "', argument " "2"" of type '" "iPcProperties *""'"); } arg2 = reinterpret_cast< iPcProperties * >(argp2); ecode3 = SWIG_AsVal_size_t(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcPropertyListener_PropertyChanged" "', argument " "3"" of type '" "size_t""'"); } arg3 = static_cast< size_t >(val3); (arg1)->PropertyChanged(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcPropertyListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcPropertyListener *arg1 = (iPcPropertyListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcPropertyListener",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcPropertyListener, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcPropertyListener" "', argument " "1"" of type '" "iPcPropertyListener *""'"); } arg1 = reinterpret_cast< iPcPropertyListener * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcPropertyListener_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcPropertyListener, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iPcProperties_AddPropertyListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; iPcPropertyListener *arg2 = (iPcPropertyListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_AddPropertyListener",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_AddPropertyListener" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcPropertyListener, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_AddPropertyListener" "', argument " "2"" of type '" "iPcPropertyListener *""'"); } arg2 = reinterpret_cast< iPcPropertyListener * >(argp2); (arg1)->AddPropertyListener(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_RemovePropertyListener(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; iPcPropertyListener *arg2 = (iPcPropertyListener *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_RemovePropertyListener",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_RemovePropertyListener" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iPcPropertyListener, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_RemovePropertyListener" "', argument " "2"" of type '" "iPcPropertyListener *""'"); } arg2 = reinterpret_cast< iPcPropertyListener * >(argp2); (arg1)->RemovePropertyListener(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_SetProperty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetProperty((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; long arg3 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; long val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_SetProperty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_long(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "long""'"); } arg3 = static_cast< long >(val3); (arg1)->SetProperty((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_SetProperty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetProperty((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_SetProperty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->SetProperty((char const *)arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; csVector2 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_SetProperty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector2, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "csVector2 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "csVector2 const &""'"); } arg3 = reinterpret_cast< csVector2 * >(argp3); (arg1)->SetProperty((char const *)arg2,(csVector2 const &)*arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; csVector3 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_SetProperty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); (arg1)->SetProperty((char const *)arg2,(csVector3 const &)*arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; csColor *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_SetProperty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csColor, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "csColor const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "csColor const &""'"); } arg3 = reinterpret_cast< csColor * >(argp3); (arg1)->SetProperty((char const *)arg2,(csColor const &)*arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; iCelPropertyClass *arg3 = (iCelPropertyClass *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_SetProperty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "iCelPropertyClass *""'"); } arg3 = reinterpret_cast< iCelPropertyClass * >(argp3); (arg1)->SetProperty((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; iCelEntity *arg3 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_SetProperty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "iCelEntity *""'"); } arg3 = reinterpret_cast< iCelEntity * >(argp3); (arg1)->SetProperty((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty__SWIG_9(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; iBase *arg3 = (iBase *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetProperty",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_SetProperty" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iBase, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetProperty" "', argument " "3"" of type '" "iBase *""'"); } arg3 = reinterpret_cast< iBase * >(argp3); (arg1)->SetProperty((char const *)arg2,arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetProperty(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector2, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetProperty__SWIG_4(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetProperty__SWIG_5(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csColor, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetProperty__SWIG_6(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetProperty__SWIG_7(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetProperty__SWIG_8(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iBase, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetProperty__SWIG_9(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_long(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcProperties_SetProperty__SWIG_1(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcProperties_SetProperty__SWIG_0(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetProperty__SWIG_3(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcProperties_SetProperty__SWIG_2(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcProperties_SetProperty'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyIndex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; char *arg2 = (char *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_GetPropertyIndex",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcProperties_GetPropertyIndex" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; result = (arg1)->GetPropertyIndex((char const *)arg2); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetPropertyIndex",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetPropertyIndex(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; long arg3 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; long val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetPropertyIndex",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); ecode3 = SWIG_AsVal_long(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "long""'"); } arg3 = static_cast< long >(val3); (arg1)->SetPropertyIndex(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetPropertyIndex",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetPropertyIndex(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; csVector2 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetPropertyIndex",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector2, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "csVector2 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "csVector2 const &""'"); } arg3 = reinterpret_cast< csVector2 * >(argp3); (arg1)->SetPropertyIndex(arg2,(csVector2 const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; csVector3 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetPropertyIndex",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); (arg1)->SetPropertyIndex(arg2,(csVector3 const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; csColor *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetPropertyIndex",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csColor, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "csColor const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "csColor const &""'"); } arg3 = reinterpret_cast< csColor * >(argp3); (arg1)->SetPropertyIndex(arg2,(csColor const &)*arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetPropertyIndex",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->SetPropertyIndex(arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; iCelPropertyClass *arg3 = (iCelPropertyClass *) 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetPropertyIndex",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "iCelPropertyClass *""'"); } arg3 = reinterpret_cast< iCelPropertyClass * >(argp3); (arg1)->SetPropertyIndex(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; iCelEntity *arg3 = (iCelEntity *) 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetPropertyIndex",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "iCelEntity *""'"); } arg3 = reinterpret_cast< iCelEntity * >(argp3); (arg1)->SetPropertyIndex(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex__SWIG_9(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; iBase *arg3 = (iBase *) 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_SetPropertyIndex",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_iBase, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_SetPropertyIndex" "', argument " "3"" of type '" "iBase *""'"); } arg3 = reinterpret_cast< iBase * >(argp3); (arg1)->SetPropertyIndex(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_SetPropertyIndex(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector2, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetPropertyIndex__SWIG_3(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetPropertyIndex__SWIG_4(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_csColor, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetPropertyIndex__SWIG_5(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelPropertyClass, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetPropertyIndex__SWIG_7(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iCelEntity, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetPropertyIndex__SWIG_8(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_iBase, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetPropertyIndex__SWIG_9(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_long(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcProperties_SetPropertyIndex__SWIG_1(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcProperties_SetPropertyIndex__SWIG_0(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_SetPropertyIndex__SWIG_6(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcProperties_SetPropertyIndex__SWIG_2(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcProperties_SetPropertyIndex'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; celDataType result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_GetPropertyType",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyType" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyType" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (celDataType)((iPcProperties const *)arg1)->GetPropertyType(arg2); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyFloat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_GetPropertyFloat",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyFloat" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyFloat" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (float)((iPcProperties const *)arg1)->GetPropertyFloat(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyLong(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; long result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_GetPropertyLong",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyLong" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyLong" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (long)((iPcProperties const *)arg1)->GetPropertyLong(arg2); resultobj = SWIG_From_long(static_cast< long >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyBool(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_GetPropertyBool",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyBool" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyBool" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (bool)((iPcProperties const *)arg1)->GetPropertyBool(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyVector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; csVector2 *arg3 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_GetPropertyVector",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyVector" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyVector" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector2, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_GetPropertyVector" "', argument " "3"" of type '" "csVector2 &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcProperties_GetPropertyVector" "', argument " "3"" of type '" "csVector2 &""'"); } arg3 = reinterpret_cast< csVector2 * >(argp3); result = (bool)((iPcProperties const *)arg1)->GetPropertyVector(arg2,*arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyVector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; csVector3 *arg3 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_GetPropertyVector",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyVector" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyVector" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_GetPropertyVector" "', argument " "3"" of type '" "csVector3 &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcProperties_GetPropertyVector" "', argument " "3"" of type '" "csVector3 &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); result = (bool)((iPcProperties const *)arg1)->GetPropertyVector(arg2,*arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyVector(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_csVector2, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_GetPropertyVector__SWIG_0(self, args); } } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcProperties, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_size_t(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcProperties_GetPropertyVector__SWIG_1(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcProperties_GetPropertyVector'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; csColor *arg3 = 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcProperties_GetPropertyColor",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyColor" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyColor" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csColor, 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcProperties_GetPropertyColor" "', argument " "3"" of type '" "csColor &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcProperties_GetPropertyColor" "', argument " "3"" of type '" "csColor &""'"); } arg3 = reinterpret_cast< csColor * >(argp3); result = (bool)((iPcProperties const *)arg1)->GetPropertyColor(arg2,*arg3); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_GetPropertyString",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyString" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyString" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (char *)((iPcProperties const *)arg1)->GetPropertyString(arg2); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyPClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; iCelPropertyClass *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_GetPropertyPClass",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyPClass" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyPClass" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelPropertyClass *)((iPcProperties const *)arg1)->GetPropertyPClass(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyEntity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; iCelEntity *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_GetPropertyEntity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyEntity" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyEntity" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iCelEntity *)((iPcProperties const *)arg1)->GetPropertyEntity(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelEntity, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyIBase(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; iBase *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_GetPropertyIBase",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyIBase" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyIBase" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (iBase *)((iPcProperties const *)arg1)->GetPropertyIBase(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBase, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_ClearProperty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_ClearProperty",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_ClearProperty" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_ClearProperty" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); (arg1)->ClearProperty(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_Clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcProperties_Clear",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_Clear" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); (arg1)->Clear(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcProperties_GetPropertyCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyCount" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); result = ((iPcProperties const *)arg1)->GetPropertyCount(); resultobj = SWIG_From_size_t(static_cast< size_t >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_GetPropertyName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; size_t arg2 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcProperties_GetPropertyName",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_GetPropertyName" "', argument " "1"" of type '" "iPcProperties const *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcProperties_GetPropertyName" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); result = (char *)((iPcProperties const *)arg1)->GetPropertyName(arg2); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcProperties_Dump(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcProperties_Dump",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcProperties_Dump" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); (arg1)->Dump(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcProperties(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcProperties *arg1 = (iPcProperties *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcProperties",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcProperties, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcProperties" "', argument " "1"" of type '" "iPcProperties *""'"); } arg1 = reinterpret_cast< iPcProperties * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcProperties_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcProperties, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateProperties(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcProperties *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateProperties",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateProperties" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateProperties" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcProperties *)celCreateProperties(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcProperties, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetProperties(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcProperties *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetProperties",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetProperties" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetProperties" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcProperties *)celGetSetProperties(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcProperties, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetProperties(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcProperties *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetProperties",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetProperties" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcProperties *)celGetProperties(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcProperties, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcProperties(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcProperties *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcProperties",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcProperties" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcProperties *)scfQuery_iPcProperties(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcProperties, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_Start(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; iSector *arg2 = (iSector *) 0 ; csVector3 *arg3 = 0 ; csVector3 *arg4 = 0 ; float arg5 ; bool result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; float val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcMover_Start",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_Start" "', argument " "1"" of type '" "iPcMover *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iSector, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcMover_Start" "', argument " "2"" of type '" "iSector *""'"); } arg2 = reinterpret_cast< iSector * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcMover_Start" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMover_Start" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcMover_Start" "', argument " "4"" of type '" "csVector3 const &""'"); } if (!argp4) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcMover_Start" "', argument " "4"" of type '" "csVector3 const &""'"); } arg4 = reinterpret_cast< csVector3 * >(argp4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcMover_Start" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); result = (bool)(arg1)->Start(arg2,(csVector3 const &)*arg3,(csVector3 const &)*arg4,arg5); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_Interrupt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_Interrupt",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_Interrupt" "', argument " "1"" of type '" "iPcMover *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); (arg1)->Interrupt(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_GetSector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; iSector *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_GetSector",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_GetSector" "', argument " "1"" of type '" "iPcMover const *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); result = (iSector *)((iPcMover const *)arg1)->GetSector(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSector, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_GetPosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_GetPosition",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_GetPosition" "', argument " "1"" of type '" "iPcMover const *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); { csVector3 const &_result_ref = ((iPcMover const *)arg1)->GetPosition(); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_GetUp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_GetUp",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_GetUp" "', argument " "1"" of type '" "iPcMover const *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); { csVector3 const &_result_ref = ((iPcMover const *)arg1)->GetUp(); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_GetSqRadius(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_GetSqRadius",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_GetSqRadius" "', argument " "1"" of type '" "iPcMover const *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); result = (float)((iPcMover const *)arg1)->GetSqRadius(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_IsMoving(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_IsMoving",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_IsMoving" "', argument " "1"" of type '" "iPcMover const *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); result = (bool)((iPcMover const *)arg1)->IsMoving(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_Sector_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; iSector *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_Sector_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_Sector_get" "', argument " "1"" of type '" "iPcMover *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); result = (iSector *)iPcMover_Sector_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iSector, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_Position_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_Position_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_Position_get" "', argument " "1"" of type '" "iPcMover *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); { csVector3 &_result_ref = iPcMover_Position_get(arg1); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_Up_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_Up_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_Up_get" "', argument " "1"" of type '" "iPcMover *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); { csVector3 &_result_ref = iPcMover_Up_get(arg1); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_SqRadius_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_SqRadius_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_SqRadius_get" "', argument " "1"" of type '" "iPcMover *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); result = (float)iPcMover_SqRadius_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcMover_Moving_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcMover_Moving_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcMover_Moving_get" "', argument " "1"" of type '" "iPcMover *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); result = (bool)iPcMover_Moving_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcMover(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcMover *arg1 = (iPcMover *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcMover",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcMover, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcMover" "', argument " "1"" of type '" "iPcMover *""'"); } arg1 = reinterpret_cast< iPcMover * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcMover_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcMover, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateMover(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMover *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateMover",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateMover" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateMover" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMover *)celCreateMover(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMover, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetMover(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcMover *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetMover",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetMover" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetMover" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcMover *)celGetSetMover(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMover, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetMover(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcMover *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetMover",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetMover" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcMover *)celGetMover(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMover, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcMover(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcMover *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcMover",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcMover" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcMover *)scfQuery_iPcMover(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcMover, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_SetHeightBeamCutoff(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcHover_SetHeightBeamCutoff",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_SetHeightBeamCutoff" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcHover_SetHeightBeamCutoff" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetHeightBeamCutoff(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_SetAngularBeamOffset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcHover_SetAngularBeamOffset",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_SetAngularBeamOffset" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcHover_SetAngularBeamOffset" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetAngularBeamOffset(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_SetAngularCutoffHeight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcHover_SetAngularCutoffHeight",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_SetAngularCutoffHeight" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcHover_SetAngularCutoffHeight" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetAngularCutoffHeight(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_SetAngularCorrectionStrength(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcHover_SetAngularCorrectionStrength",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_SetAngularCorrectionStrength" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcHover_SetAngularCorrectionStrength" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetAngularCorrectionStrength(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_HoverOn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcHover_HoverOn",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_HoverOn" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); (arg1)->HoverOn(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_HoverOff(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcHover_HoverOff",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_HoverOff" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); (arg1)->HoverOff(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_SetStabiliserFunction(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; celStabiliserFunction *arg2 = (celStabiliserFunction *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcHover_SetStabiliserFunction",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_SetStabiliserFunction" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_celStabiliserFunction, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcHover_SetStabiliserFunction" "', argument " "2"" of type '" "celStabiliserFunction *""'"); } arg2 = reinterpret_cast< celStabiliserFunction * >(argp2); (arg1)->SetStabiliserFunction(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_UseDefaultFunction__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcHover_UseDefaultFunction",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_UseDefaultFunction" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcHover_UseDefaultFunction" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->UseDefaultFunction(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_UseDefaultFunction__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcHover_UseDefaultFunction",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_UseDefaultFunction" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); (arg1)->UseDefaultFunction(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_UseDefaultFunction(PyObject *self, PyObject *args) { int argc; PyObject *argv[3]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 2); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 1) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcHover, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcHover_UseDefaultFunction__SWIG_1(self, args); } } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcHover, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcHover_UseDefaultFunction__SWIG_0(self, args); } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcHover_UseDefaultFunction'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_GetHeight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcHover_GetHeight",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_GetHeight" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); result = (float)(arg1)->GetHeight(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcHover_Height_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcHover_Height_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcHover_Height_get" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); result = (float)iPcHover_Height_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcHover(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcHover *arg1 = (iPcHover *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcHover",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcHover, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcHover" "', argument " "1"" of type '" "iPcHover *""'"); } arg1 = reinterpret_cast< iPcHover * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcHover_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcHover, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateHover(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcHover *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateHover",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateHover" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateHover" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcHover *)celCreateHover(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcHover, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetHover(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcHover *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetHover",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetHover" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetHover" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcHover *)celGetSetHover(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcHover, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetHover(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcHover *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetHover",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetHover" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcHover *)celGetHover(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcHover, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcHover(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcHover *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcHover",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcHover" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcHover *)scfQuery_iPcHover(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcHover, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_StartTurnLeft(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_StartTurnLeft",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_StartTurnLeft" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->StartTurnLeft(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_StopTurnLeft(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_StopTurnLeft",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_StopTurnLeft" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->StopTurnLeft(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_StartTurnRight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_StartTurnRight",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_StartTurnRight" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->StartTurnRight(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_StopTurnRight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_StopTurnRight",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_StopTurnRight" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->StopTurnRight(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_StartTurnUp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_StartTurnUp",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_StartTurnUp" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->StartTurnUp(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_StopTurnUp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_StopTurnUp",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_StopTurnUp" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->StopTurnUp(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_StartTurnDown(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_StartTurnDown",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_StartTurnDown" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->StartTurnDown(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_StopTurnDown(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_StopTurnDown",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_StopTurnDown" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->StopTurnDown(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SetAccTurn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCraftController_SetAccTurn",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SetAccTurn" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCraftController_SetAccTurn" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetAccTurn(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SetAccPitch(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCraftController_SetAccPitch",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SetAccPitch" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCraftController_SetAccPitch" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetAccPitch(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SetMaxTurn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCraftController_SetMaxTurn",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SetMaxTurn" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCraftController_SetMaxTurn" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetMaxTurn(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SetMaxPitch(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCraftController_SetMaxPitch",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SetMaxPitch" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCraftController_SetMaxPitch" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetMaxPitch(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SetThrustForce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCraftController_SetThrustForce",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SetThrustForce" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCraftController_SetThrustForce" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetThrustForce(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SetTopSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCraftController_SetTopSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SetTopSpeed" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCraftController_SetTopSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetTopSpeed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SetRedirectVelocityRatio(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCraftController_SetRedirectVelocityRatio",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SetRedirectVelocityRatio" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCraftController_SetRedirectVelocityRatio" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetRedirectVelocityRatio(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SetDecelerationRate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCraftController_SetDecelerationRate",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SetDecelerationRate" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCraftController_SetDecelerationRate" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetDecelerationRate(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SetBrakingSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCraftController_SetBrakingSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SetBrakingSpeed" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCraftController_SetBrakingSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetBrakingSpeed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_ThrustOn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_ThrustOn",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_ThrustOn" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->ThrustOn(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_ThrustOff(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_ThrustOff",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_ThrustOff" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->ThrustOff(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_IsThrusterOn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_IsThrusterOn",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_IsThrusterOn" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); result = (bool)(arg1)->IsThrusterOn(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SetAfterBurnerTopSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcCraftController_SetAfterBurnerTopSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SetAfterBurnerTopSpeed" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcCraftController_SetAfterBurnerTopSpeed" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetAfterBurnerTopSpeed(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_AfterBurnerOn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_AfterBurnerOn",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_AfterBurnerOn" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->AfterBurnerOn(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_AfterBurnerOff(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_AfterBurnerOff",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_AfterBurnerOff" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->AfterBurnerOff(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_BrakesOn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_BrakesOn",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_BrakesOn" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->BrakesOn(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_BrakesOff(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_BrakesOff",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_BrakesOff" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->BrakesOff(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SlideOn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_SlideOn",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SlideOn" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->SlideOn(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_SlideOff(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_SlideOff",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_SlideOff" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); (arg1)->SlideOff(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcCraftController_ThrusterOn_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcCraftController_ThrusterOn_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcCraftController_ThrusterOn_get" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); result = (bool)iPcCraftController_ThrusterOn_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcCraftController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcCraftController *arg1 = (iPcCraftController *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcCraftController",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcCraftController, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcCraftController" "', argument " "1"" of type '" "iPcCraftController *""'"); } arg1 = reinterpret_cast< iPcCraftController * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcCraftController_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcCraftController, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateCraftController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcCraftController *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateCraftController",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateCraftController" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateCraftController" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcCraftController *)celCreateCraftController(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCraftController, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetCraftController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcCraftController *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetCraftController",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetCraftController" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetCraftController" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcCraftController *)celGetSetCraftController(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCraftController, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetCraftController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcCraftController *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetCraftController",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetCraftController" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcCraftController *)celGetCraftController(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCraftController, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcCraftController(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcCraftController *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcCraftController",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcCraftController" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcCraftController *)scfQuery_iPcCraftController(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcCraftController, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelMesh__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelMesh",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelMesh" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcWheeled_SetWheelMesh" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcWheeled_SetWheelMesh" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; (arg1)->SetWheelMesh((char const *)arg2,(char const *)arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelMesh__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; char *arg3 = (char *) 0 ; char *arg4 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcWheeled_SetWheelMesh",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelMesh" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelMesh" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcWheeled_SetWheelMesh" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcWheeled_SetWheelMesh" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; (arg1)->SetWheelMesh(arg2,(char const *)arg3,(char const *)arg4); resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelMesh(PyObject *self, PyObject *args) { int argc; PyObject *argv[5]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcWheeled, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcWheeled_SetWheelMesh__SWIG_0(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcWheeled, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcWheeled_SetWheelMesh__SWIG_1(self, args); } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcWheeled_SetWheelMesh'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetTankMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_SetTankMode",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetTankMode" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetTankMode" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetTankMode(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetTankMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_GetTankMode",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetTankMode" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (bool)(arg1)->GetTankMode(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_AddWheelAuto__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; csVector3 arg2 ; char *arg3 = (char *) 0 ; char *arg4 = (char *) 0 ; csMatrix3 arg5 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; void *argp5 ; int res5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcWheeled_AddWheelAuto",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_AddWheelAuto" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; { res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_csMatrix3, 0 | 0); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "5"" of type '" "csMatrix3""'"); } if (!argp5) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_AddWheelAuto" "', argument " "5"" of type '" "csMatrix3""'"); } else { csMatrix3 * temp = reinterpret_cast< csMatrix3 * >(argp5); arg5 = *temp; if (SWIG_IsNewObj(res5)) delete temp; } } result = (int)(arg1)->AddWheelAuto(arg2,(char const *)arg3,(char const *)arg4,arg5); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_AddWheelAuto__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; csVector3 arg2 ; char *arg3 = (char *) 0 ; char *arg4 = (char *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcWheeled_AddWheelAuto",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_AddWheelAuto" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "4"" of type '" "char const *""'"); } arg4 = buf4; result = (int)(arg1)->AddWheelAuto(arg2,(char const *)arg3,(char const *)arg4); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_AddWheelAuto__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; csVector3 arg2 ; char *arg3 = (char *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_AddWheelAuto",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_AddWheelAuto" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "3"" of type '" "char const *""'"); } arg3 = buf3; result = (int)(arg1)->AddWheelAuto(arg2,(char const *)arg3); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_AddWheelAuto__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; csVector3 arg2 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_AddWheelAuto",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcWheeled_AddWheelAuto" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_AddWheelAuto" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } result = (int)(arg1)->AddWheelAuto(arg2); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_AddWheelAuto(PyObject *self, PyObject *args) { int argc; PyObject *argv[6]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 5); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 2) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcWheeled, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcWheeled_AddWheelAuto__SWIG_3(self, args); } } } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcWheeled, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcWheeled_AddWheelAuto__SWIG_2(self, args); } } } } if (argc == 4) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcWheeled, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcWheeled_AddWheelAuto__SWIG_1(self, args); } } } } } if (argc == 5) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcWheeled, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[4], 0, SWIGTYPE_p_csMatrix3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcWheeled_AddWheelAuto__SWIG_0(self, args); } } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcWheeled_AddWheelAuto'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_AddWheel__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; csVector3 arg2 ; float arg3 ; float arg4 ; float arg5 ; float arg6 ; float arg7 ; float arg8 ; float arg9 ; float arg10 ; bool arg11 ; bool arg12 ; char *arg13 = (char *) 0 ; char *arg14 = (char *) 0 ; csMatrix3 arg15 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; float val5 ; int ecode5 = 0 ; float val6 ; int ecode6 = 0 ; float val7 ; int ecode7 = 0 ; float val8 ; int ecode8 = 0 ; float val9 ; int ecode9 = 0 ; float val10 ; int ecode10 = 0 ; bool val11 ; int ecode11 = 0 ; bool val12 ; int ecode12 = 0 ; int res13 ; char *buf13 = 0 ; int alloc13 = 0 ; int res14 ; char *buf14 = 0 ; int alloc14 = 0 ; void *argp15 ; int res15 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; PyObject * obj13 = 0 ; PyObject * obj14 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOOOOO:iPcWheeled_AddWheel",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12,&obj13,&obj14)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_AddWheel" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcWheeled_AddWheel" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_AddWheel" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_AddWheel" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcWheeled_AddWheel" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcWheeled_AddWheel" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); ecode6 = SWIG_AsVal_float(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "iPcWheeled_AddWheel" "', argument " "6"" of type '" "float""'"); } arg6 = static_cast< float >(val6); ecode7 = SWIG_AsVal_float(obj6, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "iPcWheeled_AddWheel" "', argument " "7"" of type '" "float""'"); } arg7 = static_cast< float >(val7); ecode8 = SWIG_AsVal_float(obj7, &val8); if (!SWIG_IsOK(ecode8)) { SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "iPcWheeled_AddWheel" "', argument " "8"" of type '" "float""'"); } arg8 = static_cast< float >(val8); ecode9 = SWIG_AsVal_float(obj8, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "iPcWheeled_AddWheel" "', argument " "9"" of type '" "float""'"); } arg9 = static_cast< float >(val9); ecode10 = SWIG_AsVal_float(obj9, &val10); if (!SWIG_IsOK(ecode10)) { SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "iPcWheeled_AddWheel" "', argument " "10"" of type '" "float""'"); } arg10 = static_cast< float >(val10); ecode11 = SWIG_AsVal_bool(obj10, &val11); if (!SWIG_IsOK(ecode11)) { SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "iPcWheeled_AddWheel" "', argument " "11"" of type '" "bool""'"); } arg11 = static_cast< bool >(val11); ecode12 = SWIG_AsVal_bool(obj11, &val12); if (!SWIG_IsOK(ecode12)) { SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "iPcWheeled_AddWheel" "', argument " "12"" of type '" "bool""'"); } arg12 = static_cast< bool >(val12); res13 = SWIG_AsCharPtrAndSize(obj12, &buf13, NULL, &alloc13); if (!SWIG_IsOK(res13)) { SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "iPcWheeled_AddWheel" "', argument " "13"" of type '" "char const *""'"); } arg13 = buf13; res14 = SWIG_AsCharPtrAndSize(obj13, &buf14, NULL, &alloc14); if (!SWIG_IsOK(res14)) { SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "iPcWheeled_AddWheel" "', argument " "14"" of type '" "char const *""'"); } arg14 = buf14; { res15 = SWIG_ConvertPtr(obj14, &argp15, SWIGTYPE_p_csMatrix3, 0 | 0); if (!SWIG_IsOK(res15)) { SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "iPcWheeled_AddWheel" "', argument " "15"" of type '" "csMatrix3""'"); } if (!argp15) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_AddWheel" "', argument " "15"" of type '" "csMatrix3""'"); } else { csMatrix3 * temp = reinterpret_cast< csMatrix3 * >(argp15); arg15 = *temp; if (SWIG_IsNewObj(res15)) delete temp; } } result = (int)(arg1)->AddWheel(arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,(char const *)arg13,(char const *)arg14,arg15); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc13 == SWIG_NEWOBJ) delete[] buf13; if (alloc14 == SWIG_NEWOBJ) delete[] buf14; return resultobj; fail: if (alloc13 == SWIG_NEWOBJ) delete[] buf13; if (alloc14 == SWIG_NEWOBJ) delete[] buf14; return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_AddWheel__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; csVector3 arg2 ; float arg3 ; float arg4 ; float arg5 ; float arg6 ; float arg7 ; float arg8 ; float arg9 ; float arg10 ; bool arg11 ; bool arg12 ; char *arg13 = (char *) 0 ; char *arg14 = (char *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; float val5 ; int ecode5 = 0 ; float val6 ; int ecode6 = 0 ; float val7 ; int ecode7 = 0 ; float val8 ; int ecode8 = 0 ; float val9 ; int ecode9 = 0 ; float val10 ; int ecode10 = 0 ; bool val11 ; int ecode11 = 0 ; bool val12 ; int ecode12 = 0 ; int res13 ; char *buf13 = 0 ; int alloc13 = 0 ; int res14 ; char *buf14 = 0 ; int alloc14 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; PyObject * obj13 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOOOO:iPcWheeled_AddWheel",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12,&obj13)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_AddWheel" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcWheeled_AddWheel" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_AddWheel" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_AddWheel" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcWheeled_AddWheel" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcWheeled_AddWheel" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); ecode6 = SWIG_AsVal_float(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "iPcWheeled_AddWheel" "', argument " "6"" of type '" "float""'"); } arg6 = static_cast< float >(val6); ecode7 = SWIG_AsVal_float(obj6, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "iPcWheeled_AddWheel" "', argument " "7"" of type '" "float""'"); } arg7 = static_cast< float >(val7); ecode8 = SWIG_AsVal_float(obj7, &val8); if (!SWIG_IsOK(ecode8)) { SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "iPcWheeled_AddWheel" "', argument " "8"" of type '" "float""'"); } arg8 = static_cast< float >(val8); ecode9 = SWIG_AsVal_float(obj8, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "iPcWheeled_AddWheel" "', argument " "9"" of type '" "float""'"); } arg9 = static_cast< float >(val9); ecode10 = SWIG_AsVal_float(obj9, &val10); if (!SWIG_IsOK(ecode10)) { SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "iPcWheeled_AddWheel" "', argument " "10"" of type '" "float""'"); } arg10 = static_cast< float >(val10); ecode11 = SWIG_AsVal_bool(obj10, &val11); if (!SWIG_IsOK(ecode11)) { SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "iPcWheeled_AddWheel" "', argument " "11"" of type '" "bool""'"); } arg11 = static_cast< bool >(val11); ecode12 = SWIG_AsVal_bool(obj11, &val12); if (!SWIG_IsOK(ecode12)) { SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "iPcWheeled_AddWheel" "', argument " "12"" of type '" "bool""'"); } arg12 = static_cast< bool >(val12); res13 = SWIG_AsCharPtrAndSize(obj12, &buf13, NULL, &alloc13); if (!SWIG_IsOK(res13)) { SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "iPcWheeled_AddWheel" "', argument " "13"" of type '" "char const *""'"); } arg13 = buf13; res14 = SWIG_AsCharPtrAndSize(obj13, &buf14, NULL, &alloc14); if (!SWIG_IsOK(res14)) { SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "iPcWheeled_AddWheel" "', argument " "14"" of type '" "char const *""'"); } arg14 = buf14; result = (int)(arg1)->AddWheel(arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,(char const *)arg13,(char const *)arg14); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc13 == SWIG_NEWOBJ) delete[] buf13; if (alloc14 == SWIG_NEWOBJ) delete[] buf14; return resultobj; fail: if (alloc13 == SWIG_NEWOBJ) delete[] buf13; if (alloc14 == SWIG_NEWOBJ) delete[] buf14; return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_AddWheel__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; csVector3 arg2 ; float arg3 ; float arg4 ; float arg5 ; float arg6 ; float arg7 ; float arg8 ; float arg9 ; float arg10 ; bool arg11 ; bool arg12 ; char *arg13 = (char *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; float val5 ; int ecode5 = 0 ; float val6 ; int ecode6 = 0 ; float val7 ; int ecode7 = 0 ; float val8 ; int ecode8 = 0 ; float val9 ; int ecode9 = 0 ; float val10 ; int ecode10 = 0 ; bool val11 ; int ecode11 = 0 ; bool val12 ; int ecode12 = 0 ; int res13 ; char *buf13 = 0 ; int alloc13 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOOO:iPcWheeled_AddWheel",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_AddWheel" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcWheeled_AddWheel" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_AddWheel" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_AddWheel" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcWheeled_AddWheel" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcWheeled_AddWheel" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); ecode6 = SWIG_AsVal_float(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "iPcWheeled_AddWheel" "', argument " "6"" of type '" "float""'"); } arg6 = static_cast< float >(val6); ecode7 = SWIG_AsVal_float(obj6, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "iPcWheeled_AddWheel" "', argument " "7"" of type '" "float""'"); } arg7 = static_cast< float >(val7); ecode8 = SWIG_AsVal_float(obj7, &val8); if (!SWIG_IsOK(ecode8)) { SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "iPcWheeled_AddWheel" "', argument " "8"" of type '" "float""'"); } arg8 = static_cast< float >(val8); ecode9 = SWIG_AsVal_float(obj8, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "iPcWheeled_AddWheel" "', argument " "9"" of type '" "float""'"); } arg9 = static_cast< float >(val9); ecode10 = SWIG_AsVal_float(obj9, &val10); if (!SWIG_IsOK(ecode10)) { SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "iPcWheeled_AddWheel" "', argument " "10"" of type '" "float""'"); } arg10 = static_cast< float >(val10); ecode11 = SWIG_AsVal_bool(obj10, &val11); if (!SWIG_IsOK(ecode11)) { SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "iPcWheeled_AddWheel" "', argument " "11"" of type '" "bool""'"); } arg11 = static_cast< bool >(val11); ecode12 = SWIG_AsVal_bool(obj11, &val12); if (!SWIG_IsOK(ecode12)) { SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "iPcWheeled_AddWheel" "', argument " "12"" of type '" "bool""'"); } arg12 = static_cast< bool >(val12); res13 = SWIG_AsCharPtrAndSize(obj12, &buf13, NULL, &alloc13); if (!SWIG_IsOK(res13)) { SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "iPcWheeled_AddWheel" "', argument " "13"" of type '" "char const *""'"); } arg13 = buf13; result = (int)(arg1)->AddWheel(arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,(char const *)arg13); resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc13 == SWIG_NEWOBJ) delete[] buf13; return resultobj; fail: if (alloc13 == SWIG_NEWOBJ) delete[] buf13; return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_AddWheel__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; csVector3 arg2 ; float arg3 ; float arg4 ; float arg5 ; float arg6 ; float arg7 ; float arg8 ; float arg9 ; float arg10 ; bool arg11 ; bool arg12 ; int result; void *argp1 = 0 ; int res1 = 0 ; void *argp2 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; float val5 ; int ecode5 = 0 ; float val6 ; int ecode6 = 0 ; float val7 ; int ecode7 = 0 ; float val8 ; int ecode8 = 0 ; float val9 ; int ecode9 = 0 ; float val10 ; int ecode10 = 0 ; bool val11 ; int ecode11 = 0 ; bool val12 ; int ecode12 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOO:iPcWheeled_AddWheel",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_AddWheel" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); { res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcWheeled_AddWheel" "', argument " "2"" of type '" "csVector3""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_AddWheel" "', argument " "2"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp2); arg2 = *temp; if (SWIG_IsNewObj(res2)) delete temp; } } ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_AddWheel" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcWheeled_AddWheel" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcWheeled_AddWheel" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); ecode6 = SWIG_AsVal_float(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "iPcWheeled_AddWheel" "', argument " "6"" of type '" "float""'"); } arg6 = static_cast< float >(val6); ecode7 = SWIG_AsVal_float(obj6, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "iPcWheeled_AddWheel" "', argument " "7"" of type '" "float""'"); } arg7 = static_cast< float >(val7); ecode8 = SWIG_AsVal_float(obj7, &val8); if (!SWIG_IsOK(ecode8)) { SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "iPcWheeled_AddWheel" "', argument " "8"" of type '" "float""'"); } arg8 = static_cast< float >(val8); ecode9 = SWIG_AsVal_float(obj8, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "iPcWheeled_AddWheel" "', argument " "9"" of type '" "float""'"); } arg9 = static_cast< float >(val9); ecode10 = SWIG_AsVal_float(obj9, &val10); if (!SWIG_IsOK(ecode10)) { SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "iPcWheeled_AddWheel" "', argument " "10"" of type '" "float""'"); } arg10 = static_cast< float >(val10); ecode11 = SWIG_AsVal_bool(obj10, &val11); if (!SWIG_IsOK(ecode11)) { SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "iPcWheeled_AddWheel" "', argument " "11"" of type '" "bool""'"); } arg11 = static_cast< bool >(val11); ecode12 = SWIG_AsVal_bool(obj11, &val12); if (!SWIG_IsOK(ecode12)) { SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "iPcWheeled_AddWheel" "', argument " "12"" of type '" "bool""'"); } arg12 = static_cast< bool >(val12); result = (int)(arg1)->AddWheel(arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_AddWheel(PyObject *self, PyObject *args) { int argc; PyObject *argv[16]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 15); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 12) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcWheeled, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[5], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[6], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[7], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[8], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[9], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[10], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[11], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_iPcWheeled_AddWheel__SWIG_3(self, args); } } } } } } } } } } } } } if (argc == 13) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcWheeled, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[5], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[6], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[7], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[8], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[9], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[10], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[11], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[12], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcWheeled_AddWheel__SWIG_2(self, args); } } } } } } } } } } } } } } if (argc == 14) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcWheeled, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[5], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[6], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[7], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[8], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[9], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[10], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[11], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[12], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[13], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcWheeled_AddWheel__SWIG_1(self, args); } } } } } } } } } } } } } } } if (argc == 15) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_iPcWheeled, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_csVector3, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_float(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[5], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[6], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[7], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[8], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_float(argv[9], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[10], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_bool(argv[11], NULL); _v = SWIG_CheckState(res); } if (_v) { int res = SWIG_AsCharPtrAndSize(argv[12], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[13], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_ConvertPtr(argv[14], 0, SWIGTYPE_p_csMatrix3, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_iPcWheeled_AddWheel__SWIG_0(self, args); } } } } } } } } } } } } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"No matching function for overloaded 'iPcWheeled_AddWheel'"); return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_DeleteWheel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_DeleteWheel",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_DeleteWheel" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_DeleteWheel" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); (arg1)->DeleteWheel(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_DeleteAllWheels(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_DeleteAllWheels",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_DeleteAllWheels" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); (arg1)->DeleteAllWheels(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_DestroyWheel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_DestroyWheel",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_DestroyWheel" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_DestroyWheel" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); (arg1)->DestroyWheel(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_DestroyAllWheels(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_DestroyAllWheels",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_DestroyAllWheels" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); (arg1)->DestroyAllWheels(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_RestoreWheel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_RestoreWheel",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_RestoreWheel" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_RestoreWheel" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); (arg1)->RestoreWheel(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_RestoreAllWheels(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_RestoreAllWheels",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_RestoreAllWheels" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); (arg1)->RestoreAllWheels(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetOuterWheelSteerPreset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_SetOuterWheelSteerPreset",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetOuterWheelSteerPreset" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetOuterWheelSteerPreset" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetOuterWheelSteerPreset(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetFrontWheelPreset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; float arg2 ; float arg3 ; float arg4 ; float arg5 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; float val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcWheeled_SetFrontWheelPreset",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetFrontWheelPreset" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetFrontWheelPreset" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetFrontWheelPreset" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcWheeled_SetFrontWheelPreset" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcWheeled_SetFrontWheelPreset" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); (arg1)->SetFrontWheelPreset(arg2,arg3,arg4,arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetRearWheelPreset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; float arg2 ; float arg3 ; float arg4 ; float arg5 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; float val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:iPcWheeled_SetRearWheelPreset",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetRearWheelPreset" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetRearWheelPreset" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetRearWheelPreset" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcWheeled_SetRearWheelPreset" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); ecode5 = SWIG_AsVal_float(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "iPcWheeled_SetRearWheelPreset" "', argument " "5"" of type '" "float""'"); } arg5 = static_cast< float >(val5); (arg1)->SetRearWheelPreset(arg2,arg3,arg4,arg5); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Accelerate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_Accelerate",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Accelerate" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_Accelerate" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->Accelerate(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_IsAccelerating(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_IsAccelerating",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_IsAccelerating" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (bool)(arg1)->IsAccelerating(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Brake(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_Brake",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Brake" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_Brake" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->Brake(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_IsBraking(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_IsBraking",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_IsBraking" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (bool)(arg1)->IsBraking(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Handbrake(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_Handbrake",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Handbrake" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_Handbrake" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->Handbrake(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_IsHandbraking(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_IsHandbraking",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_IsHandbraking" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (bool)(arg1)->IsHandbraking(); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetSteerAmount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_SetSteerAmount",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetSteerAmount" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetSteerAmount" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetSteerAmount(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetBrakeForce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_SetBrakeForce",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetBrakeForce" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetBrakeForce" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetBrakeForce(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetSteerAmount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_GetSteerAmount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetSteerAmount" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (float)(arg1)->GetSteerAmount(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SteerLeft(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_SteerLeft",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SteerLeft" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); (arg1)->SteerLeft(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SteerRight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_SteerRight",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SteerRight" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); (arg1)->SteerRight(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SteerStraight(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_SteerStraight",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SteerStraight" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); (arg1)->SteerStraight(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Reverse(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_Reverse",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Reverse" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); (arg1)->Reverse(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Neutral(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_Neutral",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Neutral" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); (arg1)->Neutral(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetAutoTransmission(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_SetAutoTransmission",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetAutoTransmission" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetAutoTransmission" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetAutoTransmission(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetGear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_SetGear",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetGear" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetGear" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); (arg1)->SetGear(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetGear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_GetGear",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetGear" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (int)(arg1)->GetGear(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetGearSettings(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float arg3 ; float arg4 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; float val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:iPcWheeled_SetGearSettings",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetGearSettings" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetGearSettings" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetGearSettings" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); ecode4 = SWIG_AsVal_float(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "iPcWheeled_SetGearSettings" "', argument " "4"" of type '" "float""'"); } arg4 = static_cast< float >(val4); (arg1)->SetGearSettings(arg2,arg3,arg4); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetTopGear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_GetTopGear",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetTopGear" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (int)(arg1)->GetTopGear(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetAutoReverse(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_SetAutoReverse",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetAutoReverse" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetAutoReverse" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); (arg1)->SetAutoReverse(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetBodyGroup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; iBodyGroup *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_GetBodyGroup",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetBodyGroup" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (iBodyGroup *)(arg1)->GetBodyGroup(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBodyGroup, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelPosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; csVector3 arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelPosition",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelPosition" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelPosition" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcWheeled_SetWheelPosition" "', argument " "3"" of type '" "csVector3""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_SetWheelPosition" "', argument " "3"" of type '" "csVector3""'"); } else { csVector3 * temp = reinterpret_cast< csVector3 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } (arg1)->SetWheelPosition(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelRotation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; csMatrix3 arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; void *argp3 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelRotation",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelRotation" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelRotation" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csMatrix3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcWheeled_SetWheelRotation" "', argument " "3"" of type '" "csMatrix3""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcWheeled_SetWheelRotation" "', argument " "3"" of type '" "csMatrix3""'"); } else { csMatrix3 * temp = reinterpret_cast< csMatrix3 * >(argp3); arg3 = *temp; if (SWIG_IsNewObj(res3)) delete temp; } } (arg1)->SetWheelRotation(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelSuspensionSoftness(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelSuspensionSoftness",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelSuspensionSoftness" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelSuspensionSoftness" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetWheelSuspensionSoftness" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetWheelSuspensionSoftness(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelSuspensionDamping(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelSuspensionDamping",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelSuspensionDamping" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelSuspensionDamping" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetWheelSuspensionDamping" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetWheelSuspensionDamping(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelLeftSteerSensitivity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelLeftSteerSensitivity",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelLeftSteerSensitivity" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelLeftSteerSensitivity" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetWheelLeftSteerSensitivity" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetWheelLeftSteerSensitivity(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelRightSteerSensitivity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelRightSteerSensitivity",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelRightSteerSensitivity" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelRightSteerSensitivity" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetWheelRightSteerSensitivity" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetWheelRightSteerSensitivity(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelTurnSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelTurnSpeed",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelTurnSpeed" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelTurnSpeed" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetWheelTurnSpeed" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetWheelTurnSpeed(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelReturnSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelReturnSpeed",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelReturnSpeed" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelReturnSpeed" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetWheelReturnSpeed" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetWheelReturnSpeed(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelEnginePower(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelEnginePower",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelEnginePower" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelEnginePower" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetWheelEnginePower" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetWheelEnginePower(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelBrakePower(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelBrakePower",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelBrakePower" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelBrakePower" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetWheelBrakePower" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->SetWheelBrakePower(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelSteerInverted(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelSteerInverted",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelSteerInverted" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelSteerInverted" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetWheelSteerInverted" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetWheelSteerInverted(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SetWheelHandbrakeAffected(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; bool arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; bool val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcWheeled_SetWheelHandbrakeAffected",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SetWheelHandbrakeAffected" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SetWheelHandbrakeAffected" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_bool(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcWheeled_SetWheelHandbrakeAffected" "', argument " "3"" of type '" "bool""'"); } arg3 = static_cast< bool >(val3); (arg1)->SetWheelHandbrakeAffected(arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelPosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; csVector3 result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelPosition",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelPosition" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelPosition" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (arg1)->GetWheelPosition(arg2); resultobj = SWIG_NewPointerObj((new csVector3(static_cast< const csVector3& >(result))), SWIGTYPE_p_csVector3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelRotation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; csMatrix3 result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelRotation",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelRotation" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelRotation" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (arg1)->GetWheelRotation(arg2); resultobj = SWIG_NewPointerObj((new csMatrix3(static_cast< const csMatrix3& >(result))), SWIGTYPE_p_csMatrix3, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelSuspensionSoftness(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelSuspensionSoftness",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelSuspensionSoftness" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelSuspensionSoftness" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (float)(arg1)->GetWheelSuspensionSoftness(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelSuspensionDamping(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelSuspensionDamping",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelSuspensionDamping" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelSuspensionDamping" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (float)(arg1)->GetWheelSuspensionDamping(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelLeftSteerSensitivity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelLeftSteerSensitivity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelLeftSteerSensitivity" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelLeftSteerSensitivity" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (float)(arg1)->GetWheelLeftSteerSensitivity(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelRightSteerSensitivity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelRightSteerSensitivity",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelRightSteerSensitivity" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelRightSteerSensitivity" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (float)(arg1)->GetWheelRightSteerSensitivity(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelTurnSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelTurnSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelTurnSpeed" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelTurnSpeed" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (float)(arg1)->GetWheelTurnSpeed(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelReturnSpeed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelReturnSpeed",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelReturnSpeed" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelReturnSpeed" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (float)(arg1)->GetWheelReturnSpeed(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelEnginePower(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelEnginePower",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelEnginePower" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelEnginePower" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (float)(arg1)->GetWheelEnginePower(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelBrakePower(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; float result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelBrakePower",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelBrakePower" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelBrakePower" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (float)(arg1)->GetWheelBrakePower(arg2); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelSteerInverted(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelSteerInverted",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelSteerInverted" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelSteerInverted" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (bool)(arg1)->GetWheelSteerInverted(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelHandbrakeAffected(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; bool result; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelHandbrakeAffected",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelHandbrakeAffected" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelHandbrakeAffected" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (bool)(arg1)->GetWheelHandbrakeAffected(arg2); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_GetWheelCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelCount" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (int)(arg1)->GetWheelCount(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelBody(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; iRigidBody *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelBody",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelBody" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelBody" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (iRigidBody *)(arg1)->GetWheelBody(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iRigidBody, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_GetWheelJoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; iODEHinge2Joint *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_GetWheelJoint",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_GetWheelJoint" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_GetWheelJoint" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); result = (iODEHinge2Joint *)(arg1)->GetWheelJoint(arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iODEHinge2Joint, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_TankMode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_TankMode_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_TankMode_set" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_TankMode_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcWheeled_TankMode_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_TankMode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_TankMode_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_TankMode_get" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (bool)iPcWheeled_TankMode_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Accelerating_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_Accelerating_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Accelerating_set" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_Accelerating_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcWheeled_Accelerating_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Accelerating_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_Accelerating_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Accelerating_get" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (bool)iPcWheeled_Accelerating_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Braking_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_Braking_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Braking_set" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_Braking_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcWheeled_Braking_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Braking_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_Braking_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Braking_get" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (bool)iPcWheeled_Braking_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Handbraking_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool arg2 ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_Handbraking_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Handbraking_set" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_Handbraking_set" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); iPcWheeled_Handbraking_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Handbraking_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; bool result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_Handbraking_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Handbraking_get" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (bool)iPcWheeled_Handbraking_get(arg1); resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SteerAmount_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_SteerAmount_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SteerAmount_set" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_SteerAmount_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcWheeled_SteerAmount_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_SteerAmount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_SteerAmount_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_SteerAmount_get" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (float)iPcWheeled_SteerAmount_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Gear_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcWheeled_Gear_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Gear_set" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcWheeled_Gear_set" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); iPcWheeled_Gear_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_Gear_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_Gear_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_Gear_get" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (int)iPcWheeled_Gear_get(arg1); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_TopGear_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; int result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_TopGear_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_TopGear_get" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (int)iPcWheeled_TopGear_get(arg1); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcWheeled_BodyGroup_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; iBodyGroup *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcWheeled_BodyGroup_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcWheeled_BodyGroup_get" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); result = (iBodyGroup *)iPcWheeled_BodyGroup_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iBodyGroup, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcWheeled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcWheeled *arg1 = (iPcWheeled *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcWheeled",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcWheeled, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcWheeled" "', argument " "1"" of type '" "iPcWheeled *""'"); } arg1 = reinterpret_cast< iPcWheeled * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcWheeled_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcWheeled, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateWheeled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcWheeled *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateWheeled",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateWheeled" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateWheeled" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcWheeled *)celCreateWheeled(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcWheeled, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetWheeled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcWheeled *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetWheeled",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetWheeled" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetWheeled" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcWheeled *)celGetSetWheeled(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcWheeled, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetWheeled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcWheeled *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetWheeled",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetWheeled" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcWheeled *)celGetWheeled(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcWheeled, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcWheeled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcWheeled *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcWheeled",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcWheeled" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcWheeled *)scfQuery_iPcWheeled(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcWheeled, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_SetDamage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDamage_SetDamage",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_SetDamage" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDamage_SetDamage" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->SetDamage(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_GetDamage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_GetDamage",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_GetDamage" "', argument " "1"" of type '" "iPcDamage const *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); result = (float)((iPcDamage const *)arg1)->GetDamage(); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_SetDamageType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDamage_SetDamageType",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_SetDamageType" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDamage_SetDamageType" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetDamageType((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_GetDamageType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_GetDamageType",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_GetDamageType" "', argument " "1"" of type '" "iPcDamage const *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); result = (char *)((iPcDamage const *)arg1)->GetDamageType(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_SetFallOff(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDamage_SetFallOff",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_SetFallOff" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDamage_SetFallOff" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetFallOff((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_GetFallOff(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_GetFallOff",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_GetFallOff" "', argument " "1"" of type '" "iPcDamage const *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); result = (char *)((iPcDamage const *)arg1)->GetFallOff(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_SetDamageLocation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *arg2 = (char *) 0 ; csVector3 *arg3 = 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcDamage_SetDamageLocation",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_SetDamageLocation" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDamage_SetDamageLocation" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "iPcDamage_SetDamageLocation" "', argument " "3"" of type '" "csVector3 const &""'"); } if (!argp3) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcDamage_SetDamageLocation" "', argument " "3"" of type '" "csVector3 const &""'"); } arg3 = reinterpret_cast< csVector3 * >(argp3); (arg1)->SetDamageLocation((char const *)arg2,(csVector3 const &)*arg3); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_GetDamageSector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_GetDamageSector",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_GetDamageSector" "', argument " "1"" of type '" "iPcDamage const *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); result = (char *)((iPcDamage const *)arg1)->GetDamageSector(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_GetDamagePosition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_GetDamagePosition",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_GetDamagePosition" "', argument " "1"" of type '" "iPcDamage const *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); { csVector3 const &_result_ref = ((iPcDamage const *)arg1)->GetDamagePosition(); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_SetDamageSource(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDamage_SetDamageSource",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_SetDamageSource" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDamage_SetDamageSource" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SetDamageSource((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_GetDamageSource(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_GetDamageSource",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_GetDamageSource" "', argument " "1"" of type '" "iPcDamage const *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); result = (char *)((iPcDamage const *)arg1)->GetDamageSource(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_AreaDamage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDamage_AreaDamage",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_AreaDamage" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDamage_AreaDamage" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); (arg1)->AreaDamage(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_BeamDamage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; csVector3 *arg2 = 0 ; float arg3 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; float val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:iPcDamage_BeamDamage",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_BeamDamage" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csVector3, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDamage_BeamDamage" "', argument " "2"" of type '" "csVector3 const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iPcDamage_BeamDamage" "', argument " "2"" of type '" "csVector3 const &""'"); } arg2 = reinterpret_cast< csVector3 * >(argp2); ecode3 = SWIG_AsVal_float(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "iPcDamage_BeamDamage" "', argument " "3"" of type '" "float""'"); } arg3 = static_cast< float >(val3); (arg1)->BeamDamage((csVector3 const &)*arg2,arg3); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_SingleDamage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDamage_SingleDamage",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_SingleDamage" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDamage_SingleDamage" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; (arg1)->SingleDamage((char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_Damage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; float arg2 ; void *argp1 = 0 ; int res1 = 0 ; float val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDamage_Damage_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_Damage_set" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); ecode2 = SWIG_AsVal_float(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iPcDamage_Damage_set" "', argument " "2"" of type '" "float""'"); } arg2 = static_cast< float >(val2); iPcDamage_Damage_set(arg1,arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_Damage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; float result; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_Damage_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_Damage_get" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); result = (float)iPcDamage_Damage_get(arg1); resultobj = SWIG_From_float(static_cast< float >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_DamageType_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDamage_DamageType_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_DamageType_set" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDamage_DamageType_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iPcDamage_DamageType_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_DamageType_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_DamageType_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_DamageType_get" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); result = (char *)iPcDamage_DamageType_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_FallOff_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iPcDamage_FallOff_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_FallOff_set" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iPcDamage_FallOff_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = buf2; iPcDamage_FallOff_set(arg1,(char const *)arg2); resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_FallOff_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_FallOff_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_FallOff_get" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); result = (char *)iPcDamage_FallOff_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_DamageSector_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_DamageSector_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_DamageSector_get" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); result = (char *)iPcDamage_DamageSector_get(arg1); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iPcDamage_DamagePosition_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; csVector3 *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iPcDamage_DamagePosition_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iPcDamage_DamagePosition_get" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); { csVector3 &_result_ref = iPcDamage_DamagePosition_get(arg1); result = (csVector3 *) &_result_ref; } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_csVector3, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iPcDamage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iPcDamage *arg1 = (iPcDamage *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iPcDamage",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iPcDamage, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iPcDamage" "', argument " "1"" of type '" "iPcDamage *""'"); } arg1 = reinterpret_cast< iPcDamage * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iPcDamage_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iPcDamage, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_celCreateDamage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcDamage *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celCreateDamage",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celCreateDamage" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celCreateDamage" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcDamage *)celCreateDamage(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcDamage, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetSetDamage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPlLayer *arg1 = (iCelPlLayer *) 0 ; iCelEntity *arg2 = (iCelEntity *) 0 ; iPcDamage *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:celGetSetDamage",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPlLayer, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetSetDamage" "', argument " "1"" of type '" "iCelPlLayer *""'"); } arg1 = reinterpret_cast< iCelPlLayer * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "celGetSetDamage" "', argument " "2"" of type '" "iCelEntity *""'"); } arg2 = reinterpret_cast< iCelEntity * >(argp2); result = (iPcDamage *)celGetSetDamage(arg1,arg2); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcDamage, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_celGetDamage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelEntity *arg1 = (iCelEntity *) 0 ; iPcDamage *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:celGetDamage",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelEntity, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "celGetDamage" "', argument " "1"" of type '" "iCelEntity *""'"); } arg1 = reinterpret_cast< iCelEntity * >(argp1); result = (iPcDamage *)celGetDamage(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcDamage, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_scfQuery_iPcDamage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelPropertyClass *arg1 = (iCelPropertyClass *) 0 ; iPcDamage *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:scfQuery_iPcDamage",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelPropertyClass, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "scfQuery_iPcDamage" "', argument " "1"" of type '" "iCelPropertyClass *""'"); } arg1 = reinterpret_cast< iCelPropertyClass * >(argp1); result = (iPcDamage *)scfQuery_iPcDamage(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iPcDamage, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelConsoleCommand_GetCommand(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsoleCommand *arg1 = (iCelConsoleCommand *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelConsoleCommand_GetCommand",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsoleCommand, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelConsoleCommand_GetCommand" "', argument " "1"" of type '" "iCelConsoleCommand *""'"); } arg1 = reinterpret_cast< iCelConsoleCommand * >(argp1); result = (char *)(arg1)->GetCommand(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelConsoleCommand_GetDescription(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsoleCommand *arg1 = (iCelConsoleCommand *) 0 ; char *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelConsoleCommand_GetDescription",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsoleCommand, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelConsoleCommand_GetDescription" "', argument " "1"" of type '" "iCelConsoleCommand *""'"); } arg1 = reinterpret_cast< iCelConsoleCommand * >(argp1); result = (char *)(arg1)->GetDescription(); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelConsoleCommand_Help(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsoleCommand *arg1 = (iCelConsoleCommand *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelConsoleCommand_Help",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsoleCommand, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelConsoleCommand_Help" "', argument " "1"" of type '" "iCelConsoleCommand *""'"); } arg1 = reinterpret_cast< iCelConsoleCommand * >(argp1); (arg1)->Help(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelConsoleCommand_Execute(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsoleCommand *arg1 = (iCelConsoleCommand *) 0 ; csStringArray *arg2 = 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelConsoleCommand_Execute",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsoleCommand, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelConsoleCommand_Execute" "', argument " "1"" of type '" "iCelConsoleCommand *""'"); } arg1 = reinterpret_cast< iCelConsoleCommand * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_csStringArray, 0 | 0); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelConsoleCommand_Execute" "', argument " "2"" of type '" "csStringArray const &""'"); } if (!argp2) { SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "iCelConsoleCommand_Execute" "', argument " "2"" of type '" "csStringArray const &""'"); } arg2 = reinterpret_cast< csStringArray * >(argp2); (arg1)->Execute((csStringArray const &)*arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelConsoleCommand(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsoleCommand *arg1 = (iCelConsoleCommand *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelConsoleCommand",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsoleCommand, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelConsoleCommand" "', argument " "1"" of type '" "iCelConsoleCommand *""'"); } arg1 = reinterpret_cast< iCelConsoleCommand * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelConsoleCommand_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelConsoleCommand, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_iCelConsole_GetInputConsole(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsole *arg1 = (iCelConsole *) 0 ; iConsoleInput *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelConsole_GetInputConsole",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsole, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelConsole_GetInputConsole" "', argument " "1"" of type '" "iCelConsole *""'"); } arg1 = reinterpret_cast< iCelConsole * >(argp1); result = (iConsoleInput *)(arg1)->GetInputConsole(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iConsoleInput, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelConsole_GetOutputConsole(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsole *arg1 = (iCelConsole *) 0 ; iConsoleOutput *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelConsole_GetOutputConsole",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsole, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelConsole_GetOutputConsole" "', argument " "1"" of type '" "iCelConsole *""'"); } arg1 = reinterpret_cast< iCelConsole * >(argp1); result = (iConsoleOutput *)(arg1)->GetOutputConsole(); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iConsoleOutput, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelConsole_RegisterCommand(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsole *arg1 = (iCelConsole *) 0 ; iCelConsoleCommand *arg2 = (iCelConsoleCommand *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:iCelConsole_RegisterCommand",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsole, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelConsole_RegisterCommand" "', argument " "1"" of type '" "iCelConsole *""'"); } arg1 = reinterpret_cast< iCelConsole * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_iCelConsoleCommand, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "iCelConsole_RegisterCommand" "', argument " "2"" of type '" "iCelConsoleCommand *""'"); } arg2 = reinterpret_cast< iCelConsoleCommand * >(argp2); (arg1)->RegisterCommand(arg2); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelConsole_InputConsole_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsole *arg1 = (iCelConsole *) 0 ; iConsoleInput *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelConsole_InputConsole_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsole, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelConsole_InputConsole_get" "', argument " "1"" of type '" "iCelConsole *""'"); } arg1 = reinterpret_cast< iCelConsole * >(argp1); result = (iConsoleInput *)iCelConsole_InputConsole_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iConsoleInput, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_iCelConsole_OutputConsole_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsole *arg1 = (iCelConsole *) 0 ; iConsoleOutput *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:iCelConsole_OutputConsole_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsole, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iCelConsole_OutputConsole_get" "', argument " "1"" of type '" "iCelConsole *""'"); } arg1 = reinterpret_cast< iCelConsole * >(argp1); result = (iConsoleOutput *)iCelConsole_OutputConsole_get(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iConsoleOutput, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_iCelConsole(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iCelConsole *arg1 = (iCelConsole *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_iCelConsole",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iCelConsole, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_iCelConsole" "', argument " "1"" of type '" "iCelConsole *""'"); } arg1 = reinterpret_cast< iCelConsole * >(argp1); delete arg1; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *iCelConsole_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_iCelConsole, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_csQueryRegistry_iCelConsole(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; iObjectRegistry *arg1 = (iObjectRegistry *) 0 ; iCelConsole *result = 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:csQueryRegistry_iCelConsole",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iObjectRegistry, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "csQueryRegistry_iCelConsole" "', argument " "1"" of type '" "iObjectRegistry *""'"); } arg1 = reinterpret_cast< iObjectRegistry * >(argp1); result = (iCelConsole *)csQueryRegistry_iCelConsole(arg1); resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_iCelConsole, 0 | 0 ); return resultobj; fail: return NULL; } static PyMethodDef SwigMethods[] = { { (char *)"_csRef_to_Python", _wrap__csRef_to_Python, METH_VARARGS, NULL}, { (char *)"celInitializer_SetupCelPluginDirs", _wrap_celInitializer_SetupCelPluginDirs, METH_VARARGS, NULL}, { (char *)"celInitializer__RequestPlugins", _wrap_celInitializer__RequestPlugins, METH_VARARGS, NULL}, { (char *)"new_celInitializer", _wrap_new_celInitializer, METH_VARARGS, NULL}, { (char *)"delete_celInitializer", _wrap_delete_celInitializer, METH_VARARGS, NULL}, { (char *)"celInitializer_swigregister", celInitializer_swigregister, METH_VARARGS, NULL}, { (char *)"celData_type_set", _wrap_celData_type_set, METH_VARARGS, NULL}, { (char *)"celData_type_get", _wrap_celData_type_get, METH_VARARGS, NULL}, { (char *)"new_celData", _wrap_new_celData, METH_VARARGS, NULL}, { (char *)"celData_assign", _wrap_celData_assign, METH_VARARGS, NULL}, { (char *)"delete_celData", _wrap_delete_celData, METH_VARARGS, NULL}, { (char *)"celData_Clear", _wrap_celData_Clear, METH_VARARGS, NULL}, { (char *)"celData_Set", _wrap_celData_Set, METH_VARARGS, NULL}, { (char *)"celData_SetAction", _wrap_celData_SetAction, METH_VARARGS, NULL}, { (char *)"celData_SetIBase", _wrap_celData_SetIBase, METH_VARARGS, NULL}, { (char *)"celData_SetParameter", _wrap_celData_SetParameter, METH_VARARGS, NULL}, { (char *)"celData_value_get", _wrap_celData_value_get, METH_VARARGS, NULL}, { (char *)"celData_swigregister", celData_swigregister, METH_VARARGS, NULL}, { (char *)"celData_value_bo_set", _wrap_celData_value_bo_set, METH_VARARGS, NULL}, { (char *)"celData_value_bo_get", _wrap_celData_value_bo_get, METH_VARARGS, NULL}, { (char *)"celData_value_b_set", _wrap_celData_value_b_set, METH_VARARGS, NULL}, { (char *)"celData_value_b_get", _wrap_celData_value_b_get, METH_VARARGS, NULL}, { (char *)"celData_value_ub_set", _wrap_celData_value_ub_set, METH_VARARGS, NULL}, { (char *)"celData_value_ub_get", _wrap_celData_value_ub_get, METH_VARARGS, NULL}, { (char *)"celData_value_w_set", _wrap_celData_value_w_set, METH_VARARGS, NULL}, { (char *)"celData_value_w_get", _wrap_celData_value_w_get, METH_VARARGS, NULL}, { (char *)"celData_value_uw_set", _wrap_celData_value_uw_set, METH_VARARGS, NULL}, { (char *)"celData_value_uw_get", _wrap_celData_value_uw_get, METH_VARARGS, NULL}, { (char *)"celData_value_l_set", _wrap_celData_value_l_set, METH_VARARGS, NULL}, { (char *)"celData_value_l_get", _wrap_celData_value_l_get, METH_VARARGS, NULL}, { (char *)"celData_value_ul_set", _wrap_celData_value_ul_set, METH_VARARGS, NULL}, { (char *)"celData_value_ul_get", _wrap_celData_value_ul_get, METH_VARARGS, NULL}, { (char *)"celData_value_f_set", _wrap_celData_value_f_set, METH_VARARGS, NULL}, { (char *)"celData_value_f_get", _wrap_celData_value_f_get, METH_VARARGS, NULL}, { (char *)"celData_value_s_set", _wrap_celData_value_s_set, METH_VARARGS, NULL}, { (char *)"celData_value_s_get", _wrap_celData_value_s_get, METH_VARARGS, NULL}, { (char *)"celData_value_pc_set", _wrap_celData_value_pc_set, METH_VARARGS, NULL}, { (char *)"celData_value_pc_get", _wrap_celData_value_pc_get, METH_VARARGS, NULL}, { (char *)"celData_value_ent_set", _wrap_celData_value_ent_set, METH_VARARGS, NULL}, { (char *)"celData_value_ent_get", _wrap_celData_value_ent_get, METH_VARARGS, NULL}, { (char *)"celData_value_ibase_set", _wrap_celData_value_ibase_set, METH_VARARGS, NULL}, { (char *)"celData_value_ibase_get", _wrap_celData_value_ibase_get, METH_VARARGS, NULL}, { (char *)"celData_value_par_get", _wrap_celData_value_par_get, METH_VARARGS, NULL}, { (char *)"celData_value_col_get", _wrap_celData_value_col_get, METH_VARARGS, NULL}, { (char *)"celData_value_v_get", _wrap_celData_value_v_get, METH_VARARGS, NULL}, { (char *)"new_celData_value", _wrap_new_celData_value, METH_VARARGS, NULL}, { (char *)"delete_celData_value", _wrap_delete_celData_value, METH_VARARGS, NULL}, { (char *)"celData_value_swigregister", celData_value_swigregister, METH_VARARGS, NULL}, { (char *)"celData_value_par_parname_set", _wrap_celData_value_par_parname_set, METH_VARARGS, NULL}, { (char *)"celData_value_par_parname_get", _wrap_celData_value_par_parname_get, METH_VARARGS, NULL}, { (char *)"celData_value_par_partype_set", _wrap_celData_value_par_partype_set, METH_VARARGS, NULL}, { (char *)"celData_value_par_partype_get", _wrap_celData_value_par_partype_get, METH_VARARGS, NULL}, { (char *)"new_celData_value_par", _wrap_new_celData_value_par, METH_VARARGS, NULL}, { (char *)"delete_celData_value_par", _wrap_delete_celData_value_par, METH_VARARGS, NULL}, { (char *)"celData_value_par_swigregister", celData_value_par_swigregister, METH_VARARGS, NULL}, { (char *)"celData_value_col_red_set", _wrap_celData_value_col_red_set, METH_VARARGS, NULL}, { (char *)"celData_value_col_red_get", _wrap_celData_value_col_red_get, METH_VARARGS, NULL}, { (char *)"celData_value_col_green_set", _wrap_celData_value_col_green_set, METH_VARARGS, NULL}, { (char *)"celData_value_col_green_get", _wrap_celData_value_col_green_get, METH_VARARGS, NULL}, { (char *)"celData_value_col_blue_set", _wrap_celData_value_col_blue_set, METH_VARARGS, NULL}, { (char *)"celData_value_col_blue_get", _wrap_celData_value_col_blue_get, METH_VARARGS, NULL}, { (char *)"new_celData_value_col", _wrap_new_celData_value_col, METH_VARARGS, NULL}, { (char *)"delete_celData_value_col", _wrap_delete_celData_value_col, METH_VARARGS, NULL}, { (char *)"celData_value_col_swigregister", celData_value_col_swigregister, METH_VARARGS, NULL}, { (char *)"celData_value_v_x_set", _wrap_celData_value_v_x_set, METH_VARARGS, NULL}, { (char *)"celData_value_v_x_get", _wrap_celData_value_v_x_get, METH_VARARGS, NULL}, { (char *)"celData_value_v_y_set", _wrap_celData_value_v_y_set, METH_VARARGS, NULL}, { (char *)"celData_value_v_y_get", _wrap_celData_value_v_y_get, METH_VARARGS, NULL}, { (char *)"celData_value_v_z_set", _wrap_celData_value_v_z_set, METH_VARARGS, NULL}, { (char *)"celData_value_v_z_get", _wrap_celData_value_v_z_get, METH_VARARGS, NULL}, { (char *)"new_celData_value_v", _wrap_new_celData_value_v, METH_VARARGS, NULL}, { (char *)"delete_celData_value_v", _wrap_delete_celData_value_v, METH_VARARGS, NULL}, { (char *)"celData_value_v_swigregister", celData_value_v_swigregister, METH_VARARGS, NULL}, { (char *)"iCelNewEntityCallback_NewEntity", _wrap_iCelNewEntityCallback_NewEntity, METH_VARARGS, NULL}, { (char *)"delete_iCelNewEntityCallback", _wrap_delete_iCelNewEntityCallback, METH_VARARGS, NULL}, { (char *)"iCelNewEntityCallback_swigregister", iCelNewEntityCallback_swigregister, METH_VARARGS, NULL}, { (char *)"iCelEntityRemoveCallback_RemoveEntity", _wrap_iCelEntityRemoveCallback_RemoveEntity, METH_VARARGS, NULL}, { (char *)"delete_iCelEntityRemoveCallback", _wrap_delete_iCelEntityRemoveCallback, METH_VARARGS, NULL}, { (char *)"iCelEntityRemoveCallback_swigregister", iCelEntityRemoveCallback_swigregister, METH_VARARGS, NULL}, { (char *)"iCelTimerListener_TickEveryFrame", _wrap_iCelTimerListener_TickEveryFrame, METH_VARARGS, NULL}, { (char *)"iCelTimerListener_TickOnce", _wrap_iCelTimerListener_TickOnce, METH_VARARGS, NULL}, { (char *)"delete_iCelTimerListener", _wrap_delete_iCelTimerListener, METH_VARARGS, NULL}, { (char *)"iCelTimerListener_swigregister", iCelTimerListener_swigregister, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CreateEntityInScope", _wrap_iCelPlLayer_CreateEntityInScope, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RemoveEntity", _wrap_iCelPlLayer_RemoveEntity, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RemoveEntities", _wrap_iCelPlLayer_RemoveEntities, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CreateEntityTemplate", _wrap_iCelPlLayer_CreateEntityTemplate, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RemoveEntityTemplate", _wrap_iCelPlLayer_RemoveEntityTemplate, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RemoveEntityTemplates", _wrap_iCelPlLayer_RemoveEntityTemplates, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_FindEntityTemplate", _wrap_iCelPlLayer_FindEntityTemplate, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetEntityTemplateCount", _wrap_iCelPlLayer_GetEntityTemplateCount, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetEntityTemplate", _wrap_iCelPlLayer_GetEntityTemplate, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CreateEntity", _wrap_iCelPlLayer_CreateEntity, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CreateDataBuffer", _wrap_iCelPlLayer_CreateDataBuffer, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_AttachEntity", _wrap_iCelPlLayer_AttachEntity, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_UnattachEntity", _wrap_iCelPlLayer_UnattachEntity, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetEntity", _wrap_iCelPlLayer_GetEntity, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetEntityCount", _wrap_iCelPlLayer_GetEntityCount, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetEntityByIndex", _wrap_iCelPlLayer_GetEntityByIndex, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_FindEntity", _wrap_iCelPlLayer_FindEntity, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetBehaviour", _wrap_iCelPlLayer_GetBehaviour, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_FindAttachedEntity", _wrap_iCelPlLayer_FindAttachedEntity, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_FindNearbyEntities", _wrap_iCelPlLayer_FindNearbyEntities, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetHitEntity", _wrap_iCelPlLayer_GetHitEntity, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CreateEmptyEntityList", _wrap_iCelPlLayer_CreateEmptyEntityList, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CreateEntityTracker", _wrap_iCelPlLayer_CreateEntityTracker, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_FindEntityTracker", _wrap_iCelPlLayer_FindEntityTracker, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RemoveEntityTracker", _wrap_iCelPlLayer_RemoveEntityTracker, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_SetEntityAddonAllowed", _wrap_iCelPlLayer_SetEntityAddonAllowed, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_IsEntityAddonAllowed", _wrap_iCelPlLayer_IsEntityAddonAllowed, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_LoadPropertyClassFactory", _wrap_iCelPlLayer_LoadPropertyClassFactory, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RegisterPropertyClassFactory", _wrap_iCelPlLayer_RegisterPropertyClassFactory, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_UnregisterPropertyClassFactory", _wrap_iCelPlLayer_UnregisterPropertyClassFactory, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetPropertyClassFactoryCount", _wrap_iCelPlLayer_GetPropertyClassFactoryCount, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetPropertyClassFactory", _wrap_iCelPlLayer_GetPropertyClassFactory, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_FindPropertyClassFactory", _wrap_iCelPlLayer_FindPropertyClassFactory, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CreatePropertyClass", _wrap_iCelPlLayer_CreatePropertyClass, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CreateTaggedPropertyClass", _wrap_iCelPlLayer_CreateTaggedPropertyClass, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RegisterBehaviourLayer", _wrap_iCelPlLayer_RegisterBehaviourLayer, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_UnregisterBehaviourLayer", _wrap_iCelPlLayer_UnregisterBehaviourLayer, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetBehaviourLayerCount", _wrap_iCelPlLayer_GetBehaviourLayerCount, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_GetBehaviourLayer", _wrap_iCelPlLayer_GetBehaviourLayer, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_FindBehaviourLayer", _wrap_iCelPlLayer_FindBehaviourLayer, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_Cache", _wrap_iCelPlLayer_Cache, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_Uncache", _wrap_iCelPlLayer_Uncache, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CleanCache", _wrap_iCelPlLayer_CleanCache, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_FetchStringID", _wrap_iCelPlLayer_FetchStringID, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_FetchString", _wrap_iCelPlLayer_FetchString, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_AddEntityRemoveCallback", _wrap_iCelPlLayer_AddEntityRemoveCallback, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RemoveEntityRemoveCallback", _wrap_iCelPlLayer_RemoveEntityRemoveCallback, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_AddNewEntityCallback", _wrap_iCelPlLayer_AddNewEntityCallback, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RemoveNewEntityCallback", _wrap_iCelPlLayer_RemoveNewEntityCallback, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CallbackEveryFrame", _wrap_iCelPlLayer_CallbackEveryFrame, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_CallbackOnce", _wrap_iCelPlLayer_CallbackOnce, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RemoveCallbackEveryFrame", _wrap_iCelPlLayer_RemoveCallbackEveryFrame, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_RemoveCallbackOnce", _wrap_iCelPlLayer_RemoveCallbackOnce, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_AddScope", _wrap_iCelPlLayer_AddScope, METH_VARARGS, NULL}, { (char *)"delete_iCelPlLayer", _wrap_delete_iCelPlLayer, METH_VARARGS, NULL}, { (char *)"iCelPlLayer_swigregister", iCelPlLayer_swigregister, METH_VARARGS, NULL}, { (char *)"iCelEntityTracker_GetName", _wrap_iCelEntityTracker_GetName, METH_VARARGS, NULL}, { (char *)"iCelEntityTracker_AddEntity", _wrap_iCelEntityTracker_AddEntity, METH_VARARGS, NULL}, { (char *)"iCelEntityTracker_RemoveEntity", _wrap_iCelEntityTracker_RemoveEntity, METH_VARARGS, NULL}, { (char *)"iCelEntityTracker_FindNearbyEntities", _wrap_iCelEntityTracker_FindNearbyEntities, METH_VARARGS, NULL}, { (char *)"iCelEntityTracker_GetIterator", _wrap_iCelEntityTracker_GetIterator, METH_VARARGS, NULL}, { (char *)"iCelEntityTracker_AddEntities", _wrap_iCelEntityTracker_AddEntities, METH_VARARGS, NULL}, { (char *)"iCelEntityTracker_RemoveEntities", _wrap_iCelEntityTracker_RemoveEntities, METH_VARARGS, NULL}, { (char *)"iCelEntityTracker_Name_get", _wrap_iCelEntityTracker_Name_get, METH_VARARGS, NULL}, { (char *)"delete_iCelEntityTracker", _wrap_delete_iCelEntityTracker, METH_VARARGS, NULL}, { (char *)"iCelEntityTracker_swigregister", iCelEntityTracker_swigregister, METH_VARARGS, NULL}, { (char *)"csQueryRegistry_iCelPlLayer", _wrap_csQueryRegistry_iCelPlLayer, METH_VARARGS, NULL}, { (char *)"iCelEntity_QueryObject", _wrap_iCelEntity_QueryObject, METH_VARARGS, NULL}, { (char *)"iCelEntity_GetName", _wrap_iCelEntity_GetName, METH_VARARGS, NULL}, { (char *)"iCelEntity_SetName", _wrap_iCelEntity_SetName, METH_VARARGS, NULL}, { (char *)"iCelEntity_GetID", _wrap_iCelEntity_GetID, METH_VARARGS, NULL}, { (char *)"iCelEntity_SetID", _wrap_iCelEntity_SetID, METH_VARARGS, NULL}, { (char *)"iCelEntity_GetPropertyClassList", _wrap_iCelEntity_GetPropertyClassList, METH_VARARGS, NULL}, { (char *)"iCelEntity_SetBehaviour", _wrap_iCelEntity_SetBehaviour, METH_VARARGS, NULL}, { (char *)"iCelEntity_GetBehaviour", _wrap_iCelEntity_GetBehaviour, METH_VARARGS, NULL}, { (char *)"iCelEntity_AddClass", _wrap_iCelEntity_AddClass, METH_VARARGS, NULL}, { (char *)"iCelEntity_RemoveClass", _wrap_iCelEntity_RemoveClass, METH_VARARGS, NULL}, { (char *)"iCelEntity_HasClass", _wrap_iCelEntity_HasClass, METH_VARARGS, NULL}, { (char *)"iCelEntity_GetClasses", _wrap_iCelEntity_GetClasses, METH_VARARGS, NULL}, { (char *)"iCelEntity_Name_set", _wrap_iCelEntity_Name_set, METH_VARARGS, NULL}, { (char *)"iCelEntity_Name_get", _wrap_iCelEntity_Name_get, METH_VARARGS, NULL}, { (char *)"iCelEntity_ID_set", _wrap_iCelEntity_ID_set, METH_VARARGS, NULL}, { (char *)"iCelEntity_ID_get", _wrap_iCelEntity_ID_get, METH_VARARGS, NULL}, { (char *)"iCelEntity_Behaviour_set", _wrap_iCelEntity_Behaviour_set, METH_VARARGS, NULL}, { (char *)"iCelEntity_Behaviour_get", _wrap_iCelEntity_Behaviour_get, METH_VARARGS, NULL}, { (char *)"iCelEntity_PropertyClassList_get", _wrap_iCelEntity_PropertyClassList_get, METH_VARARGS, NULL}, { (char *)"iCelEntity_Classes_get", _wrap_iCelEntity_Classes_get, METH_VARARGS, NULL}, { (char *)"iCelEntity_CreateBehaviour", _wrap_iCelEntity_CreateBehaviour, METH_VARARGS, NULL}, { (char *)"delete_iCelEntity", _wrap_delete_iCelEntity, METH_VARARGS, NULL}, { (char *)"iCelEntity_scfGetVersion", _wrap_iCelEntity_scfGetVersion, METH_VARARGS, NULL}, { (char *)"iCelEntity_swigregister", iCelEntity_swigregister, METH_VARARGS, NULL}, { (char *)"iCelEntityList_GetCount", _wrap_iCelEntityList_GetCount, METH_VARARGS, NULL}, { (char *)"iCelEntityList_Get", _wrap_iCelEntityList_Get, METH_VARARGS, NULL}, { (char *)"iCelEntityList_Add", _wrap_iCelEntityList_Add, METH_VARARGS, NULL}, { (char *)"iCelEntityList_Remove", _wrap_iCelEntityList_Remove, METH_VARARGS, NULL}, { (char *)"iCelEntityList_RemoveAll", _wrap_iCelEntityList_RemoveAll, METH_VARARGS, NULL}, { (char *)"iCelEntityList_Find", _wrap_iCelEntityList_Find, METH_VARARGS, NULL}, { (char *)"iCelEntityList_FindByName", _wrap_iCelEntityList_FindByName, METH_VARARGS, NULL}, { (char *)"iCelEntityList_GetIterator", _wrap_iCelEntityList_GetIterator, METH_VARARGS, NULL}, { (char *)"iCelEntityList___delitem__", _wrap_iCelEntityList___delitem__, METH_VARARGS, NULL}, { (char *)"iCelEntityList___len__", _wrap_iCelEntityList___len__, METH_VARARGS, NULL}, { (char *)"iCelEntityList_append", _wrap_iCelEntityList_append, METH_VARARGS, NULL}, { (char *)"iCelEntityList___getitem__", _wrap_iCelEntityList___getitem__, METH_VARARGS, NULL}, { (char *)"iCelEntityList___contains__", _wrap_iCelEntityList___contains__, METH_VARARGS, NULL}, { (char *)"delete_iCelEntityList", _wrap_delete_iCelEntityList, METH_VARARGS, NULL}, { (char *)"iCelEntityList_scfGetVersion", _wrap_iCelEntityList_scfGetVersion, METH_VARARGS, NULL}, { (char *)"iCelEntityList_swigregister", iCelEntityList_swigregister, METH_VARARGS, NULL}, { (char *)"iCelEntityIterator_Next", _wrap_iCelEntityIterator_Next, METH_VARARGS, NULL}, { (char *)"iCelEntityIterator_HasNext", _wrap_iCelEntityIterator_HasNext, METH_VARARGS, NULL}, { (char *)"delete_iCelEntityIterator", _wrap_delete_iCelEntityIterator, METH_VARARGS, NULL}, { (char *)"iCelEntityIterator_swigregister", iCelEntityIterator_swigregister, METH_VARARGS, NULL}, { (char *)"celRegisterPCFactory", _wrap_celRegisterPCFactory, METH_VARARGS, NULL}, { (char *)"celCreateEntity", _wrap_celCreateEntity, METH_VARARGS, NULL}, { (char *)"scfQueryInterface_iCelEntity", _wrap_scfQueryInterface_iCelEntity, METH_VARARGS, NULL}, { (char *)"celFindNearbyEntities", _wrap_celFindNearbyEntities, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_QueryObject", _wrap_iCelEntityTemplate_QueryObject, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_GetName", _wrap_iCelEntityTemplate_GetName, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_SetName", _wrap_iCelEntityTemplate_SetName, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_CreatePropertyClassTemplate", _wrap_iCelEntityTemplate_CreatePropertyClassTemplate, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_SetBehaviour", _wrap_iCelEntityTemplate_SetBehaviour, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_GetBehaviourLayer", _wrap_iCelEntityTemplate_GetBehaviourLayer, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_GetBehaviour", _wrap_iCelEntityTemplate_GetBehaviour, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_AddMessage", _wrap_iCelEntityTemplate_AddMessage, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_AddClass", _wrap_iCelEntityTemplate_AddClass, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_RemoveClass", _wrap_iCelEntityTemplate_RemoveClass, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_HasClass", _wrap_iCelEntityTemplate_HasClass, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_GetClasses", _wrap_iCelEntityTemplate_GetClasses, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_Name_set", _wrap_iCelEntityTemplate_Name_set, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_Name_get", _wrap_iCelEntityTemplate_Name_get, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_Behaviour_get", _wrap_iCelEntityTemplate_Behaviour_get, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_BehaviourLayer_get", _wrap_iCelEntityTemplate_BehaviourLayer_get, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_Classes_get", _wrap_iCelEntityTemplate_Classes_get, METH_VARARGS, NULL}, { (char *)"delete_iCelEntityTemplate", _wrap_delete_iCelEntityTemplate, METH_VARARGS, NULL}, { (char *)"iCelEntityTemplate_swigregister", iCelEntityTemplate_swigregister, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassTemplate_SetName", _wrap_iCelPropertyClassTemplate_SetName, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassTemplate_GetName", _wrap_iCelPropertyClassTemplate_GetName, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassTemplate_SetTag", _wrap_iCelPropertyClassTemplate_SetTag, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassTemplate_GetTag", _wrap_iCelPropertyClassTemplate_GetTag, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassTemplate_SetPropertyVariable", _wrap_iCelPropertyClassTemplate_SetPropertyVariable, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassTemplate_SetProperty", _wrap_iCelPropertyClassTemplate_SetProperty, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassTemplate_PerformAction", _wrap_iCelPropertyClassTemplate_PerformAction, METH_VARARGS, NULL}, { (char *)"delete_iCelPropertyClassTemplate", _wrap_delete_iCelPropertyClassTemplate, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassTemplate_swigregister", iCelPropertyClassTemplate_swigregister, METH_VARARGS, NULL}, { (char *)"iCelBlLayer_GetName", _wrap_iCelBlLayer_GetName, METH_VARARGS, NULL}, { (char *)"iCelBlLayer_CreateBehaviour", _wrap_iCelBlLayer_CreateBehaviour, METH_VARARGS, NULL}, { (char *)"delete_iCelBlLayer", _wrap_delete_iCelBlLayer, METH_VARARGS, NULL}, { (char *)"iCelBlLayer_swigregister", iCelBlLayer_swigregister, METH_VARARGS, NULL}, { (char *)"csQueryRegistry_iCelBlLayer", _wrap_csQueryRegistry_iCelBlLayer, METH_VARARGS, NULL}, { (char *)"iCelParameterBlock_GetParameterCount", _wrap_iCelParameterBlock_GetParameterCount, METH_VARARGS, NULL}, { (char *)"iCelParameterBlock_GetParameter", _wrap_iCelParameterBlock_GetParameter, METH_VARARGS, NULL}, { (char *)"iCelParameterBlock_GetParameterByIndex", _wrap_iCelParameterBlock_GetParameterByIndex, METH_VARARGS, NULL}, { (char *)"iCelParameterBlock_GetParameterIDByIndex", _wrap_iCelParameterBlock_GetParameterIDByIndex, METH_VARARGS, NULL}, { (char *)"iCelParameterBlock_GetParameterNameByIndex", _wrap_iCelParameterBlock_GetParameterNameByIndex, METH_VARARGS, NULL}, { (char *)"iCelParameterBlock___contains__", _wrap_iCelParameterBlock___contains__, METH_VARARGS, NULL}, { (char *)"iCelParameterBlock___setitem__", _wrap_iCelParameterBlock___setitem__, METH_VARARGS, NULL}, { (char *)"iCelParameterBlock___len__", _wrap_iCelParameterBlock___len__, METH_VARARGS, NULL}, { (char *)"delete_iCelParameterBlock", _wrap_delete_iCelParameterBlock, METH_VARARGS, NULL}, { (char *)"iCelParameterBlock_swigregister", iCelParameterBlock_swigregister, METH_VARARGS, NULL}, { (char *)"iCelBehaviour_GetName", _wrap_iCelBehaviour_GetName, METH_VARARGS, NULL}, { (char *)"iCelBehaviour_GetBehaviourLayer", _wrap_iCelBehaviour_GetBehaviourLayer, METH_VARARGS, NULL}, { (char *)"iCelBehaviour_Name_get", _wrap_iCelBehaviour_Name_get, METH_VARARGS, NULL}, { (char *)"iCelBehaviour_BehaviourLayer_get", _wrap_iCelBehaviour_BehaviourLayer_get, METH_VARARGS, NULL}, { (char *)"iCelBehaviour_GetPythonObject", _wrap_iCelBehaviour_GetPythonObject, METH_VARARGS, NULL}, { (char *)"iCelBehaviour_SendMessage", _wrap_iCelBehaviour_SendMessage, METH_VARARGS, NULL}, { (char *)"delete_iCelBehaviour", _wrap_delete_iCelBehaviour, METH_VARARGS, NULL}, { (char *)"iCelBehaviour_swigregister", iCelBehaviour_swigregister, METH_VARARGS, NULL}, { (char *)"new_celGenericParameterBlock", _wrap_new_celGenericParameterBlock, METH_VARARGS, NULL}, { (char *)"delete_celGenericParameterBlock", _wrap_delete_celGenericParameterBlock, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_SetParameterDef", _wrap_celGenericParameterBlock_SetParameterDef, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_scfRefCount_set", _wrap_celGenericParameterBlock_scfRefCount_set, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_scfRefCount_get", _wrap_celGenericParameterBlock_scfRefCount_get, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_scfWeakRefOwners_set", _wrap_celGenericParameterBlock_scfWeakRefOwners_set, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_scfWeakRefOwners_get", _wrap_celGenericParameterBlock_scfWeakRefOwners_get, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_scfRemoveRefOwners", _wrap_celGenericParameterBlock_scfRemoveRefOwners, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_scfParent_set", _wrap_celGenericParameterBlock_scfParent_set, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_scfParent_get", _wrap_celGenericParameterBlock_scfParent_get, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_IncRef", _wrap_celGenericParameterBlock_IncRef, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_DecRef", _wrap_celGenericParameterBlock_DecRef, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_GetRefCount", _wrap_celGenericParameterBlock_GetRefCount, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_AddRefOwner", _wrap_celGenericParameterBlock_AddRefOwner, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_RemoveRefOwner", _wrap_celGenericParameterBlock_RemoveRefOwner, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_QueryInterface", _wrap_celGenericParameterBlock_QueryInterface, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_GetParameterCount", _wrap_celGenericParameterBlock_GetParameterCount, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_GetParameter", _wrap_celGenericParameterBlock_GetParameter, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_GetParameterByIndex", _wrap_celGenericParameterBlock_GetParameterByIndex, METH_VARARGS, NULL}, { (char *)"celGenericParameterBlock_swigregister", celGenericParameterBlock_swigregister, METH_VARARGS, NULL}, { (char *)"new_celVariableParameterBlock", _wrap_new_celVariableParameterBlock, METH_VARARGS, NULL}, { (char *)"delete_celVariableParameterBlock", _wrap_delete_celVariableParameterBlock, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_SetParameterDef", _wrap_celVariableParameterBlock_SetParameterDef, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_scfRefCount_set", _wrap_celVariableParameterBlock_scfRefCount_set, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_scfRefCount_get", _wrap_celVariableParameterBlock_scfRefCount_get, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_scfWeakRefOwners_set", _wrap_celVariableParameterBlock_scfWeakRefOwners_set, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_scfWeakRefOwners_get", _wrap_celVariableParameterBlock_scfWeakRefOwners_get, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_scfRemoveRefOwners", _wrap_celVariableParameterBlock_scfRemoveRefOwners, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_scfParent_set", _wrap_celVariableParameterBlock_scfParent_set, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_scfParent_get", _wrap_celVariableParameterBlock_scfParent_get, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_IncRef", _wrap_celVariableParameterBlock_IncRef, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_DecRef", _wrap_celVariableParameterBlock_DecRef, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_GetRefCount", _wrap_celVariableParameterBlock_GetRefCount, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_AddRefOwner", _wrap_celVariableParameterBlock_AddRefOwner, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_RemoveRefOwner", _wrap_celVariableParameterBlock_RemoveRefOwner, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_QueryInterface", _wrap_celVariableParameterBlock_QueryInterface, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_GetParameterCount", _wrap_celVariableParameterBlock_GetParameterCount, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_GetParameter", _wrap_celVariableParameterBlock_GetParameter, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_GetParameterByIndex", _wrap_celVariableParameterBlock_GetParameterByIndex, METH_VARARGS, NULL}, { (char *)"celVariableParameterBlock_swigregister", celVariableParameterBlock_swigregister, METH_VARARGS, NULL}, { (char *)"new_celOneParameterBlock", _wrap_new_celOneParameterBlock, METH_VARARGS, NULL}, { (char *)"delete_celOneParameterBlock", _wrap_delete_celOneParameterBlock, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_SetParameterDef", _wrap_celOneParameterBlock_SetParameterDef, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_scfRefCount_set", _wrap_celOneParameterBlock_scfRefCount_set, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_scfRefCount_get", _wrap_celOneParameterBlock_scfRefCount_get, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_scfWeakRefOwners_set", _wrap_celOneParameterBlock_scfWeakRefOwners_set, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_scfWeakRefOwners_get", _wrap_celOneParameterBlock_scfWeakRefOwners_get, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_scfRemoveRefOwners", _wrap_celOneParameterBlock_scfRemoveRefOwners, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_scfParent_set", _wrap_celOneParameterBlock_scfParent_set, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_scfParent_get", _wrap_celOneParameterBlock_scfParent_get, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_IncRef", _wrap_celOneParameterBlock_IncRef, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_DecRef", _wrap_celOneParameterBlock_DecRef, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_GetRefCount", _wrap_celOneParameterBlock_GetRefCount, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_AddRefOwner", _wrap_celOneParameterBlock_AddRefOwner, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_RemoveRefOwner", _wrap_celOneParameterBlock_RemoveRefOwner, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_QueryInterface", _wrap_celOneParameterBlock_QueryInterface, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_GetParameterCount", _wrap_celOneParameterBlock_GetParameterCount, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_GetParameter", _wrap_celOneParameterBlock_GetParameter, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_GetParameterByIndex", _wrap_celOneParameterBlock_GetParameterByIndex, METH_VARARGS, NULL}, { (char *)"celOneParameterBlock_swigregister", celOneParameterBlock_swigregister, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassFactory_GetName", _wrap_iCelPropertyClassFactory_GetName, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassFactory_CreatePropertyClass", _wrap_iCelPropertyClassFactory_CreatePropertyClass, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassFactory_Name_get", _wrap_iCelPropertyClassFactory_Name_get, METH_VARARGS, NULL}, { (char *)"delete_iCelPropertyClassFactory", _wrap_delete_iCelPropertyClassFactory, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassFactory_swigregister", iCelPropertyClassFactory_swigregister, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetName", _wrap_iCelPropertyClass_GetName, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_SetTag", _wrap_iCelPropertyClass_SetTag, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetTag", _wrap_iCelPropertyClass_GetTag, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetEntity", _wrap_iCelPropertyClass_GetEntity, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_SetEntity", _wrap_iCelPropertyClass_SetEntity, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_SaveFirstPass", _wrap_iCelPropertyClass_SaveFirstPass, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_LoadFirstPass", _wrap_iCelPropertyClass_LoadFirstPass, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_Save", _wrap_iCelPropertyClass_Save, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_Load", _wrap_iCelPropertyClass_Load, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_AddPropertyChangeCallback", _wrap_iCelPropertyClass_AddPropertyChangeCallback, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_RemovePropertyChangeCallback", _wrap_iCelPropertyClass_RemovePropertyChangeCallback, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyOrActionType", _wrap_iCelPropertyClass_GetPropertyOrActionType, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_IsPropertyReadOnly", _wrap_iCelPropertyClass_IsPropertyReadOnly, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyLong", _wrap_iCelPropertyClass_GetPropertyLong, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyFloat", _wrap_iCelPropertyClass_GetPropertyFloat, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyBool", _wrap_iCelPropertyClass_GetPropertyBool, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyString", _wrap_iCelPropertyClass_GetPropertyString, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyVector", _wrap_iCelPropertyClass_GetPropertyVector, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyColor", _wrap_iCelPropertyClass_GetPropertyColor, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyPClass", _wrap_iCelPropertyClass_GetPropertyPClass, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyEntity", _wrap_iCelPropertyClass_GetPropertyEntity, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyIBase", _wrap_iCelPropertyClass_GetPropertyIBase, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_PerformAction", _wrap_iCelPropertyClass_PerformAction, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyAndActionCount", _wrap_iCelPropertyClass_GetPropertyAndActionCount, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyOrActionID", _wrap_iCelPropertyClass_GetPropertyOrActionID, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPropertyOrActionDescription", _wrap_iCelPropertyClass_GetPropertyOrActionDescription, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_PropertyClassesHaveChanged", _wrap_iCelPropertyClass_PropertyClassesHaveChanged, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_GetPersistentData", _wrap_iCelPropertyClass_GetPersistentData, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_SetPersistentData", _wrap_iCelPropertyClass_SetPersistentData, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_Name_get", _wrap_iCelPropertyClass_Name_get, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_Tag_set", _wrap_iCelPropertyClass_Tag_set, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_Tag_get", _wrap_iCelPropertyClass_Tag_get, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_Entity_set", _wrap_iCelPropertyClass_Entity_set, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_Entity_get", _wrap_iCelPropertyClass_Entity_get, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_SetPropertyLong", _wrap_iCelPropertyClass_SetPropertyLong, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_SetPropertyFloat", _wrap_iCelPropertyClass_SetPropertyFloat, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_SetPropertyBool", _wrap_iCelPropertyClass_SetPropertyBool, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_SetPropertyString", _wrap_iCelPropertyClass_SetPropertyString, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_SetPropertyVector3", _wrap_iCelPropertyClass_SetPropertyVector3, METH_VARARGS, NULL}, { (char *)"delete_iCelPropertyClass", _wrap_delete_iCelPropertyClass, METH_VARARGS, NULL}, { (char *)"iCelPropertyClass_swigregister", iCelPropertyClass_swigregister, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_GetCount", _wrap_iCelPropertyClassList_GetCount, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_Get", _wrap_iCelPropertyClassList_Get, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_Add", _wrap_iCelPropertyClassList_Add, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_Remove", _wrap_iCelPropertyClassList_Remove, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_RemoveByInterface", _wrap_iCelPropertyClassList_RemoveByInterface, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_RemoveByInterfaceAndTag", _wrap_iCelPropertyClassList_RemoveByInterfaceAndTag, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_RemoveAll", _wrap_iCelPropertyClassList_RemoveAll, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_Find", _wrap_iCelPropertyClassList_Find, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_FindByName", _wrap_iCelPropertyClassList_FindByName, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_FindByNameAndTag", _wrap_iCelPropertyClassList_FindByNameAndTag, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_FindByInterface", _wrap_iCelPropertyClassList_FindByInterface, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_FindByInterfaceAndTag", _wrap_iCelPropertyClassList_FindByInterfaceAndTag, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList___delitem__", _wrap_iCelPropertyClassList___delitem__, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList___len__", _wrap_iCelPropertyClassList___len__, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_append", _wrap_iCelPropertyClassList_append, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList___getitem__", _wrap_iCelPropertyClassList___getitem__, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList___contains__", _wrap_iCelPropertyClassList___contains__, METH_VARARGS, NULL}, { (char *)"delete_iCelPropertyClassList", _wrap_delete_iCelPropertyClassList, METH_VARARGS, NULL}, { (char *)"iCelPropertyClassList_swigregister", iCelPropertyClassList_swigregister, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_SetDynamicSystem", _wrap_iPcMechanicsSystem_SetDynamicSystem, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_GetDynamicSystem", _wrap_iPcMechanicsSystem_GetDynamicSystem, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_SetStepTime", _wrap_iPcMechanicsSystem_SetStepTime, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_GetStepTime", _wrap_iPcMechanicsSystem_GetStepTime, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_SetSimulationSpeed", _wrap_iPcMechanicsSystem_SetSimulationSpeed, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_GetSimulationSpeed", _wrap_iPcMechanicsSystem_GetSimulationSpeed, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_SetGravity", _wrap_iPcMechanicsSystem_SetGravity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_GetGravity", _wrap_iPcMechanicsSystem_GetGravity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_AddForceDuration", _wrap_iPcMechanicsSystem_AddForceDuration, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_AddForceFrame", _wrap_iPcMechanicsSystem_AddForceFrame, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_AddForceTagged", _wrap_iPcMechanicsSystem_AddForceTagged, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_RemoveForceTagged", _wrap_iPcMechanicsSystem_RemoveForceTagged, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_ClearForces", _wrap_iPcMechanicsSystem_ClearForces, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_ClearAllForces", _wrap_iPcMechanicsSystem_ClearAllForces, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_CreateBody", _wrap_iPcMechanicsSystem_CreateBody, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_RemoveBody", _wrap_iPcMechanicsSystem_RemoveBody, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_AddBodyToGroup", _wrap_iPcMechanicsSystem_AddBodyToGroup, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_RemoveBodyFromGroup", _wrap_iPcMechanicsSystem_RemoveBodyFromGroup, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_CreateJoint", _wrap_iPcMechanicsSystem_CreateJoint, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_RemoveJoint", _wrap_iPcMechanicsSystem_RemoveJoint, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_DisableStepFast", _wrap_iPcMechanicsSystem_DisableStepFast, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_EnableStepFast", _wrap_iPcMechanicsSystem_EnableStepFast, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_EnableQuickStep", _wrap_iPcMechanicsSystem_EnableQuickStep, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_DynamicSystem_set", _wrap_iPcMechanicsSystem_DynamicSystem_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_DynamicSystem_get", _wrap_iPcMechanicsSystem_DynamicSystem_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_StepTime_set", _wrap_iPcMechanicsSystem_StepTime_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_StepTime_get", _wrap_iPcMechanicsSystem_StepTime_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_Gravity_set", _wrap_iPcMechanicsSystem_Gravity_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_Gravity_get", _wrap_iPcMechanicsSystem_Gravity_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_SimulationSpeed_set", _wrap_iPcMechanicsSystem_SimulationSpeed_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_SimulationSpeed_get", _wrap_iPcMechanicsSystem_SimulationSpeed_get, METH_VARARGS, NULL}, { (char *)"delete_iPcMechanicsSystem", _wrap_delete_iPcMechanicsSystem, METH_VARARGS, NULL}, { (char *)"iPcMechanicsSystem_swigregister", iPcMechanicsSystem_swigregister, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetMesh", _wrap_iPcMechanicsObject_SetMesh, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetMesh", _wrap_iPcMechanicsObject_GetMesh, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetLight", _wrap_iPcMechanicsObject_SetLight, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetLight", _wrap_iPcMechanicsObject_GetLight, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetCamera", _wrap_iPcMechanicsObject_SetCamera, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetCamera", _wrap_iPcMechanicsObject_GetCamera, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetMechanicsSystem", _wrap_iPcMechanicsObject_SetMechanicsSystem, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetMechanicsSystem", _wrap_iPcMechanicsObject_GetMechanicsSystem, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetBody", _wrap_iPcMechanicsObject_GetBody, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetFriction", _wrap_iPcMechanicsObject_SetFriction, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetMass", _wrap_iPcMechanicsObject_SetMass, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetElasticity", _wrap_iPcMechanicsObject_SetElasticity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetDensity", _wrap_iPcMechanicsObject_SetDensity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetSoftness", _wrap_iPcMechanicsObject_SetSoftness, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetLift", _wrap_iPcMechanicsObject_SetLift, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetDrag", _wrap_iPcMechanicsObject_SetDrag, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetFriction", _wrap_iPcMechanicsObject_GetFriction, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetMass", _wrap_iPcMechanicsObject_GetMass, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetElasticity", _wrap_iPcMechanicsObject_GetElasticity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetDensity", _wrap_iPcMechanicsObject_GetDensity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetSoftness", _wrap_iPcMechanicsObject_GetSoftness, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetLift", _wrap_iPcMechanicsObject_GetLift, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetDrag", _wrap_iPcMechanicsObject_GetDrag, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetLinearVelocity", _wrap_iPcMechanicsObject_SetLinearVelocity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetAngularVelocity", _wrap_iPcMechanicsObject_SetAngularVelocity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetLinearVelocity", _wrap_iPcMechanicsObject_GetLinearVelocity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_GetAngularVelocity", _wrap_iPcMechanicsObject_GetAngularVelocity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_MakeStatic", _wrap_iPcMechanicsObject_MakeStatic, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_IsStatic", _wrap_iPcMechanicsObject_IsStatic, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_SetCollisionCallbackEnabled", _wrap_iPcMechanicsObject_SetCollisionCallbackEnabled, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_IsCollisionCallbackEnabled", _wrap_iPcMechanicsObject_IsCollisionCallbackEnabled, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AttachColliderBoundingSphere", _wrap_iPcMechanicsObject_AttachColliderBoundingSphere, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AttachColliderSphere", _wrap_iPcMechanicsObject_AttachColliderSphere, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AttachColliderCylinder", _wrap_iPcMechanicsObject_AttachColliderCylinder, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AttachColliderBoundingBox", _wrap_iPcMechanicsObject_AttachColliderBoundingBox, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AttachColliderBox", _wrap_iPcMechanicsObject_AttachColliderBox, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AttachColliderPlane", _wrap_iPcMechanicsObject_AttachColliderPlane, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AttachColliderMesh", _wrap_iPcMechanicsObject_AttachColliderMesh, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AddForceOnce", _wrap_iPcMechanicsObject_AddForceOnce, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AddForceDuration", _wrap_iPcMechanicsObject_AddForceDuration, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AddForceFrame", _wrap_iPcMechanicsObject_AddForceFrame, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AddForceTagged", _wrap_iPcMechanicsObject_AddForceTagged, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_RemoveForceTagged", _wrap_iPcMechanicsObject_RemoveForceTagged, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_ClearForces", _wrap_iPcMechanicsObject_ClearForces, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AddToGroup", _wrap_iPcMechanicsObject_AddToGroup, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_RemoveFromGroup", _wrap_iPcMechanicsObject_RemoveFromGroup, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_CreateJoint", _wrap_iPcMechanicsObject_CreateJoint, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_LocalToWorld", _wrap_iPcMechanicsObject_LocalToWorld, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_WorldToLocal", _wrap_iPcMechanicsObject_WorldToLocal, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Mesh_set", _wrap_iPcMechanicsObject_Mesh_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Mesh_get", _wrap_iPcMechanicsObject_Mesh_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Light_set", _wrap_iPcMechanicsObject_Light_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Light_get", _wrap_iPcMechanicsObject_Light_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Camera_set", _wrap_iPcMechanicsObject_Camera_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Camera_get", _wrap_iPcMechanicsObject_Camera_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_MechanicsSystem_set", _wrap_iPcMechanicsObject_MechanicsSystem_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_MechanicsSystem_get", _wrap_iPcMechanicsObject_MechanicsSystem_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Body_get", _wrap_iPcMechanicsObject_Body_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Friction_set", _wrap_iPcMechanicsObject_Friction_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Friction_get", _wrap_iPcMechanicsObject_Friction_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Mass_set", _wrap_iPcMechanicsObject_Mass_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Mass_get", _wrap_iPcMechanicsObject_Mass_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Elasticity_set", _wrap_iPcMechanicsObject_Elasticity_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Elasticity_get", _wrap_iPcMechanicsObject_Elasticity_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Density_set", _wrap_iPcMechanicsObject_Density_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Density_get", _wrap_iPcMechanicsObject_Density_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Softness_set", _wrap_iPcMechanicsObject_Softness_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Softness_get", _wrap_iPcMechanicsObject_Softness_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Lift_set", _wrap_iPcMechanicsObject_Lift_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Lift_get", _wrap_iPcMechanicsObject_Lift_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Drag_set", _wrap_iPcMechanicsObject_Drag_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Drag_get", _wrap_iPcMechanicsObject_Drag_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_LinearVelocity_set", _wrap_iPcMechanicsObject_LinearVelocity_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_LinearVelocity_get", _wrap_iPcMechanicsObject_LinearVelocity_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AngularVelocity_set", _wrap_iPcMechanicsObject_AngularVelocity_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_AngularVelocity_get", _wrap_iPcMechanicsObject_AngularVelocity_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Static_set", _wrap_iPcMechanicsObject_Static_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_Static_get", _wrap_iPcMechanicsObject_Static_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_CollisionCallbackEnabled_set", _wrap_iPcMechanicsObject_CollisionCallbackEnabled_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_CollisionCallbackEnabled_get", _wrap_iPcMechanicsObject_CollisionCallbackEnabled_get, METH_VARARGS, NULL}, { (char *)"delete_iPcMechanicsObject", _wrap_delete_iPcMechanicsObject, METH_VARARGS, NULL}, { (char *)"iPcMechanicsObject_swigregister", iPcMechanicsObject_swigregister, METH_VARARGS, NULL}, { (char *)"iPcMechanicsJoint_GetJoint", _wrap_iPcMechanicsJoint_GetJoint, METH_VARARGS, NULL}, { (char *)"iPcMechanicsJoint_Joint_get", _wrap_iPcMechanicsJoint_Joint_get, METH_VARARGS, NULL}, { (char *)"delete_iPcMechanicsJoint", _wrap_delete_iPcMechanicsJoint, METH_VARARGS, NULL}, { (char *)"iPcMechanicsJoint_swigregister", iPcMechanicsJoint_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateMechanicsSystem", _wrap_celCreateMechanicsSystem, METH_VARARGS, NULL}, { (char *)"celGetSetMechanicsSystem", _wrap_celGetSetMechanicsSystem, METH_VARARGS, NULL}, { (char *)"celGetMechanicsSystem", _wrap_celGetMechanicsSystem, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcMechanicsSystem", _wrap_scfQuery_iPcMechanicsSystem, METH_VARARGS, NULL}, { (char *)"scfQueryPC_iPcMechanicsSystem", _wrap_scfQueryPC_iPcMechanicsSystem, METH_VARARGS, NULL}, { (char *)"celCreateMechanicsObject", _wrap_celCreateMechanicsObject, METH_VARARGS, NULL}, { (char *)"celGetSetMechanicsObject", _wrap_celGetSetMechanicsObject, METH_VARARGS, NULL}, { (char *)"celGetMechanicsObject", _wrap_celGetMechanicsObject, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcMechanicsObject", _wrap_scfQuery_iPcMechanicsObject, METH_VARARGS, NULL}, { (char *)"scfQueryPC_iPcMechanicsObject", _wrap_scfQueryPC_iPcMechanicsObject, METH_VARARGS, NULL}, { (char *)"scfQueryPC_iPcMechanicsJoint", _wrap_scfQueryPC_iPcMechanicsJoint, METH_VARARGS, NULL}, { (char *)"celCreateMechanicsJoint", _wrap_celCreateMechanicsJoint, METH_VARARGS, NULL}, { (char *)"celGetSetMechanicsJoint", _wrap_celGetSetMechanicsJoint, METH_VARARGS, NULL}, { (char *)"celGetMechanicsJoint", _wrap_celGetMechanicsJoint, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcMechanicsJoint", _wrap_scfQuery_iPcMechanicsJoint, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_SetMechanicsObject", _wrap_iPcMechanicsThruster_SetMechanicsObject, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_GetMechanicsObject", _wrap_iPcMechanicsThruster_GetMechanicsObject, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_SetPosition", _wrap_iPcMechanicsThruster_SetPosition, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_GetPosition", _wrap_iPcMechanicsThruster_GetPosition, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_SetOrientation", _wrap_iPcMechanicsThruster_SetOrientation, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_GetOrientation", _wrap_iPcMechanicsThruster_GetOrientation, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_SetMaxThrust", _wrap_iPcMechanicsThruster_SetMaxThrust, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_GetMaxThrust", _wrap_iPcMechanicsThruster_GetMaxThrust, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_GetThrustForce", _wrap_iPcMechanicsThruster_GetThrustForce, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_AvailableThrust", _wrap_iPcMechanicsThruster_AvailableThrust, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_ThrustChange", _wrap_iPcMechanicsThruster_ThrustChange, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_MechanicsObject_set", _wrap_iPcMechanicsThruster_MechanicsObject_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_MechanicsObject_get", _wrap_iPcMechanicsThruster_MechanicsObject_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_Position_set", _wrap_iPcMechanicsThruster_Position_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_Position_get", _wrap_iPcMechanicsThruster_Position_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_Orientation_set", _wrap_iPcMechanicsThruster_Orientation_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_Orientation_get", _wrap_iPcMechanicsThruster_Orientation_get, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_MaxThrust_get", _wrap_iPcMechanicsThruster_MaxThrust_get, METH_VARARGS, NULL}, { (char *)"delete_iPcMechanicsThruster", _wrap_delete_iPcMechanicsThruster, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThruster_swigregister", iPcMechanicsThruster_swigregister, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_SetType", _wrap_iPcMechanicsBalancedGroup_SetType, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_GetType", _wrap_iPcMechanicsBalancedGroup_GetType, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_AddThruster", _wrap_iPcMechanicsBalancedGroup_AddThruster, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_RemoveThruster", _wrap_iPcMechanicsBalancedGroup_RemoveThruster, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_GetThruster", _wrap_iPcMechanicsBalancedGroup_GetThruster, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_AvailableThrust", _wrap_iPcMechanicsBalancedGroup_AvailableThrust, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_AvailableThrustForce", _wrap_iPcMechanicsBalancedGroup_AvailableThrustForce, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_ChangeThrust", _wrap_iPcMechanicsBalancedGroup_ChangeThrust, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_Type_set", _wrap_iPcMechanicsBalancedGroup_Type_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_Type_get", _wrap_iPcMechanicsBalancedGroup_Type_get, METH_VARARGS, NULL}, { (char *)"delete_iPcMechanicsBalancedGroup", _wrap_delete_iPcMechanicsBalancedGroup, METH_VARARGS, NULL}, { (char *)"iPcMechanicsBalancedGroup_swigregister", iPcMechanicsBalancedGroup_swigregister, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_SetMechanicsObject", _wrap_iPcMechanicsThrusterController_SetMechanicsObject, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_GetMechanicsObject", _wrap_iPcMechanicsThrusterController_GetMechanicsObject, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_AddAxis", _wrap_iPcMechanicsThrusterController_AddAxis, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_GetAxis", _wrap_iPcMechanicsThrusterController_GetAxis, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_GetAxisType", _wrap_iPcMechanicsThrusterController_GetAxisType, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_GetAxisVelocity", _wrap_iPcMechanicsThrusterController_GetAxisVelocity, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_GetAxisMaxForce", _wrap_iPcMechanicsThrusterController_GetAxisMaxForce, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_GetAxisMaxThrust", _wrap_iPcMechanicsThrusterController_GetAxisMaxThrust, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_AddBalancedGroup", _wrap_iPcMechanicsThrusterController_AddBalancedGroup, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_RemoveBalancedGroup", _wrap_iPcMechanicsThrusterController_RemoveBalancedGroup, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_ApplyThrust", _wrap_iPcMechanicsThrusterController_ApplyThrust, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_CancelThrust", _wrap_iPcMechanicsThrusterController_CancelThrust, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_MechanicsObject_set", _wrap_iPcMechanicsThrusterController_MechanicsObject_set, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_MechanicsObject_get", _wrap_iPcMechanicsThrusterController_MechanicsObject_get, METH_VARARGS, NULL}, { (char *)"delete_iPcMechanicsThrusterController", _wrap_delete_iPcMechanicsThrusterController, METH_VARARGS, NULL}, { (char *)"iPcMechanicsThrusterController_swigregister", iPcMechanicsThrusterController_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateMechanicsThrusterReactionary", _wrap_celCreateMechanicsThrusterReactionary, METH_VARARGS, NULL}, { (char *)"celGetSetMechanicsThrusterReactionary", _wrap_celGetSetMechanicsThrusterReactionary, METH_VARARGS, NULL}, { (char *)"celGetMechanicsThrusterReactionary", _wrap_celGetMechanicsThrusterReactionary, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcMechanicsThruster", _wrap_scfQuery_iPcMechanicsThruster, METH_VARARGS, NULL}, { (char *)"scfQueryPC_iPcMechanicsThruster", _wrap_scfQueryPC_iPcMechanicsThruster, METH_VARARGS, NULL}, { (char *)"celCreateMechanicsBalancedGroup", _wrap_celCreateMechanicsBalancedGroup, METH_VARARGS, NULL}, { (char *)"celGetSetMechanicsBalancedGroup", _wrap_celGetSetMechanicsBalancedGroup, METH_VARARGS, NULL}, { (char *)"celGetMechanicsBalancedGroup", _wrap_celGetMechanicsBalancedGroup, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcMechanicsBalancedGroup", _wrap_scfQuery_iPcMechanicsBalancedGroup, METH_VARARGS, NULL}, { (char *)"scfQueryPC_iPcMechanicsBalancedGroup", _wrap_scfQueryPC_iPcMechanicsBalancedGroup, METH_VARARGS, NULL}, { (char *)"celCreateMechanicsThrusterController", _wrap_celCreateMechanicsThrusterController, METH_VARARGS, NULL}, { (char *)"celGetSetMechanicsThrusterController", _wrap_celGetSetMechanicsThrusterController, METH_VARARGS, NULL}, { (char *)"celGetMechanicsThrusterController", _wrap_celGetMechanicsThrusterController, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcMechanicsThrusterController", _wrap_scfQuery_iPcMechanicsThrusterController, METH_VARARGS, NULL}, { (char *)"scfQueryPC_iPcMechanicsThrusterController", _wrap_scfQueryPC_iPcMechanicsThrusterController, METH_VARARGS, NULL}, { (char *)"iBillboardLayer_GetOffset", _wrap_iBillboardLayer_GetOffset, METH_VARARGS, NULL}, { (char *)"iBillboardLayer_SetOffset", _wrap_iBillboardLayer_SetOffset, METH_VARARGS, NULL}, { (char *)"iBillboardLayer_Move", _wrap_iBillboardLayer_Move, METH_VARARGS, NULL}, { (char *)"iBillboardLayer_GetName", _wrap_iBillboardLayer_GetName, METH_VARARGS, NULL}, { (char *)"delete_iBillboardLayer", _wrap_delete_iBillboardLayer, METH_VARARGS, NULL}, { (char *)"iBillboardLayer_swigregister", iBillboardLayer_swigregister, METH_VARARGS, NULL}, { (char *)"iBillboardEventHandler_Select", _wrap_iBillboardEventHandler_Select, METH_VARARGS, NULL}, { (char *)"iBillboardEventHandler_MouseMove", _wrap_iBillboardEventHandler_MouseMove, METH_VARARGS, NULL}, { (char *)"iBillboardEventHandler_MouseMoveAway", _wrap_iBillboardEventHandler_MouseMoveAway, METH_VARARGS, NULL}, { (char *)"iBillboardEventHandler_Unselect", _wrap_iBillboardEventHandler_Unselect, METH_VARARGS, NULL}, { (char *)"iBillboardEventHandler_DoubleClick", _wrap_iBillboardEventHandler_DoubleClick, METH_VARARGS, NULL}, { (char *)"delete_iBillboardEventHandler", _wrap_delete_iBillboardEventHandler, METH_VARARGS, NULL}, { (char *)"iBillboardEventHandler_swigregister", iBillboardEventHandler_swigregister, METH_VARARGS, NULL}, { (char *)"iBillboard_GetName", _wrap_iBillboard_GetName, METH_VARARGS, NULL}, { (char *)"iBillboard_GetFlags", _wrap_iBillboard_GetFlags, METH_VARARGS, NULL}, { (char *)"iBillboard_SetMaterialName", _wrap_iBillboard_SetMaterialName, METH_VARARGS, NULL}, { (char *)"iBillboard_SetMaterialNameFast", _wrap_iBillboard_SetMaterialNameFast, METH_VARARGS, NULL}, { (char *)"iBillboard_GetMaterialName", _wrap_iBillboard_GetMaterialName, METH_VARARGS, NULL}, { (char *)"iBillboard_DrawMesh", _wrap_iBillboard_DrawMesh, METH_VARARGS, NULL}, { (char *)"iBillboard_SetSize", _wrap_iBillboard_SetSize, METH_VARARGS, NULL}, { (char *)"iBillboard_GetSize", _wrap_iBillboard_GetSize, METH_VARARGS, NULL}, { (char *)"iBillboard_GetImageSize", _wrap_iBillboard_GetImageSize, METH_VARARGS, NULL}, { (char *)"iBillboard_SetPosition", _wrap_iBillboard_SetPosition, METH_VARARGS, NULL}, { (char *)"iBillboard_MoveToPosition", _wrap_iBillboard_MoveToPosition, METH_VARARGS, NULL}, { (char *)"iBillboard_GetPosition", _wrap_iBillboard_GetPosition, METH_VARARGS, NULL}, { (char *)"iBillboard_Move", _wrap_iBillboard_Move, METH_VARARGS, NULL}, { (char *)"iBillboard_SetRotation", _wrap_iBillboard_SetRotation, METH_VARARGS, NULL}, { (char *)"iBillboard_GetRotation", _wrap_iBillboard_GetRotation, METH_VARARGS, NULL}, { (char *)"iBillboard_StackTop", _wrap_iBillboard_StackTop, METH_VARARGS, NULL}, { (char *)"iBillboard_StackBottom", _wrap_iBillboard_StackBottom, METH_VARARGS, NULL}, { (char *)"iBillboard_StackUp", _wrap_iBillboard_StackUp, METH_VARARGS, NULL}, { (char *)"iBillboard_StackDown", _wrap_iBillboard_StackDown, METH_VARARGS, NULL}, { (char *)"iBillboard_SetUVTopLeft", _wrap_iBillboard_SetUVTopLeft, METH_VARARGS, NULL}, { (char *)"iBillboard_GetUVTopLeft", _wrap_iBillboard_GetUVTopLeft, METH_VARARGS, NULL}, { (char *)"iBillboard_SetUVBottomRight", _wrap_iBillboard_SetUVBottomRight, METH_VARARGS, NULL}, { (char *)"iBillboard_GetUVBottomRight", _wrap_iBillboard_GetUVBottomRight, METH_VARARGS, NULL}, { (char *)"iBillboard_SetColor", _wrap_iBillboard_SetColor, METH_VARARGS, NULL}, { (char *)"iBillboard_GetColor", _wrap_iBillboard_GetColor, METH_VARARGS, NULL}, { (char *)"iBillboard_SetLayer", _wrap_iBillboard_SetLayer, METH_VARARGS, NULL}, { (char *)"iBillboard_GetLayer", _wrap_iBillboard_GetLayer, METH_VARARGS, NULL}, { (char *)"iBillboard_AddEventHandler", _wrap_iBillboard_AddEventHandler, METH_VARARGS, NULL}, { (char *)"iBillboard_RemoveEventHandler", _wrap_iBillboard_RemoveEventHandler, METH_VARARGS, NULL}, { (char *)"iBillboard_SetText", _wrap_iBillboard_SetText, METH_VARARGS, NULL}, { (char *)"iBillboard_GetText", _wrap_iBillboard_GetText, METH_VARARGS, NULL}, { (char *)"iBillboard_GetTextDimensions", _wrap_iBillboard_GetTextDimensions, METH_VARARGS, NULL}, { (char *)"iBillboard_SetTextOffset", _wrap_iBillboard_SetTextOffset, METH_VARARGS, NULL}, { (char *)"iBillboard_GetTextOffsetDX", _wrap_iBillboard_GetTextOffsetDX, METH_VARARGS, NULL}, { (char *)"iBillboard_GetTextOffsetDY", _wrap_iBillboard_GetTextOffsetDY, METH_VARARGS, NULL}, { (char *)"iBillboard_SetTextFont", _wrap_iBillboard_SetTextFont, METH_VARARGS, NULL}, { (char *)"iBillboard_GetTextFont", _wrap_iBillboard_GetTextFont, METH_VARARGS, NULL}, { (char *)"iBillboard_GetTextFontSize", _wrap_iBillboard_GetTextFontSize, METH_VARARGS, NULL}, { (char *)"iBillboard_SetTextFgColor", _wrap_iBillboard_SetTextFgColor, METH_VARARGS, NULL}, { (char *)"iBillboard_GetTextFgColor", _wrap_iBillboard_GetTextFgColor, METH_VARARGS, NULL}, { (char *)"iBillboard_ClearTextFgColor", _wrap_iBillboard_ClearTextFgColor, METH_VARARGS, NULL}, { (char *)"iBillboard_SetTextBgColor", _wrap_iBillboard_SetTextBgColor, METH_VARARGS, NULL}, { (char *)"iBillboard_GetTextBgColor", _wrap_iBillboard_GetTextBgColor, METH_VARARGS, NULL}, { (char *)"iBillboard_SetTextBgTransparent", _wrap_iBillboard_SetTextBgTransparent, METH_VARARGS, NULL}, { (char *)"iBillboard_IsTextBgTransparent", _wrap_iBillboard_IsTextBgTransparent, METH_VARARGS, NULL}, { (char *)"iBillboard_ClearTextBgColor", _wrap_iBillboard_ClearTextBgColor, METH_VARARGS, NULL}, { (char *)"delete_iBillboard", _wrap_delete_iBillboard, METH_VARARGS, NULL}, { (char *)"iBillboard_swigregister", iBillboard_swigregister, METH_VARARGS, NULL}, { (char *)"iBillboardManager_ScreenToBillboardX", _wrap_iBillboardManager_ScreenToBillboardX, METH_VARARGS, NULL}, { (char *)"iBillboardManager_ScreenToBillboardY", _wrap_iBillboardManager_ScreenToBillboardY, METH_VARARGS, NULL}, { (char *)"iBillboardManager_BillboardToScreenX", _wrap_iBillboardManager_BillboardToScreenX, METH_VARARGS, NULL}, { (char *)"iBillboardManager_BillboardToScreenY", _wrap_iBillboardManager_BillboardToScreenY, METH_VARARGS, NULL}, { (char *)"iBillboardManager_CreateBillboard", _wrap_iBillboardManager_CreateBillboard, METH_VARARGS, NULL}, { (char *)"iBillboardManager_FindBillboard", _wrap_iBillboardManager_FindBillboard, METH_VARARGS, NULL}, { (char *)"iBillboardManager_RemoveBillboard", _wrap_iBillboardManager_RemoveBillboard, METH_VARARGS, NULL}, { (char *)"iBillboardManager_GetBillboardCount", _wrap_iBillboardManager_GetBillboardCount, METH_VARARGS, NULL}, { (char *)"iBillboardManager_GetBillboard", _wrap_iBillboardManager_GetBillboard, METH_VARARGS, NULL}, { (char *)"iBillboardManager_CreateBillboardLayer", _wrap_iBillboardManager_CreateBillboardLayer, METH_VARARGS, NULL}, { (char *)"iBillboardManager_FindBillboardLayer", _wrap_iBillboardManager_FindBillboardLayer, METH_VARARGS, NULL}, { (char *)"iBillboardManager_RemoveBillboardLayer", _wrap_iBillboardManager_RemoveBillboardLayer, METH_VARARGS, NULL}, { (char *)"iBillboardManager_GetBillboardLayerCount", _wrap_iBillboardManager_GetBillboardLayerCount, METH_VARARGS, NULL}, { (char *)"iBillboardManager_GetBillboardLayer", _wrap_iBillboardManager_GetBillboardLayer, METH_VARARGS, NULL}, { (char *)"iBillboardManager_RemoveAll", _wrap_iBillboardManager_RemoveAll, METH_VARARGS, NULL}, { (char *)"iBillboardManager_SetFlags", _wrap_iBillboardManager_SetFlags, METH_VARARGS, NULL}, { (char *)"iBillboardManager_StackTop", _wrap_iBillboardManager_StackTop, METH_VARARGS, NULL}, { (char *)"iBillboardManager_StackBottom", _wrap_iBillboardManager_StackBottom, METH_VARARGS, NULL}, { (char *)"iBillboardManager_StackUp", _wrap_iBillboardManager_StackUp, METH_VARARGS, NULL}, { (char *)"iBillboardManager_StackDown", _wrap_iBillboardManager_StackDown, METH_VARARGS, NULL}, { (char *)"iBillboardManager_StackBefore", _wrap_iBillboardManager_StackBefore, METH_VARARGS, NULL}, { (char *)"iBillboardManager_StackAfter", _wrap_iBillboardManager_StackAfter, METH_VARARGS, NULL}, { (char *)"iBillboardManager_TestCollision", _wrap_iBillboardManager_TestCollision, METH_VARARGS, NULL}, { (char *)"iBillboardManager_SetDefaultTextFont", _wrap_iBillboardManager_SetDefaultTextFont, METH_VARARGS, NULL}, { (char *)"iBillboardManager_GetDefaultTextFont", _wrap_iBillboardManager_GetDefaultTextFont, METH_VARARGS, NULL}, { (char *)"iBillboardManager_GetDefaultTextFontSize", _wrap_iBillboardManager_GetDefaultTextFontSize, METH_VARARGS, NULL}, { (char *)"iBillboardManager_SetDefaultTextFgColor", _wrap_iBillboardManager_SetDefaultTextFgColor, METH_VARARGS, NULL}, { (char *)"iBillboardManager_GetDefaultTextFgColor", _wrap_iBillboardManager_GetDefaultTextFgColor, METH_VARARGS, NULL}, { (char *)"iBillboardManager_SetDefaultTextBgColor", _wrap_iBillboardManager_SetDefaultTextBgColor, METH_VARARGS, NULL}, { (char *)"iBillboardManager_GetDefaultTextBgColor", _wrap_iBillboardManager_GetDefaultTextBgColor, METH_VARARGS, NULL}, { (char *)"iBillboardManager_SetDefaultTextBgTransparent", _wrap_iBillboardManager_SetDefaultTextBgTransparent, METH_VARARGS, NULL}, { (char *)"iBillboardManager_GetShowroom", _wrap_iBillboardManager_GetShowroom, METH_VARARGS, NULL}, { (char *)"delete_iBillboardManager", _wrap_delete_iBillboardManager, METH_VARARGS, NULL}, { (char *)"iBillboardManager_swigregister", iBillboardManager_swigregister, METH_VARARGS, NULL}, { (char *)"iPcBillboard_SetBillboardName", _wrap_iPcBillboard_SetBillboardName, METH_VARARGS, NULL}, { (char *)"iPcBillboard_GetBillboardName", _wrap_iPcBillboard_GetBillboardName, METH_VARARGS, NULL}, { (char *)"iPcBillboard_GetBillboard", _wrap_iPcBillboard_GetBillboard, METH_VARARGS, NULL}, { (char *)"iPcBillboard_EnableEvents", _wrap_iPcBillboard_EnableEvents, METH_VARARGS, NULL}, { (char *)"iPcBillboard_AreEventsEnabled", _wrap_iPcBillboard_AreEventsEnabled, METH_VARARGS, NULL}, { (char *)"iPcBillboard_Name_set", _wrap_iPcBillboard_Name_set, METH_VARARGS, NULL}, { (char *)"iPcBillboard_Name_get", _wrap_iPcBillboard_Name_get, METH_VARARGS, NULL}, { (char *)"iPcBillboard_Billboard_get", _wrap_iPcBillboard_Billboard_get, METH_VARARGS, NULL}, { (char *)"iPcBillboard_EventsEnabled_set", _wrap_iPcBillboard_EventsEnabled_set, METH_VARARGS, NULL}, { (char *)"iPcBillboard_EventsEnabled_get", _wrap_iPcBillboard_EventsEnabled_get, METH_VARARGS, NULL}, { (char *)"delete_iPcBillboard", _wrap_delete_iPcBillboard, METH_VARARGS, NULL}, { (char *)"iPcBillboard_swigregister", iPcBillboard_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateBillboard", _wrap_celCreateBillboard, METH_VARARGS, NULL}, { (char *)"celGetSetBillboard", _wrap_celGetSetBillboard, METH_VARARGS, NULL}, { (char *)"celGetBillboard", _wrap_celGetBillboard, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcBillboard", _wrap_scfQuery_iPcBillboard, METH_VARARGS, NULL}, { (char *)"scfQueryPC_iPcBillboard", _wrap_scfQueryPC_iPcBillboard, METH_VARARGS, NULL}, { (char *)"iPcRegion_SetWorldFile", _wrap_iPcRegion_SetWorldFile, METH_VARARGS, NULL}, { (char *)"iPcRegion_GetWorldDir", _wrap_iPcRegion_GetWorldDir, METH_VARARGS, NULL}, { (char *)"iPcRegion_GetWorldFile", _wrap_iPcRegion_GetWorldFile, METH_VARARGS, NULL}, { (char *)"iPcRegion_SetRegionName", _wrap_iPcRegion_SetRegionName, METH_VARARGS, NULL}, { (char *)"iPcRegion_GetRegionName", _wrap_iPcRegion_GetRegionName, METH_VARARGS, NULL}, { (char *)"iPcRegion_CreateEmptySector", _wrap_iPcRegion_CreateEmptySector, METH_VARARGS, NULL}, { (char *)"iPcRegion_Load", _wrap_iPcRegion_Load, METH_VARARGS, NULL}, { (char *)"iPcRegion_Unload", _wrap_iPcRegion_Unload, METH_VARARGS, NULL}, { (char *)"iPcRegion_FindSector", _wrap_iPcRegion_FindSector, METH_VARARGS, NULL}, { (char *)"iPcRegion_GetStartSector", _wrap_iPcRegion_GetStartSector, METH_VARARGS, NULL}, { (char *)"iPcRegion_GetStartPosition", _wrap_iPcRegion_GetStartPosition, METH_VARARGS, NULL}, { (char *)"iPcRegion_PointCamera", _wrap_iPcRegion_PointCamera, METH_VARARGS, NULL}, { (char *)"iPcRegion_GetRegion", _wrap_iPcRegion_GetRegion, METH_VARARGS, NULL}, { (char *)"iPcRegion_Name_set", _wrap_iPcRegion_Name_set, METH_VARARGS, NULL}, { (char *)"iPcRegion_Name_get", _wrap_iPcRegion_Name_get, METH_VARARGS, NULL}, { (char *)"iPcRegion_Region_get", _wrap_iPcRegion_Region_get, METH_VARARGS, NULL}, { (char *)"iPcRegion_StartSector_get", _wrap_iPcRegion_StartSector_get, METH_VARARGS, NULL}, { (char *)"iPcRegion_StartPosition_get", _wrap_iPcRegion_StartPosition_get, METH_VARARGS, NULL}, { (char *)"iPcRegion_LoadWorld", _wrap_iPcRegion_LoadWorld, METH_VARARGS, NULL}, { (char *)"delete_iPcRegion", _wrap_delete_iPcRegion, METH_VARARGS, NULL}, { (char *)"iPcRegion_swigregister", iPcRegion_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateRegion", _wrap_celCreateRegion, METH_VARARGS, NULL}, { (char *)"Region", _wrap_Region, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcRegion", _wrap_scfQuery_iPcRegion, METH_VARARGS, NULL}, { (char *)"scfQueryPC_iPcRegion", _wrap_scfQueryPC_iPcRegion, METH_VARARGS, NULL}, { (char *)"iCelMapFile_SetPath", _wrap_iCelMapFile_SetPath, METH_VARARGS, NULL}, { (char *)"iCelMapFile_SetFile", _wrap_iCelMapFile_SetFile, METH_VARARGS, NULL}, { (char *)"iCelMapFile_GetPath", _wrap_iCelMapFile_GetPath, METH_VARARGS, NULL}, { (char *)"iCelMapFile_GetFile", _wrap_iCelMapFile_GetFile, METH_VARARGS, NULL}, { (char *)"iCelMapFile_SetSectorName", _wrap_iCelMapFile_SetSectorName, METH_VARARGS, NULL}, { (char *)"iCelMapFile_GetSectorName", _wrap_iCelMapFile_GetSectorName, METH_VARARGS, NULL}, { (char *)"iCelMapFile_Path_set", _wrap_iCelMapFile_Path_set, METH_VARARGS, NULL}, { (char *)"iCelMapFile_Path_get", _wrap_iCelMapFile_Path_get, METH_VARARGS, NULL}, { (char *)"iCelMapFile_File_set", _wrap_iCelMapFile_File_set, METH_VARARGS, NULL}, { (char *)"iCelMapFile_File_get", _wrap_iCelMapFile_File_get, METH_VARARGS, NULL}, { (char *)"iCelMapFile_SectorName_set", _wrap_iCelMapFile_SectorName_set, METH_VARARGS, NULL}, { (char *)"iCelMapFile_SectorName_get", _wrap_iCelMapFile_SectorName_get, METH_VARARGS, NULL}, { (char *)"delete_iCelMapFile", _wrap_delete_iCelMapFile, METH_VARARGS, NULL}, { (char *)"iCelMapFile_swigregister", iCelMapFile_swigregister, METH_VARARGS, NULL}, { (char *)"iCelRegion_GetName", _wrap_iCelRegion_GetName, METH_VARARGS, NULL}, { (char *)"iCelRegion_SetCachePath", _wrap_iCelRegion_SetCachePath, METH_VARARGS, NULL}, { (char *)"iCelRegion_GetCachePath", _wrap_iCelRegion_GetCachePath, METH_VARARGS, NULL}, { (char *)"iCelRegion_CreateMapFile", _wrap_iCelRegion_CreateMapFile, METH_VARARGS, NULL}, { (char *)"iCelRegion_GetMapFileCount", _wrap_iCelRegion_GetMapFileCount, METH_VARARGS, NULL}, { (char *)"iCelRegion_GetMapFile", _wrap_iCelRegion_GetMapFile, METH_VARARGS, NULL}, { (char *)"iCelRegion_RemoveMapFile", _wrap_iCelRegion_RemoveMapFile, METH_VARARGS, NULL}, { (char *)"iCelRegion_RemoveAllMapFiles", _wrap_iCelRegion_RemoveAllMapFiles, METH_VARARGS, NULL}, { (char *)"iCelRegion_AssociateEntity", _wrap_iCelRegion_AssociateEntity, METH_VARARGS, NULL}, { (char *)"iCelRegion_DissociateEntity", _wrap_iCelRegion_DissociateEntity, METH_VARARGS, NULL}, { (char *)"iCelRegion_Name_get", _wrap_iCelRegion_Name_get, METH_VARARGS, NULL}, { (char *)"iCelRegion_CachePath_set", _wrap_iCelRegion_CachePath_set, METH_VARARGS, NULL}, { (char *)"iCelRegion_CachePath_get", _wrap_iCelRegion_CachePath_get, METH_VARARGS, NULL}, { (char *)"iCelRegion_MapFileCount_get", _wrap_iCelRegion_MapFileCount_get, METH_VARARGS, NULL}, { (char *)"delete_iCelRegion", _wrap_delete_iCelRegion, METH_VARARGS, NULL}, { (char *)"iCelRegion_swigregister", iCelRegion_swigregister, METH_VARARGS, NULL}, { (char *)"iCelZone_GetName", _wrap_iCelZone_GetName, METH_VARARGS, NULL}, { (char *)"iCelZone_LinkRegion", _wrap_iCelZone_LinkRegion, METH_VARARGS, NULL}, { (char *)"iCelZone_GetRegionCount", _wrap_iCelZone_GetRegionCount, METH_VARARGS, NULL}, { (char *)"iCelZone_GetRegion", _wrap_iCelZone_GetRegion, METH_VARARGS, NULL}, { (char *)"iCelZone_FindRegion", _wrap_iCelZone_FindRegion, METH_VARARGS, NULL}, { (char *)"iCelZone_UnlinkRegion", _wrap_iCelZone_UnlinkRegion, METH_VARARGS, NULL}, { (char *)"iCelZone_UnlinkAllRegions", _wrap_iCelZone_UnlinkAllRegions, METH_VARARGS, NULL}, { (char *)"iCelZone_Name_get", _wrap_iCelZone_Name_get, METH_VARARGS, NULL}, { (char *)"iCelZone_RegionCount_get", _wrap_iCelZone_RegionCount_get, METH_VARARGS, NULL}, { (char *)"delete_iCelZone", _wrap_delete_iCelZone, METH_VARARGS, NULL}, { (char *)"iCelZone_swigregister", iCelZone_swigregister, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_EnableColliderWrappers", _wrap_iPcZoneManager_EnableColliderWrappers, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_IsColliderWrappers", _wrap_iPcZoneManager_IsColliderWrappers, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_SetLoadingMode", _wrap_iPcZoneManager_SetLoadingMode, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_GetLoadingMode", _wrap_iPcZoneManager_GetLoadingMode, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_Load", _wrap_iPcZoneManager_Load, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_CreateZone", _wrap_iPcZoneManager_CreateZone, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_GetZoneCount", _wrap_iPcZoneManager_GetZoneCount, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_GetZone", _wrap_iPcZoneManager_GetZone, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_FindZone", _wrap_iPcZoneManager_FindZone, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_RemoveZone", _wrap_iPcZoneManager_RemoveZone, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_RemoveAllZones", _wrap_iPcZoneManager_RemoveAllZones, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_CreateRegion", _wrap_iPcZoneManager_CreateRegion, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_GetRegionCount", _wrap_iPcZoneManager_GetRegionCount, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_GetRegion", _wrap_iPcZoneManager_GetRegion, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_FindRegion", _wrap_iPcZoneManager_FindRegion, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_RemoveRegion", _wrap_iPcZoneManager_RemoveRegion, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_RemoveAllRegions", _wrap_iPcZoneManager_RemoveAllRegions, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_FindStartLocations", _wrap_iPcZoneManager_FindStartLocations, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_GetLastStartLocation", _wrap_iPcZoneManager_GetLastStartLocation, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_GetLastStartRegionName", _wrap_iPcZoneManager_GetLastStartRegionName, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_GetLastStartName", _wrap_iPcZoneManager_GetLastStartName, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_PointCamera", _wrap_iPcZoneManager_PointCamera, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_PointMesh", _wrap_iPcZoneManager_PointMesh, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_ActivateRegion", _wrap_iPcZoneManager_ActivateRegion, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_ColliderWrappersEnabled_set", _wrap_iPcZoneManager_ColliderWrappersEnabled_set, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_ColliderWrappersEnabled_get", _wrap_iPcZoneManager_ColliderWrappersEnabled_get, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_LoadingMode_set", _wrap_iPcZoneManager_LoadingMode_set, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_LoadingMode_get", _wrap_iPcZoneManager_LoadingMode_get, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_ZoneCount_get", _wrap_iPcZoneManager_ZoneCount_get, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_RegionCount_get", _wrap_iPcZoneManager_RegionCount_get, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_LastStartRegionName_get", _wrap_iPcZoneManager_LastStartRegionName_get, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_LastStartName_get", _wrap_iPcZoneManager_LastStartName_get, METH_VARARGS, NULL}, { (char *)"delete_iPcZoneManager", _wrap_delete_iPcZoneManager, METH_VARARGS, NULL}, { (char *)"iPcZoneManager_swigregister", iPcZoneManager_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateZoneManager", _wrap_celCreateZoneManager, METH_VARARGS, NULL}, { (char *)"celGetSetZoneManager", _wrap_celGetSetZoneManager, METH_VARARGS, NULL}, { (char *)"celGetZoneManager", _wrap_celGetZoneManager, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcZoneManager", _wrap_scfQuery_iPcZoneManager, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_Activate", _wrap_iPcCommandInput_Activate, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_SetSendTrigger", _wrap_iPcCommandInput_SetSendTrigger, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_IsSendTriggerEnabled", _wrap_iPcCommandInput_IsSendTriggerEnabled, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_SetCookedMode", _wrap_iPcCommandInput_SetCookedMode, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_GetCookedMode", _wrap_iPcCommandInput_GetCookedMode, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_ScreenCoordinates", _wrap_iPcCommandInput_ScreenCoordinates, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_ScreenToCentered", _wrap_iPcCommandInput_ScreenToCentered, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_CenteredToScreen", _wrap_iPcCommandInput_CenteredToScreen, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_LoadConfig", _wrap_iPcCommandInput_LoadConfig, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_SaveConfig", _wrap_iPcCommandInput_SaveConfig, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_Bind", _wrap_iPcCommandInput_Bind, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_GetBind", _wrap_iPcCommandInput_GetBind, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_RemoveBind", _wrap_iPcCommandInput_RemoveBind, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_RemoveAllBinds", _wrap_iPcCommandInput_RemoveAllBinds, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_CookedModeEnabled_set", _wrap_iPcCommandInput_CookedModeEnabled_set, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_CookedModeEnabled_get", _wrap_iPcCommandInput_CookedModeEnabled_get, METH_VARARGS, NULL}, { (char *)"delete_iPcCommandInput", _wrap_delete_iPcCommandInput, METH_VARARGS, NULL}, { (char *)"iPcCommandInput_swigregister", iPcCommandInput_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateCommandInput", _wrap_celCreateCommandInput, METH_VARARGS, NULL}, { (char *)"celGetSetCommandInput", _wrap_celGetSetCommandInput, METH_VARARGS, NULL}, { (char *)"celGetCommandInput", _wrap_celGetCommandInput, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcCommandInput", _wrap_scfQuery_iPcCommandInput, METH_VARARGS, NULL}, { (char *)"iPcGravityCallback_Callback", _wrap_iPcGravityCallback_Callback, METH_VARARGS, NULL}, { (char *)"delete_iPcGravityCallback", _wrap_delete_iPcGravityCallback, METH_VARARGS, NULL}, { (char *)"iPcGravityCallback_swigregister", iPcGravityCallback_swigregister, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetAnchor", _wrap_iPcLinearMovement_SetAnchor, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_GetAnchor", _wrap_iPcLinearMovement_GetAnchor, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetAngularVelocity", _wrap_iPcLinearMovement_SetAngularVelocity, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetSpeed", _wrap_iPcLinearMovement_SetSpeed, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetVelocity", _wrap_iPcLinearMovement_SetVelocity, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_AddVelocity", _wrap_iPcLinearMovement_AddVelocity, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_ClearWorldVelocity", _wrap_iPcLinearMovement_ClearWorldVelocity, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_GetVelocity", _wrap_iPcLinearMovement_GetVelocity, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_GetAngularVelocity", _wrap_iPcLinearMovement_GetAngularVelocity, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_GetCDDimensions", _wrap_iPcLinearMovement_GetCDDimensions, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_InitCD", _wrap_iPcLinearMovement_InitCD, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_TimeDiff", _wrap_iPcLinearMovement_TimeDiff, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_GetDRData", _wrap_iPcLinearMovement_GetDRData, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetDRData", _wrap_iPcLinearMovement_SetDRData, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetSoftDRData", _wrap_iPcLinearMovement_SetSoftDRData, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_GetLastPosition", _wrap_iPcLinearMovement_GetLastPosition, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_GetLastFullPosition", _wrap_iPcLinearMovement_GetLastFullPosition, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_IsPath", _wrap_iPcLinearMovement_IsPath, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_GetSector", _wrap_iPcLinearMovement_GetSector, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_ExtrapolatePosition", _wrap_iPcLinearMovement_ExtrapolatePosition, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_UpdateDRDelta", _wrap_iPcLinearMovement_UpdateDRDelta, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_UpdateDR", _wrap_iPcLinearMovement_UpdateDR, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetPath", _wrap_iPcLinearMovement_SetPath, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetPathTime", _wrap_iPcLinearMovement_SetPathTime, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetPathSpeed", _wrap_iPcLinearMovement_SetPathSpeed, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetPathAction", _wrap_iPcLinearMovement_SetPathAction, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetPathSector", _wrap_iPcLinearMovement_SetPathSector, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_IsOnGround", _wrap_iPcLinearMovement_IsOnGround, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetOnGround", _wrap_iPcLinearMovement_SetOnGround, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetHugGround", _wrap_iPcLinearMovement_SetHugGround, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetDeltaLimit", _wrap_iPcLinearMovement_SetDeltaLimit, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_RotateV", _wrap_iPcLinearMovement_RotateV, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetGravity", _wrap_iPcLinearMovement_SetGravity, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_GetGravity", _wrap_iPcLinearMovement_GetGravity, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_ResetGravity", _wrap_iPcLinearMovement_ResetGravity, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_AddGravityCallback", _wrap_iPcLinearMovement_AddGravityCallback, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_RemoveGravityCallback", _wrap_iPcLinearMovement_RemoveGravityCallback, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_GetPortalDisplacement", _wrap_iPcLinearMovement_GetPortalDisplacement, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_ClearPortalDisplacement", _wrap_iPcLinearMovement_ClearPortalDisplacement, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetFullPosition", _wrap_iPcLinearMovement_SetFullPosition, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_SetPosition", _wrap_iPcLinearMovement_SetPosition, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_Anchor_set", _wrap_iPcLinearMovement_Anchor_set, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_Anchor_get", _wrap_iPcLinearMovement_Anchor_get, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_Sector_get", _wrap_iPcLinearMovement_Sector_get, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_OnGround_set", _wrap_iPcLinearMovement_OnGround_set, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_OnGround_get", _wrap_iPcLinearMovement_OnGround_get, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_Gravity_set", _wrap_iPcLinearMovement_Gravity_set, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_Gravity_get", _wrap_iPcLinearMovement_Gravity_get, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_PortalDisplacement_get", _wrap_iPcLinearMovement_PortalDisplacement_get, METH_VARARGS, NULL}, { (char *)"delete_iPcLinearMovement", _wrap_delete_iPcLinearMovement, METH_VARARGS, NULL}, { (char *)"iPcLinearMovement_swigregister", iPcLinearMovement_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateLinearMovement", _wrap_celCreateLinearMovement, METH_VARARGS, NULL}, { (char *)"celGetSetLinearMovement", _wrap_celGetSetLinearMovement, METH_VARARGS, NULL}, { (char *)"celGetLinearMovement", _wrap_celGetLinearMovement, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcLinearMovement", _wrap_scfQuery_iPcLinearMovement, METH_VARARGS, NULL}, { (char *)"iPcActorMove_Forward", _wrap_iPcActorMove_Forward, METH_VARARGS, NULL}, { (char *)"iPcActorMove_IsMovingForward", _wrap_iPcActorMove_IsMovingForward, METH_VARARGS, NULL}, { (char *)"iPcActorMove_Backward", _wrap_iPcActorMove_Backward, METH_VARARGS, NULL}, { (char *)"iPcActorMove_IsMovingBackward", _wrap_iPcActorMove_IsMovingBackward, METH_VARARGS, NULL}, { (char *)"iPcActorMove_StrafeLeft", _wrap_iPcActorMove_StrafeLeft, METH_VARARGS, NULL}, { (char *)"iPcActorMove_IsStrafingLeft", _wrap_iPcActorMove_IsStrafingLeft, METH_VARARGS, NULL}, { (char *)"iPcActorMove_StrafeRight", _wrap_iPcActorMove_StrafeRight, METH_VARARGS, NULL}, { (char *)"iPcActorMove_IsStrafingRight", _wrap_iPcActorMove_IsStrafingRight, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RotateLeft", _wrap_iPcActorMove_RotateLeft, METH_VARARGS, NULL}, { (char *)"iPcActorMove_IsRotatingLeft", _wrap_iPcActorMove_IsRotatingLeft, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RotateRight", _wrap_iPcActorMove_RotateRight, METH_VARARGS, NULL}, { (char *)"iPcActorMove_IsRotatingRight", _wrap_iPcActorMove_IsRotatingRight, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RotateTo", _wrap_iPcActorMove_RotateTo, METH_VARARGS, NULL}, { (char *)"iPcActorMove_Run", _wrap_iPcActorMove_Run, METH_VARARGS, NULL}, { (char *)"iPcActorMove_IsRunning", _wrap_iPcActorMove_IsRunning, METH_VARARGS, NULL}, { (char *)"iPcActorMove_AutoRun", _wrap_iPcActorMove_AutoRun, METH_VARARGS, NULL}, { (char *)"iPcActorMove_IsAutoRunning", _wrap_iPcActorMove_IsAutoRunning, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MouseMove", _wrap_iPcActorMove_MouseMove, METH_VARARGS, NULL}, { (char *)"iPcActorMove_Jump", _wrap_iPcActorMove_Jump, METH_VARARGS, NULL}, { (char *)"iPcActorMove_ToggleCameraMode", _wrap_iPcActorMove_ToggleCameraMode, METH_VARARGS, NULL}, { (char *)"iPcActorMove_EnableMouseMove", _wrap_iPcActorMove_EnableMouseMove, METH_VARARGS, NULL}, { (char *)"iPcActorMove_IsMouseMoveEnabled", _wrap_iPcActorMove_IsMouseMoveEnabled, METH_VARARGS, NULL}, { (char *)"iPcActorMove_SetMouseMoveInverted", _wrap_iPcActorMove_SetMouseMoveInverted, METH_VARARGS, NULL}, { (char *)"iPcActorMove_IsMouseMoveInverted", _wrap_iPcActorMove_IsMouseMoveInverted, METH_VARARGS, NULL}, { (char *)"iPcActorMove_SetMouseMoveSpeed", _wrap_iPcActorMove_SetMouseMoveSpeed, METH_VARARGS, NULL}, { (char *)"iPcActorMove_GetMouseMoveSpeedX", _wrap_iPcActorMove_GetMouseMoveSpeedX, METH_VARARGS, NULL}, { (char *)"iPcActorMove_GetMouseMoveSpeedY", _wrap_iPcActorMove_GetMouseMoveSpeedY, METH_VARARGS, NULL}, { (char *)"iPcActorMove_SetMovementSpeed", _wrap_iPcActorMove_SetMovementSpeed, METH_VARARGS, NULL}, { (char *)"iPcActorMove_GetMovementSpeed", _wrap_iPcActorMove_GetMovementSpeed, METH_VARARGS, NULL}, { (char *)"iPcActorMove_SetRunningSpeed", _wrap_iPcActorMove_SetRunningSpeed, METH_VARARGS, NULL}, { (char *)"iPcActorMove_GetRunningSpeed", _wrap_iPcActorMove_GetRunningSpeed, METH_VARARGS, NULL}, { (char *)"iPcActorMove_SetRotationSpeed", _wrap_iPcActorMove_SetRotationSpeed, METH_VARARGS, NULL}, { (char *)"iPcActorMove_GetRotationSpeed", _wrap_iPcActorMove_GetRotationSpeed, METH_VARARGS, NULL}, { (char *)"iPcActorMove_SetJumpingVelocity", _wrap_iPcActorMove_SetJumpingVelocity, METH_VARARGS, NULL}, { (char *)"iPcActorMove_GetJumpingVelocity", _wrap_iPcActorMove_GetJumpingVelocity, METH_VARARGS, NULL}, { (char *)"iPcActorMove_SetAnimation", _wrap_iPcActorMove_SetAnimation, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MovingForward_set", _wrap_iPcActorMove_MovingForward_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MovingForward_get", _wrap_iPcActorMove_MovingForward_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MovingBackward_set", _wrap_iPcActorMove_MovingBackward_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MovingBackward_get", _wrap_iPcActorMove_MovingBackward_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_StrafingLeft_set", _wrap_iPcActorMove_StrafingLeft_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_StrafingLeft_get", _wrap_iPcActorMove_StrafingLeft_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_StrafingRight_set", _wrap_iPcActorMove_StrafingRight_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_StrafingRight_get", _wrap_iPcActorMove_StrafingRight_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RotatingLeft_set", _wrap_iPcActorMove_RotatingLeft_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RotatingLeft_get", _wrap_iPcActorMove_RotatingLeft_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RotatingRight_set", _wrap_iPcActorMove_RotatingRight_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RotatingRight_get", _wrap_iPcActorMove_RotatingRight_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_Running_set", _wrap_iPcActorMove_Running_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_Running_get", _wrap_iPcActorMove_Running_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_AutoRunEnabled_set", _wrap_iPcActorMove_AutoRunEnabled_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_AutoRunEnabled_get", _wrap_iPcActorMove_AutoRunEnabled_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RunningSpeed_set", _wrap_iPcActorMove_RunningSpeed_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RunningSpeed_get", _wrap_iPcActorMove_RunningSpeed_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RotationSpeed_set", _wrap_iPcActorMove_RotationSpeed_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_RotationSpeed_get", _wrap_iPcActorMove_RotationSpeed_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MovementSpeed_set", _wrap_iPcActorMove_MovementSpeed_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MovementSpeed_get", _wrap_iPcActorMove_MovementSpeed_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MouseMoveEnabled_set", _wrap_iPcActorMove_MouseMoveEnabled_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MouseMoveEnabled_get", _wrap_iPcActorMove_MouseMoveEnabled_get, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MouseMoveInverted_set", _wrap_iPcActorMove_MouseMoveInverted_set, METH_VARARGS, NULL}, { (char *)"iPcActorMove_MouseMoveInverted_get", _wrap_iPcActorMove_MouseMoveInverted_get, METH_VARARGS, NULL}, { (char *)"delete_iPcActorMove", _wrap_delete_iPcActorMove, METH_VARARGS, NULL}, { (char *)"iPcActorMove_swigregister", iPcActorMove_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateActorMove", _wrap_celCreateActorMove, METH_VARARGS, NULL}, { (char *)"celGetSetActorMove", _wrap_celGetSetActorMove, METH_VARARGS, NULL}, { (char *)"celGetActorMove", _wrap_celGetActorMove, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcActorMove", _wrap_scfQuery_iPcActorMove, METH_VARARGS, NULL}, { (char *)"iPcCamera_SetRegion", _wrap_iPcCamera_SetRegion, METH_VARARGS, NULL}, { (char *)"iPcCamera_SetZoneManager", _wrap_iPcCamera_SetZoneManager, METH_VARARGS, NULL}, { (char *)"iPcCamera_SetRectangle", _wrap_iPcCamera_SetRectangle, METH_VARARGS, NULL}, { (char *)"iPcCamera_GetCamera", _wrap_iPcCamera_GetCamera, METH_VARARGS, NULL}, { (char *)"iPcCamera_GetView", _wrap_iPcCamera_GetView, METH_VARARGS, NULL}, { (char *)"iPcCamera_SetClearZBuffer", _wrap_iPcCamera_SetClearZBuffer, METH_VARARGS, NULL}, { (char *)"iPcCamera_GetClearZBuffer", _wrap_iPcCamera_GetClearZBuffer, METH_VARARGS, NULL}, { (char *)"iPcCamera_SetClearScreen", _wrap_iPcCamera_SetClearScreen, METH_VARARGS, NULL}, { (char *)"iPcCamera_GetClearScreen", _wrap_iPcCamera_GetClearScreen, METH_VARARGS, NULL}, { (char *)"iPcCamera_DisableDistanceClipping", _wrap_iPcCamera_DisableDistanceClipping, METH_VARARGS, NULL}, { (char *)"iPcCamera_EnableFixedDistanceClipping", _wrap_iPcCamera_EnableFixedDistanceClipping, METH_VARARGS, NULL}, { (char *)"iPcCamera_EnableAdaptiveDistanceClipping", _wrap_iPcCamera_EnableAdaptiveDistanceClipping, METH_VARARGS, NULL}, { (char *)"iPcCamera_UseDistanceClipping", _wrap_iPcCamera_UseDistanceClipping, METH_VARARGS, NULL}, { (char *)"iPcCamera_UseFixedDistanceClipping", _wrap_iPcCamera_UseFixedDistanceClipping, METH_VARARGS, NULL}, { (char *)"iPcCamera_GetFixedDistance", _wrap_iPcCamera_GetFixedDistance, METH_VARARGS, NULL}, { (char *)"iPcCamera_GetAdaptiveMinFPS", _wrap_iPcCamera_GetAdaptiveMinFPS, METH_VARARGS, NULL}, { (char *)"iPcCamera_GetAdaptiveMaxFPS", _wrap_iPcCamera_GetAdaptiveMaxFPS, METH_VARARGS, NULL}, { (char *)"iPcCamera_GetAdaptiveMinDistance", _wrap_iPcCamera_GetAdaptiveMinDistance, METH_VARARGS, NULL}, { (char *)"iPcCamera_SetAutoDraw", _wrap_iPcCamera_SetAutoDraw, METH_VARARGS, NULL}, { (char *)"iPcCamera_Draw", _wrap_iPcCamera_Draw, METH_VARARGS, NULL}, { (char *)"iPcCamera_UpdateCamera", _wrap_iPcCamera_UpdateCamera, METH_VARARGS, NULL}, { (char *)"iPcCamera_GetDrawFlags", _wrap_iPcCamera_GetDrawFlags, METH_VARARGS, NULL}, { (char *)"iPcCamera_Camera_get", _wrap_iPcCamera_Camera_get, METH_VARARGS, NULL}, { (char *)"iPcCamera_View_get", _wrap_iPcCamera_View_get, METH_VARARGS, NULL}, { (char *)"iPcCamera_ClearZBuffer_set", _wrap_iPcCamera_ClearZBuffer_set, METH_VARARGS, NULL}, { (char *)"iPcCamera_ClearZBuffer_get", _wrap_iPcCamera_ClearZBuffer_get, METH_VARARGS, NULL}, { (char *)"iPcCamera_ClearScreen_set", _wrap_iPcCamera_ClearScreen_set, METH_VARARGS, NULL}, { (char *)"iPcCamera_ClearScreen_get", _wrap_iPcCamera_ClearScreen_get, METH_VARARGS, NULL}, { (char *)"iPcCamera_DrawFlags_get", _wrap_iPcCamera_DrawFlags_get, METH_VARARGS, NULL}, { (char *)"iPcCamera_FixedDistance_get", _wrap_iPcCamera_FixedDistance_get, METH_VARARGS, NULL}, { (char *)"iPcCamera_AdaptiveMaxFPS_get", _wrap_iPcCamera_AdaptiveMaxFPS_get, METH_VARARGS, NULL}, { (char *)"iPcCamera_AdaptiveMinFPS_get", _wrap_iPcCamera_AdaptiveMinFPS_get, METH_VARARGS, NULL}, { (char *)"iPcCamera_AdaptiveMinDistance_get", _wrap_iPcCamera_AdaptiveMinDistance_get, METH_VARARGS, NULL}, { (char *)"delete_iPcCamera", _wrap_delete_iPcCamera, METH_VARARGS, NULL}, { (char *)"iPcCamera_swigregister", iPcCamera_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateCamera", _wrap_celCreateCamera, METH_VARARGS, NULL}, { (char *)"celGetSetCamera", _wrap_celGetSetCamera, METH_VARARGS, NULL}, { (char *)"celGetCamera", _wrap_celGetCamera, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcCamera", _wrap_scfQuery_iPcCamera, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetFollowEntity", _wrap_iPcDefaultCamera_SetFollowEntity, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetMode", _wrap_iPcDefaultCamera_SetMode, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_GetMode", _wrap_iPcDefaultCamera_GetMode, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetModeName", _wrap_iPcDefaultCamera_SetModeName, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_GetModeName", _wrap_iPcDefaultCamera_GetModeName, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_GetNextMode", _wrap_iPcDefaultCamera_GetNextMode, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_PointCamera", _wrap_iPcDefaultCamera_PointCamera, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetSpringParameters", _wrap_iPcDefaultCamera_SetSpringParameters, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetMinMaxCameraDistance", _wrap_iPcDefaultCamera_SetMinMaxCameraDistance, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetTurnSpeed", _wrap_iPcDefaultCamera_SetTurnSpeed, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetSwingCoef", _wrap_iPcDefaultCamera_SetSwingCoef, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetFirstPersonOffset", _wrap_iPcDefaultCamera_SetFirstPersonOffset, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetThirdPersonOffset", _wrap_iPcDefaultCamera_SetThirdPersonOffset, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_CenterCamera", _wrap_iPcDefaultCamera_CenterCamera, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetPitch", _wrap_iPcDefaultCamera_SetPitch, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_GetPitch", _wrap_iPcDefaultCamera_GetPitch, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetPitchVelocity", _wrap_iPcDefaultCamera_SetPitchVelocity, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_GetPitchVelocity", _wrap_iPcDefaultCamera_GetPitchVelocity, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_MovePitch", _wrap_iPcDefaultCamera_MovePitch, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetYaw", _wrap_iPcDefaultCamera_SetYaw, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_MoveYaw", _wrap_iPcDefaultCamera_MoveYaw, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_GetYaw", _wrap_iPcDefaultCamera_GetYaw, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetYawVelocity", _wrap_iPcDefaultCamera_SetYawVelocity, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_GetYawVelocity", _wrap_iPcDefaultCamera_GetYawVelocity, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetDistance", _wrap_iPcDefaultCamera_SetDistance, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_GetDistance", _wrap_iPcDefaultCamera_GetDistance, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_SetDistanceVelocity", _wrap_iPcDefaultCamera_SetDistanceVelocity, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_GetDistanceVelocity", _wrap_iPcDefaultCamera_GetDistanceVelocity, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_Mode_set", _wrap_iPcDefaultCamera_Mode_set, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_Mode_get", _wrap_iPcDefaultCamera_Mode_get, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_ModeName_set", _wrap_iPcDefaultCamera_ModeName_set, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_ModeName_get", _wrap_iPcDefaultCamera_ModeName_get, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_Pitch_set", _wrap_iPcDefaultCamera_Pitch_set, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_Pitch_get", _wrap_iPcDefaultCamera_Pitch_get, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_PitchVelocity_set", _wrap_iPcDefaultCamera_PitchVelocity_set, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_PitchVelocity_get", _wrap_iPcDefaultCamera_PitchVelocity_get, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_Yaw_set", _wrap_iPcDefaultCamera_Yaw_set, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_Yaw_get", _wrap_iPcDefaultCamera_Yaw_get, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_YawVelocity_set", _wrap_iPcDefaultCamera_YawVelocity_set, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_YawVelocity_get", _wrap_iPcDefaultCamera_YawVelocity_get, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_Distance_set", _wrap_iPcDefaultCamera_Distance_set, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_Distance_get", _wrap_iPcDefaultCamera_Distance_get, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_DistanceVelocity_set", _wrap_iPcDefaultCamera_DistanceVelocity_set, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_DistanceVelocity_get", _wrap_iPcDefaultCamera_DistanceVelocity_get, METH_VARARGS, NULL}, { (char *)"delete_iPcDefaultCamera", _wrap_delete_iPcDefaultCamera, METH_VARARGS, NULL}, { (char *)"iPcDefaultCamera_swigregister", iPcDefaultCamera_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateDefaultCamera", _wrap_celCreateDefaultCamera, METH_VARARGS, NULL}, { (char *)"celGetSetDefaultCamera", _wrap_celGetSetDefaultCamera, METH_VARARGS, NULL}, { (char *)"celGetDefaultCamera", _wrap_celGetDefaultCamera, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcDefaultCamera", _wrap_scfQuery_iPcDefaultCamera, METH_VARARGS, NULL}, { (char *)"iPcSimpleCamera_SetDrawMesh", _wrap_iPcSimpleCamera_SetDrawMesh, METH_VARARGS, NULL}, { (char *)"iPcSimpleCamera_SetCameraOffset", _wrap_iPcSimpleCamera_SetCameraOffset, METH_VARARGS, NULL}, { (char *)"iPcSimpleCamera_SetLookAtOffset", _wrap_iPcSimpleCamera_SetLookAtOffset, METH_VARARGS, NULL}, { (char *)"iPcSimpleCamera_SetMesh", _wrap_iPcSimpleCamera_SetMesh, METH_VARARGS, NULL}, { (char *)"iPcSimpleCamera_Draw", _wrap_iPcSimpleCamera_Draw, METH_VARARGS, NULL}, { (char *)"delete_iPcSimpleCamera", _wrap_delete_iPcSimpleCamera, METH_VARARGS, NULL}, { (char *)"iPcSimpleCamera_swigregister", iPcSimpleCamera_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateSimpleCamera", _wrap_celCreateSimpleCamera, METH_VARARGS, NULL}, { (char *)"celGetSetSimpleCamera", _wrap_celGetSetSimpleCamera, METH_VARARGS, NULL}, { (char *)"celGetSimpleCamera", _wrap_celGetSimpleCamera, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcSimpleCamera", _wrap_scfQuery_iPcSimpleCamera, METH_VARARGS, NULL}, { (char *)"iPcMeshSelectListener_MouseDown", _wrap_iPcMeshSelectListener_MouseDown, METH_VARARGS, NULL}, { (char *)"iPcMeshSelectListener_MouseUp", _wrap_iPcMeshSelectListener_MouseUp, METH_VARARGS, NULL}, { (char *)"iPcMeshSelectListener_MouseMove", _wrap_iPcMeshSelectListener_MouseMove, METH_VARARGS, NULL}, { (char *)"delete_iPcMeshSelectListener", _wrap_delete_iPcMeshSelectListener, METH_VARARGS, NULL}, { (char *)"iPcMeshSelectListener_swigregister", iPcMeshSelectListener_swigregister, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_AddMeshSelectListener", _wrap_iPcMeshSelect_AddMeshSelectListener, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_RemoveMeshSelectListener", _wrap_iPcMeshSelect_RemoveMeshSelectListener, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetCamera", _wrap_iPcMeshSelect_SetCamera, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetMouseButtons", _wrap_iPcMeshSelect_SetMouseButtons, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_GetMouseButtons", _wrap_iPcMeshSelect_GetMouseButtons, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetGlobalSelection", _wrap_iPcMeshSelect_SetGlobalSelection, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_HasGlobalSelection", _wrap_iPcMeshSelect_HasGlobalSelection, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetFollowMode", _wrap_iPcMeshSelect_SetFollowMode, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_HasFollowMode", _wrap_iPcMeshSelect_HasFollowMode, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetFollowAlwaysMode", _wrap_iPcMeshSelect_SetFollowAlwaysMode, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_HasFollowAlwaysMode", _wrap_iPcMeshSelect_HasFollowAlwaysMode, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetDragMode", _wrap_iPcMeshSelect_SetDragMode, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_HasDragMode", _wrap_iPcMeshSelect_HasDragMode, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetDragPlaneNormal", _wrap_iPcMeshSelect_SetDragPlaneNormal, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_GetDragPlaneNormal", _wrap_iPcMeshSelect_GetDragPlaneNormal, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetSendmoveEvent", _wrap_iPcMeshSelect_SetSendmoveEvent, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_HasSendmoveEvent", _wrap_iPcMeshSelect_HasSendmoveEvent, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetSendupEvent", _wrap_iPcMeshSelect_SetSendupEvent, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_HasSendupEvent", _wrap_iPcMeshSelect_HasSendupEvent, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetSenddownEvent", _wrap_iPcMeshSelect_SetSenddownEvent, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_HasSenddownEvent", _wrap_iPcMeshSelect_HasSenddownEvent, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SetMaxSelectionDistance", _wrap_iPcMeshSelect_SetMaxSelectionDistance, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_GetMaxSelectionDistance", _wrap_iPcMeshSelect_GetMaxSelectionDistance, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_MouseButtons_set", _wrap_iPcMeshSelect_MouseButtons_set, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_MouseButtons_get", _wrap_iPcMeshSelect_MouseButtons_get, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_GlobalSelection_set", _wrap_iPcMeshSelect_GlobalSelection_set, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_GlobalSelection_get", _wrap_iPcMeshSelect_GlobalSelection_get, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_FollowMode_set", _wrap_iPcMeshSelect_FollowMode_set, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_FollowMode_get", _wrap_iPcMeshSelect_FollowMode_get, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_FollowAlwaysMode_set", _wrap_iPcMeshSelect_FollowAlwaysMode_set, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_FollowAlwaysMode_get", _wrap_iPcMeshSelect_FollowAlwaysMode_get, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_DragMode_set", _wrap_iPcMeshSelect_DragMode_set, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_DragMode_get", _wrap_iPcMeshSelect_DragMode_get, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SendmoveEvent_set", _wrap_iPcMeshSelect_SendmoveEvent_set, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SendmoveEvent_get", _wrap_iPcMeshSelect_SendmoveEvent_get, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SendupEvent_set", _wrap_iPcMeshSelect_SendupEvent_set, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SendupEvent_get", _wrap_iPcMeshSelect_SendupEvent_get, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SenddownEvent_set", _wrap_iPcMeshSelect_SenddownEvent_set, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_SenddownEvent_get", _wrap_iPcMeshSelect_SenddownEvent_get, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_MaxSelectionDistance_set", _wrap_iPcMeshSelect_MaxSelectionDistance_set, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_MaxSelectionDistance_get", _wrap_iPcMeshSelect_MaxSelectionDistance_get, METH_VARARGS, NULL}, { (char *)"delete_iPcMeshSelect", _wrap_delete_iPcMeshSelect, METH_VARARGS, NULL}, { (char *)"iPcMeshSelect_swigregister", iPcMeshSelect_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateMeshSelect", _wrap_celCreateMeshSelect, METH_VARARGS, NULL}, { (char *)"celGetSetMeshSelect", _wrap_celGetSetMeshSelect, METH_VARARGS, NULL}, { (char *)"celGetMeshSelect", _wrap_celGetMeshSelect, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcMeshSelect", _wrap_scfQuery_iPcMeshSelect, METH_VARARGS, NULL}, { (char *)"iPcMesh_SetPath", _wrap_iPcMesh_SetPath, METH_VARARGS, NULL}, { (char *)"iPcMesh_LoadMesh", _wrap_iPcMesh_LoadMesh, METH_VARARGS, NULL}, { (char *)"iPcMesh_SetMesh", _wrap_iPcMesh_SetMesh, METH_VARARGS, NULL}, { (char *)"iPcMesh_CreateEmptyThing", _wrap_iPcMesh_CreateEmptyThing, METH_VARARGS, NULL}, { (char *)"iPcMesh_CreateEmptyGenmesh", _wrap_iPcMesh_CreateEmptyGenmesh, METH_VARARGS, NULL}, { (char *)"iPcMesh_CreateNullMesh", _wrap_iPcMesh_CreateNullMesh, METH_VARARGS, NULL}, { (char *)"iPcMesh_GetMesh", _wrap_iPcMesh_GetMesh, METH_VARARGS, NULL}, { (char *)"iPcMesh_MoveMesh", _wrap_iPcMesh_MoveMesh, METH_VARARGS, NULL}, { (char *)"iPcMesh_SetAction", _wrap_iPcMesh_SetAction, METH_VARARGS, NULL}, { (char *)"iPcMesh_GetAction", _wrap_iPcMesh_GetAction, METH_VARARGS, NULL}, { (char *)"iPcMesh_SetReverseAction", _wrap_iPcMesh_SetReverseAction, METH_VARARGS, NULL}, { (char *)"iPcMesh_SetAnimation", _wrap_iPcMesh_SetAnimation, METH_VARARGS, NULL}, { (char *)"iPcMesh_Hide", _wrap_iPcMesh_Hide, METH_VARARGS, NULL}, { (char *)"iPcMesh_Show", _wrap_iPcMesh_Show, METH_VARARGS, NULL}, { (char *)"iPcMesh_IsVisible", _wrap_iPcMesh_IsVisible, METH_VARARGS, NULL}, { (char *)"iPcMesh_Mesh_set", _wrap_iPcMesh_Mesh_set, METH_VARARGS, NULL}, { (char *)"iPcMesh_Mesh_get", _wrap_iPcMesh_Mesh_get, METH_VARARGS, NULL}, { (char *)"delete_iPcMesh", _wrap_delete_iPcMesh, METH_VARARGS, NULL}, { (char *)"iPcMesh_swigregister", iPcMesh_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateMesh", _wrap_celCreateMesh, METH_VARARGS, NULL}, { (char *)"celGetSetMesh", _wrap_celGetSetMesh, METH_VARARGS, NULL}, { (char *)"celGetMesh", _wrap_celGetMesh, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcMesh", _wrap_scfQuery_iPcMesh, METH_VARARGS, NULL}, { (char *)"iPcTimer_WakeUp", _wrap_iPcTimer_WakeUp, METH_VARARGS, NULL}, { (char *)"iPcTimer_WakeUpFrame", _wrap_iPcTimer_WakeUpFrame, METH_VARARGS, NULL}, { (char *)"iPcTimer_Clear", _wrap_iPcTimer_Clear, METH_VARARGS, NULL}, { (char *)"delete_iPcTimer", _wrap_delete_iPcTimer, METH_VARARGS, NULL}, { (char *)"iPcTimer_swigregister", iPcTimer_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateTimer", _wrap_celCreateTimer, METH_VARARGS, NULL}, { (char *)"celGetSetTimer", _wrap_celGetSetTimer, METH_VARARGS, NULL}, { (char *)"celGetTimer", _wrap_celGetTimer, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcTimer", _wrap_scfQuery_iPcTimer, METH_VARARGS, NULL}, { (char *)"iPcProjectile_Start", _wrap_iPcProjectile_Start, METH_VARARGS, NULL}, { (char *)"iPcProjectile_Interrupt", _wrap_iPcProjectile_Interrupt, METH_VARARGS, NULL}, { (char *)"iPcProjectile_IsMoving", _wrap_iPcProjectile_IsMoving, METH_VARARGS, NULL}, { (char *)"iPcProjectile_Moving_get", _wrap_iPcProjectile_Moving_get, METH_VARARGS, NULL}, { (char *)"delete_iPcProjectile", _wrap_delete_iPcProjectile, METH_VARARGS, NULL}, { (char *)"iPcProjectile_swigregister", iPcProjectile_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateProjectile", _wrap_celCreateProjectile, METH_VARARGS, NULL}, { (char *)"celGetSetProjectile", _wrap_celGetSetProjectile, METH_VARARGS, NULL}, { (char *)"celGetProjectile", _wrap_celGetProjectile, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcProjectile", _wrap_scfQuery_iPcProjectile, METH_VARARGS, NULL}, { (char *)"iPcSolid_SetMesh", _wrap_iPcSolid_SetMesh, METH_VARARGS, NULL}, { (char *)"iPcSolid_GetMesh", _wrap_iPcSolid_GetMesh, METH_VARARGS, NULL}, { (char *)"iPcSolid_GetCollider", _wrap_iPcSolid_GetCollider, METH_VARARGS, NULL}, { (char *)"iPcSolid_Setup", _wrap_iPcSolid_Setup, METH_VARARGS, NULL}, { (char *)"iPcSolid_SetupBox", _wrap_iPcSolid_SetupBox, METH_VARARGS, NULL}, { (char *)"iPcSolid_Mesh_set", _wrap_iPcSolid_Mesh_set, METH_VARARGS, NULL}, { (char *)"iPcSolid_Mesh_get", _wrap_iPcSolid_Mesh_get, METH_VARARGS, NULL}, { (char *)"iPcSolid_Collider_get", _wrap_iPcSolid_Collider_get, METH_VARARGS, NULL}, { (char *)"delete_iPcSolid", _wrap_delete_iPcSolid, METH_VARARGS, NULL}, { (char *)"iPcSolid_swigregister", iPcSolid_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateSolid", _wrap_celCreateSolid, METH_VARARGS, NULL}, { (char *)"celGetSetSolid", _wrap_celGetSetSolid, METH_VARARGS, NULL}, { (char *)"celGetSolid", _wrap_celGetSolid, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcSolid", _wrap_scfQuery_iPcSolid, METH_VARARGS, NULL}, { (char *)"iPcGravity_CreateGravityColliderFromMesh", _wrap_iPcGravity_CreateGravityColliderFromMesh, METH_VARARGS, NULL}, { (char *)"iPcGravity_GetGravityCollider", _wrap_iPcGravity_GetGravityCollider, METH_VARARGS, NULL}, { (char *)"iPcGravity_SetMovable", _wrap_iPcGravity_SetMovable, METH_VARARGS, NULL}, { (char *)"iPcGravity_GetMovable", _wrap_iPcGravity_GetMovable, METH_VARARGS, NULL}, { (char *)"iPcGravity_SetSolid", _wrap_iPcGravity_SetSolid, METH_VARARGS, NULL}, { (char *)"iPcGravity_GetSolid", _wrap_iPcGravity_GetSolid, METH_VARARGS, NULL}, { (char *)"iPcGravity_SetWeight", _wrap_iPcGravity_SetWeight, METH_VARARGS, NULL}, { (char *)"iPcGravity_GetWeight", _wrap_iPcGravity_GetWeight, METH_VARARGS, NULL}, { (char *)"iPcGravity_ClearForces", _wrap_iPcGravity_ClearForces, METH_VARARGS, NULL}, { (char *)"iPcGravity_ClearPermanentForces", _wrap_iPcGravity_ClearPermanentForces, METH_VARARGS, NULL}, { (char *)"iPcGravity_ResetSpeed", _wrap_iPcGravity_ResetSpeed, METH_VARARGS, NULL}, { (char *)"iPcGravity_ApplyForce", _wrap_iPcGravity_ApplyForce, METH_VARARGS, NULL}, { (char *)"iPcGravity_ApplyPermanentForce", _wrap_iPcGravity_ApplyPermanentForce, METH_VARARGS, NULL}, { (char *)"iPcGravity_IsResting", _wrap_iPcGravity_IsResting, METH_VARARGS, NULL}, { (char *)"iPcGravity_SetActive", _wrap_iPcGravity_SetActive, METH_VARARGS, NULL}, { (char *)"iPcGravity_IsActive", _wrap_iPcGravity_IsActive, METH_VARARGS, NULL}, { (char *)"iPcGravity_GravityCollider_get", _wrap_iPcGravity_GravityCollider_get, METH_VARARGS, NULL}, { (char *)"iPcGravity_Movable_set", _wrap_iPcGravity_Movable_set, METH_VARARGS, NULL}, { (char *)"iPcGravity_Movable_get", _wrap_iPcGravity_Movable_get, METH_VARARGS, NULL}, { (char *)"iPcGravity_Solid_set", _wrap_iPcGravity_Solid_set, METH_VARARGS, NULL}, { (char *)"iPcGravity_Solid_get", _wrap_iPcGravity_Solid_get, METH_VARARGS, NULL}, { (char *)"iPcGravity_Weight_set", _wrap_iPcGravity_Weight_set, METH_VARARGS, NULL}, { (char *)"iPcGravity_Weight_get", _wrap_iPcGravity_Weight_get, METH_VARARGS, NULL}, { (char *)"iPcGravity_Active_set", _wrap_iPcGravity_Active_set, METH_VARARGS, NULL}, { (char *)"iPcGravity_Active_get", _wrap_iPcGravity_Active_get, METH_VARARGS, NULL}, { (char *)"iPcGravity_Resting_get", _wrap_iPcGravity_Resting_get, METH_VARARGS, NULL}, { (char *)"delete_iPcGravity", _wrap_delete_iPcGravity, METH_VARARGS, NULL}, { (char *)"iPcGravity_swigregister", iPcGravity_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateGravity", _wrap_celCreateGravity, METH_VARARGS, NULL}, { (char *)"celGetSetGravity", _wrap_celGetSetGravity, METH_VARARGS, NULL}, { (char *)"celGetGravity", _wrap_celGetGravity, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcGravity", _wrap_scfQuery_iPcGravity, METH_VARARGS, NULL}, { (char *)"iPcMovable_SetMesh", _wrap_iPcMovable_SetMesh, METH_VARARGS, NULL}, { (char *)"iPcMovable_GetMesh", _wrap_iPcMovable_GetMesh, METH_VARARGS, NULL}, { (char *)"iPcMovable_SetPos", _wrap_iPcMovable_SetPos, METH_VARARGS, NULL}, { (char *)"iPcMovable_AddConstraint", _wrap_iPcMovable_AddConstraint, METH_VARARGS, NULL}, { (char *)"iPcMovable_RemoveConstraint", _wrap_iPcMovable_RemoveConstraint, METH_VARARGS, NULL}, { (char *)"iPcMovable_RemoveAllConstraints", _wrap_iPcMovable_RemoveAllConstraints, METH_VARARGS, NULL}, { (char *)"iPcMovable_Mesh_set", _wrap_iPcMovable_Mesh_set, METH_VARARGS, NULL}, { (char *)"iPcMovable_Mesh_get", _wrap_iPcMovable_Mesh_get, METH_VARARGS, NULL}, { (char *)"delete_iPcMovable", _wrap_delete_iPcMovable, METH_VARARGS, NULL}, { (char *)"iPcMovable_swigregister", iPcMovable_swigregister, METH_VARARGS, NULL}, { (char *)"iPcMovableConstraint_CheckMove", _wrap_iPcMovableConstraint_CheckMove, METH_VARARGS, NULL}, { (char *)"delete_iPcMovableConstraint", _wrap_delete_iPcMovableConstraint, METH_VARARGS, NULL}, { (char *)"iPcMovableConstraint_swigregister", iPcMovableConstraint_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateMovable", _wrap_celCreateMovable, METH_VARARGS, NULL}, { (char *)"celGetSetMovable", _wrap_celGetSetMovable, METH_VARARGS, NULL}, { (char *)"celGetMovable", _wrap_celGetMovable, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcMovable", _wrap_scfQuery_iPcMovable, METH_VARARGS, NULL}, { (char *)"iPcInventoryListener_AddChild", _wrap_iPcInventoryListener_AddChild, METH_VARARGS, NULL}, { (char *)"iPcInventoryListener_RemoveChild", _wrap_iPcInventoryListener_RemoveChild, METH_VARARGS, NULL}, { (char *)"delete_iPcInventoryListener", _wrap_delete_iPcInventoryListener, METH_VARARGS, NULL}, { (char *)"iPcInventoryListener_swigregister", iPcInventoryListener_swigregister, METH_VARARGS, NULL}, { (char *)"iCelInventorySpaceSlot_GetEntity", _wrap_iCelInventorySpaceSlot_GetEntity, METH_VARARGS, NULL}, { (char *)"iCelInventorySpaceSlot_AddEntity", _wrap_iCelInventorySpaceSlot_AddEntity, METH_VARARGS, NULL}, { (char *)"iCelInventorySpaceSlot_RemoveEntity", _wrap_iCelInventorySpaceSlot_RemoveEntity, METH_VARARGS, NULL}, { (char *)"iCelInventorySpaceSlot_GetCount", _wrap_iCelInventorySpaceSlot_GetCount, METH_VARARGS, NULL}, { (char *)"iCelInventorySpaceSlot_RemoveAll", _wrap_iCelInventorySpaceSlot_RemoveAll, METH_VARARGS, NULL}, { (char *)"iCelInventorySpaceSlot_IsEmpty", _wrap_iCelInventorySpaceSlot_IsEmpty, METH_VARARGS, NULL}, { (char *)"delete_iCelInventorySpaceSlot", _wrap_delete_iCelInventorySpaceSlot, METH_VARARGS, NULL}, { (char *)"iCelInventorySpaceSlot_swigregister", iCelInventorySpaceSlot_swigregister, METH_VARARGS, NULL}, { (char *)"iCelInventorySpace_GetSpaceTotal", _wrap_iCelInventorySpace_GetSpaceTotal, METH_VARARGS, NULL}, { (char *)"iCelInventorySpace_GetSpaceLeft", _wrap_iCelInventorySpace_GetSpaceLeft, METH_VARARGS, NULL}, { (char *)"iCelInventorySpace_GetSpaceTaken", _wrap_iCelInventorySpace_GetSpaceTaken, METH_VARARGS, NULL}, { (char *)"iCelInventorySpace_AddEntity", _wrap_iCelInventorySpace_AddEntity, METH_VARARGS, NULL}, { (char *)"iCelInventorySpace_RemoveEntity", _wrap_iCelInventorySpace_RemoveEntity, METH_VARARGS, NULL}, { (char *)"iCelInventorySpace_RemoveAll", _wrap_iCelInventorySpace_RemoveAll, METH_VARARGS, NULL}, { (char *)"iCelInventorySpace_GetSlot", _wrap_iCelInventorySpace_GetSlot, METH_VARARGS, NULL}, { (char *)"iCelInventorySpace_GetEntity", _wrap_iCelInventorySpace_GetEntity, METH_VARARGS, NULL}, { (char *)"delete_iCelInventorySpace", _wrap_delete_iCelInventorySpace, METH_VARARGS, NULL}, { (char *)"iCelInventorySpace_swigregister", iCelInventorySpace_swigregister, METH_VARARGS, NULL}, { (char *)"iPcInventory_AddInventoryListener", _wrap_iPcInventory_AddInventoryListener, METH_VARARGS, NULL}, { (char *)"iPcInventory_RemoveInventoryListener", _wrap_iPcInventory_RemoveInventoryListener, METH_VARARGS, NULL}, { (char *)"iPcInventory_AddEntity", _wrap_iPcInventory_AddEntity, METH_VARARGS, NULL}, { (char *)"iPcInventory_RemoveEntity", _wrap_iPcInventory_RemoveEntity, METH_VARARGS, NULL}, { (char *)"iPcInventory_RemoveAll", _wrap_iPcInventory_RemoveAll, METH_VARARGS, NULL}, { (char *)"iPcInventory_GetEntityCount", _wrap_iPcInventory_GetEntityCount, METH_VARARGS, NULL}, { (char *)"iPcInventory_GetEntity", _wrap_iPcInventory_GetEntity, METH_VARARGS, NULL}, { (char *)"iPcInventory_In", _wrap_iPcInventory_In, METH_VARARGS, NULL}, { (char *)"iPcInventory_FindEntity", _wrap_iPcInventory_FindEntity, METH_VARARGS, NULL}, { (char *)"iPcInventory_GetEntitySlot", _wrap_iPcInventory_GetEntitySlot, METH_VARARGS, NULL}, { (char *)"iPcInventory_SetStrictCharacteristics", _wrap_iPcInventory_SetStrictCharacteristics, METH_VARARGS, NULL}, { (char *)"iPcInventory_HasStrictCharacteristics", _wrap_iPcInventory_HasStrictCharacteristics, METH_VARARGS, NULL}, { (char *)"iPcInventory_SetConstraints", _wrap_iPcInventory_SetConstraints, METH_VARARGS, NULL}, { (char *)"iPcInventory_GetConstraints", _wrap_iPcInventory_GetConstraints, METH_VARARGS, NULL}, { (char *)"iPcInventory_RemoveConstraints", _wrap_iPcInventory_RemoveConstraints, METH_VARARGS, NULL}, { (char *)"iPcInventory_RemoveAllConstraints", _wrap_iPcInventory_RemoveAllConstraints, METH_VARARGS, NULL}, { (char *)"iPcInventory_GetCurrentCharacteristic", _wrap_iPcInventory_GetCurrentCharacteristic, METH_VARARGS, NULL}, { (char *)"iPcInventory_MarkDirty", _wrap_iPcInventory_MarkDirty, METH_VARARGS, NULL}, { (char *)"iPcInventory_TestConstraints", _wrap_iPcInventory_TestConstraints, METH_VARARGS, NULL}, { (char *)"iPcInventory_Dump", _wrap_iPcInventory_Dump, METH_VARARGS, NULL}, { (char *)"iPcInventory_SetSpace", _wrap_iPcInventory_SetSpace, METH_VARARGS, NULL}, { (char *)"iPcInventory_GetSpace", _wrap_iPcInventory_GetSpace, METH_VARARGS, NULL}, { (char *)"delete_iPcInventory", _wrap_delete_iPcInventory, METH_VARARGS, NULL}, { (char *)"iPcInventory_swigregister", iPcInventory_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateInventory", _wrap_celCreateInventory, METH_VARARGS, NULL}, { (char *)"celGetSetInventory", _wrap_celGetSetInventory, METH_VARARGS, NULL}, { (char *)"celGetInventory", _wrap_celGetInventory, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcInventory", _wrap_scfQuery_iPcInventory, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_SetCharacteristic", _wrap_iPcCharacteristics_SetCharacteristic, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_SetInheritedCharacteristic", _wrap_iPcCharacteristics_SetInheritedCharacteristic, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_GetCharacteristic", _wrap_iPcCharacteristics_GetCharacteristic, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_GetLocalCharacteristic", _wrap_iPcCharacteristics_GetLocalCharacteristic, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_GetInheritedCharacteristic", _wrap_iPcCharacteristics_GetInheritedCharacteristic, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_ClearCharacteristic", _wrap_iPcCharacteristics_ClearCharacteristic, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_HasCharacteristic", _wrap_iPcCharacteristics_HasCharacteristic, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_ClearAll", _wrap_iPcCharacteristics_ClearAll, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_AddToInventory", _wrap_iPcCharacteristics_AddToInventory, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_RemoveFromInventory", _wrap_iPcCharacteristics_RemoveFromInventory, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_MarkDirty", _wrap_iPcCharacteristics_MarkDirty, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_TestConstraints", _wrap_iPcCharacteristics_TestConstraints, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_Dump", _wrap_iPcCharacteristics_Dump, METH_VARARGS, NULL}, { (char *)"delete_iPcCharacteristics", _wrap_delete_iPcCharacteristics, METH_VARARGS, NULL}, { (char *)"iPcCharacteristics_swigregister", iPcCharacteristics_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateCharacteristics", _wrap_celCreateCharacteristics, METH_VARARGS, NULL}, { (char *)"celGetSetCharacteristics", _wrap_celGetSetCharacteristics, METH_VARARGS, NULL}, { (char *)"celGetCharacteristics", _wrap_celGetCharacteristics, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcCharacteristics", _wrap_scfQuery_iPcCharacteristics, METH_VARARGS, NULL}, { (char *)"iPcTooltip_SetText", _wrap_iPcTooltip_SetText, METH_VARARGS, NULL}, { (char *)"iPcTooltip_Show", _wrap_iPcTooltip_Show, METH_VARARGS, NULL}, { (char *)"iPcTooltip_Hide", _wrap_iPcTooltip_Hide, METH_VARARGS, NULL}, { (char *)"iPcTooltip_IsVisible", _wrap_iPcTooltip_IsVisible, METH_VARARGS, NULL}, { (char *)"iPcTooltip_SetTextColor", _wrap_iPcTooltip_SetTextColor, METH_VARARGS, NULL}, { (char *)"iPcTooltip_SetBackgroundColor", _wrap_iPcTooltip_SetBackgroundColor, METH_VARARGS, NULL}, { (char *)"iPcTooltip_SetFont", _wrap_iPcTooltip_SetFont, METH_VARARGS, NULL}, { (char *)"iPcTooltip_SetJustify", _wrap_iPcTooltip_SetJustify, METH_VARARGS, NULL}, { (char *)"iPcTooltip_Visible_get", _wrap_iPcTooltip_Visible_get, METH_VARARGS, NULL}, { (char *)"delete_iPcTooltip", _wrap_delete_iPcTooltip, METH_VARARGS, NULL}, { (char *)"iPcTooltip_swigregister", iPcTooltip_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateToolTip", _wrap_celCreateToolTip, METH_VARARGS, NULL}, { (char *)"celGetSetToolTip", _wrap_celGetSetToolTip, METH_VARARGS, NULL}, { (char *)"celGetToolTip", _wrap_celGetToolTip, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcTooltip", _wrap_scfQuery_iPcTooltip, METH_VARARGS, NULL}, { (char *)"iPcSoundListener_GetSoundListener", _wrap_iPcSoundListener_GetSoundListener, METH_VARARGS, NULL}, { (char *)"iPcSoundListener_SoundListener_get", _wrap_iPcSoundListener_SoundListener_get, METH_VARARGS, NULL}, { (char *)"delete_iPcSoundListener", _wrap_delete_iPcSoundListener, METH_VARARGS, NULL}, { (char *)"iPcSoundListener_swigregister", iPcSoundListener_swigregister, METH_VARARGS, NULL}, { (char *)"iPcSoundSource_GetSoundSource", _wrap_iPcSoundSource_GetSoundSource, METH_VARARGS, NULL}, { (char *)"iPcSoundSource_SetSoundName", _wrap_iPcSoundSource_SetSoundName, METH_VARARGS, NULL}, { (char *)"iPcSoundSource_GetSoundName", _wrap_iPcSoundSource_GetSoundName, METH_VARARGS, NULL}, { (char *)"iPcSoundSource_SoundSource_get", _wrap_iPcSoundSource_SoundSource_get, METH_VARARGS, NULL}, { (char *)"iPcSoundSource_SoundName_set", _wrap_iPcSoundSource_SoundName_set, METH_VARARGS, NULL}, { (char *)"iPcSoundSource_SoundName_get", _wrap_iPcSoundSource_SoundName_get, METH_VARARGS, NULL}, { (char *)"delete_iPcSoundSource", _wrap_delete_iPcSoundSource, METH_VARARGS, NULL}, { (char *)"iPcSoundSource_swigregister", iPcSoundSource_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateSoundSource", _wrap_celCreateSoundSource, METH_VARARGS, NULL}, { (char *)"celGetSetSoundSource", _wrap_celGetSetSoundSource, METH_VARARGS, NULL}, { (char *)"celGetSoundSource", _wrap_celGetSoundSource, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcSoundSource", _wrap_scfQuery_iPcSoundSource, METH_VARARGS, NULL}, { (char *)"celCreateSoundListener", _wrap_celCreateSoundListener, METH_VARARGS, NULL}, { (char *)"celGetSetSoundListener", _wrap_celGetSetSoundListener, METH_VARARGS, NULL}, { (char *)"celGetSoundListener", _wrap_celGetSoundListener, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcSoundListener", _wrap_scfQuery_iPcSoundListener, METH_VARARGS, NULL}, { (char *)"iPcPropertyListener_PropertyChanged", _wrap_iPcPropertyListener_PropertyChanged, METH_VARARGS, NULL}, { (char *)"delete_iPcPropertyListener", _wrap_delete_iPcPropertyListener, METH_VARARGS, NULL}, { (char *)"iPcPropertyListener_swigregister", iPcPropertyListener_swigregister, METH_VARARGS, NULL}, { (char *)"iPcProperties_AddPropertyListener", _wrap_iPcProperties_AddPropertyListener, METH_VARARGS, NULL}, { (char *)"iPcProperties_RemovePropertyListener", _wrap_iPcProperties_RemovePropertyListener, METH_VARARGS, NULL}, { (char *)"iPcProperties_SetProperty", _wrap_iPcProperties_SetProperty, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyIndex", _wrap_iPcProperties_GetPropertyIndex, METH_VARARGS, NULL}, { (char *)"iPcProperties_SetPropertyIndex", _wrap_iPcProperties_SetPropertyIndex, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyType", _wrap_iPcProperties_GetPropertyType, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyFloat", _wrap_iPcProperties_GetPropertyFloat, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyLong", _wrap_iPcProperties_GetPropertyLong, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyBool", _wrap_iPcProperties_GetPropertyBool, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyVector", _wrap_iPcProperties_GetPropertyVector, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyColor", _wrap_iPcProperties_GetPropertyColor, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyString", _wrap_iPcProperties_GetPropertyString, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyPClass", _wrap_iPcProperties_GetPropertyPClass, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyEntity", _wrap_iPcProperties_GetPropertyEntity, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyIBase", _wrap_iPcProperties_GetPropertyIBase, METH_VARARGS, NULL}, { (char *)"iPcProperties_ClearProperty", _wrap_iPcProperties_ClearProperty, METH_VARARGS, NULL}, { (char *)"iPcProperties_Clear", _wrap_iPcProperties_Clear, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyCount", _wrap_iPcProperties_GetPropertyCount, METH_VARARGS, NULL}, { (char *)"iPcProperties_GetPropertyName", _wrap_iPcProperties_GetPropertyName, METH_VARARGS, NULL}, { (char *)"iPcProperties_Dump", _wrap_iPcProperties_Dump, METH_VARARGS, NULL}, { (char *)"delete_iPcProperties", _wrap_delete_iPcProperties, METH_VARARGS, NULL}, { (char *)"iPcProperties_swigregister", iPcProperties_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateProperties", _wrap_celCreateProperties, METH_VARARGS, NULL}, { (char *)"celGetSetProperties", _wrap_celGetSetProperties, METH_VARARGS, NULL}, { (char *)"celGetProperties", _wrap_celGetProperties, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcProperties", _wrap_scfQuery_iPcProperties, METH_VARARGS, NULL}, { (char *)"iPcMover_Start", _wrap_iPcMover_Start, METH_VARARGS, NULL}, { (char *)"iPcMover_Interrupt", _wrap_iPcMover_Interrupt, METH_VARARGS, NULL}, { (char *)"iPcMover_GetSector", _wrap_iPcMover_GetSector, METH_VARARGS, NULL}, { (char *)"iPcMover_GetPosition", _wrap_iPcMover_GetPosition, METH_VARARGS, NULL}, { (char *)"iPcMover_GetUp", _wrap_iPcMover_GetUp, METH_VARARGS, NULL}, { (char *)"iPcMover_GetSqRadius", _wrap_iPcMover_GetSqRadius, METH_VARARGS, NULL}, { (char *)"iPcMover_IsMoving", _wrap_iPcMover_IsMoving, METH_VARARGS, NULL}, { (char *)"iPcMover_Sector_get", _wrap_iPcMover_Sector_get, METH_VARARGS, NULL}, { (char *)"iPcMover_Position_get", _wrap_iPcMover_Position_get, METH_VARARGS, NULL}, { (char *)"iPcMover_Up_get", _wrap_iPcMover_Up_get, METH_VARARGS, NULL}, { (char *)"iPcMover_SqRadius_get", _wrap_iPcMover_SqRadius_get, METH_VARARGS, NULL}, { (char *)"iPcMover_Moving_get", _wrap_iPcMover_Moving_get, METH_VARARGS, NULL}, { (char *)"delete_iPcMover", _wrap_delete_iPcMover, METH_VARARGS, NULL}, { (char *)"iPcMover_swigregister", iPcMover_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateMover", _wrap_celCreateMover, METH_VARARGS, NULL}, { (char *)"celGetSetMover", _wrap_celGetSetMover, METH_VARARGS, NULL}, { (char *)"celGetMover", _wrap_celGetMover, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcMover", _wrap_scfQuery_iPcMover, METH_VARARGS, NULL}, { (char *)"iPcHover_SetHeightBeamCutoff", _wrap_iPcHover_SetHeightBeamCutoff, METH_VARARGS, NULL}, { (char *)"iPcHover_SetAngularBeamOffset", _wrap_iPcHover_SetAngularBeamOffset, METH_VARARGS, NULL}, { (char *)"iPcHover_SetAngularCutoffHeight", _wrap_iPcHover_SetAngularCutoffHeight, METH_VARARGS, NULL}, { (char *)"iPcHover_SetAngularCorrectionStrength", _wrap_iPcHover_SetAngularCorrectionStrength, METH_VARARGS, NULL}, { (char *)"iPcHover_HoverOn", _wrap_iPcHover_HoverOn, METH_VARARGS, NULL}, { (char *)"iPcHover_HoverOff", _wrap_iPcHover_HoverOff, METH_VARARGS, NULL}, { (char *)"iPcHover_SetStabiliserFunction", _wrap_iPcHover_SetStabiliserFunction, METH_VARARGS, NULL}, { (char *)"iPcHover_UseDefaultFunction", _wrap_iPcHover_UseDefaultFunction, METH_VARARGS, NULL}, { (char *)"iPcHover_GetHeight", _wrap_iPcHover_GetHeight, METH_VARARGS, NULL}, { (char *)"iPcHover_Height_get", _wrap_iPcHover_Height_get, METH_VARARGS, NULL}, { (char *)"delete_iPcHover", _wrap_delete_iPcHover, METH_VARARGS, NULL}, { (char *)"iPcHover_swigregister", iPcHover_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateHover", _wrap_celCreateHover, METH_VARARGS, NULL}, { (char *)"celGetSetHover", _wrap_celGetSetHover, METH_VARARGS, NULL}, { (char *)"celGetHover", _wrap_celGetHover, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcHover", _wrap_scfQuery_iPcHover, METH_VARARGS, NULL}, { (char *)"iPcCraftController_StartTurnLeft", _wrap_iPcCraftController_StartTurnLeft, METH_VARARGS, NULL}, { (char *)"iPcCraftController_StopTurnLeft", _wrap_iPcCraftController_StopTurnLeft, METH_VARARGS, NULL}, { (char *)"iPcCraftController_StartTurnRight", _wrap_iPcCraftController_StartTurnRight, METH_VARARGS, NULL}, { (char *)"iPcCraftController_StopTurnRight", _wrap_iPcCraftController_StopTurnRight, METH_VARARGS, NULL}, { (char *)"iPcCraftController_StartTurnUp", _wrap_iPcCraftController_StartTurnUp, METH_VARARGS, NULL}, { (char *)"iPcCraftController_StopTurnUp", _wrap_iPcCraftController_StopTurnUp, METH_VARARGS, NULL}, { (char *)"iPcCraftController_StartTurnDown", _wrap_iPcCraftController_StartTurnDown, METH_VARARGS, NULL}, { (char *)"iPcCraftController_StopTurnDown", _wrap_iPcCraftController_StopTurnDown, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SetAccTurn", _wrap_iPcCraftController_SetAccTurn, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SetAccPitch", _wrap_iPcCraftController_SetAccPitch, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SetMaxTurn", _wrap_iPcCraftController_SetMaxTurn, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SetMaxPitch", _wrap_iPcCraftController_SetMaxPitch, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SetThrustForce", _wrap_iPcCraftController_SetThrustForce, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SetTopSpeed", _wrap_iPcCraftController_SetTopSpeed, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SetRedirectVelocityRatio", _wrap_iPcCraftController_SetRedirectVelocityRatio, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SetDecelerationRate", _wrap_iPcCraftController_SetDecelerationRate, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SetBrakingSpeed", _wrap_iPcCraftController_SetBrakingSpeed, METH_VARARGS, NULL}, { (char *)"iPcCraftController_ThrustOn", _wrap_iPcCraftController_ThrustOn, METH_VARARGS, NULL}, { (char *)"iPcCraftController_ThrustOff", _wrap_iPcCraftController_ThrustOff, METH_VARARGS, NULL}, { (char *)"iPcCraftController_IsThrusterOn", _wrap_iPcCraftController_IsThrusterOn, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SetAfterBurnerTopSpeed", _wrap_iPcCraftController_SetAfterBurnerTopSpeed, METH_VARARGS, NULL}, { (char *)"iPcCraftController_AfterBurnerOn", _wrap_iPcCraftController_AfterBurnerOn, METH_VARARGS, NULL}, { (char *)"iPcCraftController_AfterBurnerOff", _wrap_iPcCraftController_AfterBurnerOff, METH_VARARGS, NULL}, { (char *)"iPcCraftController_BrakesOn", _wrap_iPcCraftController_BrakesOn, METH_VARARGS, NULL}, { (char *)"iPcCraftController_BrakesOff", _wrap_iPcCraftController_BrakesOff, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SlideOn", _wrap_iPcCraftController_SlideOn, METH_VARARGS, NULL}, { (char *)"iPcCraftController_SlideOff", _wrap_iPcCraftController_SlideOff, METH_VARARGS, NULL}, { (char *)"iPcCraftController_ThrusterOn_get", _wrap_iPcCraftController_ThrusterOn_get, METH_VARARGS, NULL}, { (char *)"delete_iPcCraftController", _wrap_delete_iPcCraftController, METH_VARARGS, NULL}, { (char *)"iPcCraftController_swigregister", iPcCraftController_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateCraftController", _wrap_celCreateCraftController, METH_VARARGS, NULL}, { (char *)"celGetSetCraftController", _wrap_celGetSetCraftController, METH_VARARGS, NULL}, { (char *)"celGetCraftController", _wrap_celGetCraftController, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcCraftController", _wrap_scfQuery_iPcCraftController, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelMesh", _wrap_iPcWheeled_SetWheelMesh, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetTankMode", _wrap_iPcWheeled_SetTankMode, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetTankMode", _wrap_iPcWheeled_GetTankMode, METH_VARARGS, NULL}, { (char *)"iPcWheeled_AddWheelAuto", _wrap_iPcWheeled_AddWheelAuto, METH_VARARGS, NULL}, { (char *)"iPcWheeled_AddWheel", _wrap_iPcWheeled_AddWheel, METH_VARARGS, NULL}, { (char *)"iPcWheeled_DeleteWheel", _wrap_iPcWheeled_DeleteWheel, METH_VARARGS, NULL}, { (char *)"iPcWheeled_DeleteAllWheels", _wrap_iPcWheeled_DeleteAllWheels, METH_VARARGS, NULL}, { (char *)"iPcWheeled_DestroyWheel", _wrap_iPcWheeled_DestroyWheel, METH_VARARGS, NULL}, { (char *)"iPcWheeled_DestroyAllWheels", _wrap_iPcWheeled_DestroyAllWheels, METH_VARARGS, NULL}, { (char *)"iPcWheeled_RestoreWheel", _wrap_iPcWheeled_RestoreWheel, METH_VARARGS, NULL}, { (char *)"iPcWheeled_RestoreAllWheels", _wrap_iPcWheeled_RestoreAllWheels, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetOuterWheelSteerPreset", _wrap_iPcWheeled_SetOuterWheelSteerPreset, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetFrontWheelPreset", _wrap_iPcWheeled_SetFrontWheelPreset, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetRearWheelPreset", _wrap_iPcWheeled_SetRearWheelPreset, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Accelerate", _wrap_iPcWheeled_Accelerate, METH_VARARGS, NULL}, { (char *)"iPcWheeled_IsAccelerating", _wrap_iPcWheeled_IsAccelerating, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Brake", _wrap_iPcWheeled_Brake, METH_VARARGS, NULL}, { (char *)"iPcWheeled_IsBraking", _wrap_iPcWheeled_IsBraking, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Handbrake", _wrap_iPcWheeled_Handbrake, METH_VARARGS, NULL}, { (char *)"iPcWheeled_IsHandbraking", _wrap_iPcWheeled_IsHandbraking, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetSteerAmount", _wrap_iPcWheeled_SetSteerAmount, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetBrakeForce", _wrap_iPcWheeled_SetBrakeForce, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetSteerAmount", _wrap_iPcWheeled_GetSteerAmount, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SteerLeft", _wrap_iPcWheeled_SteerLeft, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SteerRight", _wrap_iPcWheeled_SteerRight, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SteerStraight", _wrap_iPcWheeled_SteerStraight, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Reverse", _wrap_iPcWheeled_Reverse, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Neutral", _wrap_iPcWheeled_Neutral, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetAutoTransmission", _wrap_iPcWheeled_SetAutoTransmission, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetGear", _wrap_iPcWheeled_SetGear, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetGear", _wrap_iPcWheeled_GetGear, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetGearSettings", _wrap_iPcWheeled_SetGearSettings, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetTopGear", _wrap_iPcWheeled_GetTopGear, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetAutoReverse", _wrap_iPcWheeled_SetAutoReverse, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetBodyGroup", _wrap_iPcWheeled_GetBodyGroup, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelPosition", _wrap_iPcWheeled_SetWheelPosition, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelRotation", _wrap_iPcWheeled_SetWheelRotation, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelSuspensionSoftness", _wrap_iPcWheeled_SetWheelSuspensionSoftness, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelSuspensionDamping", _wrap_iPcWheeled_SetWheelSuspensionDamping, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelLeftSteerSensitivity", _wrap_iPcWheeled_SetWheelLeftSteerSensitivity, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelRightSteerSensitivity", _wrap_iPcWheeled_SetWheelRightSteerSensitivity, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelTurnSpeed", _wrap_iPcWheeled_SetWheelTurnSpeed, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelReturnSpeed", _wrap_iPcWheeled_SetWheelReturnSpeed, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelEnginePower", _wrap_iPcWheeled_SetWheelEnginePower, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelBrakePower", _wrap_iPcWheeled_SetWheelBrakePower, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelSteerInverted", _wrap_iPcWheeled_SetWheelSteerInverted, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SetWheelHandbrakeAffected", _wrap_iPcWheeled_SetWheelHandbrakeAffected, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelPosition", _wrap_iPcWheeled_GetWheelPosition, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelRotation", _wrap_iPcWheeled_GetWheelRotation, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelSuspensionSoftness", _wrap_iPcWheeled_GetWheelSuspensionSoftness, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelSuspensionDamping", _wrap_iPcWheeled_GetWheelSuspensionDamping, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelLeftSteerSensitivity", _wrap_iPcWheeled_GetWheelLeftSteerSensitivity, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelRightSteerSensitivity", _wrap_iPcWheeled_GetWheelRightSteerSensitivity, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelTurnSpeed", _wrap_iPcWheeled_GetWheelTurnSpeed, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelReturnSpeed", _wrap_iPcWheeled_GetWheelReturnSpeed, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelEnginePower", _wrap_iPcWheeled_GetWheelEnginePower, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelBrakePower", _wrap_iPcWheeled_GetWheelBrakePower, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelSteerInverted", _wrap_iPcWheeled_GetWheelSteerInverted, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelHandbrakeAffected", _wrap_iPcWheeled_GetWheelHandbrakeAffected, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelCount", _wrap_iPcWheeled_GetWheelCount, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelBody", _wrap_iPcWheeled_GetWheelBody, METH_VARARGS, NULL}, { (char *)"iPcWheeled_GetWheelJoint", _wrap_iPcWheeled_GetWheelJoint, METH_VARARGS, NULL}, { (char *)"iPcWheeled_TankMode_set", _wrap_iPcWheeled_TankMode_set, METH_VARARGS, NULL}, { (char *)"iPcWheeled_TankMode_get", _wrap_iPcWheeled_TankMode_get, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Accelerating_set", _wrap_iPcWheeled_Accelerating_set, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Accelerating_get", _wrap_iPcWheeled_Accelerating_get, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Braking_set", _wrap_iPcWheeled_Braking_set, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Braking_get", _wrap_iPcWheeled_Braking_get, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Handbraking_set", _wrap_iPcWheeled_Handbraking_set, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Handbraking_get", _wrap_iPcWheeled_Handbraking_get, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SteerAmount_set", _wrap_iPcWheeled_SteerAmount_set, METH_VARARGS, NULL}, { (char *)"iPcWheeled_SteerAmount_get", _wrap_iPcWheeled_SteerAmount_get, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Gear_set", _wrap_iPcWheeled_Gear_set, METH_VARARGS, NULL}, { (char *)"iPcWheeled_Gear_get", _wrap_iPcWheeled_Gear_get, METH_VARARGS, NULL}, { (char *)"iPcWheeled_TopGear_get", _wrap_iPcWheeled_TopGear_get, METH_VARARGS, NULL}, { (char *)"iPcWheeled_BodyGroup_get", _wrap_iPcWheeled_BodyGroup_get, METH_VARARGS, NULL}, { (char *)"delete_iPcWheeled", _wrap_delete_iPcWheeled, METH_VARARGS, NULL}, { (char *)"iPcWheeled_swigregister", iPcWheeled_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateWheeled", _wrap_celCreateWheeled, METH_VARARGS, NULL}, { (char *)"celGetSetWheeled", _wrap_celGetSetWheeled, METH_VARARGS, NULL}, { (char *)"celGetWheeled", _wrap_celGetWheeled, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcWheeled", _wrap_scfQuery_iPcWheeled, METH_VARARGS, NULL}, { (char *)"iPcDamage_SetDamage", _wrap_iPcDamage_SetDamage, METH_VARARGS, NULL}, { (char *)"iPcDamage_GetDamage", _wrap_iPcDamage_GetDamage, METH_VARARGS, NULL}, { (char *)"iPcDamage_SetDamageType", _wrap_iPcDamage_SetDamageType, METH_VARARGS, NULL}, { (char *)"iPcDamage_GetDamageType", _wrap_iPcDamage_GetDamageType, METH_VARARGS, NULL}, { (char *)"iPcDamage_SetFallOff", _wrap_iPcDamage_SetFallOff, METH_VARARGS, NULL}, { (char *)"iPcDamage_GetFallOff", _wrap_iPcDamage_GetFallOff, METH_VARARGS, NULL}, { (char *)"iPcDamage_SetDamageLocation", _wrap_iPcDamage_SetDamageLocation, METH_VARARGS, NULL}, { (char *)"iPcDamage_GetDamageSector", _wrap_iPcDamage_GetDamageSector, METH_VARARGS, NULL}, { (char *)"iPcDamage_GetDamagePosition", _wrap_iPcDamage_GetDamagePosition, METH_VARARGS, NULL}, { (char *)"iPcDamage_SetDamageSource", _wrap_iPcDamage_SetDamageSource, METH_VARARGS, NULL}, { (char *)"iPcDamage_GetDamageSource", _wrap_iPcDamage_GetDamageSource, METH_VARARGS, NULL}, { (char *)"iPcDamage_AreaDamage", _wrap_iPcDamage_AreaDamage, METH_VARARGS, NULL}, { (char *)"iPcDamage_BeamDamage", _wrap_iPcDamage_BeamDamage, METH_VARARGS, NULL}, { (char *)"iPcDamage_SingleDamage", _wrap_iPcDamage_SingleDamage, METH_VARARGS, NULL}, { (char *)"iPcDamage_Damage_set", _wrap_iPcDamage_Damage_set, METH_VARARGS, NULL}, { (char *)"iPcDamage_Damage_get", _wrap_iPcDamage_Damage_get, METH_VARARGS, NULL}, { (char *)"iPcDamage_DamageType_set", _wrap_iPcDamage_DamageType_set, METH_VARARGS, NULL}, { (char *)"iPcDamage_DamageType_get", _wrap_iPcDamage_DamageType_get, METH_VARARGS, NULL}, { (char *)"iPcDamage_FallOff_set", _wrap_iPcDamage_FallOff_set, METH_VARARGS, NULL}, { (char *)"iPcDamage_FallOff_get", _wrap_iPcDamage_FallOff_get, METH_VARARGS, NULL}, { (char *)"iPcDamage_DamageSector_get", _wrap_iPcDamage_DamageSector_get, METH_VARARGS, NULL}, { (char *)"iPcDamage_DamagePosition_get", _wrap_iPcDamage_DamagePosition_get, METH_VARARGS, NULL}, { (char *)"delete_iPcDamage", _wrap_delete_iPcDamage, METH_VARARGS, NULL}, { (char *)"iPcDamage_swigregister", iPcDamage_swigregister, METH_VARARGS, NULL}, { (char *)"celCreateDamage", _wrap_celCreateDamage, METH_VARARGS, NULL}, { (char *)"celGetSetDamage", _wrap_celGetSetDamage, METH_VARARGS, NULL}, { (char *)"celGetDamage", _wrap_celGetDamage, METH_VARARGS, NULL}, { (char *)"scfQuery_iPcDamage", _wrap_scfQuery_iPcDamage, METH_VARARGS, NULL}, { (char *)"iCelConsoleCommand_GetCommand", _wrap_iCelConsoleCommand_GetCommand, METH_VARARGS, NULL}, { (char *)"iCelConsoleCommand_GetDescription", _wrap_iCelConsoleCommand_GetDescription, METH_VARARGS, NULL}, { (char *)"iCelConsoleCommand_Help", _wrap_iCelConsoleCommand_Help, METH_VARARGS, NULL}, { (char *)"iCelConsoleCommand_Execute", _wrap_iCelConsoleCommand_Execute, METH_VARARGS, NULL}, { (char *)"delete_iCelConsoleCommand", _wrap_delete_iCelConsoleCommand, METH_VARARGS, NULL}, { (char *)"iCelConsoleCommand_swigregister", iCelConsoleCommand_swigregister, METH_VARARGS, NULL}, { (char *)"iCelConsole_GetInputConsole", _wrap_iCelConsole_GetInputConsole, METH_VARARGS, NULL}, { (char *)"iCelConsole_GetOutputConsole", _wrap_iCelConsole_GetOutputConsole, METH_VARARGS, NULL}, { (char *)"iCelConsole_RegisterCommand", _wrap_iCelConsole_RegisterCommand, METH_VARARGS, NULL}, { (char *)"iCelConsole_InputConsole_get", _wrap_iCelConsole_InputConsole_get, METH_VARARGS, NULL}, { (char *)"iCelConsole_OutputConsole_get", _wrap_iCelConsole_OutputConsole_get, METH_VARARGS, NULL}, { (char *)"delete_iCelConsole", _wrap_delete_iCelConsole, METH_VARARGS, NULL}, { (char *)"iCelConsole_swigregister", iCelConsole_swigregister, METH_VARARGS, NULL}, { (char *)"csQueryRegistry_iCelConsole", _wrap_csQueryRegistry_iCelConsole, METH_VARARGS, NULL}, { NULL, NULL, 0, NULL } }; /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ static void *_p_csPathTo_p_iPath(void *x) { return (void *)((iPath *) (scfImplementation1 *) ((csPath *) x)); } static void *_p_scfImplementation1TcsPath_iPath_tTo_p_iPath(void *x) { return (void *)((iPath *) ((scfImplementation1 *) x)); } static void *_p_csXRotMatrix3To_p_csMatrix3(void *x) { return (void *)((csMatrix3 *) ((csXRotMatrix3 *) x)); } static void *_p_csYRotMatrix3To_p_csMatrix3(void *x) { return (void *)((csMatrix3 *) ((csYRotMatrix3 *) x)); } static void *_p_csZRotMatrix3To_p_csMatrix3(void *x) { return (void *)((csMatrix3 *) ((csZRotMatrix3 *) x)); } static void *_p_csXScaleMatrix3To_p_csMatrix3(void *x) { return (void *)((csMatrix3 *) ((csXScaleMatrix3 *) x)); } static void *_p_csYScaleMatrix3To_p_csMatrix3(void *x) { return (void *)((csMatrix3 *) ((csYScaleMatrix3 *) x)); } static void *_p_csZScaleMatrix3To_p_csMatrix3(void *x) { return (void *)((csMatrix3 *) ((csZScaleMatrix3 *) x)); } static void *_p_iPcDefaultCameraTo_p_iPcCamera(void *x) { return (void *)((iPcCamera *) ((iPcDefaultCamera *) x)); } static void *_p_iPcSimpleCameraTo_p_iPcCamera(void *x) { return (void *)((iPcCamera *) ((iPcSimpleCamera *) x)); } static void *_p_iSaverTo_p_iBase(void *x) { return (void *)((iBase *) ((iSaver *) x)); } static void *_p_iODEDynamicSystemStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iODEDynamicSystemState *) x)); } static void *_p_iFontTo_p_iBase(void *x) { return (void *)((iBase *) ((iFont *) x)); } static void *_p_iEventQueueTo_p_iBase(void *x) { return (void *)((iBase *) ((iEventQueue *) x)); } static void *_p_iShaderVariableContextTo_p_iBase(void *x) { return (void *)((iBase *) ((iShaderVariableContext *) x)); } static void *_p_iAwsFloatKeyTo_p_iBase(void *x) { return (void *)((iBase *) (iAwsKey *) ((iAwsFloatKey *) x)); } static void *_p_iCameraPositionListTo_p_iBase(void *x) { return (void *)((iBase *) ((iCameraPositionList *) x)); } static void *_p_iRegionListTo_p_iBase(void *x) { return (void *)((iBase *) ((iRegionList *) x)); } static void *_p_iSceneNodeTo_p_iBase(void *x) { return (void *)((iBase *) ((iSceneNode *) x)); } static void *_p_iParticleBuiltinEffectorLinColorTo_p_iBase(void *x) { return (void *)((iBase *) (iParticleEffector *) ((iParticleBuiltinEffectorLinColor *) x)); } static void *_p_iThingEnvironmentTo_p_iBase(void *x) { return (void *)((iBase *) ((iThingEnvironment *) x)); } static void *_p_iClipper2DTo_p_iBase(void *x) { return (void *)((iBase *) ((iClipper2D *) x)); } static void *_p_iConsoleOutputTo_p_iBase(void *x) { return (void *)((iBase *) ((iConsoleOutput *) x)); } static void *_p_iEventNameRegistryTo_p_iBase(void *x) { return (void *)((iBase *) ((iEventNameRegistry *) x)); } static void *_p_iObjectRegistryTo_p_iBase(void *x) { return (void *)((iBase *) ((iObjectRegistry *) x)); } static void *_p_iSkeletonBoneTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonBone *) x)); } static void *_p_iSectorTo_p_iBase(void *x) { return (void *)((iBase *) ((iSector *) x)); } static void *_p_iStringSetTo_p_iBase(void *x) { return (void *)((iBase *) ((iStringSet *) x)); } static void *_p_iPcMoverTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMover *) x)); } static void *_p_iGenMeshSkeletonControlStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iGenMeshSkeletonControlState *) x)); } static void *_p_iLightListTo_p_iBase(void *x) { return (void *)((iBase *) ((iLightList *) x)); } static void *_p_iPcPropertiesTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcProperties *) x)); } static void *_p_iPcInventoryListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcInventoryListener *) x)); } static void *_p_iPcMeshSelectListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMeshSelectListener *) x)); } static void *_p_iCelTimerListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelTimerListener *) x)); } static void *_p_iStandardReporterListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iStandardReporterListener *) x)); } static void *_p_iReporterListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iReporterListener *) x)); } static void *_p_iObjectNameChangeListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iObjectNameChangeListener *) x)); } static void *_p_iMovableListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iMovableListener *) x)); } static void *_p_iCameraSectorListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iCameraSectorListener *) x)); } static void *_p_iObjectModelListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iObjectModelListener *) x)); } static void *_p_iVisibilityCullerListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iVisibilityCullerListener *) x)); } static void *_p_iSndSysListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysListener *) x)); } static void *_p_iPcSoundListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcSoundListener *) x)); } static void *_p_iPcPropertyListenerTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcPropertyListener *) x)); } static void *_p_iMovieRecorderTo_p_iBase(void *x) { return (void *)((iBase *) ((iMovieRecorder *) x)); } static void *_p_iPcGravityCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcGravityCallback *) x)); } static void *_p_iCelEntityRemoveCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelEntityRemoveCallback *) x)); } static void *_p_iCelNewEntityCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelNewEntityCallback *) x)); } static void *_p_iODEFrameUpdateCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iODEFrameUpdateCallback *) x)); } static void *_p_iDynamicsColliderCollisionCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iDynamicsColliderCollisionCallback *) x)); } static void *_p_iDynamicsCollisionCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iDynamicsCollisionCallback *) x)); } static void *_p_iDynamicsMoveCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iDynamicsMoveCallback *) x)); } static void *_p_iOffscreenCanvasCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iOffscreenCanvasCallback *) x)); } static void *_p_iSndSysRendererCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysRendererCallback *) x)); } static void *_p_iSndSysStreamCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysStreamCallback *) x)); } static void *_p_iMeshDrawCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iMeshDrawCallback *) x)); } static void *_p_iTextureCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iTextureCallback *) x)); } static void *_p_iEngineSectorCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iEngineSectorCallback *) x)); } static void *_p_iEngineFrameCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iEngineFrameCallback *) x)); } static void *_p_iLightVisibleCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iLightVisibleCallback *) x)); } static void *_p_iSectorMeshCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iSectorMeshCallback *) x)); } static void *_p_iSectorCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iSectorCallback *) x)); } static void *_p_iLightCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iLightCallback *) x)); } static void *_p_iPortalCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iPortalCallback *) x)); } static void *_p_iSkeletonBoneUpdateCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonBoneUpdateCallback *) x)); } static void *_p_iSkeletonScriptCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonScriptCallback *) x)); } static void *_p_iSkeletonUpdateCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonUpdateCallback *) x)); } static void *_p_iMeshObjectDrawCallbackTo_p_iBase(void *x) { return (void *)((iBase *) ((iMeshObjectDrawCallback *) x)); } static void *_p_iImageTo_p_iBase(void *x) { return (void *)((iBase *) ((iImage *) x)); } static void *_p_iDocumentSystemTo_p_iBase(void *x) { return (void *)((iBase *) ((iDocumentSystem *) x)); } static void *_p_iCelRegionTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelRegion *) x)); } static void *_p_iPcMechanicsSystemTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMechanicsSystem *) x)); } static void *_p_iDynamicSystemTo_p_iBase(void *x) { return (void *)((iBase *) ((iDynamicSystem *) x)); } static void *_p_iCollideSystemTo_p_iBase(void *x) { return (void *)((iBase *) ((iCollideSystem *) x)); } static void *_p_iParticleSystemTo_p_iBase(void *x) { return (void *)((iBase *) (iParticleSystemBase *) ((iParticleSystem *) x)); } static void *_p_iPcRegionTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcRegion *) x)); } static void *_p_iRegionTo_p_iBase(void *x) { return (void *)((iBase *) ((iRegion *) x)); } static void *_p_iStringArrayTo_p_iBase(void *x) { return (void *)((iBase *) ((iStringArray *) x)); } static void *_p_iSCFTo_p_iBase(void *x) { return (void *)((iBase *) ((iSCF *) x)); } static void *_p_iCelZoneTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelZone *) x)); } static void *_p_iCelEntityIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelEntityIterator *) x)); } static void *_p_iReporterIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iReporterIterator *) x)); } static void *_p_iDocumentNodeIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iDocumentNodeIterator *) x)); } static void *_p_iDocumentAttributeIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iDocumentAttributeIterator *) x)); } static void *_p_iConfigIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iConfigIterator *) x)); } static void *_p_iPluginIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iPluginIterator *) x)); } static void *_p_iEventAttributeIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iEventAttributeIterator *) x)); } static void *_p_iObjectRegistryIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iObjectRegistryIterator *) x)); } static void *_p_iObjectIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iObjectIterator *) x)); } static void *_p_iMeshWrapperIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iMeshWrapperIterator *) x)); } static void *_p_iSectorIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iSectorIterator *) x)); } static void *_p_iLightIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iLightIterator *) x)); } static void *_p_iVisibilityObjectIteratorTo_p_iBase(void *x) { return (void *)((iBase *) ((iVisibilityObjectIterator *) x)); } static void *_p_iEventOutletTo_p_iBase(void *x) { return (void *)((iBase *) ((iEventOutlet *) x)); } static void *_p_iColoredVerticesTo_p_iBase(void *x) { return (void *)((iBase *) (iArrayReadOnly *)(iArrayChangeElements *)(iArrayChangeAll *) ((iColoredVertices *) x)); } static void *_p_iSndSysSoftwareFilter3DTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysSoftwareFilter3D *) x)); } static void *_p_iCelPropertyClassListTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelPropertyClassList *) x)); } static void *_p_iScriptObjectTo_p_iBase(void *x) { return (void *)((iBase *) ((iScriptObject *) x)); } static void *_p_iMeshObjectTo_p_iBase(void *x) { return (void *)((iBase *) ((iMeshObject *) x)); } static void *_p_iArrayReadOnlyTcsSprite2DVertex_tTo_p_iBase(void *x) { return (void *)((iBase *) ((iArrayReadOnly *) x)); } static void *_p_iArrayChangeElementsTcsSprite2DVertex_tTo_p_iBase(void *x) { return (void *)((iBase *) (iArrayReadOnly *) ((iArrayChangeElements *) x)); } static void *_p_iArrayChangeAllTcsSprite2DVertex_tTo_p_iBase(void *x) { return (void *)((iBase *) (iArrayReadOnly *)(iArrayChangeElements *) ((iArrayChangeAll *) x)); } static void *_p_iPcMechanicsObjectTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMechanicsObject *) x)); } static void *_p_iObjectTo_p_iBase(void *x) { return (void *)((iBase *) ((iObject *) x)); } static void *_p_iVisibilityObjectTo_p_iBase(void *x) { return (void *)((iBase *) ((iVisibilityObject *) x)); } static void *_p_iPcProjectileTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcProjectile *) x)); } static void *_p_iBillboardEventHandlerTo_p_iBase(void *x) { return (void *)((iBase *) ((iBillboardEventHandler *) x)); } static void *_p__csPyEventHandlerTo_p_iBase(void *x) { return (void *)((iBase *) (iEventHandler *) ((_csPyEventHandler *) x)); } static void *_p_iEventHandlerTo_p_iBase(void *x) { return (void *)((iBase *) ((iEventHandler *) x)); } static void *_p_iAnimTimeUpdateHandlerTo_p_iBase(void *x) { return (void *)((iBase *) ((iAnimTimeUpdateHandler *) x)); } static void *_p_iFrustumViewTo_p_iBase(void *x) { return (void *)((iBase *) ((iFrustumView *) x)); } static void *_p_iSequenceWrapperTo_p_iBase(void *x) { return (void *)((iBase *) ((iSequenceWrapper *) x)); } static void *_p_iSndSysWrapperTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysWrapper *) x)); } static void *_p_iMeshFactoryWrapperTo_p_iBase(void *x) { return (void *)((iBase *) ((iMeshFactoryWrapper *) x)); } static void *_p_iMeshWrapperTo_p_iBase(void *x) { return (void *)((iBase *) ((iMeshWrapper *) x)); } static void *_p_iMaterialWrapperTo_p_iBase(void *x) { return (void *)((iBase *) ((iMaterialWrapper *) x)); } static void *_p_iTextureWrapperTo_p_iBase(void *x) { return (void *)((iBase *) ((iTextureWrapper *) x)); } static void *_p_iODEUniversalJointTo_p_iBase(void *x) { return (void *)((iBase *) (iODEGeneralJointState *) ((iODEUniversalJoint *) x)); } static void *_p_iODEBallJointTo_p_iBase(void *x) { return (void *)((iBase *) ((iODEBallJoint *) x)); } static void *_p_iAwsKeyTo_p_iBase(void *x) { return (void *)((iBase *) ((iAwsKey *) x)); } static void *_p_iMapNodeTo_p_iBase(void *x) { return (void *)((iBase *) ((iMapNode *) x)); } static void *_p_iGeneralMeshSubMeshTo_p_iBase(void *x) { return (void *)((iBase *) ((iGeneralMeshSubMesh *) x)); } static void *_p_iFileTo_p_iBase(void *x) { return (void *)((iBase *) ((iFile *) x)); } static void *_p_iSkeletonGraveyardTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonGraveyard *) x)); } static void *_p_iPathTo_p_iBase(void *x) { return (void *)((iBase *) ((iPath *) x)); } static void *_p_iCelPropertyClassTemplateTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelPropertyClassTemplate *) x)); } static void *_p_iCelEntityTemplateTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelEntityTemplate *) x)); } static void *_p_iCelBehaviourTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelBehaviour *) x)); } static void *_p_iLoaderStatusTo_p_iBase(void *x) { return (void *)((iBase *) ((iLoaderStatus *) x)); } static void *_p_iMeshListTo_p_iBase(void *x) { return (void *)((iBase *) ((iMeshList *) x)); } static void *_p_iConsoleWatcherTo_p_iBase(void *x) { return (void *)((iBase *) ((iConsoleWatcher *) x)); } static void *_p_iAwsConnectionKeyTo_p_iBase(void *x) { return (void *)((iBase *) (iAwsKey *) ((iAwsConnectionKey *) x)); } static void *_p_iTerraSamplerTo_p_iBase(void *x) { return (void *)((iBase *) ((iTerraSampler *) x)); } static void *_p_iParticleEmitterTo_p_iBase(void *x) { return (void *)((iBase *) ((iParticleEmitter *) x)); } static void *_p_iCelInventorySpaceTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelInventorySpace *) x)); } static void *_p_iArrayReadOnlyTiSceneNode_p_tTo_p_iBase(void *x) { return (void *)((iBase *) ((iArrayReadOnly *) x)); } static void *_p_iAwsSinkTo_p_iBase(void *x) { return (void *)((iBase *) ((iAwsSink *) x)); } static void *_p_iPcDamageTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcDamage *) x)); } static void *_p_iFontServerTo_p_iBase(void *x) { return (void *)((iBase *) ((iFontServer *) x)); } static void *_p_iSndSysRendererSoftwareTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysRendererSoftware *) x)); } static void *_p_iSndSysSourceSoftwareTo_p_iBase(void *x) { return (void *)((iBase *) (iSndSysSource *) ((iSndSysSourceSoftware *) x)); } static void *_p_iPcLinearMovementTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcLinearMovement *) x)); } static void *_p_iParticleBuiltinEmitterBoxTo_p_iBase(void *x) { return (void *)((iBase *) (iParticleEmitter *)(iParticleBuiltinEmitterBase *) ((iParticleBuiltinEmitterBox *) x)); } static void *_p_iParticleSystemBaseTo_p_iBase(void *x) { return (void *)((iBase *) ((iParticleSystemBase *) x)); } static void *_p_iVisibilityCullerTo_p_iBase(void *x) { return (void *)((iBase *) ((iVisibilityCuller *) x)); } static void *_p_iSkeletonScriptTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonScript *) x)); } static void *_p_iParticleEffectorTo_p_iBase(void *x) { return (void *)((iBase *) ((iParticleEffector *) x)); } static void *_p_iScriptTo_p_iBase(void *x) { return (void *)((iBase *) ((iScript *) x)); } static void *_p_iAwsPointKeyTo_p_iBase(void *x) { return (void *)((iBase *) (iAwsKey *) ((iAwsPointKey *) x)); } static void *_p_iSkeletonSocketTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonSocket *) x)); } static void *_p_iSpriteCal3DSocketTo_p_iBase(void *x) { return (void *)((iBase *) (iSpriteSocket *) ((iSpriteCal3DSocket *) x)); } static void *_p_iSceneNodeArrayTo_p_iBase(void *x) { return (void *)((iBase *) (iArrayReadOnly *) ((iSceneNodeArray *) x)); } static void *_p_iLoaderTo_p_iBase(void *x) { return (void *)((iBase *) ((iLoader *) x)); } static void *_p_iSndSysLoaderTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysLoader *) x)); } static void *_p_iSpriteSocketTo_p_iBase(void *x) { return (void *)((iBase *) ((iSpriteSocket *) x)); } static void *_p_iAwsIntKeyTo_p_iBase(void *x) { return (void *)((iBase *) (iAwsKey *) ((iAwsIntKey *) x)); } static void *_p_iPcInventoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcInventory *) x)); } static void *_p_iGenMeshAnimationControlTo_p_iBase(void *x) { return (void *)((iBase *) ((iGenMeshAnimationControl *) x)); } static void *_p_iDocumentAttributeTo_p_iBase(void *x) { return (void *)((iBase *) ((iDocumentAttribute *) x)); } static void *_p_iSpriteFrameTo_p_iBase(void *x) { return (void *)((iBase *) ((iSpriteFrame *) x)); } static void *_p_iShaderTo_p_iBase(void *x) { return (void *)((iBase *) (iShaderVariableContext *) ((iShader *) x)); } static void *_p_iTerrainObjectStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iTerrainObjectState *) x)); } static void *_p_iODEGeneralJointStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iODEGeneralJointState *) x)); } static void *_p_iODEJointStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iODEJointState *) x)); } static void *_p_iMaterialEngineTo_p_iBase(void *x) { return (void *)((iBase *) ((iMaterialEngine *) x)); } static void *_p_iVirtualClockTo_p_iBase(void *x) { return (void *)((iBase *) ((iVirtualClock *) x)); } static void *_p_iEngineTo_p_iBase(void *x) { return (void *)((iBase *) ((iEngine *) x)); } static void *_p_iPcWheeledTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcWheeled *) x)); } static void *_p_iAwsStringKeyTo_p_iBase(void *x) { return (void *)((iBase *) (iAwsKey *) ((iAwsStringKey *) x)); } static void *_p_iGenMeshAnimationControlTypeTo_p_iBase(void *x) { return (void *)((iBase *) ((iGenMeshAnimationControlType *) x)); } static void *_p_iLightingProcessInfoTo_p_iBase(void *x) { return (void *)((iBase *) (iFrustumViewUserdata *) ((iLightingProcessInfo *) x)); } static void *_p_iPcCommandInputTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcCommandInput *) x)); } static void *_p_iReporterTo_p_iBase(void *x) { return (void *)((iBase *) ((iReporter *) x)); } static void *_p_iCelPropertyClassTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelPropertyClass *) x)); } static void *_p_iAwsRGBKeyTo_p_iBase(void *x) { return (void *)((iBase *) (iAwsKey *) ((iAwsRGBKey *) x)); } static void *_p_iBillboardLayerTo_p_iBase(void *x) { return (void *)((iBase *) ((iBillboardLayer *) x)); } static void *_p_iStringTo_p_iBase(void *x) { return (void *)((iBase *) ((iString *) x)); } static void *_p_iPcCharacteristicsTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcCharacteristics *) x)); } static void *_p_iCelMapFileTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelMapFile *) x)); } static void *_p_iKeyboardDriverTo_p_iBase(void *x) { return (void *)((iBase *) ((iKeyboardDriver *) x)); } static void *_p_iJoystickDriverTo_p_iBase(void *x) { return (void *)((iBase *) ((iJoystickDriver *) x)); } static void *_p_iMouseDriverTo_p_iBase(void *x) { return (void *)((iBase *) ((iMouseDriver *) x)); } static void *_p_iSndSysSoftwareDriverTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysSoftwareDriver *) x)); } static void *_p_iShaderVariableAccessorTo_p_iBase(void *x) { return (void *)((iBase *) ((iShaderVariableAccessor *) x)); } static void *_p_iPcActorMoveTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcActorMove *) x)); } static void *_p_iPcMechanicsBalancedGroupTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMechanicsBalancedGroup *) x)); } static void *_p_iSkeletonScriptKeyFrameTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonScriptKeyFrame *) x)); } static void *_p_iPcBillboardTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcBillboard *) x)); } static void *_p_iBillboardTo_p_iBase(void *x) { return (void *)((iBase *) ((iBillboard *) x)); } static void *_p_iGeneralMeshStateTo_p_iBase(void *x) { return (void *)((iBase *) (iGeneralMeshCommonState *) ((iGeneralMeshState *) x)); } static void *_p_iPcMechanicsThrusterControllerTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMechanicsThrusterController *) x)); } static void *_p_iSequenceTimedOperationTo_p_iBase(void *x) { return (void *)((iBase *) ((iSequenceTimedOperation *) x)); } static void *_p_iPcCraftControllerTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcCraftController *) x)); } static void *_p_iJointTo_p_iBase(void *x) { return (void *)((iBase *) ((iJoint *) x)); } static void *_p_iLightingProcessDataTo_p_iBase(void *x) { return (void *)((iBase *) ((iLightingProcessData *) x)); } static void *_p_iHaloTo_p_iBase(void *x) { return (void *)((iBase *) ((iHalo *) x)); } static void *_p_iEngineSequenceParametersTo_p_iBase(void *x) { return (void *)((iBase *) ((iEngineSequenceParameters *) x)); } static void *_p_iKeyComposerTo_p_iBase(void *x) { return (void *)((iBase *) ((iKeyComposer *) x)); } static void *_p_iBodyGroupTo_p_iBase(void *x) { return (void *)((iBase *) ((iBodyGroup *) x)); } static void *_p_iSndSysRendererTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysRenderer *) x)); } static void *_p_iCelEntityListTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelEntityList *) x)); } static void *_p_iShaderPriorityListTo_p_iBase(void *x) { return (void *)((iBase *) ((iShaderPriorityList *) x)); } static void *_p_iSprite2DUVAnimationFrameTo_p_iBase(void *x) { return (void *)((iBase *) ((iSprite2DUVAnimationFrame *) x)); } static void *_p_iPcMeshSelectTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMeshSelect *) x)); } static void *_p_iDocumentTo_p_iBase(void *x) { return (void *)((iBase *) ((iDocument *) x)); } static void *_p_iMaterialListTo_p_iBase(void *x) { return (void *)((iBase *) ((iMaterialList *) x)); } static void *_p_iSimpleFormerStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iSimpleFormerState *) x)); } static void *_p_iViewTo_p_iBase(void *x) { return (void *)((iBase *) ((iView *) x)); } static void *_p_iLightTo_p_iBase(void *x) { return (void *)((iBase *) ((iLight *) x)); } static void *_p_iPcMechanicsJointTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMechanicsJoint *) x)); } static void *_p_iMaterialTo_p_iBase(void *x) { return (void *)((iBase *) (iShaderVariableContext *) ((iMaterial *) x)); } static void *_p_iConfigFileTo_p_iBase(void *x) { return (void *)((iBase *) ((iConfigFile *) x)); } static void *_p_iThingStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iThingState *) x)); } static void *_p_iEventTo_p_iBase(void *x) { return (void *)((iBase *) ((iEvent *) x)); } static void *_p_iPcHoverTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcHover *) x)); } static void *_p_iPcMeshTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMesh *) x)); } static void *_p_iDynamicsSystemColliderTo_p_iBase(void *x) { return (void *)((iBase *) ((iDynamicsSystemCollider *) x)); } static void *_p_iColliderTo_p_iBase(void *x) { return (void *)((iBase *) ((iCollider *) x)); } static void *_p_iPcTimerTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcTimer *) x)); } static void *_p_iDocumentNodeTo_p_iBase(void *x) { return (void *)((iBase *) ((iDocumentNode *) x)); } static void *_p_iAwsComponentNodeTo_p_iBase(void *x) { return (void *)((iBase *) (iAwsKey *)(iAwsKeyContainer *) ((iAwsComponentNode *) x)); } static void *_p_iSequenceTriggerTo_p_iBase(void *x) { return (void *)((iBase *) ((iSequenceTrigger *) x)); } static void *_p_iGraphics2DTo_p_iBase(void *x) { return (void *)((iBase *) ((iGraphics2D *) x)); } static void *_p_iCameraPositionTo_p_iBase(void *x) { return (void *)((iBase *) ((iCameraPosition *) x)); } static void *_p_iPolygonMeshTo_p_iBase(void *x) { return (void *)((iBase *) ((iPolygonMesh *) x)); } static void *_p_iTextureListTo_p_iBase(void *x) { return (void *)((iBase *) ((iTextureList *) x)); } static void *_p_iAwsTo_p_iBase(void *x) { return (void *)((iBase *) ((iAws *) x)); } static void *_p_iPcMechanicsThrusterTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMechanicsThruster *) x)); } static void *_p_iPcMovableConstraintTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMovableConstraint *) x)); } static void *_p_iODEHinge2JointTo_p_iBase(void *x) { return (void *)((iBase *) (iODEGeneralJointState *) ((iODEHinge2Joint *) x)); } static void *_p_iODEAMotorJointTo_p_iBase(void *x) { return (void *)((iBase *) (iODEGeneralJointState *) ((iODEAMotorJoint *) x)); } static void *_p_iODESliderJointTo_p_iBase(void *x) { return (void *)((iBase *) (iODEGeneralJointState *) ((iODESliderJoint *) x)); } static void *_p_iParticleBuiltinEmitterConeTo_p_iBase(void *x) { return (void *)((iBase *) (iParticleEmitter *)(iParticleBuiltinEmitterBase *) ((iParticleBuiltinEmitterCone *) x)); } static void *_p_iSectorListTo_p_iBase(void *x) { return (void *)((iBase *) ((iSectorList *) x)); } static void *_p_iPolygonHandleTo_p_iBase(void *x) { return (void *)((iBase *) ((iPolygonHandle *) x)); } static void *_p_iTextureHandleTo_p_iBase(void *x) { return (void *)((iBase *) ((iTextureHandle *) x)); } static void *_p_iCommandLineParserTo_p_iBase(void *x) { return (void *)((iBase *) ((iCommandLineParser *) x)); } static void *_p_scfImplementation1TcsPath_iPath_tTo_p_iBase(void *x) { return (void *)((iBase *) (iPath *) ((scfImplementation1 *) x)); } static void *_p_iFontDeleteNotifyTo_p_iBase(void *x) { return (void *)((iBase *) ((iFontDeleteNotify *) x)); } static void *_p_iAwsSlotTo_p_iBase(void *x) { return (void *)((iBase *) ((iAwsSlot *) x)); } static void *_p_iCelBlLayerTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelBlLayer *) x)); } static void *_p_iCelPlLayerTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelPlLayer *) x)); } static void *_p_iTerraFormerTo_p_iBase(void *x) { return (void *)((iBase *) ((iTerraFormer *) x)); } static void *_p_iMeshFactoryListTo_p_iBase(void *x) { return (void *)((iBase *) ((iMeshFactoryList *) x)); } static void *_p_iPcSoundSourceTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcSoundSource *) x)); } static void *_p_iSndSysSourceTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysSource *) x)); } static void *_p_iAwsSourceTo_p_iBase(void *x) { return (void *)((iBase *) ((iAwsSource *) x)); } static void *_p_iGraphics3DTo_p_iBase(void *x) { return (void *)((iBase *) ((iGraphics3D *) x)); } static void *_p_iSkeletonBoneRagdollInfoTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonBoneRagdollInfo *) x)); } static void *_p_iSkeletonTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeleton *) x)); } static void *_p_iArrayChangeAllTcsShaderVariable_p_tTo_p_iBase(void *x) { return (void *)((iBase *) (iArrayReadOnly *)(iArrayChangeElements *) ((iArrayChangeAll *) x)); } static void *_p_iArrayChangeElementsTcsShaderVariable_p_tTo_p_iBase(void *x) { return (void *)((iBase *) (iArrayReadOnly *) ((iArrayChangeElements *) x)); } static void *_p_iArrayReadOnlyTcsShaderVariable_p_tTo_p_iBase(void *x) { return (void *)((iBase *) ((iArrayReadOnly *) x)); } static void *_p_iMeshObjectTypeTo_p_iBase(void *x) { return (void *)((iBase *) ((iMeshObjectType *) x)); } static void *_p_iRigidBodyTo_p_iBase(void *x) { return (void *)((iBase *) ((iRigidBody *) x)); } static void *_p_iSndSysSourceSoftware3DTo_p_iBase(void *x) { return (void *)((iBase *) (iSndSysSource *)(iSndSysSourceSoftware *) ((iSndSysSourceSoftware3D *) x)); } static void *_p_iPcZoneManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcZoneManager *) x)); } static void *_p_iBillboardManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iBillboardManager *) x)); } static void *_p_iEngineSequenceManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iEngineSequenceManager *) x)); } static void *_p_iTextureManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iTextureManager *) x)); } static void *_p_iShaderManagerTo_p_iBase(void *x) { return (void *)((iBase *) (iShaderVariableContext *) ((iShaderManager *) x)); } static void *_p_iNativeWindowManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iNativeWindowManager *) x)); } static void *_p_iConfigManagerTo_p_iBase(void *x) { return (void *)((iBase *) (iConfigFile *) ((iConfigManager *) x)); } static void *_p_iPluginManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iPluginManager *) x)); } static void *_p_iCacheManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iCacheManager *) x)); } static void *_p_iSndSysManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysManager *) x)); } static void *_p_iAwsPrefManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iAwsPrefManager *) x)); } static void *_p_iAwsSinkManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iAwsSinkManager *) x)); } static void *_p_iAwsLayoutManagerTo_p_iBase(void *x) { return (void *)((iBase *) ((iAwsLayoutManager *) x)); } static void *_p_iDynamicsTo_p_iBase(void *x) { return (void *)((iBase *) ((iDynamics *) x)); } static void *_p_iParameterESMTo_p_iBase(void *x) { return (void *)((iBase *) ((iParameterESM *) x)); } static void *_p_iCelConsoleCommandTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelConsoleCommand *) x)); } static void *_p_iVFSTo_p_iBase(void *x) { return (void *)((iBase *) ((iVFS *) x)); } static void *_p_iCelConsoleTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelConsole *) x)); } static void *_p_iDebugHelperTo_p_iBase(void *x) { return (void *)((iBase *) ((iDebugHelper *) x)); } static void *_p_iParticleBuiltinEffectorForceTo_p_iBase(void *x) { return (void *)((iBase *) (iParticleEffector *) ((iParticleBuiltinEffectorForce *) x)); } static void *_p_iAwsRectKeyTo_p_iBase(void *x) { return (void *)((iBase *) (iAwsKey *) ((iAwsRectKey *) x)); } static void *_p_iCelPropertyClassFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelPropertyClassFactory *) x)); } static void *_p_iFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iFactory *) x)); } static void *_p_iAwsComponentFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iAwsComponentFactory *) x)); } static void *_p_iAwsKeyFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iAwsKeyFactory *) x)); } static void *_p_iAwsConnectionNodeFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iAwsConnectionNodeFactory *) x)); } static void *_p_iGenMeshAnimationControlFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iGenMeshAnimationControlFactory *) x)); } static void *_p_iSkeletonBoneFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonBoneFactory *) x)); } static void *_p_iSkeletonSocketFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonSocketFactory *) x)); } static void *_p_iSkeletonFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iSkeletonFactory *) x)); } static void *_p_iMeshObjectFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iMeshObjectFactory *) x)); } static void *_p_iParticleSystemFactoryTo_p_iBase(void *x) { return (void *)((iBase *) (iParticleSystemBase *) ((iParticleSystemFactory *) x)); } static void *_p_iParticleBuiltinEmitterFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iParticleBuiltinEmitterFactory *) x)); } static void *_p_iParticleBuiltinEffectorFactoryTo_p_iBase(void *x) { return (void *)((iBase *) ((iParticleBuiltinEffectorFactory *) x)); } static void *_p_iCelEntityTrackerTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelEntityTracker *) x)); } static void *_p_iParticleBuiltinEffectorVelocityFieldTo_p_iBase(void *x) { return (void *)((iBase *) (iParticleEffector *) ((iParticleBuiltinEffectorVelocityField *) x)); } static void *_p_iPcDefaultCameraTo_p_iBase(void *x) { return (void *)((iBase *) (iPcCamera *) ((iPcDefaultCamera *) x)); } static void *_p_iPcSimpleCameraTo_p_iBase(void *x) { return (void *)((iBase *) (iPcCamera *) ((iPcSimpleCamera *) x)); } static void *_p_iPcCameraTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcCamera *) x)); } static void *_p_iCameraTo_p_iBase(void *x) { return (void *)((iBase *) ((iCamera *) x)); } static void *_p_iFrustumViewUserdataTo_p_iBase(void *x) { return (void *)((iBase *) ((iFrustumViewUserdata *) x)); } static void *_p_iObjectModelTo_p_iBase(void *x) { return (void *)((iBase *) ((iObjectModel *) x)); } static void *_p_iPcMovableTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcMovable *) x)); } static void *_p_iMovableTo_p_iBase(void *x) { return (void *)((iBase *) ((iMovable *) x)); } static void *_p_iNativeWindowTo_p_iBase(void *x) { return (void *)((iBase *) ((iNativeWindow *) x)); } static void *_p_iParticleBuiltinEmitterBaseTo_p_iBase(void *x) { return (void *)((iBase *) (iParticleEmitter *) ((iParticleBuiltinEmitterBase *) x)); } static void *_p_iSndSysStreamTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysStream *) x)); } static void *_p_iLoaderPluginTo_p_iBase(void *x) { return (void *)((iBase *) ((iLoaderPlugin *) x)); } static void *_p_iBinaryLoaderPluginTo_p_iBase(void *x) { return (void *)((iBase *) ((iBinaryLoaderPlugin *) x)); } static void *_p_iAwsKeyContainerTo_p_iBase(void *x) { return (void *)((iBase *) (iAwsKey *) ((iAwsKeyContainer *) x)); } static void *_p_iPortalContainerTo_p_iBase(void *x) { return (void *)((iBase *) ((iPortalContainer *) x)); } static void *_p_iImageIOTo_p_iBase(void *x) { return (void *)((iBase *) ((iImageIO *) x)); } static void *_p_iSprite2DStateTo_p_iBase(void *x) { return (void *)((iBase *) (iSprite2DFactoryState *) ((iSprite2DState *) x)); } static void *_p_iSprite3DStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iSprite3DState *) x)); } static void *_p_iSpriteCal3DStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iSpriteCal3DState *) x)); } static void *_p_iDataBufferTo_p_iBase(void *x) { return (void *)((iBase *) ((iDataBuffer *) x)); } static void *_p_iShaderCompilerTo_p_iBase(void *x) { return (void *)((iBase *) ((iShaderCompiler *) x)); } static void *_p_iODEHingeJointTo_p_iBase(void *x) { return (void *)((iBase *) (iODEGeneralJointState *) ((iODEHingeJoint *) x)); } static void *_p_iParticleBuiltinEmitterSphereTo_p_iBase(void *x) { return (void *)((iBase *) (iParticleEmitter *)(iParticleBuiltinEmitterBase *) ((iParticleBuiltinEmitterSphere *) x)); } static void *_p_iSuperLightmapTo_p_iBase(void *x) { return (void *)((iBase *) ((iSuperLightmap *) x)); } static void *_p_iRendererLightmapTo_p_iBase(void *x) { return (void *)((iBase *) ((iRendererLightmap *) x)); } static void *_p_iParticleBuiltinEmitterCylinderTo_p_iBase(void *x) { return (void *)((iBase *) (iParticleEmitter *)(iParticleBuiltinEmitterBase *) ((iParticleBuiltinEmitterCylinder *) x)); } static void *_p_iComponentTo_p_iBase(void *x) { return (void *)((iBase *) ((iComponent *) x)); } static void *_p_iAwsComponentTo_p_iBase(void *x) { return (void *)((iBase *) (iAwsSource *) ((iAwsComponent *) x)); } static void *_p_iSpriteActionTo_p_iBase(void *x) { return (void *)((iBase *) ((iSpriteAction *) x)); } static void *_p_iGeneralFactoryStateTo_p_iBase(void *x) { return (void *)((iBase *) (iGeneralMeshCommonState *) ((iGeneralFactoryState *) x)); } static void *_p_iSprite2DFactoryStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iSprite2DFactoryState *) x)); } static void *_p_iSprite3DFactoryStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iSprite3DFactoryState *) x)); } static void *_p_iSpriteCal3DFactoryStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iSpriteCal3DFactoryState *) x)); } static void *_p_iThingFactoryStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iThingFactoryState *) x)); } static void *_p_iTerrainFactoryStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iTerrainFactoryState *) x)); } static void *_p_iPcTooltipTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcTooltip *) x)); } static void *_p_celOneParameterBlockTo_p_iBase(void *x) { return (void *)((iBase *) (iCelParameterBlock *) ((celOneParameterBlock *) x)); } static void *_p_celVariableParameterBlockTo_p_iBase(void *x) { return (void *)((iBase *) (iCelParameterBlock *) ((celVariableParameterBlock *) x)); } static void *_p_celGenericParameterBlockTo_p_iBase(void *x) { return (void *)((iBase *) (iCelParameterBlock *) ((celGenericParameterBlock *) x)); } static void *_p_iCelParameterBlockTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelParameterBlock *) x)); } static void *_p_iMissingLoaderDataTo_p_iBase(void *x) { return (void *)((iBase *) ((iMissingLoaderData *) x)); } static void *_p_iCelInventorySpaceSlotTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelInventorySpaceSlot *) x)); } static void *_p_iShaderVarStackTo_p_iBase(void *x) { return (void *)((iBase *) (iArrayReadOnly *)(iArrayChangeElements *)(iArrayChangeAll *) ((iShaderVarStack *) x)); } static void *_p_iGeneralMeshCommonStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iGeneralMeshCommonState *) x)); } static void *_p_iSndSysDataTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysData *) x)); } static void *_p_iPcSolidTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcSolid *) x)); } static void *_p_iSndSysSoftwareOutputFilterTo_p_iBase(void *x) { return (void *)((iBase *) ((iSndSysSoftwareOutputFilter *) x)); } static void *_p_iODEDynamicStateTo_p_iBase(void *x) { return (void *)((iBase *) ((iODEDynamicState *) x)); } static void *_p_iSprite2DUVAnimationTo_p_iBase(void *x) { return (void *)((iBase *) ((iSprite2DUVAnimation *) x)); } static void *_p_iCelEntityTo_p_iBase(void *x) { return (void *)((iBase *) ((iCelEntity *) x)); } static void *_p_iEventPlugTo_p_iBase(void *x) { return (void *)((iBase *) ((iEventPlug *) x)); } static void *_p_csPathTo_p_iBase(void *x) { return (void *)((iBase *) (iPath *)(scfImplementation1 *) ((csPath *) x)); } static void *_p_iEventCordTo_p_iBase(void *x) { return (void *)((iBase *) ((iEventCord *) x)); } static void *_p_iPcGravityTo_p_iBase(void *x) { return (void *)((iBase *) ((iPcGravity *) x)); } static void *_p_iPortalTo_p_iBase(void *x) { return (void *)((iBase *) ((iPortal *) x)); } static void *_p_celInitializerTo_p_csInitializer(void *x) { return (void *)((csInitializer *) ((celInitializer *) x)); } static void *_p_iSndSysSourceSoftware3DTo_p_iSndSysSource(void *x) { return (void *)((iSndSysSource *) (iSndSysSourceSoftware *) ((iSndSysSourceSoftware3D *) x)); } static void *_p_iSndSysSourceSoftwareTo_p_iSndSysSource(void *x) { return (void *)((iSndSysSource *) ((iSndSysSourceSoftware *) x)); } static void *_p_celGenericParameterBlockTo_p_iCelParameterBlock(void *x) { return (void *)((iCelParameterBlock *) ((celGenericParameterBlock *) x)); } static void *_p_celVariableParameterBlockTo_p_iCelParameterBlock(void *x) { return (void *)((iCelParameterBlock *) ((celVariableParameterBlock *) x)); } static void *_p_celOneParameterBlockTo_p_iCelParameterBlock(void *x) { return (void *)((iCelParameterBlock *) ((celOneParameterBlock *) x)); } static void *_p_csColor4To_p_csColor(void *x) { return (void *)((csColor *) ((csColor4 *) x)); } static swig_type_info _swigt__p_AllocatorType = {"_p_AllocatorType", "AllocatorType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_CapacityHandlerType = {"_p_CapacityHandlerType", "CapacityHandlerType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_ContainedType = {"_p_ContainedType", "ContainedType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_ElementHandlerType = {"_p_ElementHandlerType", "ElementHandlerType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_FileFormatDescription = {"_p_FileFormatDescription", "FileFormatDescription *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_HashType = {"_p_HashType", "HashType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_SndSysFilterLocation = {"_p_SndSysFilterLocation", "enum SndSysFilterLocation *|SndSysFilterLocation *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_ThisType = {"_p_ThisType", "ThisType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_ValueType = {"_p_ValueType", "ValueType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p__csKeyCharType = {"_p__csKeyCharType", "enum _csKeyCharType *|csKeyCharType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p__csKeyEventType = {"_p__csKeyEventType", "enum _csKeyEventType *|csKeyEventType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p__csKeyModifierNumType = {"_p__csKeyModifierNumType", "enum _csKeyModifierNumType *|csKeyModifierNumType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p__csKeyModifierType = {"_p__csKeyModifierType", "enum _csKeyModifierType *|csKeyModifierType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p__csKeyModifiers = {"_p__csKeyModifiers", "_csKeyModifiers *|csKeyModifiers *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p__csMouseCursorID = {"_p__csMouseCursorID", "enum _csMouseCursorID *|csMouseCursorID *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p__csMouseEventType = {"_p__csMouseEventType", "enum _csMouseEventType *|csMouseEventType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_basetype = {"_p_basetype", "basetype *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_bool = {"_p_bool", "bool *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celData = {"_p_celData", "celData *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celDataType = {"_p_celDataType", "enum celDataType *|celDataType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celData_value = {"_p_celData_value", "celData_value *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celData_value_col = {"_p_celData_value_col", "celData_value_col *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celData_value_par = {"_p_celData_value_par", "celData_value_par *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celData_value_v = {"_p_celData_value_v", "celData_value_v *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celGenericParameterBlock = {"_p_celGenericParameterBlock", "celGenericParameterBlock *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celInitializer = {"_p_celInitializer", "celInitializer *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celOneParameterBlock = {"_p_celOneParameterBlock", "celOneParameterBlock *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celPersistenceResult = {"_p_celPersistenceResult", "celPersistenceResult *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celPersistenceType = {"_p_celPersistenceType", "celPersistenceType *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celStabiliserFunction = {"_p_celStabiliserFunction", "celStabiliserFunction *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_celVariableParameterBlock = {"_p_celVariableParameterBlock", "celVariableParameterBlock *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csArrayTcsImageIOFileFormatDescription_const_p_csArrayElementHandlerTcsImageIOFileFormatDescription_const_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t = {"_p_csArrayTcsImageIOFileFormatDescription_const_p_csArrayElementHandlerTcsImageIOFileFormatDescription_const_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t", "csArray,CS::Memory::AllocatorMalloc,csArrayCapacityDefault > *|csImageIOFileFormatDescriptions *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csArrayTcsPluginRequest_csArrayElementHandlerTcsPluginRequest_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t = {"_p_csArrayTcsPluginRequest_csArrayElementHandlerTcsPluginRequest_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t", "csArray *|csArray,CS::Memory::AllocatorMalloc,csArrayCapacityDefault > *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csArrayTcsShaderVariable_p_csArrayElementHandlerTcsShaderVariable_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t = {"_p_csArrayTcsShaderVariable_p_csArrayElementHandlerTcsShaderVariable_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t", "csArray,CS::Memory::AllocatorMalloc,csArrayCapacityDefault > *|csShaderVarStack *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t = {"_p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t", "csArray *|csArray,CS::Memory::AllocatorMalloc,csArrayCapacityDefault > *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csBox3 = {"_p_csBox3", "csBox3 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csColor = {"_p_csColor", "csColor *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csColor4 = {"_p_csColor4", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_csFlags = {"_p_csFlags", "csFlags *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csHashTcsStrKey_csStrKey_CS__Memory__AllocatorMalloc_t = {"_p_csHashTcsStrKey_csStrKey_CS__Memory__AllocatorMalloc_t", "csHash *|celEntityTemplateParams *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csInitializer = {"_p_csInitializer", "csInitializer *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csMatrix3 = {"_p_csMatrix3", "csMatrix3 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csXRotMatrix3 = {"_p_csXRotMatrix3", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_csYRotMatrix3 = {"_p_csYRotMatrix3", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_csZRotMatrix3 = {"_p_csZRotMatrix3", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_csXScaleMatrix3 = {"_p_csXScaleMatrix3", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_csYScaleMatrix3 = {"_p_csYScaleMatrix3", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_csZScaleMatrix3 = {"_p_csZScaleMatrix3", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_csOrthoTransform = {"_p_csOrthoTransform", "csOrthoTransform *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csPlane3 = {"_p_csPlane3", "csPlane3 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csPtrTiCelDataBuffer_t = {"_p_csPtrTiCelDataBuffer_t", "csPtr *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csPtrTiCelEntityIterator_t = {"_p_csPtrTiCelEntityIterator_t", "csPtr *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csPtrTiCelPropertyClass_t = {"_p_csPtrTiCelPropertyClass_t", "csPtr *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csPtrTiRigidBody_t = {"_p_csPtrTiRigidBody_t", "csPtr *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csRefArrayTiObject_t = {"_p_csRefArrayTiObject_t", "csRefArray *|csObjectContainer *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csRefTiBase_t = {"_p_csRefTiBase_t", "csRef *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t = {"_p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t", "csSet *|csSet *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csString = {"_p_csString", "csString *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csStringArray = {"_p_csStringArray", "csStringArray *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csVector2 = {"_p_csVector2", "csVector2 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_csVector3 = {"_p_csVector3", "csVector3 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_f_p_iMeshWrapper_p_iFrustumView_bool__void = {"_p_f_p_iMeshWrapper_p_iFrustumView_bool__void", "void (*)(iMeshWrapper *,iFrustumView *,bool)|csFrustumViewObjectFunc *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_float = {"_p_float", "float *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iAwsComponent = {"_p_iAwsComponent", "iAwsComponent *|iAwsWindow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iBase = {"_p_iBase", "iBase *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iSaver = {"_p_iSaver", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iODEDynamicSystemState = {"_p_iODEDynamicSystemState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEventQueue = {"_p_iEventQueue", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iShaderVariableContext = {"_p_iShaderVariableContext", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsFloatKey = {"_p_iAwsFloatKey", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iCameraPositionList = {"_p_iCameraPositionList", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iRegionList = {"_p_iRegionList", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_scfImplementation1TcsPath_iPath_t = {"_p_scfImplementation1TcsPath_iPath_t", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSceneNode = {"_p_iSceneNode", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleBuiltinEffectorLinColor = {"_p_iParticleBuiltinEffectorLinColor", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iVFS = {"_p_iVFS", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iThingEnvironment = {"_p_iThingEnvironment", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iClipper2D = {"_p_iClipper2D", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEventNameRegistry = {"_p_iEventNameRegistry", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonBone = {"_p_iSkeletonBone", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iStringSet = {"_p_iStringSet", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iGenMeshSkeletonControlState = {"_p_iGenMeshSkeletonControlState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iLightList = {"_p_iLightList", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iVisibilityCullerListener = {"_p_iVisibilityCullerListener", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iObjectModelListener = {"_p_iObjectModelListener", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iStandardReporterListener = {"_p_iStandardReporterListener", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iReporterListener = {"_p_iReporterListener", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iObjectNameChangeListener = {"_p_iObjectNameChangeListener", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMovableListener = {"_p_iMovableListener", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iCameraSectorListener = {"_p_iCameraSectorListener", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iImage = {"_p_iImage", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMovieRecorder = {"_p_iMovieRecorder", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iODEFrameUpdateCallback = {"_p_iODEFrameUpdateCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDynamicsColliderCollisionCallback = {"_p_iDynamicsColliderCollisionCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDynamicsCollisionCallback = {"_p_iDynamicsCollisionCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDynamicsMoveCallback = {"_p_iDynamicsMoveCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iOffscreenCanvasCallback = {"_p_iOffscreenCanvasCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysRendererCallback = {"_p_iSndSysRendererCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysStreamCallback = {"_p_iSndSysStreamCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMeshDrawCallback = {"_p_iMeshDrawCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iTextureCallback = {"_p_iTextureCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEngineSectorCallback = {"_p_iEngineSectorCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEngineFrameCallback = {"_p_iEngineFrameCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iLightVisibleCallback = {"_p_iLightVisibleCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSectorMeshCallback = {"_p_iSectorMeshCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSectorCallback = {"_p_iSectorCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iLightCallback = {"_p_iLightCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iPortalCallback = {"_p_iPortalCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonBoneUpdateCallback = {"_p_iSkeletonBoneUpdateCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonScriptCallback = {"_p_iSkeletonScriptCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonUpdateCallback = {"_p_iSkeletonUpdateCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMeshObjectDrawCallback = {"_p_iMeshObjectDrawCallback", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDocumentSystem = {"_p_iDocumentSystem", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iCollideSystem = {"_p_iCollideSystem", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleSystem = {"_p_iParticleSystem", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iReporterIterator = {"_p_iReporterIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDocumentNodeIterator = {"_p_iDocumentNodeIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDocumentAttributeIterator = {"_p_iDocumentAttributeIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iConfigIterator = {"_p_iConfigIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iPluginIterator = {"_p_iPluginIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEventAttributeIterator = {"_p_iEventAttributeIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iObjectRegistryIterator = {"_p_iObjectRegistryIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iObjectIterator = {"_p_iObjectIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMeshWrapperIterator = {"_p_iMeshWrapperIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSectorIterator = {"_p_iSectorIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iLightIterator = {"_p_iLightIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iVisibilityObjectIterator = {"_p_iVisibilityObjectIterator", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEventOutlet = {"_p_iEventOutlet", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iColoredVertices = {"_p_iColoredVertices", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysSoftwareFilter3D = {"_p_iSndSysSoftwareFilter3D", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iScriptObject = {"_p_iScriptObject", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMeshObject = {"_p_iMeshObject", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iVisibilityObject = {"_p_iVisibilityObject", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p__csPyEventHandler = {"_p__csPyEventHandler", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEventHandler = {"_p_iEventHandler", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAnimTimeUpdateHandler = {"_p_iAnimTimeUpdateHandler", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iFrustumView = {"_p_iFrustumView", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSequenceWrapper = {"_p_iSequenceWrapper", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysWrapper = {"_p_iSndSysWrapper", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMeshFactoryWrapper = {"_p_iMeshFactoryWrapper", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMaterialWrapper = {"_p_iMaterialWrapper", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iTextureWrapper = {"_p_iTextureWrapper", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iODEUniversalJoint = {"_p_iODEUniversalJoint", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iODEBallJoint = {"_p_iODEBallJoint", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsKey = {"_p_iAwsKey", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMapNode = {"_p_iMapNode", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iGeneralMeshSubMesh = {"_p_iGeneralMeshSubMesh", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonGraveyard = {"_p_iSkeletonGraveyard", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iLoaderStatus = {"_p_iLoaderStatus", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMeshList = {"_p_iMeshList", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iConsoleWatcher = {"_p_iConsoleWatcher", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsConnectionKey = {"_p_iAwsConnectionKey", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iTerraSampler = {"_p_iTerraSampler", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleEmitter = {"_p_iParticleEmitter", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsSink = {"_p_iAwsSink", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iFontServer = {"_p_iFontServer", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysRendererSoftware = {"_p_iSndSysRendererSoftware", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysSourceSoftware = {"_p_iSndSysSourceSoftware", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleBuiltinEmitterBox = {"_p_iParticleBuiltinEmitterBox", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleSystemBase = {"_p_iParticleSystemBase", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iVisibilityCuller = {"_p_iVisibilityCuller", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iFile = {"_p_iFile", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonScript = {"_p_iSkeletonScript", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleEffector = {"_p_iParticleEffector", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iScript = {"_p_iScript", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsPointKey = {"_p_iAwsPointKey", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonSocket = {"_p_iSkeletonSocket", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSpriteCal3DSocket = {"_p_iSpriteCal3DSocket", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSceneNodeArray = {"_p_iSceneNodeArray", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iLoader = {"_p_iLoader", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysLoader = {"_p_iSndSysLoader", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSpriteSocket = {"_p_iSpriteSocket", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsIntKey = {"_p_iAwsIntKey", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iGenMeshAnimationControl = {"_p_iGenMeshAnimationControl", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDocumentAttribute = {"_p_iDocumentAttribute", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSpriteFrame = {"_p_iSpriteFrame", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iShader = {"_p_iShader", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iTerrainObjectState = {"_p_iTerrainObjectState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iODEGeneralJointState = {"_p_iODEGeneralJointState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iODEJointState = {"_p_iODEJointState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMaterialEngine = {"_p_iMaterialEngine", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iVirtualClock = {"_p_iVirtualClock", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEngine = {"_p_iEngine", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsStringKey = {"_p_iAwsStringKey", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iGenMeshAnimationControlType = {"_p_iGenMeshAnimationControlType", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iLightingProcessInfo = {"_p_iLightingProcessInfo", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iReporter = {"_p_iReporter", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsRGBKey = {"_p_iAwsRGBKey", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iKeyboardDriver = {"_p_iKeyboardDriver", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iJoystickDriver = {"_p_iJoystickDriver", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMouseDriver = {"_p_iMouseDriver", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysSoftwareDriver = {"_p_iSndSysSoftwareDriver", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iShaderVariableAccessor = {"_p_iShaderVariableAccessor", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSCF = {"_p_iSCF", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonScriptKeyFrame = {"_p_iSkeletonScriptKeyFrame", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iGeneralMeshState = {"_p_iGeneralMeshState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSequenceTimedOperation = {"_p_iSequenceTimedOperation", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iLightingProcessData = {"_p_iLightingProcessData", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEngineSequenceParameters = {"_p_iEngineSequenceParameters", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iKeyComposer = {"_p_iKeyComposer", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysRenderer = {"_p_iSndSysRenderer", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iShaderPriorityList = {"_p_iShaderPriorityList", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSprite2DUVAnimationFrame = {"_p_iSprite2DUVAnimationFrame", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDocument = {"_p_iDocument", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMaterialList = {"_p_iMaterialList", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iLight = {"_p_iLight", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSimpleFormerState = {"_p_iSimpleFormerState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMaterial = {"_p_iMaterial", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iArrayChangeAllTcsSprite2DVertex_t = {"_p_iArrayChangeAllTcsSprite2DVertex_t", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iArrayChangeElementsTcsSprite2DVertex_t = {"_p_iArrayChangeElementsTcsSprite2DVertex_t", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iArrayReadOnlyTcsSprite2DVertex_t = {"_p_iArrayReadOnlyTcsSprite2DVertex_t", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iConfigFile = {"_p_iConfigFile", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEvent = {"_p_iEvent", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iThingState = {"_p_iThingState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iHalo = {"_p_iHalo", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDynamicsSystemCollider = {"_p_iDynamicsSystemCollider", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iArrayReadOnlyTiSceneNode_p_t = {"_p_iArrayReadOnlyTiSceneNode_p_t", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsComponentNode = {"_p_iAwsComponentNode", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSequenceTrigger = {"_p_iSequenceTrigger", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iGraphics2D = {"_p_iGraphics2D", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iCameraPosition = {"_p_iCameraPosition", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iPolygonMesh = {"_p_iPolygonMesh", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iTextureList = {"_p_iTextureList", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iODEAMotorJoint = {"_p_iODEAMotorJoint", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iODESliderJoint = {"_p_iODESliderJoint", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleBuiltinEmitterCone = {"_p_iParticleBuiltinEmitterCone", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSectorList = {"_p_iSectorList", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iPolygonHandle = {"_p_iPolygonHandle", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iTextureHandle = {"_p_iTextureHandle", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iCommandLineParser = {"_p_iCommandLineParser", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iFontDeleteNotify = {"_p_iFontDeleteNotify", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsSlot = {"_p_iAwsSlot", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iTerraFormer = {"_p_iTerraFormer", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMeshFactoryList = {"_p_iMeshFactoryList", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsSource = {"_p_iAwsSource", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iGraphics3D = {"_p_iGraphics3D", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonBoneRagdollInfo = {"_p_iSkeletonBoneRagdollInfo", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeleton = {"_p_iSkeleton", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMeshObjectType = {"_p_iMeshObjectType", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysSourceSoftware3D = {"_p_iSndSysSourceSoftware3D", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEngineSequenceManager = {"_p_iEngineSequenceManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iTextureManager = {"_p_iTextureManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iShaderManager = {"_p_iShaderManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iNativeWindowManager = {"_p_iNativeWindowManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iConfigManager = {"_p_iConfigManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iPluginManager = {"_p_iPluginManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iCacheManager = {"_p_iCacheManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysManager = {"_p_iSndSysManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsPrefManager = {"_p_iAwsPrefManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsSinkManager = {"_p_iAwsSinkManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsLayoutManager = {"_p_iAwsLayoutManager", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDynamics = {"_p_iDynamics", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParameterESM = {"_p_iParameterESM", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDebugHelper = {"_p_iDebugHelper", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleBuiltinEffectorForce = {"_p_iParticleBuiltinEffectorForce", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsRectKey = {"_p_iAwsRectKey", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iFactory = {"_p_iFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsComponentFactory = {"_p_iAwsComponentFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsKeyFactory = {"_p_iAwsKeyFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsConnectionNodeFactory = {"_p_iAwsConnectionNodeFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iGenMeshAnimationControlFactory = {"_p_iGenMeshAnimationControlFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonBoneFactory = {"_p_iSkeletonBoneFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonSocketFactory = {"_p_iSkeletonSocketFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSkeletonFactory = {"_p_iSkeletonFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMeshObjectFactory = {"_p_iMeshObjectFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleSystemFactory = {"_p_iParticleSystemFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleBuiltinEmitterFactory = {"_p_iParticleBuiltinEmitterFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleBuiltinEffectorFactory = {"_p_iParticleBuiltinEffectorFactory", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleBuiltinEffectorVelocityField = {"_p_iParticleBuiltinEffectorVelocityField", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iFrustumViewUserdata = {"_p_iFrustumViewUserdata", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iObjectModel = {"_p_iObjectModel", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMovable = {"_p_iMovable", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iNativeWindow = {"_p_iNativeWindow", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleBuiltinEmitterBase = {"_p_iParticleBuiltinEmitterBase", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysStream = {"_p_iSndSysStream", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iLoaderPlugin = {"_p_iLoaderPlugin", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iBinaryLoaderPlugin = {"_p_iBinaryLoaderPlugin", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAwsKeyContainer = {"_p_iAwsKeyContainer", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iPortalContainer = {"_p_iPortalContainer", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iImageIO = {"_p_iImageIO", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iArrayChangeAllTcsShaderVariable_p_t = {"_p_iArrayChangeAllTcsShaderVariable_p_t", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iArrayChangeElementsTcsShaderVariable_p_t = {"_p_iArrayChangeElementsTcsShaderVariable_p_t", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iArrayReadOnlyTcsShaderVariable_p_t = {"_p_iArrayReadOnlyTcsShaderVariable_p_t", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSprite2DState = {"_p_iSprite2DState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSprite3DState = {"_p_iSprite3DState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSpriteCal3DState = {"_p_iSpriteCal3DState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iDataBuffer = {"_p_iDataBuffer", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iShaderCompiler = {"_p_iShaderCompiler", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iODEHingeJoint = {"_p_iODEHingeJoint", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleBuiltinEmitterSphere = {"_p_iParticleBuiltinEmitterSphere", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSuperLightmap = {"_p_iSuperLightmap", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iRendererLightmap = {"_p_iRendererLightmap", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iParticleBuiltinEmitterCylinder = {"_p_iParticleBuiltinEmitterCylinder", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iComponent = {"_p_iComponent", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSpriteAction = {"_p_iSpriteAction", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iGeneralFactoryState = {"_p_iGeneralFactoryState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSprite2DFactoryState = {"_p_iSprite2DFactoryState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSprite3DFactoryState = {"_p_iSprite3DFactoryState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSpriteCal3DFactoryState = {"_p_iSpriteCal3DFactoryState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iThingFactoryState = {"_p_iThingFactoryState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iTerrainFactoryState = {"_p_iTerrainFactoryState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iMissingLoaderData = {"_p_iMissingLoaderData", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iShaderVarStack = {"_p_iShaderVarStack", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iGeneralMeshCommonState = {"_p_iGeneralMeshCommonState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysData = {"_p_iSndSysData", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSndSysSoftwareOutputFilter = {"_p_iSndSysSoftwareOutputFilter", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iAws = {"_p_iAws", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iODEDynamicState = {"_p_iODEDynamicState", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iSprite2DUVAnimation = {"_p_iSprite2DUVAnimation", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEventPlug = {"_p_iEventPlug", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_csPath = {"_p_csPath", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iEventCord = {"_p_iEventCord", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iPortal = {"_p_iPortal", 0, 0, 0, 0, 0}; static swig_type_info _swigt__p_iBillboard = {"_p_iBillboard", "iBillboard *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iBillboardEventHandler = {"_p_iBillboardEventHandler", "iBillboardEventHandler *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iBillboardLayer = {"_p_iBillboardLayer", "iBillboardLayer *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iBillboardManager = {"_p_iBillboardManager", "iBillboardManager *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iBodyGroup = {"_p_iBodyGroup", "iBodyGroup *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCamera = {"_p_iCamera", "iCamera *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelBehaviour = {"_p_iCelBehaviour", "iCelBehaviour *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelBlLayer = {"_p_iCelBlLayer", "iCelBlLayer *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelConsole = {"_p_iCelConsole", "iCelConsole *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelConsoleCommand = {"_p_iCelConsoleCommand", "iCelConsoleCommand *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelDataBuffer = {"_p_iCelDataBuffer", "iCelDataBuffer *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelEntity = {"_p_iCelEntity", "iCelEntity *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelEntityIterator = {"_p_iCelEntityIterator", "iCelEntityIterator *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelEntityList = {"_p_iCelEntityList", "iCelEntityList *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelEntityRemoveCallback = {"_p_iCelEntityRemoveCallback", "iCelEntityRemoveCallback *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelEntityTemplate = {"_p_iCelEntityTemplate", "iCelEntityTemplate *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelEntityTracker = {"_p_iCelEntityTracker", "iCelEntityTracker *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelInventorySpace = {"_p_iCelInventorySpace", "iCelInventorySpace *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelInventorySpaceSlot = {"_p_iCelInventorySpaceSlot", "iCelInventorySpaceSlot *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelMapFile = {"_p_iCelMapFile", "iCelMapFile *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelNewEntityCallback = {"_p_iCelNewEntityCallback", "iCelNewEntityCallback *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelParameterBlock = {"_p_iCelParameterBlock", "iCelParameterBlock *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelPlLayer = {"_p_iCelPlLayer", "iCelPlLayer *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelPropertyChangeCallback = {"_p_iCelPropertyChangeCallback", "iCelPropertyChangeCallback *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelPropertyClass = {"_p_iCelPropertyClass", "iCelPropertyClass *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelPropertyClassFactory = {"_p_iCelPropertyClassFactory", "iCelPropertyClassFactory *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelPropertyClassList = {"_p_iCelPropertyClassList", "iCelPropertyClassList *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelPropertyClassTemplate = {"_p_iCelPropertyClassTemplate", "iCelPropertyClassTemplate *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelRegion = {"_p_iCelRegion", "iCelRegion *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelTimerListener = {"_p_iCelTimerListener", "iCelTimerListener *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCelZone = {"_p_iCelZone", "iCelZone *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iCollider = {"_p_iCollider", "iCollider *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iConsoleInput = {"_p_iConsoleInput", "iConsoleInput *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iConsoleOutput = {"_p_iConsoleOutput", "iConsoleOutput *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iDocumentNode = {"_p_iDocumentNode", "iDocumentNode *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iDynamicSystem = {"_p_iDynamicSystem", "iDynamicSystem *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iFont = {"_p_iFont", "iFont *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iJoint = {"_p_iJoint", "iJoint *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iMeshWrapper = {"_p_iMeshWrapper", "iMeshWrapper *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iODEHinge2Joint = {"_p_iODEHinge2Joint", "iODEHinge2Joint *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iObject = {"_p_iObject", "iObject *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iObjectRegistry = {"_p_iObjectRegistry", "iObjectRegistry *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPath = {"_p_iPath", "iPath *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcActorMove = {"_p_iPcActorMove", "iPcActorMove *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcBillboard = {"_p_iPcBillboard", "iPcBillboard *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcCamera = {"_p_iPcCamera", "iPcCamera *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcCharacteristics = {"_p_iPcCharacteristics", "iPcCharacteristics *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcCollisionDetection = {"_p_iPcCollisionDetection", "iPcCollisionDetection *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcCommandInput = {"_p_iPcCommandInput", "iPcCommandInput *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcCraftController = {"_p_iPcCraftController", "iPcCraftController *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcDamage = {"_p_iPcDamage", "iPcDamage *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcDefaultCamera = {"_p_iPcDefaultCamera", "iPcDefaultCamera *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcGravity = {"_p_iPcGravity", "iPcGravity *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcGravityCallback = {"_p_iPcGravityCallback", "iPcGravityCallback *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcHover = {"_p_iPcHover", "iPcHover *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcInventory = {"_p_iPcInventory", "iPcInventory *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcInventoryListener = {"_p_iPcInventoryListener", "iPcInventoryListener *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcLight = {"_p_iPcLight", "iPcLight *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcLinearMovement = {"_p_iPcLinearMovement", "iPcLinearMovement *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMechanicsBalancedGroup = {"_p_iPcMechanicsBalancedGroup", "iPcMechanicsBalancedGroup *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMechanicsJoint = {"_p_iPcMechanicsJoint", "iPcMechanicsJoint *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMechanicsObject = {"_p_iPcMechanicsObject", "iPcMechanicsObject *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMechanicsSystem = {"_p_iPcMechanicsSystem", "iPcMechanicsSystem *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMechanicsThruster = {"_p_iPcMechanicsThruster", "iPcMechanicsThruster *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMechanicsThrusterController = {"_p_iPcMechanicsThrusterController", "iPcMechanicsThrusterController *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMesh = {"_p_iPcMesh", "iPcMesh *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMeshSelect = {"_p_iPcMeshSelect", "iPcMeshSelect *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMeshSelectListener = {"_p_iPcMeshSelectListener", "iPcMeshSelectListener *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMovable = {"_p_iPcMovable", "iPcMovable *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMovableConstraint = {"_p_iPcMovableConstraint", "iPcMovableConstraint *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcMover = {"_p_iPcMover", "iPcMover *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcProjectile = {"_p_iPcProjectile", "iPcProjectile *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcProperties = {"_p_iPcProperties", "iPcProperties *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcPropertyListener = {"_p_iPcPropertyListener", "iPcPropertyListener *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcRegion = {"_p_iPcRegion", "iPcRegion *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcSimpleCamera = {"_p_iPcSimpleCamera", "iPcSimpleCamera *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcSolid = {"_p_iPcSolid", "iPcSolid *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcSoundListener = {"_p_iPcSoundListener", "iPcSoundListener *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcSoundSource = {"_p_iPcSoundSource", "iPcSoundSource *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcTimer = {"_p_iPcTimer", "iPcTimer *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcTooltip = {"_p_iPcTooltip", "iPcTooltip *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcWheeled = {"_p_iPcWheeled", "iPcWheeled *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iPcZoneManager = {"_p_iPcZoneManager", "iPcZoneManager *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iRegion = {"_p_iRegion", "iRegion *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iRigidBody = {"_p_iRigidBody", "iRigidBody *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iSector = {"_p_iSector", "iSector *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iSndSysListener = {"_p_iSndSysListener", "iSndSysListener *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iSndSysSource = {"_p_iSndSysSource", "iSndSysSource *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iString = {"_p_iString", "iString *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iStringArray = {"_p_iStringArray", "iStringArray *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_iView = {"_p_iView", "iView *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_int = {"_p_int", "int *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_int16_t = {"_p_int16_t", "int16_t *|int16 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_int32_t = {"_p_int32_t", "int32_t *|int32 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_int64_t = {"_p_int64_t", "int64_t *|intmax_t *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_int8_t = {"_p_int8_t", "int8_t *|int8 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_int_least64_t = {"_p_int_least64_t", "int_least64_t *|longlong *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_p_iPcCollisionDetection = {"_p_p_iPcCollisionDetection", "iPcCollisionDetection **", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_p_iSector = {"_p_p_iSector", "iSector **", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_p_void = {"_p_p_void", "void **", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_uint16_t = {"_p_uint16_t", "uint16_t *|uint16 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_uint32_t = {"_p_uint32_t", "uint32_t *|uint32 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_uint64_t = {"_p_uint64_t", "uint64_t *|uintmax_t *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_uint8_t = {"_p_uint8_t", "uint8_t *|uint8 *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_uint_least64_t = {"_p_uint_least64_t", "uint_least64_t *|ulonglong *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "unsigned int *|uint *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "unsigned long *|csStringID *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_void = {"_p_void", "void *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_wchar_t = {"_p_wchar_t", "wchar_t *|wint_t *", 0, 0, (void*)0, 0}; static swig_type_info *swig_type_initial[] = { &_swigt__p_AllocatorType, &_swigt__p_CapacityHandlerType, &_swigt__p_ContainedType, &_swigt__p_ElementHandlerType, &_swigt__p_FileFormatDescription, &_swigt__p_HashType, &_swigt__p_SndSysFilterLocation, &_swigt__p_ThisType, &_swigt__p_ValueType, &_swigt__p__csKeyCharType, &_swigt__p__csKeyEventType, &_swigt__p__csKeyModifierNumType, &_swigt__p__csKeyModifierType, &_swigt__p__csKeyModifiers, &_swigt__p__csMouseCursorID, &_swigt__p__csMouseEventType, &_swigt__p__csPyEventHandler, &_swigt__p_basetype, &_swigt__p_bool, &_swigt__p_celData, &_swigt__p_celDataType, &_swigt__p_celData_value, &_swigt__p_celData_value_col, &_swigt__p_celData_value_par, &_swigt__p_celData_value_v, &_swigt__p_celGenericParameterBlock, &_swigt__p_celInitializer, &_swigt__p_celOneParameterBlock, &_swigt__p_celPersistenceResult, &_swigt__p_celPersistenceType, &_swigt__p_celStabiliserFunction, &_swigt__p_celVariableParameterBlock, &_swigt__p_char, &_swigt__p_csArrayTcsImageIOFileFormatDescription_const_p_csArrayElementHandlerTcsImageIOFileFormatDescription_const_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, &_swigt__p_csArrayTcsPluginRequest_csArrayElementHandlerTcsPluginRequest_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, &_swigt__p_csArrayTcsShaderVariable_p_csArrayElementHandlerTcsShaderVariable_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, &_swigt__p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, &_swigt__p_csBox3, &_swigt__p_csColor, &_swigt__p_csColor4, &_swigt__p_csFlags, &_swigt__p_csHashTcsStrKey_csStrKey_CS__Memory__AllocatorMalloc_t, &_swigt__p_csInitializer, &_swigt__p_csMatrix3, &_swigt__p_csOrthoTransform, &_swigt__p_csPath, &_swigt__p_csPlane3, &_swigt__p_csPtrTiCelDataBuffer_t, &_swigt__p_csPtrTiCelEntityIterator_t, &_swigt__p_csPtrTiCelPropertyClass_t, &_swigt__p_csPtrTiRigidBody_t, &_swigt__p_csRefArrayTiObject_t, &_swigt__p_csRefTiBase_t, &_swigt__p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t, &_swigt__p_csString, &_swigt__p_csStringArray, &_swigt__p_csVector2, &_swigt__p_csVector3, &_swigt__p_csXRotMatrix3, &_swigt__p_csXScaleMatrix3, &_swigt__p_csYRotMatrix3, &_swigt__p_csYScaleMatrix3, &_swigt__p_csZRotMatrix3, &_swigt__p_csZScaleMatrix3, &_swigt__p_f_p_iMeshWrapper_p_iFrustumView_bool__void, &_swigt__p_float, &_swigt__p_iAnimTimeUpdateHandler, &_swigt__p_iArrayChangeAllTcsShaderVariable_p_t, &_swigt__p_iArrayChangeAllTcsSprite2DVertex_t, &_swigt__p_iArrayChangeElementsTcsShaderVariable_p_t, &_swigt__p_iArrayChangeElementsTcsSprite2DVertex_t, &_swigt__p_iArrayReadOnlyTcsShaderVariable_p_t, &_swigt__p_iArrayReadOnlyTcsSprite2DVertex_t, &_swigt__p_iArrayReadOnlyTiSceneNode_p_t, &_swigt__p_iAws, &_swigt__p_iAwsComponent, &_swigt__p_iAwsComponentFactory, &_swigt__p_iAwsComponentNode, &_swigt__p_iAwsConnectionKey, &_swigt__p_iAwsConnectionNodeFactory, &_swigt__p_iAwsFloatKey, &_swigt__p_iAwsIntKey, &_swigt__p_iAwsKey, &_swigt__p_iAwsKeyContainer, &_swigt__p_iAwsKeyFactory, &_swigt__p_iAwsLayoutManager, &_swigt__p_iAwsPointKey, &_swigt__p_iAwsPrefManager, &_swigt__p_iAwsRGBKey, &_swigt__p_iAwsRectKey, &_swigt__p_iAwsSink, &_swigt__p_iAwsSinkManager, &_swigt__p_iAwsSlot, &_swigt__p_iAwsSource, &_swigt__p_iAwsStringKey, &_swigt__p_iBase, &_swigt__p_iBillboard, &_swigt__p_iBillboardEventHandler, &_swigt__p_iBillboardLayer, &_swigt__p_iBillboardManager, &_swigt__p_iBinaryLoaderPlugin, &_swigt__p_iBodyGroup, &_swigt__p_iCacheManager, &_swigt__p_iCamera, &_swigt__p_iCameraPosition, &_swigt__p_iCameraPositionList, &_swigt__p_iCameraSectorListener, &_swigt__p_iCelBehaviour, &_swigt__p_iCelBlLayer, &_swigt__p_iCelConsole, &_swigt__p_iCelConsoleCommand, &_swigt__p_iCelDataBuffer, &_swigt__p_iCelEntity, &_swigt__p_iCelEntityIterator, &_swigt__p_iCelEntityList, &_swigt__p_iCelEntityRemoveCallback, &_swigt__p_iCelEntityTemplate, &_swigt__p_iCelEntityTracker, &_swigt__p_iCelInventorySpace, &_swigt__p_iCelInventorySpaceSlot, &_swigt__p_iCelMapFile, &_swigt__p_iCelNewEntityCallback, &_swigt__p_iCelParameterBlock, &_swigt__p_iCelPlLayer, &_swigt__p_iCelPropertyChangeCallback, &_swigt__p_iCelPropertyClass, &_swigt__p_iCelPropertyClassFactory, &_swigt__p_iCelPropertyClassList, &_swigt__p_iCelPropertyClassTemplate, &_swigt__p_iCelRegion, &_swigt__p_iCelTimerListener, &_swigt__p_iCelZone, &_swigt__p_iClipper2D, &_swigt__p_iCollideSystem, &_swigt__p_iCollider, &_swigt__p_iColoredVertices, &_swigt__p_iCommandLineParser, &_swigt__p_iComponent, &_swigt__p_iConfigFile, &_swigt__p_iConfigIterator, &_swigt__p_iConfigManager, &_swigt__p_iConsoleInput, &_swigt__p_iConsoleOutput, &_swigt__p_iConsoleWatcher, &_swigt__p_iDataBuffer, &_swigt__p_iDebugHelper, &_swigt__p_iDocument, &_swigt__p_iDocumentAttribute, &_swigt__p_iDocumentAttributeIterator, &_swigt__p_iDocumentNode, &_swigt__p_iDocumentNodeIterator, &_swigt__p_iDocumentSystem, &_swigt__p_iDynamicSystem, &_swigt__p_iDynamics, &_swigt__p_iDynamicsColliderCollisionCallback, &_swigt__p_iDynamicsCollisionCallback, &_swigt__p_iDynamicsMoveCallback, &_swigt__p_iDynamicsSystemCollider, &_swigt__p_iEngine, &_swigt__p_iEngineFrameCallback, &_swigt__p_iEngineSectorCallback, &_swigt__p_iEngineSequenceManager, &_swigt__p_iEngineSequenceParameters, &_swigt__p_iEvent, &_swigt__p_iEventAttributeIterator, &_swigt__p_iEventCord, &_swigt__p_iEventHandler, &_swigt__p_iEventNameRegistry, &_swigt__p_iEventOutlet, &_swigt__p_iEventPlug, &_swigt__p_iEventQueue, &_swigt__p_iFactory, &_swigt__p_iFile, &_swigt__p_iFont, &_swigt__p_iFontDeleteNotify, &_swigt__p_iFontServer, &_swigt__p_iFrustumView, &_swigt__p_iFrustumViewUserdata, &_swigt__p_iGenMeshAnimationControl, &_swigt__p_iGenMeshAnimationControlFactory, &_swigt__p_iGenMeshAnimationControlType, &_swigt__p_iGenMeshSkeletonControlState, &_swigt__p_iGeneralFactoryState, &_swigt__p_iGeneralMeshCommonState, &_swigt__p_iGeneralMeshState, &_swigt__p_iGeneralMeshSubMesh, &_swigt__p_iGraphics2D, &_swigt__p_iGraphics3D, &_swigt__p_iHalo, &_swigt__p_iImage, &_swigt__p_iImageIO, &_swigt__p_iJoint, &_swigt__p_iJoystickDriver, &_swigt__p_iKeyComposer, &_swigt__p_iKeyboardDriver, &_swigt__p_iLight, &_swigt__p_iLightCallback, &_swigt__p_iLightIterator, &_swigt__p_iLightList, &_swigt__p_iLightVisibleCallback, &_swigt__p_iLightingProcessData, &_swigt__p_iLightingProcessInfo, &_swigt__p_iLoader, &_swigt__p_iLoaderPlugin, &_swigt__p_iLoaderStatus, &_swigt__p_iMapNode, &_swigt__p_iMaterial, &_swigt__p_iMaterialEngine, &_swigt__p_iMaterialList, &_swigt__p_iMaterialWrapper, &_swigt__p_iMeshDrawCallback, &_swigt__p_iMeshFactoryList, &_swigt__p_iMeshFactoryWrapper, &_swigt__p_iMeshList, &_swigt__p_iMeshObject, &_swigt__p_iMeshObjectDrawCallback, &_swigt__p_iMeshObjectFactory, &_swigt__p_iMeshObjectType, &_swigt__p_iMeshWrapper, &_swigt__p_iMeshWrapperIterator, &_swigt__p_iMissingLoaderData, &_swigt__p_iMouseDriver, &_swigt__p_iMovable, &_swigt__p_iMovableListener, &_swigt__p_iMovieRecorder, &_swigt__p_iNativeWindow, &_swigt__p_iNativeWindowManager, &_swigt__p_iODEAMotorJoint, &_swigt__p_iODEBallJoint, &_swigt__p_iODEDynamicState, &_swigt__p_iODEDynamicSystemState, &_swigt__p_iODEFrameUpdateCallback, &_swigt__p_iODEGeneralJointState, &_swigt__p_iODEHinge2Joint, &_swigt__p_iODEHingeJoint, &_swigt__p_iODEJointState, &_swigt__p_iODESliderJoint, &_swigt__p_iODEUniversalJoint, &_swigt__p_iObject, &_swigt__p_iObjectIterator, &_swigt__p_iObjectModel, &_swigt__p_iObjectModelListener, &_swigt__p_iObjectNameChangeListener, &_swigt__p_iObjectRegistry, &_swigt__p_iObjectRegistryIterator, &_swigt__p_iOffscreenCanvasCallback, &_swigt__p_iParameterESM, &_swigt__p_iParticleBuiltinEffectorFactory, &_swigt__p_iParticleBuiltinEffectorForce, &_swigt__p_iParticleBuiltinEffectorLinColor, &_swigt__p_iParticleBuiltinEffectorVelocityField, &_swigt__p_iParticleBuiltinEmitterBase, &_swigt__p_iParticleBuiltinEmitterBox, &_swigt__p_iParticleBuiltinEmitterCone, &_swigt__p_iParticleBuiltinEmitterCylinder, &_swigt__p_iParticleBuiltinEmitterFactory, &_swigt__p_iParticleBuiltinEmitterSphere, &_swigt__p_iParticleEffector, &_swigt__p_iParticleEmitter, &_swigt__p_iParticleSystem, &_swigt__p_iParticleSystemBase, &_swigt__p_iParticleSystemFactory, &_swigt__p_iPath, &_swigt__p_iPcActorMove, &_swigt__p_iPcBillboard, &_swigt__p_iPcCamera, &_swigt__p_iPcCharacteristics, &_swigt__p_iPcCollisionDetection, &_swigt__p_iPcCommandInput, &_swigt__p_iPcCraftController, &_swigt__p_iPcDamage, &_swigt__p_iPcDefaultCamera, &_swigt__p_iPcGravity, &_swigt__p_iPcGravityCallback, &_swigt__p_iPcHover, &_swigt__p_iPcInventory, &_swigt__p_iPcInventoryListener, &_swigt__p_iPcLight, &_swigt__p_iPcLinearMovement, &_swigt__p_iPcMechanicsBalancedGroup, &_swigt__p_iPcMechanicsJoint, &_swigt__p_iPcMechanicsObject, &_swigt__p_iPcMechanicsSystem, &_swigt__p_iPcMechanicsThruster, &_swigt__p_iPcMechanicsThrusterController, &_swigt__p_iPcMesh, &_swigt__p_iPcMeshSelect, &_swigt__p_iPcMeshSelectListener, &_swigt__p_iPcMovable, &_swigt__p_iPcMovableConstraint, &_swigt__p_iPcMover, &_swigt__p_iPcProjectile, &_swigt__p_iPcProperties, &_swigt__p_iPcPropertyListener, &_swigt__p_iPcRegion, &_swigt__p_iPcSimpleCamera, &_swigt__p_iPcSolid, &_swigt__p_iPcSoundListener, &_swigt__p_iPcSoundSource, &_swigt__p_iPcTimer, &_swigt__p_iPcTooltip, &_swigt__p_iPcWheeled, &_swigt__p_iPcZoneManager, &_swigt__p_iPluginIterator, &_swigt__p_iPluginManager, &_swigt__p_iPolygonHandle, &_swigt__p_iPolygonMesh, &_swigt__p_iPortal, &_swigt__p_iPortalCallback, &_swigt__p_iPortalContainer, &_swigt__p_iRegion, &_swigt__p_iRegionList, &_swigt__p_iRendererLightmap, &_swigt__p_iReporter, &_swigt__p_iReporterIterator, &_swigt__p_iReporterListener, &_swigt__p_iRigidBody, &_swigt__p_iSCF, &_swigt__p_iSaver, &_swigt__p_iSceneNode, &_swigt__p_iSceneNodeArray, &_swigt__p_iScript, &_swigt__p_iScriptObject, &_swigt__p_iSector, &_swigt__p_iSectorCallback, &_swigt__p_iSectorIterator, &_swigt__p_iSectorList, &_swigt__p_iSectorMeshCallback, &_swigt__p_iSequenceTimedOperation, &_swigt__p_iSequenceTrigger, &_swigt__p_iSequenceWrapper, &_swigt__p_iShader, &_swigt__p_iShaderCompiler, &_swigt__p_iShaderManager, &_swigt__p_iShaderPriorityList, &_swigt__p_iShaderVarStack, &_swigt__p_iShaderVariableAccessor, &_swigt__p_iShaderVariableContext, &_swigt__p_iSimpleFormerState, &_swigt__p_iSkeleton, &_swigt__p_iSkeletonBone, &_swigt__p_iSkeletonBoneFactory, &_swigt__p_iSkeletonBoneRagdollInfo, &_swigt__p_iSkeletonBoneUpdateCallback, &_swigt__p_iSkeletonFactory, &_swigt__p_iSkeletonGraveyard, &_swigt__p_iSkeletonScript, &_swigt__p_iSkeletonScriptCallback, &_swigt__p_iSkeletonScriptKeyFrame, &_swigt__p_iSkeletonSocket, &_swigt__p_iSkeletonSocketFactory, &_swigt__p_iSkeletonUpdateCallback, &_swigt__p_iSndSysData, &_swigt__p_iSndSysListener, &_swigt__p_iSndSysLoader, &_swigt__p_iSndSysManager, &_swigt__p_iSndSysRenderer, &_swigt__p_iSndSysRendererCallback, &_swigt__p_iSndSysRendererSoftware, &_swigt__p_iSndSysSoftwareDriver, &_swigt__p_iSndSysSoftwareFilter3D, &_swigt__p_iSndSysSoftwareOutputFilter, &_swigt__p_iSndSysSource, &_swigt__p_iSndSysSourceSoftware, &_swigt__p_iSndSysSourceSoftware3D, &_swigt__p_iSndSysStream, &_swigt__p_iSndSysStreamCallback, &_swigt__p_iSndSysWrapper, &_swigt__p_iSprite2DFactoryState, &_swigt__p_iSprite2DState, &_swigt__p_iSprite2DUVAnimation, &_swigt__p_iSprite2DUVAnimationFrame, &_swigt__p_iSprite3DFactoryState, &_swigt__p_iSprite3DState, &_swigt__p_iSpriteAction, &_swigt__p_iSpriteCal3DFactoryState, &_swigt__p_iSpriteCal3DSocket, &_swigt__p_iSpriteCal3DState, &_swigt__p_iSpriteFrame, &_swigt__p_iSpriteSocket, &_swigt__p_iStandardReporterListener, &_swigt__p_iString, &_swigt__p_iStringArray, &_swigt__p_iStringSet, &_swigt__p_iSuperLightmap, &_swigt__p_iTerraFormer, &_swigt__p_iTerraSampler, &_swigt__p_iTerrainFactoryState, &_swigt__p_iTerrainObjectState, &_swigt__p_iTextureCallback, &_swigt__p_iTextureHandle, &_swigt__p_iTextureList, &_swigt__p_iTextureManager, &_swigt__p_iTextureWrapper, &_swigt__p_iThingEnvironment, &_swigt__p_iThingFactoryState, &_swigt__p_iThingState, &_swigt__p_iVFS, &_swigt__p_iView, &_swigt__p_iVirtualClock, &_swigt__p_iVisibilityCuller, &_swigt__p_iVisibilityCullerListener, &_swigt__p_iVisibilityObject, &_swigt__p_iVisibilityObjectIterator, &_swigt__p_int, &_swigt__p_int16_t, &_swigt__p_int32_t, &_swigt__p_int64_t, &_swigt__p_int8_t, &_swigt__p_int_least64_t, &_swigt__p_p_iPcCollisionDetection, &_swigt__p_p_iSector, &_swigt__p_p_void, &_swigt__p_scfImplementation1TcsPath_iPath_t, &_swigt__p_uint16_t, &_swigt__p_uint32_t, &_swigt__p_uint64_t, &_swigt__p_uint8_t, &_swigt__p_uint_least64_t, &_swigt__p_unsigned_int, &_swigt__p_unsigned_long, &_swigt__p_void, &_swigt__p_wchar_t, }; static swig_cast_info _swigc__p_AllocatorType[] = { {&_swigt__p_AllocatorType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_CapacityHandlerType[] = { {&_swigt__p_CapacityHandlerType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_ContainedType[] = { {&_swigt__p_ContainedType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_ElementHandlerType[] = { {&_swigt__p_ElementHandlerType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_FileFormatDescription[] = { {&_swigt__p_FileFormatDescription, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_HashType[] = { {&_swigt__p_HashType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_SndSysFilterLocation[] = { {&_swigt__p_SndSysFilterLocation, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_ThisType[] = { {&_swigt__p_ThisType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_ValueType[] = { {&_swigt__p_ValueType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p__csKeyCharType[] = { {&_swigt__p__csKeyCharType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p__csKeyEventType[] = { {&_swigt__p__csKeyEventType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p__csKeyModifierNumType[] = { {&_swigt__p__csKeyModifierNumType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p__csKeyModifierType[] = { {&_swigt__p__csKeyModifierType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p__csKeyModifiers[] = { {&_swigt__p__csKeyModifiers, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p__csMouseCursorID[] = { {&_swigt__p__csMouseCursorID, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p__csMouseEventType[] = { {&_swigt__p__csMouseEventType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_basetype[] = { {&_swigt__p_basetype, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_bool[] = { {&_swigt__p_bool, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celData[] = { {&_swigt__p_celData, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celDataType[] = { {&_swigt__p_celDataType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celData_value[] = { {&_swigt__p_celData_value, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celData_value_col[] = { {&_swigt__p_celData_value_col, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celData_value_par[] = { {&_swigt__p_celData_value_par, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celData_value_v[] = { {&_swigt__p_celData_value_v, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celGenericParameterBlock[] = { {&_swigt__p_celGenericParameterBlock, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celInitializer[] = { {&_swigt__p_celInitializer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celOneParameterBlock[] = { {&_swigt__p_celOneParameterBlock, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celPersistenceResult[] = { {&_swigt__p_celPersistenceResult, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celPersistenceType[] = { {&_swigt__p_celPersistenceType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celStabiliserFunction[] = { {&_swigt__p_celStabiliserFunction, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_celVariableParameterBlock[] = { {&_swigt__p_celVariableParameterBlock, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csArrayTcsImageIOFileFormatDescription_const_p_csArrayElementHandlerTcsImageIOFileFormatDescription_const_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t[] = { {&_swigt__p_csArrayTcsImageIOFileFormatDescription_const_p_csArrayElementHandlerTcsImageIOFileFormatDescription_const_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csArrayTcsPluginRequest_csArrayElementHandlerTcsPluginRequest_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t[] = { {&_swigt__p_csArrayTcsPluginRequest_csArrayElementHandlerTcsPluginRequest_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csArrayTcsShaderVariable_p_csArrayElementHandlerTcsShaderVariable_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t[] = { {&_swigt__p_csArrayTcsShaderVariable_p_csArrayElementHandlerTcsShaderVariable_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t[] = { {&_swigt__p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csBox3[] = { {&_swigt__p_csBox3, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csColor4[] = {{&_swigt__p_csColor4, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csColor[] = { {&_swigt__p_csColor, 0, 0, 0}, {&_swigt__p_csColor4, _p_csColor4To_p_csColor, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csFlags[] = { {&_swigt__p_csFlags, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csHashTcsStrKey_csStrKey_CS__Memory__AllocatorMalloc_t[] = { {&_swigt__p_csHashTcsStrKey_csStrKey_CS__Memory__AllocatorMalloc_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csInitializer[] = { {&_swigt__p_csInitializer, 0, 0, 0}, {&_swigt__p_celInitializer, _p_celInitializerTo_p_csInitializer, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csXRotMatrix3[] = {{&_swigt__p_csXRotMatrix3, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csYRotMatrix3[] = {{&_swigt__p_csYRotMatrix3, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csZRotMatrix3[] = {{&_swigt__p_csZRotMatrix3, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csXScaleMatrix3[] = {{&_swigt__p_csXScaleMatrix3, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csYScaleMatrix3[] = {{&_swigt__p_csYScaleMatrix3, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csZScaleMatrix3[] = {{&_swigt__p_csZScaleMatrix3, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csMatrix3[] = { {&_swigt__p_csMatrix3, 0, 0, 0}, {&_swigt__p_csXRotMatrix3, _p_csXRotMatrix3To_p_csMatrix3, 0, 0}, {&_swigt__p_csYRotMatrix3, _p_csYRotMatrix3To_p_csMatrix3, 0, 0}, {&_swigt__p_csZRotMatrix3, _p_csZRotMatrix3To_p_csMatrix3, 0, 0}, {&_swigt__p_csXScaleMatrix3, _p_csXScaleMatrix3To_p_csMatrix3, 0, 0}, {&_swigt__p_csYScaleMatrix3, _p_csYScaleMatrix3To_p_csMatrix3, 0, 0}, {&_swigt__p_csZScaleMatrix3, _p_csZScaleMatrix3To_p_csMatrix3, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csOrthoTransform[] = { {&_swigt__p_csOrthoTransform, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csPlane3[] = { {&_swigt__p_csPlane3, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csPtrTiCelDataBuffer_t[] = { {&_swigt__p_csPtrTiCelDataBuffer_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csPtrTiCelEntityIterator_t[] = { {&_swigt__p_csPtrTiCelEntityIterator_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csPtrTiCelPropertyClass_t[] = { {&_swigt__p_csPtrTiCelPropertyClass_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csPtrTiRigidBody_t[] = { {&_swigt__p_csPtrTiRigidBody_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csRefArrayTiObject_t[] = { {&_swigt__p_csRefArrayTiObject_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csRefTiBase_t[] = { {&_swigt__p_csRefTiBase_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t[] = { {&_swigt__p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csString[] = { {&_swigt__p_csString, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csStringArray[] = { {&_swigt__p_csStringArray, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csVector2[] = { {&_swigt__p_csVector2, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csVector3[] = { {&_swigt__p_csVector3, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_f_p_iMeshWrapper_p_iFrustumView_bool__void[] = { {&_swigt__p_f_p_iMeshWrapper_p_iFrustumView_bool__void, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsComponent[] = { {&_swigt__p_iAwsComponent, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSaver[] = {{&_swigt__p_iSaver, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODEDynamicSystemState[] = {{&_swigt__p_iODEDynamicSystemState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEventQueue[] = {{&_swigt__p_iEventQueue, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iShaderVariableContext[] = {{&_swigt__p_iShaderVariableContext, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsFloatKey[] = {{&_swigt__p_iAwsFloatKey, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCameraPositionList[] = {{&_swigt__p_iCameraPositionList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iRegionList[] = {{&_swigt__p_iRegionList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_scfImplementation1TcsPath_iPath_t[] = {{&_swigt__p_scfImplementation1TcsPath_iPath_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSceneNode[] = {{&_swigt__p_iSceneNode, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleBuiltinEffectorLinColor[] = {{&_swigt__p_iParticleBuiltinEffectorLinColor, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iVFS[] = {{&_swigt__p_iVFS, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iThingEnvironment[] = {{&_swigt__p_iThingEnvironment, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iClipper2D[] = {{&_swigt__p_iClipper2D, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEventNameRegistry[] = {{&_swigt__p_iEventNameRegistry, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonBone[] = {{&_swigt__p_iSkeletonBone, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iStringSet[] = {{&_swigt__p_iStringSet, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iGenMeshSkeletonControlState[] = {{&_swigt__p_iGenMeshSkeletonControlState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iLightList[] = {{&_swigt__p_iLightList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iVisibilityCullerListener[] = {{&_swigt__p_iVisibilityCullerListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iObjectModelListener[] = {{&_swigt__p_iObjectModelListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iStandardReporterListener[] = {{&_swigt__p_iStandardReporterListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iReporterListener[] = {{&_swigt__p_iReporterListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iObjectNameChangeListener[] = {{&_swigt__p_iObjectNameChangeListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMovableListener[] = {{&_swigt__p_iMovableListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCameraSectorListener[] = {{&_swigt__p_iCameraSectorListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iImage[] = {{&_swigt__p_iImage, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMovieRecorder[] = {{&_swigt__p_iMovieRecorder, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODEFrameUpdateCallback[] = {{&_swigt__p_iODEFrameUpdateCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDynamicsColliderCollisionCallback[] = {{&_swigt__p_iDynamicsColliderCollisionCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDynamicsCollisionCallback[] = {{&_swigt__p_iDynamicsCollisionCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDynamicsMoveCallback[] = {{&_swigt__p_iDynamicsMoveCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iOffscreenCanvasCallback[] = {{&_swigt__p_iOffscreenCanvasCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysRendererCallback[] = {{&_swigt__p_iSndSysRendererCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysStreamCallback[] = {{&_swigt__p_iSndSysStreamCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMeshDrawCallback[] = {{&_swigt__p_iMeshDrawCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iTextureCallback[] = {{&_swigt__p_iTextureCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEngineSectorCallback[] = {{&_swigt__p_iEngineSectorCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEngineFrameCallback[] = {{&_swigt__p_iEngineFrameCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iLightVisibleCallback[] = {{&_swigt__p_iLightVisibleCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSectorMeshCallback[] = {{&_swigt__p_iSectorMeshCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSectorCallback[] = {{&_swigt__p_iSectorCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iLightCallback[] = {{&_swigt__p_iLightCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPortalCallback[] = {{&_swigt__p_iPortalCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonBoneUpdateCallback[] = {{&_swigt__p_iSkeletonBoneUpdateCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonScriptCallback[] = {{&_swigt__p_iSkeletonScriptCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonUpdateCallback[] = {{&_swigt__p_iSkeletonUpdateCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMeshObjectDrawCallback[] = {{&_swigt__p_iMeshObjectDrawCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDocumentSystem[] = {{&_swigt__p_iDocumentSystem, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCollideSystem[] = {{&_swigt__p_iCollideSystem, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleSystem[] = {{&_swigt__p_iParticleSystem, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iReporterIterator[] = {{&_swigt__p_iReporterIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDocumentNodeIterator[] = {{&_swigt__p_iDocumentNodeIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDocumentAttributeIterator[] = {{&_swigt__p_iDocumentAttributeIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iConfigIterator[] = {{&_swigt__p_iConfigIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPluginIterator[] = {{&_swigt__p_iPluginIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEventAttributeIterator[] = {{&_swigt__p_iEventAttributeIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iObjectRegistryIterator[] = {{&_swigt__p_iObjectRegistryIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iObjectIterator[] = {{&_swigt__p_iObjectIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMeshWrapperIterator[] = {{&_swigt__p_iMeshWrapperIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSectorIterator[] = {{&_swigt__p_iSectorIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iLightIterator[] = {{&_swigt__p_iLightIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iVisibilityObjectIterator[] = {{&_swigt__p_iVisibilityObjectIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEventOutlet[] = {{&_swigt__p_iEventOutlet, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iColoredVertices[] = {{&_swigt__p_iColoredVertices, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysSoftwareFilter3D[] = {{&_swigt__p_iSndSysSoftwareFilter3D, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iScriptObject[] = {{&_swigt__p_iScriptObject, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMeshObject[] = {{&_swigt__p_iMeshObject, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iVisibilityObject[] = {{&_swigt__p_iVisibilityObject, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p__csPyEventHandler[] = {{&_swigt__p__csPyEventHandler, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEventHandler[] = {{&_swigt__p_iEventHandler, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAnimTimeUpdateHandler[] = {{&_swigt__p_iAnimTimeUpdateHandler, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iFrustumView[] = {{&_swigt__p_iFrustumView, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSequenceWrapper[] = {{&_swigt__p_iSequenceWrapper, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysWrapper[] = {{&_swigt__p_iSndSysWrapper, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMeshFactoryWrapper[] = {{&_swigt__p_iMeshFactoryWrapper, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMaterialWrapper[] = {{&_swigt__p_iMaterialWrapper, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iTextureWrapper[] = {{&_swigt__p_iTextureWrapper, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODEUniversalJoint[] = {{&_swigt__p_iODEUniversalJoint, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODEBallJoint[] = {{&_swigt__p_iODEBallJoint, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsKey[] = {{&_swigt__p_iAwsKey, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMapNode[] = {{&_swigt__p_iMapNode, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iGeneralMeshSubMesh[] = {{&_swigt__p_iGeneralMeshSubMesh, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonGraveyard[] = {{&_swigt__p_iSkeletonGraveyard, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iLoaderStatus[] = {{&_swigt__p_iLoaderStatus, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMeshList[] = {{&_swigt__p_iMeshList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iConsoleWatcher[] = {{&_swigt__p_iConsoleWatcher, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsConnectionKey[] = {{&_swigt__p_iAwsConnectionKey, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iTerraSampler[] = {{&_swigt__p_iTerraSampler, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleEmitter[] = {{&_swigt__p_iParticleEmitter, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsSink[] = {{&_swigt__p_iAwsSink, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iFontServer[] = {{&_swigt__p_iFontServer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysRendererSoftware[] = {{&_swigt__p_iSndSysRendererSoftware, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysSourceSoftware[] = {{&_swigt__p_iSndSysSourceSoftware, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleBuiltinEmitterBox[] = {{&_swigt__p_iParticleBuiltinEmitterBox, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleSystemBase[] = {{&_swigt__p_iParticleSystemBase, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iVisibilityCuller[] = {{&_swigt__p_iVisibilityCuller, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iFile[] = {{&_swigt__p_iFile, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonScript[] = {{&_swigt__p_iSkeletonScript, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleEffector[] = {{&_swigt__p_iParticleEffector, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iScript[] = {{&_swigt__p_iScript, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsPointKey[] = {{&_swigt__p_iAwsPointKey, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonSocket[] = {{&_swigt__p_iSkeletonSocket, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSpriteCal3DSocket[] = {{&_swigt__p_iSpriteCal3DSocket, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSceneNodeArray[] = {{&_swigt__p_iSceneNodeArray, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iLoader[] = {{&_swigt__p_iLoader, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysLoader[] = {{&_swigt__p_iSndSysLoader, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSpriteSocket[] = {{&_swigt__p_iSpriteSocket, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsIntKey[] = {{&_swigt__p_iAwsIntKey, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iGenMeshAnimationControl[] = {{&_swigt__p_iGenMeshAnimationControl, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDocumentAttribute[] = {{&_swigt__p_iDocumentAttribute, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSpriteFrame[] = {{&_swigt__p_iSpriteFrame, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iShader[] = {{&_swigt__p_iShader, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iTerrainObjectState[] = {{&_swigt__p_iTerrainObjectState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODEGeneralJointState[] = {{&_swigt__p_iODEGeneralJointState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODEJointState[] = {{&_swigt__p_iODEJointState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMaterialEngine[] = {{&_swigt__p_iMaterialEngine, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iVirtualClock[] = {{&_swigt__p_iVirtualClock, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEngine[] = {{&_swigt__p_iEngine, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsStringKey[] = {{&_swigt__p_iAwsStringKey, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iGenMeshAnimationControlType[] = {{&_swigt__p_iGenMeshAnimationControlType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iLightingProcessInfo[] = {{&_swigt__p_iLightingProcessInfo, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iReporter[] = {{&_swigt__p_iReporter, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsRGBKey[] = {{&_swigt__p_iAwsRGBKey, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iKeyboardDriver[] = {{&_swigt__p_iKeyboardDriver, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iJoystickDriver[] = {{&_swigt__p_iJoystickDriver, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMouseDriver[] = {{&_swigt__p_iMouseDriver, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysSoftwareDriver[] = {{&_swigt__p_iSndSysSoftwareDriver, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iShaderVariableAccessor[] = {{&_swigt__p_iShaderVariableAccessor, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSCF[] = {{&_swigt__p_iSCF, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonScriptKeyFrame[] = {{&_swigt__p_iSkeletonScriptKeyFrame, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iGeneralMeshState[] = {{&_swigt__p_iGeneralMeshState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSequenceTimedOperation[] = {{&_swigt__p_iSequenceTimedOperation, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iLightingProcessData[] = {{&_swigt__p_iLightingProcessData, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEngineSequenceParameters[] = {{&_swigt__p_iEngineSequenceParameters, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iKeyComposer[] = {{&_swigt__p_iKeyComposer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysRenderer[] = {{&_swigt__p_iSndSysRenderer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iShaderPriorityList[] = {{&_swigt__p_iShaderPriorityList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSprite2DUVAnimationFrame[] = {{&_swigt__p_iSprite2DUVAnimationFrame, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDocument[] = {{&_swigt__p_iDocument, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMaterialList[] = {{&_swigt__p_iMaterialList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iLight[] = {{&_swigt__p_iLight, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSimpleFormerState[] = {{&_swigt__p_iSimpleFormerState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMaterial[] = {{&_swigt__p_iMaterial, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iArrayChangeAllTcsSprite2DVertex_t[] = {{&_swigt__p_iArrayChangeAllTcsSprite2DVertex_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iArrayChangeElementsTcsSprite2DVertex_t[] = {{&_swigt__p_iArrayChangeElementsTcsSprite2DVertex_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iArrayReadOnlyTcsSprite2DVertex_t[] = {{&_swigt__p_iArrayReadOnlyTcsSprite2DVertex_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iConfigFile[] = {{&_swigt__p_iConfigFile, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEvent[] = {{&_swigt__p_iEvent, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iThingState[] = {{&_swigt__p_iThingState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iHalo[] = {{&_swigt__p_iHalo, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDynamicsSystemCollider[] = {{&_swigt__p_iDynamicsSystemCollider, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iArrayReadOnlyTiSceneNode_p_t[] = {{&_swigt__p_iArrayReadOnlyTiSceneNode_p_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsComponentNode[] = {{&_swigt__p_iAwsComponentNode, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSequenceTrigger[] = {{&_swigt__p_iSequenceTrigger, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iGraphics2D[] = {{&_swigt__p_iGraphics2D, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCameraPosition[] = {{&_swigt__p_iCameraPosition, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPolygonMesh[] = {{&_swigt__p_iPolygonMesh, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iTextureList[] = {{&_swigt__p_iTextureList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODEAMotorJoint[] = {{&_swigt__p_iODEAMotorJoint, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODESliderJoint[] = {{&_swigt__p_iODESliderJoint, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleBuiltinEmitterCone[] = {{&_swigt__p_iParticleBuiltinEmitterCone, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSectorList[] = {{&_swigt__p_iSectorList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPolygonHandle[] = {{&_swigt__p_iPolygonHandle, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iTextureHandle[] = {{&_swigt__p_iTextureHandle, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCommandLineParser[] = {{&_swigt__p_iCommandLineParser, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iFontDeleteNotify[] = {{&_swigt__p_iFontDeleteNotify, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsSlot[] = {{&_swigt__p_iAwsSlot, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iTerraFormer[] = {{&_swigt__p_iTerraFormer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMeshFactoryList[] = {{&_swigt__p_iMeshFactoryList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsSource[] = {{&_swigt__p_iAwsSource, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iGraphics3D[] = {{&_swigt__p_iGraphics3D, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonBoneRagdollInfo[] = {{&_swigt__p_iSkeletonBoneRagdollInfo, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeleton[] = {{&_swigt__p_iSkeleton, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMeshObjectType[] = {{&_swigt__p_iMeshObjectType, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysSourceSoftware3D[] = {{&_swigt__p_iSndSysSourceSoftware3D, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEngineSequenceManager[] = {{&_swigt__p_iEngineSequenceManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iTextureManager[] = {{&_swigt__p_iTextureManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iShaderManager[] = {{&_swigt__p_iShaderManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iNativeWindowManager[] = {{&_swigt__p_iNativeWindowManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iConfigManager[] = {{&_swigt__p_iConfigManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPluginManager[] = {{&_swigt__p_iPluginManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCacheManager[] = {{&_swigt__p_iCacheManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysManager[] = {{&_swigt__p_iSndSysManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsPrefManager[] = {{&_swigt__p_iAwsPrefManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsSinkManager[] = {{&_swigt__p_iAwsSinkManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsLayoutManager[] = {{&_swigt__p_iAwsLayoutManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDynamics[] = {{&_swigt__p_iDynamics, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParameterESM[] = {{&_swigt__p_iParameterESM, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDebugHelper[] = {{&_swigt__p_iDebugHelper, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleBuiltinEffectorForce[] = {{&_swigt__p_iParticleBuiltinEffectorForce, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsRectKey[] = {{&_swigt__p_iAwsRectKey, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iFactory[] = {{&_swigt__p_iFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsComponentFactory[] = {{&_swigt__p_iAwsComponentFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsKeyFactory[] = {{&_swigt__p_iAwsKeyFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsConnectionNodeFactory[] = {{&_swigt__p_iAwsConnectionNodeFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iGenMeshAnimationControlFactory[] = {{&_swigt__p_iGenMeshAnimationControlFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonBoneFactory[] = {{&_swigt__p_iSkeletonBoneFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonSocketFactory[] = {{&_swigt__p_iSkeletonSocketFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSkeletonFactory[] = {{&_swigt__p_iSkeletonFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMeshObjectFactory[] = {{&_swigt__p_iMeshObjectFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleSystemFactory[] = {{&_swigt__p_iParticleSystemFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleBuiltinEmitterFactory[] = {{&_swigt__p_iParticleBuiltinEmitterFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleBuiltinEffectorFactory[] = {{&_swigt__p_iParticleBuiltinEffectorFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleBuiltinEffectorVelocityField[] = {{&_swigt__p_iParticleBuiltinEffectorVelocityField, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iFrustumViewUserdata[] = {{&_swigt__p_iFrustumViewUserdata, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iObjectModel[] = {{&_swigt__p_iObjectModel, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMovable[] = {{&_swigt__p_iMovable, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iNativeWindow[] = {{&_swigt__p_iNativeWindow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleBuiltinEmitterBase[] = {{&_swigt__p_iParticleBuiltinEmitterBase, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysStream[] = {{&_swigt__p_iSndSysStream, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iLoaderPlugin[] = {{&_swigt__p_iLoaderPlugin, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iBinaryLoaderPlugin[] = {{&_swigt__p_iBinaryLoaderPlugin, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAwsKeyContainer[] = {{&_swigt__p_iAwsKeyContainer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPortalContainer[] = {{&_swigt__p_iPortalContainer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iImageIO[] = {{&_swigt__p_iImageIO, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iArrayChangeAllTcsShaderVariable_p_t[] = {{&_swigt__p_iArrayChangeAllTcsShaderVariable_p_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iArrayChangeElementsTcsShaderVariable_p_t[] = {{&_swigt__p_iArrayChangeElementsTcsShaderVariable_p_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iArrayReadOnlyTcsShaderVariable_p_t[] = {{&_swigt__p_iArrayReadOnlyTcsShaderVariable_p_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSprite2DState[] = {{&_swigt__p_iSprite2DState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSprite3DState[] = {{&_swigt__p_iSprite3DState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSpriteCal3DState[] = {{&_swigt__p_iSpriteCal3DState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDataBuffer[] = {{&_swigt__p_iDataBuffer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iShaderCompiler[] = {{&_swigt__p_iShaderCompiler, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODEHingeJoint[] = {{&_swigt__p_iODEHingeJoint, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleBuiltinEmitterSphere[] = {{&_swigt__p_iParticleBuiltinEmitterSphere, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSuperLightmap[] = {{&_swigt__p_iSuperLightmap, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iRendererLightmap[] = {{&_swigt__p_iRendererLightmap, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iParticleBuiltinEmitterCylinder[] = {{&_swigt__p_iParticleBuiltinEmitterCylinder, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iComponent[] = {{&_swigt__p_iComponent, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSpriteAction[] = {{&_swigt__p_iSpriteAction, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iGeneralFactoryState[] = {{&_swigt__p_iGeneralFactoryState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSprite2DFactoryState[] = {{&_swigt__p_iSprite2DFactoryState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSprite3DFactoryState[] = {{&_swigt__p_iSprite3DFactoryState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSpriteCal3DFactoryState[] = {{&_swigt__p_iSpriteCal3DFactoryState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iThingFactoryState[] = {{&_swigt__p_iThingFactoryState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iTerrainFactoryState[] = {{&_swigt__p_iTerrainFactoryState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMissingLoaderData[] = {{&_swigt__p_iMissingLoaderData, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iShaderVarStack[] = {{&_swigt__p_iShaderVarStack, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iGeneralMeshCommonState[] = {{&_swigt__p_iGeneralMeshCommonState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysData[] = {{&_swigt__p_iSndSysData, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysSoftwareOutputFilter[] = {{&_swigt__p_iSndSysSoftwareOutputFilter, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iAws[] = {{&_swigt__p_iAws, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODEDynamicState[] = {{&_swigt__p_iODEDynamicState, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSprite2DUVAnimation[] = {{&_swigt__p_iSprite2DUVAnimation, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEventPlug[] = {{&_swigt__p_iEventPlug, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_csPath[] = {{&_swigt__p_csPath, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iEventCord[] = {{&_swigt__p_iEventCord, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPortal[] = {{&_swigt__p_iPortal, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iBase[] = { {&_swigt__p_iSaver, _p_iSaverTo_p_iBase, 0, 0}, {&_swigt__p_iODEDynamicSystemState, _p_iODEDynamicSystemStateTo_p_iBase, 0, 0}, {&_swigt__p_iEventQueue, _p_iEventQueueTo_p_iBase, 0, 0}, {&_swigt__p_iShaderVariableContext, _p_iShaderVariableContextTo_p_iBase, 0, 0}, {&_swigt__p_iAwsFloatKey, _p_iAwsFloatKeyTo_p_iBase, 0, 0}, {&_swigt__p_iCameraPositionList, _p_iCameraPositionListTo_p_iBase, 0, 0}, {&_swigt__p_iRegionList, _p_iRegionListTo_p_iBase, 0, 0}, {&_swigt__p_scfImplementation1TcsPath_iPath_t, _p_scfImplementation1TcsPath_iPath_tTo_p_iBase, 0, 0}, {&_swigt__p_iSceneNode, _p_iSceneNodeTo_p_iBase, 0, 0}, {&_swigt__p_iParticleBuiltinEffectorLinColor, _p_iParticleBuiltinEffectorLinColorTo_p_iBase, 0, 0}, {&_swigt__p_iVFS, _p_iVFSTo_p_iBase, 0, 0}, {&_swigt__p_iThingEnvironment, _p_iThingEnvironmentTo_p_iBase, 0, 0}, {&_swigt__p_iClipper2D, _p_iClipper2DTo_p_iBase, 0, 0}, {&_swigt__p_iConsoleOutput, _p_iConsoleOutputTo_p_iBase, 0, 0}, {&_swigt__p_iEventNameRegistry, _p_iEventNameRegistryTo_p_iBase, 0, 0}, {&_swigt__p_iObjectRegistry, _p_iObjectRegistryTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonBone, _p_iSkeletonBoneTo_p_iBase, 0, 0}, {&_swigt__p_iSector, _p_iSectorTo_p_iBase, 0, 0}, {&_swigt__p_iStringSet, _p_iStringSetTo_p_iBase, 0, 0}, {&_swigt__p_iPcMover, _p_iPcMoverTo_p_iBase, 0, 0}, {&_swigt__p_iGenMeshSkeletonControlState, _p_iGenMeshSkeletonControlStateTo_p_iBase, 0, 0}, {&_swigt__p_iPcProperties, _p_iPcPropertiesTo_p_iBase, 0, 0}, {&_swigt__p_iLightList, _p_iLightListTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysListener, _p_iSndSysListenerTo_p_iBase, 0, 0}, {&_swigt__p_iVisibilityCullerListener, _p_iVisibilityCullerListenerTo_p_iBase, 0, 0}, {&_swigt__p_iObjectModelListener, _p_iObjectModelListenerTo_p_iBase, 0, 0}, {&_swigt__p_iPcPropertyListener, _p_iPcPropertyListenerTo_p_iBase, 0, 0}, {&_swigt__p_iPcSoundListener, _p_iPcSoundListenerTo_p_iBase, 0, 0}, {&_swigt__p_iPcInventoryListener, _p_iPcInventoryListenerTo_p_iBase, 0, 0}, {&_swigt__p_iPcMeshSelectListener, _p_iPcMeshSelectListenerTo_p_iBase, 0, 0}, {&_swigt__p_iCelTimerListener, _p_iCelTimerListenerTo_p_iBase, 0, 0}, {&_swigt__p_iStandardReporterListener, _p_iStandardReporterListenerTo_p_iBase, 0, 0}, {&_swigt__p_iReporterListener, _p_iReporterListenerTo_p_iBase, 0, 0}, {&_swigt__p_iObjectNameChangeListener, _p_iObjectNameChangeListenerTo_p_iBase, 0, 0}, {&_swigt__p_iMovableListener, _p_iMovableListenerTo_p_iBase, 0, 0}, {&_swigt__p_iCameraSectorListener, _p_iCameraSectorListenerTo_p_iBase, 0, 0}, {&_swigt__p_iFont, _p_iFontTo_p_iBase, 0, 0}, {&_swigt__p_iImage, _p_iImageTo_p_iBase, 0, 0}, {&_swigt__p_iMovieRecorder, _p_iMovieRecorderTo_p_iBase, 0, 0}, {&_swigt__p_iPcGravityCallback, _p_iPcGravityCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iCelEntityRemoveCallback, _p_iCelEntityRemoveCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iCelNewEntityCallback, _p_iCelNewEntityCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iODEFrameUpdateCallback, _p_iODEFrameUpdateCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iDynamicsColliderCollisionCallback, _p_iDynamicsColliderCollisionCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iDynamicsCollisionCallback, _p_iDynamicsCollisionCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iDynamicsMoveCallback, _p_iDynamicsMoveCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iOffscreenCanvasCallback, _p_iOffscreenCanvasCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysRendererCallback, _p_iSndSysRendererCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysStreamCallback, _p_iSndSysStreamCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iMeshDrawCallback, _p_iMeshDrawCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iTextureCallback, _p_iTextureCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iEngineSectorCallback, _p_iEngineSectorCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iEngineFrameCallback, _p_iEngineFrameCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iLightVisibleCallback, _p_iLightVisibleCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iSectorMeshCallback, _p_iSectorMeshCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iSectorCallback, _p_iSectorCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iLightCallback, _p_iLightCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iPortalCallback, _p_iPortalCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonBoneUpdateCallback, _p_iSkeletonBoneUpdateCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonScriptCallback, _p_iSkeletonScriptCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonUpdateCallback, _p_iSkeletonUpdateCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iMeshObjectDrawCallback, _p_iMeshObjectDrawCallbackTo_p_iBase, 0, 0}, {&_swigt__p_iDocumentSystem, _p_iDocumentSystemTo_p_iBase, 0, 0}, {&_swigt__p_iCelRegion, _p_iCelRegionTo_p_iBase, 0, 0}, {&_swigt__p_iPcMechanicsSystem, _p_iPcMechanicsSystemTo_p_iBase, 0, 0}, {&_swigt__p_iDynamicSystem, _p_iDynamicSystemTo_p_iBase, 0, 0}, {&_swigt__p_iCollideSystem, _p_iCollideSystemTo_p_iBase, 0, 0}, {&_swigt__p_iParticleSystem, _p_iParticleSystemTo_p_iBase, 0, 0}, {&_swigt__p_iPcRegion, _p_iPcRegionTo_p_iBase, 0, 0}, {&_swigt__p_iRegion, _p_iRegionTo_p_iBase, 0, 0}, {&_swigt__p_iStringArray, _p_iStringArrayTo_p_iBase, 0, 0}, {&_swigt__p_iCelZone, _p_iCelZoneTo_p_iBase, 0, 0}, {&_swigt__p_iReporterIterator, _p_iReporterIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iCelEntityIterator, _p_iCelEntityIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iDocumentNodeIterator, _p_iDocumentNodeIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iDocumentAttributeIterator, _p_iDocumentAttributeIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iConfigIterator, _p_iConfigIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iPluginIterator, _p_iPluginIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iEventAttributeIterator, _p_iEventAttributeIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iObjectRegistryIterator, _p_iObjectRegistryIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iObjectIterator, _p_iObjectIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iMeshWrapperIterator, _p_iMeshWrapperIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iSectorIterator, _p_iSectorIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iLightIterator, _p_iLightIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iVisibilityObjectIterator, _p_iVisibilityObjectIteratorTo_p_iBase, 0, 0}, {&_swigt__p_iEventOutlet, _p_iEventOutletTo_p_iBase, 0, 0}, {&_swigt__p_iColoredVertices, _p_iColoredVerticesTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysSoftwareFilter3D, _p_iSndSysSoftwareFilter3DTo_p_iBase, 0, 0}, {&_swigt__p_iCelPropertyClassList, _p_iCelPropertyClassListTo_p_iBase, 0, 0}, {&_swigt__p_iScriptObject, _p_iScriptObjectTo_p_iBase, 0, 0}, {&_swigt__p_iMeshObject, _p_iMeshObjectTo_p_iBase, 0, 0}, {&_swigt__p_iPcMechanicsObject, _p_iPcMechanicsObjectTo_p_iBase, 0, 0}, {&_swigt__p_iObject, _p_iObjectTo_p_iBase, 0, 0}, {&_swigt__p_iVisibilityObject, _p_iVisibilityObjectTo_p_iBase, 0, 0}, {&_swigt__p_iPcProjectile, _p_iPcProjectileTo_p_iBase, 0, 0}, {&_swigt__p_iBillboardEventHandler, _p_iBillboardEventHandlerTo_p_iBase, 0, 0}, {&_swigt__p__csPyEventHandler, _p__csPyEventHandlerTo_p_iBase, 0, 0}, {&_swigt__p_iEventHandler, _p_iEventHandlerTo_p_iBase, 0, 0}, {&_swigt__p_iAnimTimeUpdateHandler, _p_iAnimTimeUpdateHandlerTo_p_iBase, 0, 0}, {&_swigt__p_iFrustumView, _p_iFrustumViewTo_p_iBase, 0, 0}, {&_swigt__p_iSequenceWrapper, _p_iSequenceWrapperTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysWrapper, _p_iSndSysWrapperTo_p_iBase, 0, 0}, {&_swigt__p_iMeshFactoryWrapper, _p_iMeshFactoryWrapperTo_p_iBase, 0, 0}, {&_swigt__p_iMeshWrapper, _p_iMeshWrapperTo_p_iBase, 0, 0}, {&_swigt__p_iMaterialWrapper, _p_iMaterialWrapperTo_p_iBase, 0, 0}, {&_swigt__p_iTextureWrapper, _p_iTextureWrapperTo_p_iBase, 0, 0}, {&_swigt__p_iODEUniversalJoint, _p_iODEUniversalJointTo_p_iBase, 0, 0}, {&_swigt__p_iODEBallJoint, _p_iODEBallJointTo_p_iBase, 0, 0}, {&_swigt__p_iAwsKey, _p_iAwsKeyTo_p_iBase, 0, 0}, {&_swigt__p_iMapNode, _p_iMapNodeTo_p_iBase, 0, 0}, {&_swigt__p_iGeneralMeshSubMesh, _p_iGeneralMeshSubMeshTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonGraveyard, _p_iSkeletonGraveyardTo_p_iBase, 0, 0}, {&_swigt__p_iCelPropertyClassTemplate, _p_iCelPropertyClassTemplateTo_p_iBase, 0, 0}, {&_swigt__p_iCelEntityTemplate, _p_iCelEntityTemplateTo_p_iBase, 0, 0}, {&_swigt__p_iCelBehaviour, _p_iCelBehaviourTo_p_iBase, 0, 0}, {&_swigt__p_iLoaderStatus, _p_iLoaderStatusTo_p_iBase, 0, 0}, {&_swigt__p_iMeshList, _p_iMeshListTo_p_iBase, 0, 0}, {&_swigt__p_iConsoleWatcher, _p_iConsoleWatcherTo_p_iBase, 0, 0}, {&_swigt__p_iAwsConnectionKey, _p_iAwsConnectionKeyTo_p_iBase, 0, 0}, {&_swigt__p_iTerraSampler, _p_iTerraSamplerTo_p_iBase, 0, 0}, {&_swigt__p_iBase, 0, 0, 0}, {&_swigt__p_iParticleEmitter, _p_iParticleEmitterTo_p_iBase, 0, 0}, {&_swigt__p_iCelInventorySpace, _p_iCelInventorySpaceTo_p_iBase, 0, 0}, {&_swigt__p_iAwsSink, _p_iAwsSinkTo_p_iBase, 0, 0}, {&_swigt__p_iPcDamage, _p_iPcDamageTo_p_iBase, 0, 0}, {&_swigt__p_iFontServer, _p_iFontServerTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysRendererSoftware, _p_iSndSysRendererSoftwareTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysSourceSoftware, _p_iSndSysSourceSoftwareTo_p_iBase, 0, 0}, {&_swigt__p_iPcLinearMovement, _p_iPcLinearMovementTo_p_iBase, 0, 0}, {&_swigt__p_iParticleBuiltinEmitterBox, _p_iParticleBuiltinEmitterBoxTo_p_iBase, 0, 0}, {&_swigt__p_iParticleSystemBase, _p_iParticleSystemBaseTo_p_iBase, 0, 0}, {&_swigt__p_iVisibilityCuller, _p_iVisibilityCullerTo_p_iBase, 0, 0}, {&_swigt__p_iFile, _p_iFileTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonScript, _p_iSkeletonScriptTo_p_iBase, 0, 0}, {&_swigt__p_iPath, _p_iPathTo_p_iBase, 0, 0}, {&_swigt__p_iParticleEffector, _p_iParticleEffectorTo_p_iBase, 0, 0}, {&_swigt__p_iScript, _p_iScriptTo_p_iBase, 0, 0}, {&_swigt__p_iAwsPointKey, _p_iAwsPointKeyTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonSocket, _p_iSkeletonSocketTo_p_iBase, 0, 0}, {&_swigt__p_iSpriteCal3DSocket, _p_iSpriteCal3DSocketTo_p_iBase, 0, 0}, {&_swigt__p_iSceneNodeArray, _p_iSceneNodeArrayTo_p_iBase, 0, 0}, {&_swigt__p_iLoader, _p_iLoaderTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysLoader, _p_iSndSysLoaderTo_p_iBase, 0, 0}, {&_swigt__p_iSpriteSocket, _p_iSpriteSocketTo_p_iBase, 0, 0}, {&_swigt__p_iAwsIntKey, _p_iAwsIntKeyTo_p_iBase, 0, 0}, {&_swigt__p_iPcInventory, _p_iPcInventoryTo_p_iBase, 0, 0}, {&_swigt__p_iGenMeshAnimationControl, _p_iGenMeshAnimationControlTo_p_iBase, 0, 0}, {&_swigt__p_iDocumentAttribute, _p_iDocumentAttributeTo_p_iBase, 0, 0}, {&_swigt__p_iSpriteFrame, _p_iSpriteFrameTo_p_iBase, 0, 0}, {&_swigt__p_iShader, _p_iShaderTo_p_iBase, 0, 0}, {&_swigt__p_iTerrainObjectState, _p_iTerrainObjectStateTo_p_iBase, 0, 0}, {&_swigt__p_iODEGeneralJointState, _p_iODEGeneralJointStateTo_p_iBase, 0, 0}, {&_swigt__p_iODEJointState, _p_iODEJointStateTo_p_iBase, 0, 0}, {&_swigt__p_iMaterialEngine, _p_iMaterialEngineTo_p_iBase, 0, 0}, {&_swigt__p_iPcWheeled, _p_iPcWheeledTo_p_iBase, 0, 0}, {&_swigt__p_iVirtualClock, _p_iVirtualClockTo_p_iBase, 0, 0}, {&_swigt__p_iEngine, _p_iEngineTo_p_iBase, 0, 0}, {&_swigt__p_iAwsStringKey, _p_iAwsStringKeyTo_p_iBase, 0, 0}, {&_swigt__p_iGenMeshAnimationControlType, _p_iGenMeshAnimationControlTypeTo_p_iBase, 0, 0}, {&_swigt__p_iLightingProcessInfo, _p_iLightingProcessInfoTo_p_iBase, 0, 0}, {&_swigt__p_iPcCommandInput, _p_iPcCommandInputTo_p_iBase, 0, 0}, {&_swigt__p_iReporter, _p_iReporterTo_p_iBase, 0, 0}, {&_swigt__p_iCelPropertyClass, _p_iCelPropertyClassTo_p_iBase, 0, 0}, {&_swigt__p_iAwsRGBKey, _p_iAwsRGBKeyTo_p_iBase, 0, 0}, {&_swigt__p_iBillboardLayer, _p_iBillboardLayerTo_p_iBase, 0, 0}, {&_swigt__p_iString, _p_iStringTo_p_iBase, 0, 0}, {&_swigt__p_iPcCharacteristics, _p_iPcCharacteristicsTo_p_iBase, 0, 0}, {&_swigt__p_iCelMapFile, _p_iCelMapFileTo_p_iBase, 0, 0}, {&_swigt__p_iKeyboardDriver, _p_iKeyboardDriverTo_p_iBase, 0, 0}, {&_swigt__p_iJoystickDriver, _p_iJoystickDriverTo_p_iBase, 0, 0}, {&_swigt__p_iMouseDriver, _p_iMouseDriverTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysSoftwareDriver, _p_iSndSysSoftwareDriverTo_p_iBase, 0, 0}, {&_swigt__p_iShaderVariableAccessor, _p_iShaderVariableAccessorTo_p_iBase, 0, 0}, {&_swigt__p_iPcActorMove, _p_iPcActorMoveTo_p_iBase, 0, 0}, {&_swigt__p_iPcMechanicsBalancedGroup, _p_iPcMechanicsBalancedGroupTo_p_iBase, 0, 0}, {&_swigt__p_iSCF, _p_iSCFTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonScriptKeyFrame, _p_iSkeletonScriptKeyFrameTo_p_iBase, 0, 0}, {&_swigt__p_iPcBillboard, _p_iPcBillboardTo_p_iBase, 0, 0}, {&_swigt__p_iBillboard, _p_iBillboardTo_p_iBase, 0, 0}, {&_swigt__p_iGeneralMeshState, _p_iGeneralMeshStateTo_p_iBase, 0, 0}, {&_swigt__p_iPcMechanicsThrusterController, _p_iPcMechanicsThrusterControllerTo_p_iBase, 0, 0}, {&_swigt__p_iPcCraftController, _p_iPcCraftControllerTo_p_iBase, 0, 0}, {&_swigt__p_iSequenceTimedOperation, _p_iSequenceTimedOperationTo_p_iBase, 0, 0}, {&_swigt__p_iJoint, _p_iJointTo_p_iBase, 0, 0}, {&_swigt__p_iLightingProcessData, _p_iLightingProcessDataTo_p_iBase, 0, 0}, {&_swigt__p_iEngineSequenceParameters, _p_iEngineSequenceParametersTo_p_iBase, 0, 0}, {&_swigt__p_iKeyComposer, _p_iKeyComposerTo_p_iBase, 0, 0}, {&_swigt__p_iBodyGroup, _p_iBodyGroupTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysRenderer, _p_iSndSysRendererTo_p_iBase, 0, 0}, {&_swigt__p_iCelEntityList, _p_iCelEntityListTo_p_iBase, 0, 0}, {&_swigt__p_iShaderPriorityList, _p_iShaderPriorityListTo_p_iBase, 0, 0}, {&_swigt__p_iSprite2DUVAnimationFrame, _p_iSprite2DUVAnimationFrameTo_p_iBase, 0, 0}, {&_swigt__p_iPcMeshSelect, _p_iPcMeshSelectTo_p_iBase, 0, 0}, {&_swigt__p_iDocument, _p_iDocumentTo_p_iBase, 0, 0}, {&_swigt__p_iMaterialList, _p_iMaterialListTo_p_iBase, 0, 0}, {&_swigt__p_iLight, _p_iLightTo_p_iBase, 0, 0}, {&_swigt__p_iSimpleFormerState, _p_iSimpleFormerStateTo_p_iBase, 0, 0}, {&_swigt__p_iPcMechanicsJoint, _p_iPcMechanicsJointTo_p_iBase, 0, 0}, {&_swigt__p_iMaterial, _p_iMaterialTo_p_iBase, 0, 0}, {&_swigt__p_iArrayChangeAllTcsSprite2DVertex_t, _p_iArrayChangeAllTcsSprite2DVertex_tTo_p_iBase, 0, 0}, {&_swigt__p_iArrayChangeElementsTcsSprite2DVertex_t, _p_iArrayChangeElementsTcsSprite2DVertex_tTo_p_iBase, 0, 0}, {&_swigt__p_iArrayReadOnlyTcsSprite2DVertex_t, _p_iArrayReadOnlyTcsSprite2DVertex_tTo_p_iBase, 0, 0}, {&_swigt__p_iConfigFile, _p_iConfigFileTo_p_iBase, 0, 0}, {&_swigt__p_iEvent, _p_iEventTo_p_iBase, 0, 0}, {&_swigt__p_iThingState, _p_iThingStateTo_p_iBase, 0, 0}, {&_swigt__p_iPcHover, _p_iPcHoverTo_p_iBase, 0, 0}, {&_swigt__p_iHalo, _p_iHaloTo_p_iBase, 0, 0}, {&_swigt__p_iPcMesh, _p_iPcMeshTo_p_iBase, 0, 0}, {&_swigt__p_iDynamicsSystemCollider, _p_iDynamicsSystemColliderTo_p_iBase, 0, 0}, {&_swigt__p_iCollider, _p_iColliderTo_p_iBase, 0, 0}, {&_swigt__p_iArrayReadOnlyTiSceneNode_p_t, _p_iArrayReadOnlyTiSceneNode_p_tTo_p_iBase, 0, 0}, {&_swigt__p_iPcTimer, _p_iPcTimerTo_p_iBase, 0, 0}, {&_swigt__p_iDocumentNode, _p_iDocumentNodeTo_p_iBase, 0, 0}, {&_swigt__p_iAwsComponentNode, _p_iAwsComponentNodeTo_p_iBase, 0, 0}, {&_swigt__p_iSequenceTrigger, _p_iSequenceTriggerTo_p_iBase, 0, 0}, {&_swigt__p_iGraphics2D, _p_iGraphics2DTo_p_iBase, 0, 0}, {&_swigt__p_iCameraPosition, _p_iCameraPositionTo_p_iBase, 0, 0}, {&_swigt__p_iPolygonMesh, _p_iPolygonMeshTo_p_iBase, 0, 0}, {&_swigt__p_iTextureList, _p_iTextureListTo_p_iBase, 0, 0}, {&_swigt__p_iPcMechanicsThruster, _p_iPcMechanicsThrusterTo_p_iBase, 0, 0}, {&_swigt__p_iPcMovableConstraint, _p_iPcMovableConstraintTo_p_iBase, 0, 0}, {&_swigt__p_iView, _p_iViewTo_p_iBase, 0, 0}, {&_swigt__p_iODEHinge2Joint, _p_iODEHinge2JointTo_p_iBase, 0, 0}, {&_swigt__p_iODEAMotorJoint, _p_iODEAMotorJointTo_p_iBase, 0, 0}, {&_swigt__p_iODESliderJoint, _p_iODESliderJointTo_p_iBase, 0, 0}, {&_swigt__p_iParticleBuiltinEmitterCone, _p_iParticleBuiltinEmitterConeTo_p_iBase, 0, 0}, {&_swigt__p_iSectorList, _p_iSectorListTo_p_iBase, 0, 0}, {&_swigt__p_iPolygonHandle, _p_iPolygonHandleTo_p_iBase, 0, 0}, {&_swigt__p_iTextureHandle, _p_iTextureHandleTo_p_iBase, 0, 0}, {&_swigt__p_iCommandLineParser, _p_iCommandLineParserTo_p_iBase, 0, 0}, {&_swigt__p_iFontDeleteNotify, _p_iFontDeleteNotifyTo_p_iBase, 0, 0}, {&_swigt__p_iAwsSlot, _p_iAwsSlotTo_p_iBase, 0, 0}, {&_swigt__p_iCelBlLayer, _p_iCelBlLayerTo_p_iBase, 0, 0}, {&_swigt__p_iCelPlLayer, _p_iCelPlLayerTo_p_iBase, 0, 0}, {&_swigt__p_iTerraFormer, _p_iTerraFormerTo_p_iBase, 0, 0}, {&_swigt__p_iPcSoundSource, _p_iPcSoundSourceTo_p_iBase, 0, 0}, {&_swigt__p_iMeshFactoryList, _p_iMeshFactoryListTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysSource, _p_iSndSysSourceTo_p_iBase, 0, 0}, {&_swigt__p_iAwsSource, _p_iAwsSourceTo_p_iBase, 0, 0}, {&_swigt__p_iGraphics3D, _p_iGraphics3DTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonBoneRagdollInfo, _p_iSkeletonBoneRagdollInfoTo_p_iBase, 0, 0}, {&_swigt__p_iSkeleton, _p_iSkeletonTo_p_iBase, 0, 0}, {&_swigt__p_iMeshObjectType, _p_iMeshObjectTypeTo_p_iBase, 0, 0}, {&_swigt__p_iRigidBody, _p_iRigidBodyTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysSourceSoftware3D, _p_iSndSysSourceSoftware3DTo_p_iBase, 0, 0}, {&_swigt__p_iPcZoneManager, _p_iPcZoneManagerTo_p_iBase, 0, 0}, {&_swigt__p_iBillboardManager, _p_iBillboardManagerTo_p_iBase, 0, 0}, {&_swigt__p_iEngineSequenceManager, _p_iEngineSequenceManagerTo_p_iBase, 0, 0}, {&_swigt__p_iTextureManager, _p_iTextureManagerTo_p_iBase, 0, 0}, {&_swigt__p_iShaderManager, _p_iShaderManagerTo_p_iBase, 0, 0}, {&_swigt__p_iNativeWindowManager, _p_iNativeWindowManagerTo_p_iBase, 0, 0}, {&_swigt__p_iConfigManager, _p_iConfigManagerTo_p_iBase, 0, 0}, {&_swigt__p_iPluginManager, _p_iPluginManagerTo_p_iBase, 0, 0}, {&_swigt__p_iCacheManager, _p_iCacheManagerTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysManager, _p_iSndSysManagerTo_p_iBase, 0, 0}, {&_swigt__p_iAwsPrefManager, _p_iAwsPrefManagerTo_p_iBase, 0, 0}, {&_swigt__p_iAwsSinkManager, _p_iAwsSinkManagerTo_p_iBase, 0, 0}, {&_swigt__p_iAwsLayoutManager, _p_iAwsLayoutManagerTo_p_iBase, 0, 0}, {&_swigt__p_iDynamics, _p_iDynamicsTo_p_iBase, 0, 0}, {&_swigt__p_iParameterESM, _p_iParameterESMTo_p_iBase, 0, 0}, {&_swigt__p_iCelConsoleCommand, _p_iCelConsoleCommandTo_p_iBase, 0, 0}, {&_swigt__p_iCelConsole, _p_iCelConsoleTo_p_iBase, 0, 0}, {&_swigt__p_iDebugHelper, _p_iDebugHelperTo_p_iBase, 0, 0}, {&_swigt__p_iParticleBuiltinEffectorForce, _p_iParticleBuiltinEffectorForceTo_p_iBase, 0, 0}, {&_swigt__p_iAwsRectKey, _p_iAwsRectKeyTo_p_iBase, 0, 0}, {&_swigt__p_iCelPropertyClassFactory, _p_iCelPropertyClassFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iFactory, _p_iFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iAwsComponentFactory, _p_iAwsComponentFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iAwsKeyFactory, _p_iAwsKeyFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iAwsConnectionNodeFactory, _p_iAwsConnectionNodeFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iGenMeshAnimationControlFactory, _p_iGenMeshAnimationControlFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonBoneFactory, _p_iSkeletonBoneFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonSocketFactory, _p_iSkeletonSocketFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iSkeletonFactory, _p_iSkeletonFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iMeshObjectFactory, _p_iMeshObjectFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iParticleSystemFactory, _p_iParticleSystemFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iParticleBuiltinEmitterFactory, _p_iParticleBuiltinEmitterFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iParticleBuiltinEffectorFactory, _p_iParticleBuiltinEffectorFactoryTo_p_iBase, 0, 0}, {&_swigt__p_iCelEntityTracker, _p_iCelEntityTrackerTo_p_iBase, 0, 0}, {&_swigt__p_iParticleBuiltinEffectorVelocityField, _p_iParticleBuiltinEffectorVelocityFieldTo_p_iBase, 0, 0}, {&_swigt__p_iPcDefaultCamera, _p_iPcDefaultCameraTo_p_iBase, 0, 0}, {&_swigt__p_iPcSimpleCamera, _p_iPcSimpleCameraTo_p_iBase, 0, 0}, {&_swigt__p_iPcCamera, _p_iPcCameraTo_p_iBase, 0, 0}, {&_swigt__p_iCamera, _p_iCameraTo_p_iBase, 0, 0}, {&_swigt__p_iFrustumViewUserdata, _p_iFrustumViewUserdataTo_p_iBase, 0, 0}, {&_swigt__p_iObjectModel, _p_iObjectModelTo_p_iBase, 0, 0}, {&_swigt__p_iPcMovable, _p_iPcMovableTo_p_iBase, 0, 0}, {&_swigt__p_iMovable, _p_iMovableTo_p_iBase, 0, 0}, {&_swigt__p_iNativeWindow, _p_iNativeWindowTo_p_iBase, 0, 0}, {&_swigt__p_iParticleBuiltinEmitterBase, _p_iParticleBuiltinEmitterBaseTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysStream, _p_iSndSysStreamTo_p_iBase, 0, 0}, {&_swigt__p_iLoaderPlugin, _p_iLoaderPluginTo_p_iBase, 0, 0}, {&_swigt__p_iBinaryLoaderPlugin, _p_iBinaryLoaderPluginTo_p_iBase, 0, 0}, {&_swigt__p_iAwsKeyContainer, _p_iAwsKeyContainerTo_p_iBase, 0, 0}, {&_swigt__p_iPortalContainer, _p_iPortalContainerTo_p_iBase, 0, 0}, {&_swigt__p_iImageIO, _p_iImageIOTo_p_iBase, 0, 0}, {&_swigt__p_iArrayChangeAllTcsShaderVariable_p_t, _p_iArrayChangeAllTcsShaderVariable_p_tTo_p_iBase, 0, 0}, {&_swigt__p_iArrayChangeElementsTcsShaderVariable_p_t, _p_iArrayChangeElementsTcsShaderVariable_p_tTo_p_iBase, 0, 0}, {&_swigt__p_iArrayReadOnlyTcsShaderVariable_p_t, _p_iArrayReadOnlyTcsShaderVariable_p_tTo_p_iBase, 0, 0}, {&_swigt__p_iSprite2DState, _p_iSprite2DStateTo_p_iBase, 0, 0}, {&_swigt__p_iSprite3DState, _p_iSprite3DStateTo_p_iBase, 0, 0}, {&_swigt__p_iSpriteCal3DState, _p_iSpriteCal3DStateTo_p_iBase, 0, 0}, {&_swigt__p_iDataBuffer, _p_iDataBufferTo_p_iBase, 0, 0}, {&_swigt__p_iShaderCompiler, _p_iShaderCompilerTo_p_iBase, 0, 0}, {&_swigt__p_iODEHingeJoint, _p_iODEHingeJointTo_p_iBase, 0, 0}, {&_swigt__p_iParticleBuiltinEmitterSphere, _p_iParticleBuiltinEmitterSphereTo_p_iBase, 0, 0}, {&_swigt__p_iSuperLightmap, _p_iSuperLightmapTo_p_iBase, 0, 0}, {&_swigt__p_iRendererLightmap, _p_iRendererLightmapTo_p_iBase, 0, 0}, {&_swigt__p_iParticleBuiltinEmitterCylinder, _p_iParticleBuiltinEmitterCylinderTo_p_iBase, 0, 0}, {&_swigt__p_iComponent, _p_iComponentTo_p_iBase, 0, 0}, {&_swigt__p_iAwsComponent, _p_iAwsComponentTo_p_iBase, 0, 0}, {&_swigt__p_iSpriteAction, _p_iSpriteActionTo_p_iBase, 0, 0}, {&_swigt__p_iGeneralFactoryState, _p_iGeneralFactoryStateTo_p_iBase, 0, 0}, {&_swigt__p_iSprite2DFactoryState, _p_iSprite2DFactoryStateTo_p_iBase, 0, 0}, {&_swigt__p_iSprite3DFactoryState, _p_iSprite3DFactoryStateTo_p_iBase, 0, 0}, {&_swigt__p_iSpriteCal3DFactoryState, _p_iSpriteCal3DFactoryStateTo_p_iBase, 0, 0}, {&_swigt__p_iThingFactoryState, _p_iThingFactoryStateTo_p_iBase, 0, 0}, {&_swigt__p_iTerrainFactoryState, _p_iTerrainFactoryStateTo_p_iBase, 0, 0}, {&_swigt__p_iPcTooltip, _p_iPcTooltipTo_p_iBase, 0, 0}, {&_swigt__p_celOneParameterBlock, _p_celOneParameterBlockTo_p_iBase, 0, 0}, {&_swigt__p_celVariableParameterBlock, _p_celVariableParameterBlockTo_p_iBase, 0, 0}, {&_swigt__p_celGenericParameterBlock, _p_celGenericParameterBlockTo_p_iBase, 0, 0}, {&_swigt__p_iCelParameterBlock, _p_iCelParameterBlockTo_p_iBase, 0, 0}, {&_swigt__p_iMissingLoaderData, _p_iMissingLoaderDataTo_p_iBase, 0, 0}, {&_swigt__p_iCelInventorySpaceSlot, _p_iCelInventorySpaceSlotTo_p_iBase, 0, 0}, {&_swigt__p_iShaderVarStack, _p_iShaderVarStackTo_p_iBase, 0, 0}, {&_swigt__p_iGeneralMeshCommonState, _p_iGeneralMeshCommonStateTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysData, _p_iSndSysDataTo_p_iBase, 0, 0}, {&_swigt__p_iPcSolid, _p_iPcSolidTo_p_iBase, 0, 0}, {&_swigt__p_iSndSysSoftwareOutputFilter, _p_iSndSysSoftwareOutputFilterTo_p_iBase, 0, 0}, {&_swigt__p_iAws, _p_iAwsTo_p_iBase, 0, 0}, {&_swigt__p_iODEDynamicState, _p_iODEDynamicStateTo_p_iBase, 0, 0}, {&_swigt__p_iSprite2DUVAnimation, _p_iSprite2DUVAnimationTo_p_iBase, 0, 0}, {&_swigt__p_iCelEntity, _p_iCelEntityTo_p_iBase, 0, 0}, {&_swigt__p_iEventPlug, _p_iEventPlugTo_p_iBase, 0, 0}, {&_swigt__p_csPath, _p_csPathTo_p_iBase, 0, 0}, {&_swigt__p_iEventCord, _p_iEventCordTo_p_iBase, 0, 0}, {&_swigt__p_iPcGravity, _p_iPcGravityTo_p_iBase, 0, 0}, {&_swigt__p_iPortal, _p_iPortalTo_p_iBase, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iBillboard[] = { {&_swigt__p_iBillboard, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iBillboardEventHandler[] = { {&_swigt__p_iBillboardEventHandler, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iBillboardLayer[] = { {&_swigt__p_iBillboardLayer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iBillboardManager[] = { {&_swigt__p_iBillboardManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iBodyGroup[] = { {&_swigt__p_iBodyGroup, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCamera[] = { {&_swigt__p_iCamera, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelBehaviour[] = { {&_swigt__p_iCelBehaviour, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelBlLayer[] = { {&_swigt__p_iCelBlLayer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelConsole[] = { {&_swigt__p_iCelConsole, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelConsoleCommand[] = { {&_swigt__p_iCelConsoleCommand, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelDataBuffer[] = { {&_swigt__p_iCelDataBuffer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelEntity[] = { {&_swigt__p_iCelEntity, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelEntityIterator[] = { {&_swigt__p_iCelEntityIterator, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelEntityList[] = { {&_swigt__p_iCelEntityList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelEntityRemoveCallback[] = { {&_swigt__p_iCelEntityRemoveCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelEntityTemplate[] = { {&_swigt__p_iCelEntityTemplate, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelEntityTracker[] = { {&_swigt__p_iCelEntityTracker, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelInventorySpace[] = { {&_swigt__p_iCelInventorySpace, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelInventorySpaceSlot[] = { {&_swigt__p_iCelInventorySpaceSlot, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelMapFile[] = { {&_swigt__p_iCelMapFile, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelNewEntityCallback[] = { {&_swigt__p_iCelNewEntityCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelParameterBlock[] = { {&_swigt__p_iCelParameterBlock, 0, 0, 0}, {&_swigt__p_celGenericParameterBlock, _p_celGenericParameterBlockTo_p_iCelParameterBlock, 0, 0}, {&_swigt__p_celVariableParameterBlock, _p_celVariableParameterBlockTo_p_iCelParameterBlock, 0, 0}, {&_swigt__p_celOneParameterBlock, _p_celOneParameterBlockTo_p_iCelParameterBlock, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelPlLayer[] = { {&_swigt__p_iCelPlLayer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelPropertyChangeCallback[] = { {&_swigt__p_iCelPropertyChangeCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelPropertyClass[] = { {&_swigt__p_iCelPropertyClass, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelPropertyClassFactory[] = { {&_swigt__p_iCelPropertyClassFactory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelPropertyClassList[] = { {&_swigt__p_iCelPropertyClassList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelPropertyClassTemplate[] = { {&_swigt__p_iCelPropertyClassTemplate, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelRegion[] = { {&_swigt__p_iCelRegion, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelTimerListener[] = { {&_swigt__p_iCelTimerListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCelZone[] = { {&_swigt__p_iCelZone, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iCollider[] = { {&_swigt__p_iCollider, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iConsoleInput[] = { {&_swigt__p_iConsoleInput, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iConsoleOutput[] = { {&_swigt__p_iConsoleOutput, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDocumentNode[] = { {&_swigt__p_iDocumentNode, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iDynamicSystem[] = { {&_swigt__p_iDynamicSystem, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iFont[] = { {&_swigt__p_iFont, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iJoint[] = { {&_swigt__p_iJoint, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iMeshWrapper[] = { {&_swigt__p_iMeshWrapper, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iODEHinge2Joint[] = { {&_swigt__p_iODEHinge2Joint, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iObject[] = { {&_swigt__p_iObject, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iObjectRegistry[] = { {&_swigt__p_iObjectRegistry, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPath[] = { {&_swigt__p_iPath, 0, 0, 0}, {&_swigt__p_scfImplementation1TcsPath_iPath_t, _p_scfImplementation1TcsPath_iPath_tTo_p_iPath, 0, 0}, {&_swigt__p_csPath, _p_csPathTo_p_iPath, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcActorMove[] = { {&_swigt__p_iPcActorMove, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcBillboard[] = { {&_swigt__p_iPcBillboard, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcCamera[] = { {&_swigt__p_iPcDefaultCamera, _p_iPcDefaultCameraTo_p_iPcCamera, 0, 0}, {&_swigt__p_iPcCamera, 0, 0, 0}, {&_swigt__p_iPcSimpleCamera, _p_iPcSimpleCameraTo_p_iPcCamera, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcCharacteristics[] = { {&_swigt__p_iPcCharacteristics, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcCollisionDetection[] = { {&_swigt__p_iPcCollisionDetection, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcCommandInput[] = { {&_swigt__p_iPcCommandInput, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcCraftController[] = { {&_swigt__p_iPcCraftController, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcDamage[] = { {&_swigt__p_iPcDamage, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcDefaultCamera[] = { {&_swigt__p_iPcDefaultCamera, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcGravity[] = { {&_swigt__p_iPcGravity, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcGravityCallback[] = { {&_swigt__p_iPcGravityCallback, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcHover[] = { {&_swigt__p_iPcHover, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcInventory[] = { {&_swigt__p_iPcInventory, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcInventoryListener[] = { {&_swigt__p_iPcInventoryListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcLight[] = { {&_swigt__p_iPcLight, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcLinearMovement[] = { {&_swigt__p_iPcLinearMovement, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMechanicsBalancedGroup[] = { {&_swigt__p_iPcMechanicsBalancedGroup, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMechanicsJoint[] = { {&_swigt__p_iPcMechanicsJoint, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMechanicsObject[] = { {&_swigt__p_iPcMechanicsObject, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMechanicsSystem[] = { {&_swigt__p_iPcMechanicsSystem, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMechanicsThruster[] = { {&_swigt__p_iPcMechanicsThruster, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMechanicsThrusterController[] = { {&_swigt__p_iPcMechanicsThrusterController, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMesh[] = { {&_swigt__p_iPcMesh, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMeshSelect[] = { {&_swigt__p_iPcMeshSelect, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMeshSelectListener[] = { {&_swigt__p_iPcMeshSelectListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMovable[] = { {&_swigt__p_iPcMovable, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMovableConstraint[] = { {&_swigt__p_iPcMovableConstraint, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcMover[] = { {&_swigt__p_iPcMover, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcProjectile[] = { {&_swigt__p_iPcProjectile, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcProperties[] = { {&_swigt__p_iPcProperties, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcPropertyListener[] = { {&_swigt__p_iPcPropertyListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcRegion[] = { {&_swigt__p_iPcRegion, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcSimpleCamera[] = { {&_swigt__p_iPcSimpleCamera, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcSolid[] = { {&_swigt__p_iPcSolid, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcSoundListener[] = { {&_swigt__p_iPcSoundListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcSoundSource[] = { {&_swigt__p_iPcSoundSource, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcTimer[] = { {&_swigt__p_iPcTimer, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcTooltip[] = { {&_swigt__p_iPcTooltip, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcWheeled[] = { {&_swigt__p_iPcWheeled, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iPcZoneManager[] = { {&_swigt__p_iPcZoneManager, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iRegion[] = { {&_swigt__p_iRegion, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iRigidBody[] = { {&_swigt__p_iRigidBody, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSector[] = { {&_swigt__p_iSector, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysListener[] = { {&_swigt__p_iSndSysListener, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iSndSysSource[] = { {&_swigt__p_iSndSysSourceSoftware3D, _p_iSndSysSourceSoftware3DTo_p_iSndSysSource, 0, 0}, {&_swigt__p_iSndSysSource, 0, 0, 0}, {&_swigt__p_iSndSysSourceSoftware, _p_iSndSysSourceSoftwareTo_p_iSndSysSource, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iString[] = { {&_swigt__p_iString, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iStringArray[] = { {&_swigt__p_iStringArray, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_iView[] = { {&_swigt__p_iView, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_int16_t[] = { {&_swigt__p_int16_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_int32_t[] = { {&_swigt__p_int32_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_int64_t[] = { {&_swigt__p_int64_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_int8_t[] = { {&_swigt__p_int8_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_int_least64_t[] = { {&_swigt__p_int_least64_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_iPcCollisionDetection[] = { {&_swigt__p_p_iPcCollisionDetection, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_iSector[] = { {&_swigt__p_p_iSector, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_void[] = { {&_swigt__p_p_void, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_uint16_t[] = { {&_swigt__p_uint16_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_uint32_t[] = { {&_swigt__p_uint32_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_uint64_t[] = { {&_swigt__p_uint64_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_uint8_t[] = { {&_swigt__p_uint8_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_uint_least64_t[] = { {&_swigt__p_uint_least64_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_unsigned_int[] = { {&_swigt__p_unsigned_int, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_unsigned_long[] = { {&_swigt__p_unsigned_long, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_wchar_t[] = { {&_swigt__p_wchar_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info *swig_cast_initial[] = { _swigc__p_AllocatorType, _swigc__p_CapacityHandlerType, _swigc__p_ContainedType, _swigc__p_ElementHandlerType, _swigc__p_FileFormatDescription, _swigc__p_HashType, _swigc__p_SndSysFilterLocation, _swigc__p_ThisType, _swigc__p_ValueType, _swigc__p__csKeyCharType, _swigc__p__csKeyEventType, _swigc__p__csKeyModifierNumType, _swigc__p__csKeyModifierType, _swigc__p__csKeyModifiers, _swigc__p__csMouseCursorID, _swigc__p__csMouseEventType, _swigc__p__csPyEventHandler, _swigc__p_basetype, _swigc__p_bool, _swigc__p_celData, _swigc__p_celDataType, _swigc__p_celData_value, _swigc__p_celData_value_col, _swigc__p_celData_value_par, _swigc__p_celData_value_v, _swigc__p_celGenericParameterBlock, _swigc__p_celInitializer, _swigc__p_celOneParameterBlock, _swigc__p_celPersistenceResult, _swigc__p_celPersistenceType, _swigc__p_celStabiliserFunction, _swigc__p_celVariableParameterBlock, _swigc__p_char, _swigc__p_csArrayTcsImageIOFileFormatDescription_const_p_csArrayElementHandlerTcsImageIOFileFormatDescription_const_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, _swigc__p_csArrayTcsPluginRequest_csArrayElementHandlerTcsPluginRequest_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, _swigc__p_csArrayTcsShaderVariable_p_csArrayElementHandlerTcsShaderVariable_p_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, _swigc__p_csArrayTvoid_pp_csArrayElementHandlerTvoid_pp_t_CS__Memory__AllocatorMalloc_csArrayCapacityDefault_t, _swigc__p_csBox3, _swigc__p_csColor, _swigc__p_csColor4, _swigc__p_csFlags, _swigc__p_csHashTcsStrKey_csStrKey_CS__Memory__AllocatorMalloc_t, _swigc__p_csInitializer, _swigc__p_csMatrix3, _swigc__p_csOrthoTransform, _swigc__p_csPath, _swigc__p_csPlane3, _swigc__p_csPtrTiCelDataBuffer_t, _swigc__p_csPtrTiCelEntityIterator_t, _swigc__p_csPtrTiCelPropertyClass_t, _swigc__p_csPtrTiRigidBody_t, _swigc__p_csRefArrayTiObject_t, _swigc__p_csRefTiBase_t, _swigc__p_csSetTunsigned_long_CS__Memory__AllocatorMalloc_t, _swigc__p_csString, _swigc__p_csStringArray, _swigc__p_csVector2, _swigc__p_csVector3, _swigc__p_csXRotMatrix3, _swigc__p_csXScaleMatrix3, _swigc__p_csYRotMatrix3, _swigc__p_csYScaleMatrix3, _swigc__p_csZRotMatrix3, _swigc__p_csZScaleMatrix3, _swigc__p_f_p_iMeshWrapper_p_iFrustumView_bool__void, _swigc__p_float, _swigc__p_iAnimTimeUpdateHandler, _swigc__p_iArrayChangeAllTcsShaderVariable_p_t, _swigc__p_iArrayChangeAllTcsSprite2DVertex_t, _swigc__p_iArrayChangeElementsTcsShaderVariable_p_t, _swigc__p_iArrayChangeElementsTcsSprite2DVertex_t, _swigc__p_iArrayReadOnlyTcsShaderVariable_p_t, _swigc__p_iArrayReadOnlyTcsSprite2DVertex_t, _swigc__p_iArrayReadOnlyTiSceneNode_p_t, _swigc__p_iAws, _swigc__p_iAwsComponent, _swigc__p_iAwsComponentFactory, _swigc__p_iAwsComponentNode, _swigc__p_iAwsConnectionKey, _swigc__p_iAwsConnectionNodeFactory, _swigc__p_iAwsFloatKey, _swigc__p_iAwsIntKey, _swigc__p_iAwsKey, _swigc__p_iAwsKeyContainer, _swigc__p_iAwsKeyFactory, _swigc__p_iAwsLayoutManager, _swigc__p_iAwsPointKey, _swigc__p_iAwsPrefManager, _swigc__p_iAwsRGBKey, _swigc__p_iAwsRectKey, _swigc__p_iAwsSink, _swigc__p_iAwsSinkManager, _swigc__p_iAwsSlot, _swigc__p_iAwsSource, _swigc__p_iAwsStringKey, _swigc__p_iBase, _swigc__p_iBillboard, _swigc__p_iBillboardEventHandler, _swigc__p_iBillboardLayer, _swigc__p_iBillboardManager, _swigc__p_iBinaryLoaderPlugin, _swigc__p_iBodyGroup, _swigc__p_iCacheManager, _swigc__p_iCamera, _swigc__p_iCameraPosition, _swigc__p_iCameraPositionList, _swigc__p_iCameraSectorListener, _swigc__p_iCelBehaviour, _swigc__p_iCelBlLayer, _swigc__p_iCelConsole, _swigc__p_iCelConsoleCommand, _swigc__p_iCelDataBuffer, _swigc__p_iCelEntity, _swigc__p_iCelEntityIterator, _swigc__p_iCelEntityList, _swigc__p_iCelEntityRemoveCallback, _swigc__p_iCelEntityTemplate, _swigc__p_iCelEntityTracker, _swigc__p_iCelInventorySpace, _swigc__p_iCelInventorySpaceSlot, _swigc__p_iCelMapFile, _swigc__p_iCelNewEntityCallback, _swigc__p_iCelParameterBlock, _swigc__p_iCelPlLayer, _swigc__p_iCelPropertyChangeCallback, _swigc__p_iCelPropertyClass, _swigc__p_iCelPropertyClassFactory, _swigc__p_iCelPropertyClassList, _swigc__p_iCelPropertyClassTemplate, _swigc__p_iCelRegion, _swigc__p_iCelTimerListener, _swigc__p_iCelZone, _swigc__p_iClipper2D, _swigc__p_iCollideSystem, _swigc__p_iCollider, _swigc__p_iColoredVertices, _swigc__p_iCommandLineParser, _swigc__p_iComponent, _swigc__p_iConfigFile, _swigc__p_iConfigIterator, _swigc__p_iConfigManager, _swigc__p_iConsoleInput, _swigc__p_iConsoleOutput, _swigc__p_iConsoleWatcher, _swigc__p_iDataBuffer, _swigc__p_iDebugHelper, _swigc__p_iDocument, _swigc__p_iDocumentAttribute, _swigc__p_iDocumentAttributeIterator, _swigc__p_iDocumentNode, _swigc__p_iDocumentNodeIterator, _swigc__p_iDocumentSystem, _swigc__p_iDynamicSystem, _swigc__p_iDynamics, _swigc__p_iDynamicsColliderCollisionCallback, _swigc__p_iDynamicsCollisionCallback, _swigc__p_iDynamicsMoveCallback, _swigc__p_iDynamicsSystemCollider, _swigc__p_iEngine, _swigc__p_iEngineFrameCallback, _swigc__p_iEngineSectorCallback, _swigc__p_iEngineSequenceManager, _swigc__p_iEngineSequenceParameters, _swigc__p_iEvent, _swigc__p_iEventAttributeIterator, _swigc__p_iEventCord, _swigc__p_iEventHandler, _swigc__p_iEventNameRegistry, _swigc__p_iEventOutlet, _swigc__p_iEventPlug, _swigc__p_iEventQueue, _swigc__p_iFactory, _swigc__p_iFile, _swigc__p_iFont, _swigc__p_iFontDeleteNotify, _swigc__p_iFontServer, _swigc__p_iFrustumView, _swigc__p_iFrustumViewUserdata, _swigc__p_iGenMeshAnimationControl, _swigc__p_iGenMeshAnimationControlFactory, _swigc__p_iGenMeshAnimationControlType, _swigc__p_iGenMeshSkeletonControlState, _swigc__p_iGeneralFactoryState, _swigc__p_iGeneralMeshCommonState, _swigc__p_iGeneralMeshState, _swigc__p_iGeneralMeshSubMesh, _swigc__p_iGraphics2D, _swigc__p_iGraphics3D, _swigc__p_iHalo, _swigc__p_iImage, _swigc__p_iImageIO, _swigc__p_iJoint, _swigc__p_iJoystickDriver, _swigc__p_iKeyComposer, _swigc__p_iKeyboardDriver, _swigc__p_iLight, _swigc__p_iLightCallback, _swigc__p_iLightIterator, _swigc__p_iLightList, _swigc__p_iLightVisibleCallback, _swigc__p_iLightingProcessData, _swigc__p_iLightingProcessInfo, _swigc__p_iLoader, _swigc__p_iLoaderPlugin, _swigc__p_iLoaderStatus, _swigc__p_iMapNode, _swigc__p_iMaterial, _swigc__p_iMaterialEngine, _swigc__p_iMaterialList, _swigc__p_iMaterialWrapper, _swigc__p_iMeshDrawCallback, _swigc__p_iMeshFactoryList, _swigc__p_iMeshFactoryWrapper, _swigc__p_iMeshList, _swigc__p_iMeshObject, _swigc__p_iMeshObjectDrawCallback, _swigc__p_iMeshObjectFactory, _swigc__p_iMeshObjectType, _swigc__p_iMeshWrapper, _swigc__p_iMeshWrapperIterator, _swigc__p_iMissingLoaderData, _swigc__p_iMouseDriver, _swigc__p_iMovable, _swigc__p_iMovableListener, _swigc__p_iMovieRecorder, _swigc__p_iNativeWindow, _swigc__p_iNativeWindowManager, _swigc__p_iODEAMotorJoint, _swigc__p_iODEBallJoint, _swigc__p_iODEDynamicState, _swigc__p_iODEDynamicSystemState, _swigc__p_iODEFrameUpdateCallback, _swigc__p_iODEGeneralJointState, _swigc__p_iODEHinge2Joint, _swigc__p_iODEHingeJoint, _swigc__p_iODEJointState, _swigc__p_iODESliderJoint, _swigc__p_iODEUniversalJoint, _swigc__p_iObject, _swigc__p_iObjectIterator, _swigc__p_iObjectModel, _swigc__p_iObjectModelListener, _swigc__p_iObjectNameChangeListener, _swigc__p_iObjectRegistry, _swigc__p_iObjectRegistryIterator, _swigc__p_iOffscreenCanvasCallback, _swigc__p_iParameterESM, _swigc__p_iParticleBuiltinEffectorFactory, _swigc__p_iParticleBuiltinEffectorForce, _swigc__p_iParticleBuiltinEffectorLinColor, _swigc__p_iParticleBuiltinEffectorVelocityField, _swigc__p_iParticleBuiltinEmitterBase, _swigc__p_iParticleBuiltinEmitterBox, _swigc__p_iParticleBuiltinEmitterCone, _swigc__p_iParticleBuiltinEmitterCylinder, _swigc__p_iParticleBuiltinEmitterFactory, _swigc__p_iParticleBuiltinEmitterSphere, _swigc__p_iParticleEffector, _swigc__p_iParticleEmitter, _swigc__p_iParticleSystem, _swigc__p_iParticleSystemBase, _swigc__p_iParticleSystemFactory, _swigc__p_iPath, _swigc__p_iPcActorMove, _swigc__p_iPcBillboard, _swigc__p_iPcCamera, _swigc__p_iPcCharacteristics, _swigc__p_iPcCollisionDetection, _swigc__p_iPcCommandInput, _swigc__p_iPcCraftController, _swigc__p_iPcDamage, _swigc__p_iPcDefaultCamera, _swigc__p_iPcGravity, _swigc__p_iPcGravityCallback, _swigc__p_iPcHover, _swigc__p_iPcInventory, _swigc__p_iPcInventoryListener, _swigc__p_iPcLight, _swigc__p_iPcLinearMovement, _swigc__p_iPcMechanicsBalancedGroup, _swigc__p_iPcMechanicsJoint, _swigc__p_iPcMechanicsObject, _swigc__p_iPcMechanicsSystem, _swigc__p_iPcMechanicsThruster, _swigc__p_iPcMechanicsThrusterController, _swigc__p_iPcMesh, _swigc__p_iPcMeshSelect, _swigc__p_iPcMeshSelectListener, _swigc__p_iPcMovable, _swigc__p_iPcMovableConstraint, _swigc__p_iPcMover, _swigc__p_iPcProjectile, _swigc__p_iPcProperties, _swigc__p_iPcPropertyListener, _swigc__p_iPcRegion, _swigc__p_iPcSimpleCamera, _swigc__p_iPcSolid, _swigc__p_iPcSoundListener, _swigc__p_iPcSoundSource, _swigc__p_iPcTimer, _swigc__p_iPcTooltip, _swigc__p_iPcWheeled, _swigc__p_iPcZoneManager, _swigc__p_iPluginIterator, _swigc__p_iPluginManager, _swigc__p_iPolygonHandle, _swigc__p_iPolygonMesh, _swigc__p_iPortal, _swigc__p_iPortalCallback, _swigc__p_iPortalContainer, _swigc__p_iRegion, _swigc__p_iRegionList, _swigc__p_iRendererLightmap, _swigc__p_iReporter, _swigc__p_iReporterIterator, _swigc__p_iReporterListener, _swigc__p_iRigidBody, _swigc__p_iSCF, _swigc__p_iSaver, _swigc__p_iSceneNode, _swigc__p_iSceneNodeArray, _swigc__p_iScript, _swigc__p_iScriptObject, _swigc__p_iSector, _swigc__p_iSectorCallback, _swigc__p_iSectorIterator, _swigc__p_iSectorList, _swigc__p_iSectorMeshCallback, _swigc__p_iSequenceTimedOperation, _swigc__p_iSequenceTrigger, _swigc__p_iSequenceWrapper, _swigc__p_iShader, _swigc__p_iShaderCompiler, _swigc__p_iShaderManager, _swigc__p_iShaderPriorityList, _swigc__p_iShaderVarStack, _swigc__p_iShaderVariableAccessor, _swigc__p_iShaderVariableContext, _swigc__p_iSimpleFormerState, _swigc__p_iSkeleton, _swigc__p_iSkeletonBone, _swigc__p_iSkeletonBoneFactory, _swigc__p_iSkeletonBoneRagdollInfo, _swigc__p_iSkeletonBoneUpdateCallback, _swigc__p_iSkeletonFactory, _swigc__p_iSkeletonGraveyard, _swigc__p_iSkeletonScript, _swigc__p_iSkeletonScriptCallback, _swigc__p_iSkeletonScriptKeyFrame, _swigc__p_iSkeletonSocket, _swigc__p_iSkeletonSocketFactory, _swigc__p_iSkeletonUpdateCallback, _swigc__p_iSndSysData, _swigc__p_iSndSysListener, _swigc__p_iSndSysLoader, _swigc__p_iSndSysManager, _swigc__p_iSndSysRenderer, _swigc__p_iSndSysRendererCallback, _swigc__p_iSndSysRendererSoftware, _swigc__p_iSndSysSoftwareDriver, _swigc__p_iSndSysSoftwareFilter3D, _swigc__p_iSndSysSoftwareOutputFilter, _swigc__p_iSndSysSource, _swigc__p_iSndSysSourceSoftware, _swigc__p_iSndSysSourceSoftware3D, _swigc__p_iSndSysStream, _swigc__p_iSndSysStreamCallback, _swigc__p_iSndSysWrapper, _swigc__p_iSprite2DFactoryState, _swigc__p_iSprite2DState, _swigc__p_iSprite2DUVAnimation, _swigc__p_iSprite2DUVAnimationFrame, _swigc__p_iSprite3DFactoryState, _swigc__p_iSprite3DState, _swigc__p_iSpriteAction, _swigc__p_iSpriteCal3DFactoryState, _swigc__p_iSpriteCal3DSocket, _swigc__p_iSpriteCal3DState, _swigc__p_iSpriteFrame, _swigc__p_iSpriteSocket, _swigc__p_iStandardReporterListener, _swigc__p_iString, _swigc__p_iStringArray, _swigc__p_iStringSet, _swigc__p_iSuperLightmap, _swigc__p_iTerraFormer, _swigc__p_iTerraSampler, _swigc__p_iTerrainFactoryState, _swigc__p_iTerrainObjectState, _swigc__p_iTextureCallback, _swigc__p_iTextureHandle, _swigc__p_iTextureList, _swigc__p_iTextureManager, _swigc__p_iTextureWrapper, _swigc__p_iThingEnvironment, _swigc__p_iThingFactoryState, _swigc__p_iThingState, _swigc__p_iVFS, _swigc__p_iView, _swigc__p_iVirtualClock, _swigc__p_iVisibilityCuller, _swigc__p_iVisibilityCullerListener, _swigc__p_iVisibilityObject, _swigc__p_iVisibilityObjectIterator, _swigc__p_int, _swigc__p_int16_t, _swigc__p_int32_t, _swigc__p_int64_t, _swigc__p_int8_t, _swigc__p_int_least64_t, _swigc__p_p_iPcCollisionDetection, _swigc__p_p_iSector, _swigc__p_p_void, _swigc__p_scfImplementation1TcsPath_iPath_t, _swigc__p_uint16_t, _swigc__p_uint32_t, _swigc__p_uint64_t, _swigc__p_uint8_t, _swigc__p_uint_least64_t, _swigc__p_unsigned_int, _swigc__p_unsigned_long, _swigc__p_void, _swigc__p_wchar_t, }; /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ static swig_const_info swig_const_table[] = { {0, 0, 0, 0.0, 0, 0}}; #ifdef __cplusplus } #endif /* ----------------------------------------------------------------------------- * Type initialization: * This problem is tough by the requirement that no dynamic * memory is used. Also, since swig_type_info structures store pointers to * swig_cast_info structures and swig_cast_info structures store pointers back * to swig_type_info structures, we need some lookup code at initialization. * The idea is that swig generates all the structures that are needed. * The runtime then collects these partially filled structures. * The SWIG_InitializeModule function takes these initial arrays out of * swig_module, and does all the lookup, filling in the swig_module.types * array with the correct data and linking the correct swig_cast_info * structures together. * * The generated swig_type_info structures are assigned staticly to an initial * array. We just loop though that array, and handle each type individually. * First we lookup if this type has been already loaded, and if so, use the * loaded structure instead of the generated one. Then we have to fill in the * cast linked list. The cast data is initially stored in something like a * two-dimensional array. Each row corresponds to a type (there are the same * number of rows as there are in the swig_type_initial array). Each entry in * a column is one of the swig_cast_info structures for that type. * The cast_initial array is actually an array of arrays, because each row has * a variable number of columns. So to actually build the cast linked list, * we find the array of casts associated with the type, and loop through it * adding the casts to the list. The one last trick we need to do is making * sure the type pointer in the swig_cast_info struct is correct. * * First off, we lookup the cast->type name to see if it is already loaded. * There are three cases to handle: * 1) If the cast->type has already been loaded AND the type we are adding * casting info to has not been loaded (it is in this module), THEN we * replace the cast->type pointer with the type pointer that has already * been loaded. * 2) If BOTH types (the one we are adding casting info to, and the * cast->type) are loaded, THEN the cast info has already been loaded by * the previous module so we just ignore it. * 3) Finally, if cast->type has not already been loaded, then we add that * swig_cast_info to the linked list (because the cast->type) pointer will * be correct. * ----------------------------------------------------------------------------- */ #ifdef __cplusplus extern "C" { #if 0 } /* c-mode */ #endif #endif #if 0 #define SWIGRUNTIME_DEBUG #endif SWIGRUNTIME void SWIG_InitializeModule(void *clientdata) { size_t i; swig_module_info *module_head; static int init_run = 0; clientdata = clientdata; if (init_run) return; init_run = 1; /* Initialize the swig_module */ swig_module.type_initial = swig_type_initial; swig_module.cast_initial = swig_cast_initial; /* Try and load any already created modules */ module_head = SWIG_GetModule(clientdata); if (module_head) { swig_module.next = module_head->next; module_head->next = &swig_module; } else { /* This is the first module loaded */ swig_module.next = &swig_module; SWIG_SetModule(clientdata, &swig_module); } /* Now work on filling in swig_module.types */ #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: size %d\n", swig_module.size); #endif for (i = 0; i < swig_module.size; ++i) { swig_type_info *type = 0; swig_type_info *ret; swig_cast_info *cast; #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); #endif /* if there is another module already loaded */ if (swig_module.next != &swig_module) { type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); } if (type) { /* Overwrite clientdata field */ #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: found type %s\n", type->name); #endif if (swig_module.type_initial[i]->clientdata) { type->clientdata = swig_module.type_initial[i]->clientdata; #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); #endif } } else { type = swig_module.type_initial[i]; } /* Insert casting types */ cast = swig_module.cast_initial[i]; while (cast->type) { /* Don't need to add information already in the list */ ret = 0; #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); #endif if (swig_module.next != &swig_module) { ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); #ifdef SWIGRUNTIME_DEBUG if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); #endif } if (ret) { if (type == swig_module.type_initial[i]) { #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: skip old type %s\n", ret->name); #endif cast->type = ret; ret = 0; } else { /* Check for casting already in the list */ swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); #ifdef SWIGRUNTIME_DEBUG if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); #endif if (!ocast) ret = 0; } } if (!ret) { #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); #endif if (type->cast) { type->cast->prev = cast; cast->next = type->cast; } type->cast = cast; } cast++; } /* Set entry in modules->types array equal to the type */ swig_module.types[i] = type; } swig_module.types[i] = 0; #ifdef SWIGRUNTIME_DEBUG printf("**** SWIG_InitializeModule: Cast List ******\n"); for (i = 0; i < swig_module.size; ++i) { int j = 0; swig_cast_info *cast = swig_module.cast_initial[i]; printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); while (cast->type) { printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); cast++; ++j; } printf("---- Total casts: %d\n",j); } printf("**** SWIG_InitializeModule: Cast List ******\n"); #endif } /* This function will propagate the clientdata field of type to * any new swig_type_info structures that have been added into the list * of equivalent types. It is like calling * SWIG_TypeClientData(type, clientdata) a second time. */ SWIGRUNTIME void SWIG_PropagateClientData(void) { size_t i; swig_cast_info *equiv; static int init_run = 0; if (init_run) return; init_run = 1; for (i = 0; i < swig_module.size; i++) { if (swig_module.types[i]->clientdata) { equiv = swig_module.types[i]->cast; while (equiv) { if (!equiv->converter) { if (equiv->type && !equiv->type->clientdata) SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); } equiv = equiv->next; } } } } #ifdef __cplusplus #if 0 { /* c-mode */ #endif } #endif #ifdef __cplusplus extern "C" { #endif /* Python-specific SWIG API */ #define SWIG_newvarlink() SWIG_Python_newvarlink() #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr) #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants) /* ----------------------------------------------------------------------------- * global variable support code. * ----------------------------------------------------------------------------- */ typedef struct swig_globalvar { char *name; /* Name of global variable */ PyObject *(*get_attr)(void); /* Return the current value */ int (*set_attr)(PyObject *); /* Set the value */ struct swig_globalvar *next; } swig_globalvar; typedef struct swig_varlinkobject { PyObject_HEAD swig_globalvar *vars; } swig_varlinkobject; SWIGINTERN PyObject * swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) { return PyString_FromString(""); } SWIGINTERN PyObject * swig_varlink_str(swig_varlinkobject *v) { PyObject *str = PyString_FromString("("); swig_globalvar *var; for (var = v->vars; var; var=var->next) { PyString_ConcatAndDel(&str,PyString_FromString(var->name)); if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", ")); } PyString_ConcatAndDel(&str,PyString_FromString(")")); return str; } SWIGINTERN int swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { PyObject *str = swig_varlink_str(v); fprintf(fp,"Swig global variables "); fprintf(fp,"%s\n", PyString_AsString(str)); Py_DECREF(str); return 0; } SWIGINTERN void swig_varlink_dealloc(swig_varlinkobject *v) { swig_globalvar *var = v->vars; while (var) { swig_globalvar *n = var->next; free(var->name); free(var); var = n; } } SWIGINTERN PyObject * swig_varlink_getattr(swig_varlinkobject *v, char *n) { PyObject *res = NULL; swig_globalvar *var = v->vars; while (var) { if (strcmp(var->name,n) == 0) { res = (*var->get_attr)(); break; } var = var->next; } if (res == NULL && !PyErr_Occurred()) { PyErr_SetString(PyExc_NameError,"Unknown C global variable"); } return res; } SWIGINTERN int swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) { int res = 1; swig_globalvar *var = v->vars; while (var) { if (strcmp(var->name,n) == 0) { res = (*var->set_attr)(p); break; } var = var->next; } if (res == 1 && !PyErr_Occurred()) { PyErr_SetString(PyExc_NameError,"Unknown C global variable"); } return res; } SWIGINTERN PyTypeObject* swig_varlink_type(void) { static char varlink__doc__[] = "Swig var link object"; static PyTypeObject varlink_type; static int type_init = 0; if (!type_init) { const PyTypeObject tmp = { PyObject_HEAD_INIT(NULL) 0, /* Number of items in variable part (ob_size) */ (char *)"swigvarlink", /* Type name (tp_name) */ sizeof(swig_varlinkobject), /* Basic size (tp_basicsize) */ 0, /* Itemsize (tp_itemsize) */ (destructor) swig_varlink_dealloc, /* Deallocator (tp_dealloc) */ (printfunc) swig_varlink_print, /* Print (tp_print) */ (getattrfunc) swig_varlink_getattr, /* get attr (tp_getattr) */ (setattrfunc) swig_varlink_setattr, /* Set attr (tp_setattr) */ 0, /* tp_compare */ (reprfunc) swig_varlink_repr, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ 0, /* tp_as_mapping */ 0, /* tp_hash */ 0, /* tp_call */ (reprfunc)swig_varlink_str, /* tp_str */ 0, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ 0, /* tp_flags */ varlink__doc__, /* tp_doc */ 0, /* tp_traverse */ 0, /* tp_clear */ 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ #if PY_VERSION_HEX >= 0x02020000 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ #endif #if PY_VERSION_HEX >= 0x02030000 0, /* tp_del */ #endif #ifdef COUNT_ALLOCS 0,0,0,0 /* tp_alloc -> tp_next */ #endif }; varlink_type = tmp; varlink_type.ob_type = &PyType_Type; type_init = 1; } return &varlink_type; } /* Create a variable linking object for use later */ SWIGINTERN PyObject * SWIG_Python_newvarlink(void) { swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type()); if (result) { result->vars = 0; } return ((PyObject*) result); } SWIGINTERN void SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) { swig_varlinkobject *v = (swig_varlinkobject *) p; swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar)); if (gv) { size_t size = strlen(name)+1; gv->name = (char *)malloc(size); if (gv->name) { strncpy(gv->name,name,size); gv->get_attr = get_attr; gv->set_attr = set_attr; gv->next = v->vars; } } v->vars = gv; } SWIGINTERN PyObject * SWIG_globals() { static PyObject *_SWIG_globals = 0; if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink(); return _SWIG_globals; } /* ----------------------------------------------------------------------------- * constants/methods manipulation * ----------------------------------------------------------------------------- */ /* Install Constants */ SWIGINTERN void SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) { PyObject *obj = 0; size_t i; for (i = 0; constants[i].type; ++i) { switch(constants[i].type) { case SWIG_PY_POINTER: obj = SWIG_NewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0); break; case SWIG_PY_BINARY: obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype)); break; default: obj = 0; break; } if (obj) { PyDict_SetItemString(d, constants[i].name, obj); Py_DECREF(obj); } } } /* -----------------------------------------------------------------------------*/ /* Fix SwigMethods to carry the callback ptrs when needed */ /* -----------------------------------------------------------------------------*/ SWIGINTERN void SWIG_Python_FixMethods(PyMethodDef *methods, swig_const_info *const_table, swig_type_info **types, swig_type_info **types_initial) { size_t i; for (i = 0; methods[i].ml_name; ++i) { char *c = methods[i].ml_doc; if (c && (c = strstr(c, "swig_ptr: "))) { int j; swig_const_info *ci = 0; char *name = c + 10; for (j = 0; const_table[j].type; ++j) { if (strncmp(const_table[j].name, name, strlen(const_table[j].name)) == 0) { ci = &(const_table[j]); break; } } if (ci) { size_t shift = (ci->ptype) - types; swig_type_info *ty = types_initial[shift]; size_t ldoc = (c - methods[i].ml_doc); size_t lptr = strlen(ty->name)+2*sizeof(void*)+2; char *ndoc = (char*)malloc(ldoc + lptr + 10); if (ndoc) { char *buff = ndoc; void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0; if (ptr) { strncpy(buff, methods[i].ml_doc, ldoc); buff += ldoc; strncpy(buff, "swig_ptr: ", 10); buff += 10; SWIG_PackVoidPtr(buff, ptr, ty->name, lptr); methods[i].ml_doc = ndoc; } } } } } } #ifdef __cplusplus } #endif /* -----------------------------------------------------------------------------* * Partial Init method * -----------------------------------------------------------------------------*/ #ifdef __cplusplus extern "C" #endif SWIGEXPORT void SWIG_init(void) { PyObject *m, *d; /* Fix SwigMethods to carry the callback ptrs when needed */ SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); m = Py_InitModule((char *) SWIG_name, SwigMethods); d = PyModule_GetDict(m); SWIG_InitializeModule(0); SWIG_InstallConstants(d,swig_const_table); SWIG_Python_SetConstant(d, "CEL_DATA_NONE",SWIG_From_int(static_cast< int >(CEL_DATA_NONE))); SWIG_Python_SetConstant(d, "CEL_DATA_BOOL",SWIG_From_int(static_cast< int >(CEL_DATA_BOOL))); SWIG_Python_SetConstant(d, "CEL_DATA_BYTE",SWIG_From_int(static_cast< int >(CEL_DATA_BYTE))); SWIG_Python_SetConstant(d, "CEL_DATA_WORD",SWIG_From_int(static_cast< int >(CEL_DATA_WORD))); SWIG_Python_SetConstant(d, "CEL_DATA_LONG",SWIG_From_int(static_cast< int >(CEL_DATA_LONG))); SWIG_Python_SetConstant(d, "CEL_DATA_UBYTE",SWIG_From_int(static_cast< int >(CEL_DATA_UBYTE))); SWIG_Python_SetConstant(d, "CEL_DATA_UWORD",SWIG_From_int(static_cast< int >(CEL_DATA_UWORD))); SWIG_Python_SetConstant(d, "CEL_DATA_ULONG",SWIG_From_int(static_cast< int >(CEL_DATA_ULONG))); SWIG_Python_SetConstant(d, "CEL_DATA_FLOAT",SWIG_From_int(static_cast< int >(CEL_DATA_FLOAT))); SWIG_Python_SetConstant(d, "CEL_DATA_VECTOR2",SWIG_From_int(static_cast< int >(CEL_DATA_VECTOR2))); SWIG_Python_SetConstant(d, "CEL_DATA_VECTOR3",SWIG_From_int(static_cast< int >(CEL_DATA_VECTOR3))); SWIG_Python_SetConstant(d, "CEL_DATA_STRING",SWIG_From_int(static_cast< int >(CEL_DATA_STRING))); SWIG_Python_SetConstant(d, "CEL_DATA_PCLASS",SWIG_From_int(static_cast< int >(CEL_DATA_PCLASS))); SWIG_Python_SetConstant(d, "CEL_DATA_ENTITY",SWIG_From_int(static_cast< int >(CEL_DATA_ENTITY))); SWIG_Python_SetConstant(d, "CEL_DATA_ACTION",SWIG_From_int(static_cast< int >(CEL_DATA_ACTION))); SWIG_Python_SetConstant(d, "CEL_DATA_COLOR",SWIG_From_int(static_cast< int >(CEL_DATA_COLOR))); SWIG_Python_SetConstant(d, "CEL_DATA_IBASE",SWIG_From_int(static_cast< int >(CEL_DATA_IBASE))); SWIG_Python_SetConstant(d, "CEL_DATA_PARAMETER",SWIG_From_int(static_cast< int >(CEL_DATA_PARAMETER))); SWIG_Python_SetConstant(d, "CEL_DATA_LAST",SWIG_From_int(static_cast< int >(CEL_DATA_LAST))); SWIG_Python_SetConstant(d, "CEL_EVENT_PRE",SWIG_From_int(static_cast< int >(0))); SWIG_Python_SetConstant(d, "CEL_EVENT_VIEW",SWIG_From_int(static_cast< int >(1))); SWIG_Python_SetConstant(d, "CEL_EVENT_POST",SWIG_From_int(static_cast< int >(2))); SWIG_Python_SetConstant(d, "CEL_AT_NONE",SWIG_From_int(static_cast< int >(CEL_AT_NONE))); SWIG_Python_SetConstant(d, "CEL_AT_ROTATION",SWIG_From_int(static_cast< int >(CEL_AT_ROTATION))); SWIG_Python_SetConstant(d, "CEL_AT_TRANSLATION",SWIG_From_int(static_cast< int >(CEL_AT_TRANSLATION))); SWIG_Python_SetConstant(d, "CEL_BILLBOARD_VISIBLE",SWIG_From_int(static_cast< int >(1))); SWIG_Python_SetConstant(d, "CEL_BILLBOARD_MOVABLE",SWIG_From_int(static_cast< int >(2))); SWIG_Python_SetConstant(d, "CEL_BILLBOARD_CLICKABLE",SWIG_From_int(static_cast< int >(4))); SWIG_Python_SetConstant(d, "CEL_BILLBOARD_RESTACK",SWIG_From_int(static_cast< int >(8))); SWIG_Python_SetConstant(d, "CEL_BILLBOARD_SENDMOVE",SWIG_From_int(static_cast< int >(16))); SWIG_Python_SetConstant(d, "CEL_ZONEERROR_OK",SWIG_From_int(static_cast< int >(0))); SWIG_Python_SetConstant(d, "CEL_ZONEERROR_BADREGION",SWIG_From_int(static_cast< int >(1))); SWIG_Python_SetConstant(d, "CEL_ZONEERROR_BADSTART",SWIG_From_int(static_cast< int >(2))); SWIG_Python_SetConstant(d, "CEL_ZONEERROR_LOAD",SWIG_From_int(static_cast< int >(3))); SWIG_Python_SetConstant(d, "CEL_ZONE_NORMAL",SWIG_From_int(static_cast< int >(0))); SWIG_Python_SetConstant(d, "CEL_ZONE_KEEP",SWIG_From_int(static_cast< int >(1))); SWIG_Python_SetConstant(d, "CEL_ZONE_LOADALL",SWIG_From_int(static_cast< int >(2))); SWIG_Python_SetConstant(d, "iPcDefaultCamera_freelook",SWIG_From_int(static_cast< int >(iPcDefaultCamera::freelook))); SWIG_Python_SetConstant(d, "iPcDefaultCamera_firstperson",SWIG_From_int(static_cast< int >(iPcDefaultCamera::firstperson))); SWIG_Python_SetConstant(d, "iPcDefaultCamera_thirdperson",SWIG_From_int(static_cast< int >(iPcDefaultCamera::thirdperson))); SWIG_Python_SetConstant(d, "iPcDefaultCamera_m64_thirdperson",SWIG_From_int(static_cast< int >(iPcDefaultCamera::m64_thirdperson))); SWIG_Python_SetConstant(d, "iPcDefaultCamera_lara_thirdperson",SWIG_From_int(static_cast< int >(iPcDefaultCamera::lara_thirdperson))); SWIG_Python_SetConstant(d, "iPcDefaultCamera_actual_data",SWIG_From_int(static_cast< int >(iPcDefaultCamera::actual_data))); SWIG_Python_SetConstant(d, "iPcDefaultCamera_last_actual",SWIG_From_int(static_cast< int >(iPcDefaultCamera::last_actual))); SWIG_Python_SetConstant(d, "iPcDefaultCamera_transition",SWIG_From_int(static_cast< int >(iPcDefaultCamera::transition))); SWIG_Python_SetConstant(d, "iPcDefaultCamera_camerror",SWIG_From_int(static_cast< int >(iPcDefaultCamera::camerror))); SWIG_Python_SetConstant(d, "iPcDefaultCamera_CameraMode_count",SWIG_From_int(static_cast< int >(iPcDefaultCamera::CameraMode_count))); SWIG_Python_SetConstant(d, "CEL_MOUSE_BUTTON1",SWIG_From_int(static_cast< int >(1))); SWIG_Python_SetConstant(d, "CEL_MOUSE_BUTTON2",SWIG_From_int(static_cast< int >(2))); SWIG_Python_SetConstant(d, "CEL_MOUSE_BUTTON3",SWIG_From_int(static_cast< int >(4))); SWIG_Python_SetConstant(d, "CEL_PCMESH_PROPERTY_MESH",SWIG_From_int(static_cast< int >(1))); SWIG_Python_SetConstant(d, "CEL_PCMOVABLE_PROPERTY_POSITION",SWIG_From_int(static_cast< int >(1))); SWIG_Python_SetConstant(d, "CEL_MOVE_FAIL",SWIG_From_int(static_cast< int >(0))); SWIG_Python_SetConstant(d, "CEL_MOVE_SUCCEED",SWIG_From_int(static_cast< int >(1))); SWIG_Python_SetConstant(d, "CEL_MOVE_PARTIAL",SWIG_From_int(static_cast< int >(2))); SWIG_Python_SetConstant(d, "CEL_TOOLTIP_LEFT",SWIG_From_int(static_cast< int >(CEL_TOOLTIP_LEFT))); SWIG_Python_SetConstant(d, "CEL_TOOLTIP_CENTER",SWIG_From_int(static_cast< int >(CEL_TOOLTIP_CENTER))); SWIG_Python_SetConstant(d, "CEL_TOOLTIP_RIGHT",SWIG_From_int(static_cast< int >(CEL_TOOLTIP_RIGHT))); }