Files

246 lines
7.4 KiB
C++
Raw Permalink Normal View History

/*************************************************************************/
/* java_class_wrapper.h */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
2020-01-01 11:16:22 +01:00
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
2014-09-02 23:13:40 -03:00
#ifndef JAVA_CLASS_WRAPPER_H
#define JAVA_CLASS_WRAPPER_H
#include "core/reference.h"
#ifdef ANDROID_ENABLED
2014-09-02 23:13:40 -03:00
#include <android/log.h>
2017-03-05 16:44:50 +01:00
#include <jni.h>
#endif
2014-09-02 23:13:40 -03:00
#ifdef ANDROID_ENABLED
2014-09-02 23:13:40 -03:00
class JavaObject;
#endif
2014-09-02 23:13:40 -03:00
class JavaClass : public Reference {
2017-03-05 16:44:50 +01:00
GDCLASS(JavaClass, Reference);
2014-09-02 23:13:40 -03:00
#ifdef ANDROID_ENABLED
enum ArgumentType{
2014-09-02 23:13:40 -03:00
ARG_TYPE_VOID,
ARG_TYPE_BOOLEAN,
ARG_TYPE_BYTE,
ARG_TYPE_CHAR,
ARG_TYPE_SHORT,
ARG_TYPE_INT,
ARG_TYPE_LONG,
ARG_TYPE_FLOAT,
ARG_TYPE_DOUBLE,
ARG_TYPE_STRING, //special case
ARG_TYPE_CLASS,
2017-03-05 16:44:50 +01:00
ARG_ARRAY_BIT = 1 << 16,
ARG_NUMBER_CLASS_BIT = 1 << 17,
ARG_TYPE_MASK = (1 << 16) - 1
2014-09-02 23:13:40 -03:00
};
2017-03-05 16:44:50 +01:00
Map<StringName, Variant> constant_map;
2014-09-02 23:13:40 -03:00
struct MethodInfo {
bool _static;
Vector<uint32_t> param_types;
Vector<StringName> param_sigs;
uint32_t return_type;
jmethodID method;
};
2017-03-24 21:45:31 +01:00
_FORCE_INLINE_ static void _convert_to_variant_type(int p_sig, Variant::Type &r_type, float &likelihood) {
2014-09-02 23:13:40 -03:00
2017-03-24 21:45:31 +01:00
likelihood = 1.0;
2017-03-05 16:44:50 +01:00
r_type = Variant::NIL;
2014-09-02 23:13:40 -03:00
2017-03-05 16:44:50 +01:00
switch (p_sig) {
2014-09-02 23:13:40 -03:00
2017-03-05 16:44:50 +01:00
case ARG_TYPE_VOID: r_type = Variant::NIL; break;
case ARG_TYPE_BOOLEAN | ARG_NUMBER_CLASS_BIT:
case ARG_TYPE_BOOLEAN: r_type = Variant::BOOL; break;
case ARG_TYPE_BYTE | ARG_NUMBER_CLASS_BIT:
case ARG_TYPE_BYTE:
r_type = Variant::INT;
2017-03-24 21:45:31 +01:00
likelihood = 0.1;
2017-03-05 16:44:50 +01:00
break;
case ARG_TYPE_CHAR | ARG_NUMBER_CLASS_BIT:
case ARG_TYPE_CHAR:
r_type = Variant::INT;
2017-03-24 21:45:31 +01:00
likelihood = 0.2;
2017-03-05 16:44:50 +01:00
break;
case ARG_TYPE_SHORT | ARG_NUMBER_CLASS_BIT:
case ARG_TYPE_SHORT:
r_type = Variant::INT;
2017-03-24 21:45:31 +01:00
likelihood = 0.3;
2017-03-05 16:44:50 +01:00
break;
case ARG_TYPE_INT | ARG_NUMBER_CLASS_BIT:
case ARG_TYPE_INT:
r_type = Variant::INT;
2017-03-24 21:45:31 +01:00
likelihood = 1.0;
2017-03-05 16:44:50 +01:00
break;
case ARG_TYPE_LONG | ARG_NUMBER_CLASS_BIT:
case ARG_TYPE_LONG:
r_type = Variant::INT;
2017-03-24 21:45:31 +01:00
likelihood = 0.5;
2017-03-05 16:44:50 +01:00
break;
case ARG_TYPE_FLOAT | ARG_NUMBER_CLASS_BIT:
case ARG_TYPE_FLOAT:
r_type = Variant::REAL;
2017-03-24 21:45:31 +01:00
likelihood = 1.0;
2017-03-05 16:44:50 +01:00
break;
case ARG_TYPE_DOUBLE | ARG_NUMBER_CLASS_BIT:
case ARG_TYPE_DOUBLE:
r_type = Variant::REAL;
2017-03-24 21:45:31 +01:00
likelihood = 0.5;
2017-03-05 16:44:50 +01:00
break;
case ARG_TYPE_STRING: r_type = Variant::STRING; break;
case ARG_TYPE_CLASS: r_type = Variant::OBJECT; break;
case ARG_ARRAY_BIT | ARG_TYPE_VOID: r_type = Variant::NIL; break;
case ARG_ARRAY_BIT | ARG_TYPE_BOOLEAN: r_type = Variant::ARRAY; break;
case ARG_ARRAY_BIT | ARG_TYPE_BYTE:
r_type = Variant::POOL_BYTE_ARRAY;
2017-03-24 21:45:31 +01:00
likelihood = 1.0;
2017-03-05 16:44:50 +01:00
break;
case ARG_ARRAY_BIT | ARG_TYPE_CHAR:
r_type = Variant::POOL_BYTE_ARRAY;
2017-03-24 21:45:31 +01:00
likelihood = 0.5;
2017-03-05 16:44:50 +01:00
break;
case ARG_ARRAY_BIT | ARG_TYPE_SHORT:
r_type = Variant::POOL_INT_ARRAY;
2017-03-24 21:45:31 +01:00
likelihood = 0.3;
2017-03-05 16:44:50 +01:00
break;
case ARG_ARRAY_BIT | ARG_TYPE_INT:
r_type = Variant::POOL_INT_ARRAY;
2017-03-24 21:45:31 +01:00
likelihood = 1.0;
2017-03-05 16:44:50 +01:00
break;
case ARG_ARRAY_BIT | ARG_TYPE_LONG:
r_type = Variant::POOL_INT_ARRAY;
2017-03-24 21:45:31 +01:00
likelihood = 0.5;
2017-03-05 16:44:50 +01:00
break;
case ARG_ARRAY_BIT | ARG_TYPE_FLOAT:
r_type = Variant::POOL_REAL_ARRAY;
2017-03-24 21:45:31 +01:00
likelihood = 1.0;
2017-03-05 16:44:50 +01:00
break;
case ARG_ARRAY_BIT | ARG_TYPE_DOUBLE:
r_type = Variant::POOL_REAL_ARRAY;
2017-03-24 21:45:31 +01:00
likelihood = 0.5;
2017-03-05 16:44:50 +01:00
break;
case ARG_ARRAY_BIT | ARG_TYPE_STRING: r_type = Variant::POOL_STRING_ARRAY; break;
case ARG_ARRAY_BIT | ARG_TYPE_CLASS: r_type = Variant::ARRAY; break;
2014-09-02 23:13:40 -03:00
}
}
2017-03-05 16:44:50 +01:00
_FORCE_INLINE_ static bool _convert_object_to_variant(JNIEnv *env, jobject obj, Variant &var, uint32_t p_sig);
2014-09-02 23:13:40 -03:00
2017-03-05 16:44:50 +01:00
bool _call_method(JavaObject *p_instance, const StringName &p_method, const Variant **p_args, int p_argcount, Variant::CallError &r_error, Variant &ret);
2014-09-02 23:13:40 -03:00
2017-03-05 16:44:50 +01:00
friend class JavaClassWrapper;
Map<StringName, List<MethodInfo> > methods;
2014-09-02 23:13:40 -03:00
jclass _class;
#endif
2014-09-02 23:13:40 -03:00
public:
2017-03-05 16:44:50 +01:00
virtual Variant call(const StringName &p_method, const Variant **p_args, int p_argcount, Variant::CallError &r_error);
2014-09-02 23:13:40 -03:00
JavaClass();
};
class JavaObject : public Reference {
2017-03-05 16:44:50 +01:00
GDCLASS(JavaObject, Reference);
2014-09-02 23:13:40 -03:00
#ifdef ANDROID_ENABLED
2014-09-02 23:13:40 -03:00
Ref<JavaClass> base_class;
2017-03-05 16:44:50 +01:00
friend class JavaClass;
2014-09-02 23:13:40 -03:00
jobject instance;
#endif
2014-09-02 23:13:40 -03:00
public:
2017-03-05 16:44:50 +01:00
virtual Variant call(const StringName &p_method, const Variant **p_args, int p_argcount, Variant::CallError &r_error);
2014-09-02 23:13:40 -03:00
#ifdef ANDROID_ENABLED
2017-03-05 16:44:50 +01:00
JavaObject(const Ref<JavaClass> &p_base, jobject *p_instance);
2014-09-02 23:13:40 -03:00
~JavaObject();
#endif
2014-09-02 23:13:40 -03:00
};
class JavaClassWrapper : public Object {
2017-03-05 16:44:50 +01:00
GDCLASS(JavaClassWrapper, Object);
2014-09-02 23:13:40 -03:00
#ifdef ANDROID_ENABLED
2017-03-05 16:44:50 +01:00
Map<String, Ref<JavaClass> > class_cache;
friend class JavaClass;
2014-09-02 23:13:40 -03:00
jclass activityClass;
jmethodID findClass;
jmethodID getDeclaredMethods;
jmethodID getFields;
jmethodID getParameterTypes;
jmethodID getReturnType;
jmethodID getModifiers;
jmethodID getName;
jmethodID Class_getName;
jmethodID Field_getName;
jmethodID Field_getModifiers;
jmethodID Field_get;
jmethodID Boolean_booleanValue;
jmethodID Byte_byteValue;
jmethodID Character_characterValue;
jmethodID Short_shortValue;
jmethodID Integer_integerValue;
jmethodID Long_longValue;
jmethodID Float_floatValue;
jmethodID Double_doubleValue;
jobject classLoader;
2017-03-05 16:44:50 +01:00
bool _get_type_sig(JNIEnv *env, jobject obj, uint32_t &sig, String &strsig);
#endif
2014-09-02 23:13:40 -03:00
static JavaClassWrapper *singleton;
protected:
static void _bind_methods();
2017-03-05 16:44:50 +01:00
public:
2014-09-02 23:13:40 -03:00
static JavaClassWrapper *get_singleton() { return singleton; }
2017-03-05 16:44:50 +01:00
Ref<JavaClass> wrap(const String &p_class);
2014-09-02 23:13:40 -03:00
#ifdef ANDROID_ENABLED
2017-03-05 16:44:50 +01:00
JavaClassWrapper(jobject p_activity = NULL);
#else
JavaClassWrapper();
#endif
2014-09-02 23:13:40 -03:00
};
#endif // JAVA_CLASS_WRAPPER_H