1 /** 2 3 4 Copyright: 5 Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. 6 Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) 7 Copyright (c) 2017-2018 Godot-D contributors 8 9 License: $(LINK2 https://opensource.org/licenses/MIT, MIT License) 10 11 12 */ 13 module godot.gdnative; 14 import std.meta : AliasSeq, staticIndexOf; 15 import std.traits : Unqual; 16 import godot.d.traits; 17 import godot.core; 18 import godot.c; 19 import godot.d.bind; 20 import godot.d.reference; 21 import godot.globalenums; 22 import godot.object; 23 import godot.classdb; 24 import godot.reference; 25 import godot.gdnativelibrary; 26 /** 27 28 */ 29 @GodotBaseClass struct GDNative 30 { 31 package(godot) enum string _GODOT_internal_name = "GDNative"; 32 public: 33 @nogc nothrow: 34 union { /** */ godot_object _godot_object; /** */ Reference _GODOT_base; } 35 alias _GODOT_base this; 36 alias BaseClasses = AliasSeq!(typeof(_GODOT_base), typeof(_GODOT_base).BaseClasses); 37 package(godot) __gshared bool _classBindingInitialized = false; 38 package(godot) static struct GDNativeClassBinding 39 { 40 __gshared: 41 @GodotName("call_native") GodotMethod!(Variant, String, String, Array) callNative; 42 @GodotName("get_library") GodotMethod!(GDNativeLibrary) getLibrary; 43 @GodotName("initialize") GodotMethod!(bool) initialize; 44 @GodotName("set_library") GodotMethod!(void, GDNativeLibrary) setLibrary; 45 @GodotName("terminate") GodotMethod!(bool) terminate; 46 } 47 /// 48 pragma(inline, true) bool opEquals(in GDNative other) const 49 { return _godot_object.ptr is other._godot_object.ptr; } 50 /// 51 pragma(inline, true) typeof(null) opAssign(typeof(null) n) 52 { _godot_object.ptr = n; return null; } 53 /// 54 pragma(inline, true) bool opEquals(typeof(null) n) const 55 { return _godot_object.ptr is n; } 56 /// 57 size_t toHash() const @trusted { return cast(size_t)_godot_object.ptr; } 58 mixin baseCasts; 59 /// Construct a new instance of GDNative. 60 /// Note: use `memnew!GDNative` instead. 61 static GDNative _new() 62 { 63 static godot_class_constructor constructor; 64 if(constructor is null) constructor = _godot_api.godot_get_class_constructor("GDNative"); 65 if(constructor is null) return typeof(this).init; 66 return cast(GDNative)(constructor()); 67 } 68 @disable new(size_t s); 69 /** 70 71 */ 72 Variant callNative(in String calling_type, in String procedure_name, in Array arguments) 73 { 74 checkClassBinding!(typeof(this))(); 75 return ptrcall!(Variant)(GDNativeClassBinding.callNative, _godot_object, calling_type, procedure_name, arguments); 76 } 77 /** 78 79 */ 80 Ref!GDNativeLibrary getLibrary() const 81 { 82 checkClassBinding!(typeof(this))(); 83 return ptrcall!(GDNativeLibrary)(GDNativeClassBinding.getLibrary, _godot_object); 84 } 85 /** 86 87 */ 88 bool initialize() 89 { 90 checkClassBinding!(typeof(this))(); 91 return ptrcall!(bool)(GDNativeClassBinding.initialize, _godot_object); 92 } 93 /** 94 95 */ 96 void setLibrary(GDNativeLibrary library) 97 { 98 checkClassBinding!(typeof(this))(); 99 ptrcall!(void)(GDNativeClassBinding.setLibrary, _godot_object, library); 100 } 101 /** 102 103 */ 104 bool terminate() 105 { 106 checkClassBinding!(typeof(this))(); 107 return ptrcall!(bool)(GDNativeClassBinding.terminate, _godot_object); 108 } 109 /** 110 111 */ 112 @property GDNativeLibrary library() 113 { 114 return getLibrary(); 115 } 116 /// ditto 117 @property void library(GDNativeLibrary v) 118 { 119 setLibrary(v); 120 } 121 }