gdjn  Check-in [351bb17bed]

Overview
Comment:add automatic instance bindings with accessors
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 351bb17bed601aa2bdfff738377d62edf31dc2ef725db4c9b79982afae9efc7d
User & Date: lexi on 2025-02-10 01:11:13
Other Links: manifest | tags
Context
2025-02-21
22:02
add janet API bootstrapping infra (prim, core), begin building executor (vm.c), design class model, continue working on loading, add script instances, tidy up src organization, build janet to use godot malloc/free check-in: 91e02e35d5 user: lexi tags: trunk
2025-02-10
01:11
add automatic instance bindings with accessors check-in: 351bb17bed user: lexi tags: trunk
2025-02-09
20:46
initial commit check-in: 1cc0d76954 user: lexi tags: trunk
Changes

Modified gdjn.ct from [3da39adca5] to [af1bbb3860].

1
2
3
4
5
6


7
8
9
10
11
12
13
%toc
#top gdjn
allow use of Godot 4 with a [^civ civilized] scripting language, viz. [>janet Janet].

	janet: https://janet-lang.org
	godot: https://godotengine.org



@civ {
	to meet the bare minimum standards necessary to qualify as [!civilized] to my mind, a language must:
	* support compilation, whether to bytecode or machine code (excludes gdscript)
	* parse into an AST (excludes bash, php (or used to))
	* support AST-rewriting macros (excludes everything outside the lisp family except maybe rust)
	* use real syntax, not whitespace-based kludges (excludes python, gdscript inter alia)
<





>
>








1
2
3
4
5
6
7
8
9
10
11
12
13
14

#top gdjn
allow use of Godot 4 with a [^civ civilized] scripting language, viz. [>janet Janet].

	janet: https://janet-lang.org
	godot: https://godotengine.org

%toc

@civ {
	to meet the bare minimum standards necessary to qualify as [!civilized] to my mind, a language must:
	* support compilation, whether to bytecode or machine code (excludes gdscript)
	* parse into an AST (excludes bash, php (or used to))
	* support AST-rewriting macros (excludes everything outside the lisp family except maybe rust)
	* use real syntax, not whitespace-based kludges (excludes python, gdscript inter alia)

Modified src/janet-lang.gcd from [c0eeb85e80] to [c1b1ca0dcf].

172
173
174
175
176
177
178
179

180
181
182
183
184
185
186
187
188





















189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211











212
213
214
215
216
217
218
219
220
221
222



223

	};
	impl _set_path(string path, bool takeOver) {
		if (takeOver) {
			_t(string).dtor(&me -> path);
			me -> path = path;
		} else {
			_t(string).dtor(&me -> path);
			_t(string).copy(&me -> path, (void const*[]) {&path});

		}
	};
	impl _get_base_script() -> ref Script {
		return nullptr;
	};
	impl _has_static_method(string-name method) -> bool {
		return false;
	};
	impl _is_tool() -> bool { return false; }; (* FIXME *)





















};

class JanetScriptText extends JanetScript {
	var as string: src;
	new {
		_t(string).empty(&me -> src, nullptr);
	};
	del {
		_t(string).dtor(&me -> src);
	};

	impl _get_instance_base_type() -> string-name {
		return _gdu_intern("ScriptExtension");
	};
	impl _has_source_code() -> bool   { return true; };
	impl _get_source_code() -> string {
		auto d = gdu_string_dup(&me -> src);
		return d;
	};
	impl _set_source_code(string s) {
		_t(string).dtor(&me -> src);
		_t(string).copy(&me -> src, (void const*[]) {&s});
	};











};

class JanetScriptImage extends JanetScript {
	impl _has_source_code() -> bool { return false; };
	var struct gdjn_class_JanetScript_image {
		size_t   sz;
		uint8_t* buf;
	}: image;
	impl _get_instance_base_type() -> string-name {
		return _gdu_intern("ScriptExtension");
	};



};








|
>









>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>











<
<
<









>
>
>
>
>
>
>
>
>
>
>




|
|
|
|
|
|

>
>
>
|
>
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221



222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
	};
	impl _set_path(string path, bool takeOver) {
		if (takeOver) {
			_t(string).dtor(&me -> path);
			me -> path = path;
		} else {
			_t(string).dtor(&me -> path);
			/* _t(string).copy(&me -> path, (void const*[]) {&path}); */
			me -> path = gdu_string_dup(&path);
		}
	};
	impl _get_base_script() -> ref Script {
		return nullptr;
	};
	impl _has_static_method(string-name method) -> bool {
		return false;
	};
	impl _is_tool() -> bool { return false; }; (* FIXME *)
	impl _get_global_name(string-name id) -> string-name {
		return gdu_sym_null();
	};
	impl _is_abstract() -> bool {
		return false; (* TODO abuse for non-class scripts? *)
	};
	impl _get_instance_base_type() -> string-name {
		return _gdu_intern("Object");
	};
	impl _is_valid() -> bool {
		return true;
	};
	impl _get_documentation() -> array[dictionary] {
		gd_array dox;
		_t(array).empty(&dox, nullptr);
		auto empty = gdu_sym_null();
		_t(array).setTyped(&dox,
			GDEXTENSION_VARIANT_TYPE_DICTIONARY, &empty, &empty);
		_t(stringName).dtor(&empty);
		return dox;
	};
};

class JanetScriptText extends JanetScript {
	var as string: src;
	new {
		_t(string).empty(&me -> src, nullptr);
	};
	del {
		_t(string).dtor(&me -> src);
	};




	impl _has_source_code() -> bool   { return true; };
	impl _get_source_code() -> string {
		auto d = gdu_string_dup(&me -> src);
		return d;
	};
	impl _set_source_code(string s) {
		_t(string).dtor(&me -> src);
		_t(string).copy(&me -> src, (void const*[]) {&s});
	};
	impl _reload(bool keepState) -> int (* Error *) {
		(* TODO *)
		return gd_Error_ok;
	};
};

import {
	typedef struct gdjn_janet_image {
		size_t   sz;
		uint8_t* buf;
	} gdjn_janet_image;
};

class JanetScriptImage extends JanetScript {
	impl _has_source_code() -> bool { return false; };
	var gdjn_janet_image: image;
	new {
		me -> image = (gdjn_janet_image) {};
	};
	del {
		if (me -> image.buf != nullptr) _free(me -> image.buf);
	};
	impl _reload(bool keepState) -> int (* Error *) {
		(* TODO *)
		return gd_Error_ok;
	};
};

Modified src/janet-rsrc.gcd from [0f238faa9a] to [ab1704aae3].

110
111
112
113
114
115
116

117
118

119
120
121
122
123
124
125
126
		gd_refCounted_reference(fd);

		if (_gdu_objIs(res, JanetScriptText)) {
			auto asText = gdu_cast(res, "JanetScriptText");
			gd_string src = gd_script_getSourceCode(asText);
			gd_fileAccess_storeString(fd, src);
			_t(string).dtor(&src);

		} else if (_gdu_objIs(res, JanetScriptImage)) {
			auto asImg = gdu_cast(res, "JanetScriptImage");

		};

		gd_fileAccess_close(fd);
		_t(string).dtor(&path_mine);
		gd_refCounted_unreference(fd);
		gd_refCounted_unreference(res);
	};
};







>


>








110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
		gd_refCounted_reference(fd);

		if (_gdu_objIs(res, JanetScriptText)) {
			auto asText = gdu_cast(res, "JanetScriptText");
			gd_string src = gd_script_getSourceCode(asText);
			gd_fileAccess_storeString(fd, src);
			_t(string).dtor(&src);
			auto data = gdjn_class_JanetScriptText_data(res);
		} else if (_gdu_objIs(res, JanetScriptImage)) {
			auto asImg = gdu_cast(res, "JanetScriptImage");
			auto data = gdjn_class_JanetScriptImage_data(res);
		};

		gd_fileAccess_close(fd);
		_t(string).dtor(&path_mine);
		gd_refCounted_unreference(fd);
		gd_refCounted_unreference(res);
	};
};

Modified src/util.h from [9bc49409e2] to [70ed0e36b0].

37
38
39
40
41
42
43














44
45
46
47
48
49
50
	return r;
}

static inline gd_stringName
gdu_intern (const char* str) {
	return gdu_intern_sz(str, 0);
}















static inline gd_string
gdu_str_sz (const char* str, const size_t sz) {
	gd_string r = {};
	if (sz == 0) _t(string).newWithUtf8Chars(&r, str);
	        else _t(string).newWithUtf8CharsAndLen(&r, str, sz);
	return r;







>
>
>
>
>
>
>
>
>
>
>
>
>
>







37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
	return r;
}

static inline gd_stringName
gdu_intern (const char* str) {
	return gdu_intern_sz(str, 0);
}

static inline gd_stringName
gdu_sym_null(void) {
	gd_stringName n;
	_t(stringName).empty(&n, nullptr);
	return n;
}

static inline gd_string
gdu_str_null(void) {
	gd_string n;
	_t(string).empty(&n, nullptr);
	return n;
}

static inline gd_string
gdu_str_sz (const char* str, const size_t sz) {
	gd_string r = {};
	if (sz == 0) _t(string).newWithUtf8Chars(&r, str);
	        else _t(string).newWithUtf8CharsAndLen(&r, str, sz);
	return r;

Modified tool/c-bind-gen.janet from [777733985b] to [eeaa9e3ddf].

176
177
178
179
180
181
182

183
184
185
186
187
188
189
...
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
						  register-extension-class-method
						  register-extension-class-virtual-method
						  get-method-bind
						  get-class-tag
						 [construct-object 2]]}
	{:id object :binds [set-instance
						set-instance-binding

						get-class-name
						cast-to
						has-script-method
						call-script-method
						method-bind-ptrcall
						destroy
						]}
................................................................................
			(with-names ln
				[["className"  (:tall  i)]
				 ["methodName" (:sulk m)]]
				(fn [] 
					(ln (string
							"auto ptr = t -> gd_classdb.getMethodBind(&className, &methodName, %d);\n"
							"\tt -> %s.%s_ptr = ptr;\n"
							"\t"`printf("* bind method %s.%s (%%p)\n",ptr);` "\n"
							"\tassert(ptr != nullptr);")
					(method :hash)
					ctr-id    (:name m)
					(:name i) (:name m)
					))))
		(add-ctors i (i :ctors))
		(add (api :decls) "} %s;" ctr-id))







>







 







|







176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
...
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
						  register-extension-class-method
						  register-extension-class-virtual-method
						  get-method-bind
						  get-class-tag
						 [construct-object 2]]}
	{:id object :binds [set-instance
						set-instance-binding
						get-instance-binding
						get-class-name
						cast-to
						has-script-method
						call-script-method
						method-bind-ptrcall
						destroy
						]}
................................................................................
			(with-names ln
				[["className"  (:tall  i)]
				 ["methodName" (:sulk m)]]
				(fn [] 
					(ln (string
							"auto ptr = t -> gd_classdb.getMethodBind(&className, &methodName, %d);\n"
							"\tt -> %s.%s_ptr = ptr;\n"
							#"\t"`printf("* bind method %s.%s (%%p)\n",ptr);` "\n"
							"\tassert(ptr != nullptr);")
					(method :hash)
					ctr-id    (:name m)
					(:name i) (:name m)
					))))
		(add-ctors i (i :ctors))
		(add (api :decls) "} %s;" ctr-id))

Modified tool/class-compile.janet from [21ecd655b6] to [a0ecf192d6].

3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
..
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
...
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
...
862
863
864
865
866
867
868

869
870
871
872
873
874
875
876







877
878
879
880
881
882
883
884
885








886
887
888
889
890
891
892
#  🄯 AGPLv3
#  ? compiles a godot class definition to C source
#  > janet tool/class-compile.janet <class> (loader|header)

(def *src-file* (gensym))

(def parse-doc
	(do
		(def doc-parser (peg/compile '{
			:hs          (+ " " "\t")
			:-           "-"
			:open-line   (* (? " ") (? '(some (if-not "\n" 1))) "\n")
			:single-line (* (? " ") (? '(some (* (not :hs) 1))) (any :hs) -1)
			:mid-line    (+ (* (any :hs) :- (? " ")
			                   (? '(some (if-not "\n" 1))) "\n")
			                (* (? '(some (if-not "\n" 1))) "\n"))
................................................................................
			:close-line  (+ (* (any :hs) -1)
							(* (any :hs) :- (? " ")
							   (? '(some (if-not (* (any :hs) -1) 1)))
			                   (any :hs) -1))
			:main        (+ (* :open-line (any :mid-line) :close-line)
			                :single-line
							'(any 1)) # admit defeat
	   }))

		(fn parse-doc[str]
			(peg/match doc-parser str))))

(def syntaxes
	(do (def quot-syntax
			'(nth 1 (unref (* (<- (+ `"` `'`) :quo)
................................................................................
					(string "\t.has_return_value = "
							(if (= :void (f :ret)) "false" "true") ",")
					(string "\t.call_func = " invocant ",")
					(string "\t.ptrcall_func = " invocant-ptr ",")
				] [])
				;ret-info
				`};`
				(string `printf("binding method %s\n",`
						(string/format "%q" fn-path)
						`);`)
				(string `_t(classdb).`
						(case kind
							:method "registerExtensionClassMethod"
							:impl "registerExtensionClassVirtualMethod")
						`(gdjn_ctx -> gd.lib, &s_className, &info);`)))
	   (array/concat @[] "{" ;(with-names [:s_className (class :id)]
				 ;(map |(bind $ :method) (class :methods))
................................................................................
						   ;(if (= :native (c :base-mode))
							   (with-names ["superName" (c :base)]
								   "super = _t(classdb).constructObject(&superName);")
							   [(string/format "super = %s_create();"
											   id-base)])
						   "return super;"))


		(array/push (unit :funcs)
					(:dec <func-c> self-ref-t id-ctor []
					  (string "typeof("id")* me = _alloc("id", 1);")
					  ;(with-names ["className" (c :id)]
						   (string/format "auto gdobj = %s();"
										  id-create)
						   `printf("constructed super object %p\n", gdobj);`
						   "_t(object).setInstance(gdobj, &className, me);"







						   (string id-init "(me, gdobj);"))
					  "return me;"))
		(push-event :dtor id-dtor :void
					[[:void* :_data]
					 [:GDExtensionClassInstancePtr :_ptr_me]]
					|[(string "typeof("id")* me = _ptr_me;")
					  ;$
					  "_free(me);"])
		(def id-virt (class-prefix (c :cursor) (c :id) "virt"))









		(array/push (unit :funcs) (:dec- <func-c> :void* id-virt
			 [[:void* :data]
			  [:GDExtensionConstStringNamePtr :method]
			  [:uint32_t :hash]]
			 `bool res = false;`
			 ;(catseq [[name idx] :pairs (c :vtbl-map)] [







<
|







 







|







 







|

|







 







>






|

>
>
>
>
>
>
>









>
>
>
>
>
>
>
>







3
4
5
6
7
8
9

10
11
12
13
14
15
16
17
..
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
...
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
...
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
#  🄯 AGPLv3
#  ? compiles a godot class definition to C source
#  > janet tool/class-compile.janet <class> (loader|header)

(def *src-file* (gensym))

(def parse-doc

	(do (def doc-parser (peg/compile '{
			:hs          (+ " " "\t")
			:-           "-"
			:open-line   (* (? " ") (? '(some (if-not "\n" 1))) "\n")
			:single-line (* (? " ") (? '(some (* (not :hs) 1))) (any :hs) -1)
			:mid-line    (+ (* (any :hs) :- (? " ")
			                   (? '(some (if-not "\n" 1))) "\n")
			                (* (? '(some (if-not "\n" 1))) "\n"))
................................................................................
			:close-line  (+ (* (any :hs) -1)
							(* (any :hs) :- (? " ")
							   (? '(some (if-not (* (any :hs) -1) 1)))
			                   (any :hs) -1))
			:main        (+ (* :open-line (any :mid-line) :close-line)
			                :single-line
							'(any 1)) # admit defeat
		}))

		(fn parse-doc[str]
			(peg/match doc-parser str))))

(def syntaxes
	(do (def quot-syntax
			'(nth 1 (unref (* (<- (+ `"` `'`) :quo)
................................................................................
					(string "\t.has_return_value = "
							(if (= :void (f :ret)) "false" "true") ",")
					(string "\t.call_func = " invocant ",")
					(string "\t.ptrcall_func = " invocant-ptr ",")
				] [])
				;ret-info
				`};`
				(comment (string `printf("binding method %s\n",`
						(string/format "%q" fn-path)
						`);`))
				(string `_t(classdb).`
						(case kind
							:method "registerExtensionClassMethod"
							:impl "registerExtensionClassVirtualMethod")
						`(gdjn_ctx -> gd.lib, &s_className, &info);`)))
	   (array/concat @[] "{" ;(with-names [:s_className (class :id)]
				 ;(map |(bind $ :method) (class :methods))
................................................................................
						   ;(if (= :native (c :base-mode))
							   (with-names ["superName" (c :base)]
								   "super = _t(classdb).constructObject(&superName);")
							   [(string/format "super = %s_create();"
											   id-base)])
						   "return super;"))

		(def icb-null "(&(GDExtensionInstanceBindingCallbacks){})")
		(array/push (unit :funcs)
					(:dec <func-c> self-ref-t id-ctor []
					  (string "typeof("id")* me = _alloc("id", 1);")
					  ;(with-names ["className" (c :id)]
						   (string/format "auto gdobj = %s();"
										  id-create)
						   #`printf("constructed super object %p\n", gdobj);`
						   "_t(object).setInstance(gdobj, &className, me);"
						   # register the instance as a binding so
						   # that other classes can access it. this
						   # is so dumb
						   "_t(object).setInstanceBinding("
						   "	gdobj, gdjn_ctx -> gd.lib, me,"
								icb-null
						   ");"
						   (string id-init "(me, gdobj);"))
					  "return me;"))
		(push-event :dtor id-dtor :void
					[[:void* :_data]
					 [:GDExtensionClassInstancePtr :_ptr_me]]
					|[(string "typeof("id")* me = _ptr_me;")
					  ;$
					  "_free(me);"])
		(def id-virt (class-prefix (c :cursor) (c :id) "virt"))
		(array/push (unit :funcs)
					(:dec* <func-c> [:inline :static]
						   self-ref-t (string id "_data")
						  [[:GDExtensionObjectPtr :self]]
						  "return _t(object).getInstanceBinding("
						  "	self, gdjn_ctx -> gd.lib,"
							icb-null
						  ");"))

		(array/push (unit :funcs) (:dec- <func-c> :void* id-virt
			 [[:void* :data]
			  [:GDExtensionConstStringNamePtr :method]
			  [:uint32_t :hash]]
			 `bool res = false;`
			 ;(catseq [[name idx] :pairs (c :vtbl-map)] [