2022-08-22 16:14:33 +00:00
|
|
|
/* godot-cpp integration testing project.
|
|
|
|
*
|
|
|
|
* This is free and unencumbered software released into the public domain.
|
|
|
|
*/
|
2021-09-08 18:11:12 +00:00
|
|
|
|
2021-08-19 17:51:41 +00:00
|
|
|
#ifndef EXAMPLE_CLASS_H
|
|
|
|
#define EXAMPLE_CLASS_H
|
|
|
|
|
2022-08-22 16:14:33 +00:00
|
|
|
// We don't need windows.h in this example plugin but many others do, and it can
|
|
|
|
// lead to annoying situations due to the ton of macros it defines.
|
|
|
|
// So we include it and make sure CI warns us if we use something that conflicts
|
|
|
|
// with a Windows define.
|
2021-10-28 08:20:56 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2021-08-19 17:51:41 +00:00
|
|
|
#include <godot_cpp/classes/control.hpp>
|
|
|
|
#include <godot_cpp/classes/global_constants.hpp>
|
2023-04-29 16:56:33 +00:00
|
|
|
#include <godot_cpp/classes/image.hpp>
|
2023-05-23 20:17:06 +00:00
|
|
|
#include <godot_cpp/classes/input_event_key.hpp>
|
2023-08-14 23:44:30 +00:00
|
|
|
#include <godot_cpp/classes/tile_map.hpp>
|
|
|
|
#include <godot_cpp/classes/tile_set.hpp>
|
2021-08-19 17:51:41 +00:00
|
|
|
#include <godot_cpp/classes/viewport.hpp>
|
|
|
|
|
|
|
|
#include <godot_cpp/core/binder_common.hpp>
|
|
|
|
|
|
|
|
using namespace godot;
|
|
|
|
|
2021-09-24 15:11:50 +00:00
|
|
|
class ExampleRef : public RefCounted {
|
|
|
|
GDCLASS(ExampleRef, RefCounted);
|
|
|
|
|
2022-12-05 11:04:08 +00:00
|
|
|
private:
|
|
|
|
static int instance_count;
|
|
|
|
static int last_id;
|
|
|
|
|
|
|
|
int id;
|
|
|
|
|
2021-09-24 15:11:50 +00:00
|
|
|
protected:
|
2022-12-05 11:04:08 +00:00
|
|
|
static void _bind_methods();
|
2021-09-24 15:11:50 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
ExampleRef();
|
|
|
|
~ExampleRef();
|
2022-12-05 11:04:08 +00:00
|
|
|
|
2023-04-29 16:56:33 +00:00
|
|
|
void set_id(int p_id);
|
2023-02-02 18:01:31 +00:00
|
|
|
int get_id() const;
|
2021-09-24 15:11:50 +00:00
|
|
|
};
|
|
|
|
|
2022-08-19 07:30:06 +00:00
|
|
|
class ExampleMin : public Control {
|
|
|
|
GDCLASS(ExampleMin, Control);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods(){};
|
|
|
|
};
|
|
|
|
|
2021-08-19 17:51:41 +00:00
|
|
|
class Example : public Control {
|
|
|
|
GDCLASS(Example, Control);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2022-08-19 07:30:06 +00:00
|
|
|
void _notification(int p_what);
|
|
|
|
bool _set(const StringName &p_name, const Variant &p_value);
|
|
|
|
bool _get(const StringName &p_name, Variant &r_ret) const;
|
|
|
|
void _get_property_list(List<PropertyInfo> *p_list) const;
|
|
|
|
bool _property_can_revert(const StringName &p_name) const;
|
|
|
|
bool _property_get_revert(const StringName &p_name, Variant &r_property) const;
|
|
|
|
|
|
|
|
String _to_string() const;
|
|
|
|
|
2021-08-19 17:51:41 +00:00
|
|
|
private:
|
|
|
|
Vector2 custom_position;
|
2022-08-19 07:30:06 +00:00
|
|
|
Vector3 property_from_list;
|
2022-09-02 07:41:24 +00:00
|
|
|
Vector2 dprop[3];
|
2023-06-30 13:06:17 +00:00
|
|
|
int last_rpc_arg = 0;
|
2021-08-19 17:51:41 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
// Constants.
|
|
|
|
enum Constants {
|
|
|
|
FIRST,
|
|
|
|
ANSWER_TO_EVERYTHING = 42,
|
|
|
|
};
|
|
|
|
|
2022-12-08 05:34:19 +00:00
|
|
|
enum Flags {
|
|
|
|
FLAG_ONE = 1,
|
|
|
|
FLAG_TWO = 2,
|
|
|
|
};
|
|
|
|
|
2021-08-19 17:51:41 +00:00
|
|
|
enum {
|
|
|
|
CONSTANT_WITHOUT_ENUM = 314,
|
|
|
|
};
|
|
|
|
|
2021-09-16 07:21:40 +00:00
|
|
|
Example();
|
|
|
|
~Example();
|
|
|
|
|
2021-08-19 23:03:11 +00:00
|
|
|
// Functions.
|
2021-08-19 17:51:41 +00:00
|
|
|
void simple_func();
|
|
|
|
void simple_const_func() const;
|
2023-04-29 16:56:33 +00:00
|
|
|
int custom_ref_func(Ref<ExampleRef> p_ref);
|
|
|
|
int custom_const_ref_func(const Ref<ExampleRef> &p_ref);
|
|
|
|
String image_ref_func(Ref<Image> p_image);
|
|
|
|
String image_const_ref_func(const Ref<Image> &p_image);
|
2021-08-19 17:51:41 +00:00
|
|
|
String return_something(const String &base);
|
|
|
|
Viewport *return_something_const() const;
|
2023-04-29 16:56:33 +00:00
|
|
|
Ref<ExampleRef> return_ref() const;
|
2022-12-05 11:04:08 +00:00
|
|
|
Ref<ExampleRef> return_empty_ref() const;
|
2021-09-24 15:11:50 +00:00
|
|
|
ExampleRef *return_extended_ref() const;
|
2021-09-28 13:49:53 +00:00
|
|
|
Ref<ExampleRef> extended_ref_checks(Ref<ExampleRef> p_ref) const;
|
2022-12-07 13:11:44 +00:00
|
|
|
Variant varargs_func(const Variant **args, GDExtensionInt arg_count, GDExtensionCallError &error);
|
|
|
|
int varargs_func_nv(const Variant **args, GDExtensionInt arg_count, GDExtensionCallError &error);
|
|
|
|
void varargs_func_void(const Variant **args, GDExtensionInt arg_count, GDExtensionCallError &error);
|
2021-08-19 17:51:41 +00:00
|
|
|
void emit_custom_signal(const String &name, int value);
|
2022-05-04 11:27:08 +00:00
|
|
|
int def_args(int p_a = 100, int p_b = 200);
|
2021-11-18 03:05:14 +00:00
|
|
|
|
2021-09-16 07:21:40 +00:00
|
|
|
Array test_array() const;
|
2023-04-29 16:56:33 +00:00
|
|
|
int test_tarray_arg(const TypedArray<int64_t> &p_array);
|
2022-09-15 07:33:07 +00:00
|
|
|
TypedArray<Vector2> test_tarray() const;
|
2021-11-18 03:05:14 +00:00
|
|
|
Dictionary test_dictionary() const;
|
2023-01-10 10:48:21 +00:00
|
|
|
Example *test_node_argument(Example *p_node) const;
|
2022-11-28 12:47:55 +00:00
|
|
|
String test_string_ops() const;
|
2023-05-30 20:35:05 +00:00
|
|
|
String test_str_utility() const;
|
2023-06-20 15:03:15 +00:00
|
|
|
bool test_string_is_fourty_two(const String &p_str) const;
|
2023-07-07 13:26:55 +00:00
|
|
|
String test_string_resize(String p_original) const;
|
2022-11-28 12:47:55 +00:00
|
|
|
int test_vector_ops() const;
|
2021-08-19 17:51:41 +00:00
|
|
|
|
2023-08-14 23:44:30 +00:00
|
|
|
bool test_object_cast_to_node(Object *p_object) const;
|
|
|
|
bool test_object_cast_to_control(Object *p_object) const;
|
|
|
|
bool test_object_cast_to_example(Object *p_object) const;
|
|
|
|
|
|
|
|
Vector2i test_variant_vector2i_conversion(const Variant &p_variant) const;
|
|
|
|
int test_variant_int_conversion(const Variant &p_variant) const;
|
|
|
|
float test_variant_float_conversion(const Variant &p_variant) const;
|
|
|
|
|
|
|
|
void test_add_child(Node *p_node);
|
|
|
|
void test_set_tileset(TileMap *p_tilemap, const Ref<TileSet> &p_tileset) const;
|
|
|
|
|
2022-12-08 05:34:19 +00:00
|
|
|
BitField<Flags> test_bitfield(BitField<Flags> flags);
|
|
|
|
|
2023-06-30 13:06:17 +00:00
|
|
|
// RPC
|
|
|
|
void test_rpc(int p_value);
|
|
|
|
void test_send_rpc(int p_value);
|
|
|
|
int return_last_rpc_arg();
|
|
|
|
|
2021-08-19 23:03:11 +00:00
|
|
|
// Property.
|
2021-08-19 17:51:41 +00:00
|
|
|
void set_custom_position(const Vector2 &pos);
|
|
|
|
Vector2 get_custom_position() const;
|
2022-07-20 20:49:08 +00:00
|
|
|
Vector4 get_v4() const;
|
2021-08-19 17:51:41 +00:00
|
|
|
|
2022-05-04 11:27:08 +00:00
|
|
|
// Static method.
|
|
|
|
static int test_static(int p_a, int p_b);
|
|
|
|
static void test_static2();
|
|
|
|
|
2021-08-19 23:03:11 +00:00
|
|
|
// Virtual function override (no need to bind manually).
|
|
|
|
virtual bool _has_point(const Vector2 &point) const override;
|
2023-05-23 20:17:06 +00:00
|
|
|
virtual void _input(const Ref<InputEvent> &event) override;
|
2021-08-19 17:51:41 +00:00
|
|
|
};
|
|
|
|
|
2022-12-08 05:34:19 +00:00
|
|
|
VARIANT_ENUM_CAST(Example::Constants);
|
|
|
|
VARIANT_BITFIELD_CAST(Example::Flags);
|
|
|
|
|
|
|
|
enum EnumWithoutClass {
|
|
|
|
OUTSIDE_OF_CLASS = 512
|
|
|
|
};
|
|
|
|
VARIANT_ENUM_CAST(EnumWithoutClass);
|
2021-08-19 17:51:41 +00:00
|
|
|
|
2022-10-15 10:23:36 +00:00
|
|
|
class ExampleVirtual : public Object {
|
|
|
|
GDCLASS(ExampleVirtual, Object);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
class ExampleAbstract : public Object {
|
|
|
|
GDCLASS(ExampleAbstract, Object);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods() {}
|
|
|
|
};
|
|
|
|
|
2022-08-22 16:14:33 +00:00
|
|
|
#endif // EXAMPLE_CLASS_H
|