Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/platform/android/api/jni_singleton.h
10278 views
1
/**************************************************************************/
2
/* jni_singleton.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "java_class_wrapper.h"
34
35
#include "core/config/engine.h"
36
#include "core/variant/variant.h"
37
38
class JNISingleton : public Object {
39
GDCLASS(JNISingleton, Object);
40
41
struct MethodData {
42
Variant::Type ret_type;
43
Vector<Variant::Type> argtypes;
44
};
45
46
RBMap<StringName, MethodData> method_map;
47
Ref<JavaObject> wrapped_object;
48
49
public:
50
virtual Variant callp(const StringName &p_method, const Variant **p_args, int p_argcount, Callable::CallError &r_error) override {
51
if (wrapped_object.is_valid()) {
52
RBMap<StringName, MethodData>::Element *E = method_map.find(p_method);
53
54
// Check the method we're looking for is in the JNISingleton map and that
55
// the arguments match.
56
bool call_error = !E || E->get().argtypes.size() != p_argcount;
57
if (!call_error) {
58
for (int i = 0; i < p_argcount; i++) {
59
if (!Variant::can_convert(p_args[i]->get_type(), E->get().argtypes[i])) {
60
call_error = true;
61
break;
62
}
63
}
64
}
65
66
if (!call_error) {
67
return wrapped_object->callp(p_method, p_args, p_argcount, r_error);
68
}
69
}
70
71
return Object::callp(p_method, p_args, p_argcount, r_error);
72
}
73
74
Ref<JavaObject> get_wrapped_object() const {
75
return wrapped_object;
76
}
77
78
void add_method(const StringName &p_name, const Vector<Variant::Type> &p_args, Variant::Type p_ret_type) {
79
MethodData md;
80
md.argtypes = p_args;
81
md.ret_type = p_ret_type;
82
method_map[p_name] = md;
83
}
84
85
void add_signal(const StringName &p_name, const Vector<Variant::Type> &p_args) {
86
MethodInfo mi;
87
mi.name = p_name;
88
for (int i = 0; i < p_args.size(); i++) {
89
mi.arguments.push_back(PropertyInfo(p_args[i], "arg" + itos(i + 1)));
90
}
91
ADD_SIGNAL(mi);
92
}
93
94
JNISingleton() {}
95
96
JNISingleton(const Ref<JavaObject> &p_wrapped_object) {
97
wrapped_object = p_wrapped_object;
98
}
99
100
~JNISingleton() {
101
method_map.clear();
102
wrapped_object.unref();
103
}
104
};
105
106