gdjn  Diff

Differences From Artifact [a0ecf192d6]:

To Artifact [22543b9ce7]:


33
34
35
36
37
38
39

40
41
42
43
44
45
46
...
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
...
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
...
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
...
700
701
702
703
704
705
706
707
708
709
710




711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
...
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
...
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799

800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
...
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
...
862
863
864
865
866
867
868

869
870

871
872
873
874
875
876
877
878
879
...
884
885
886
887
888
889
890
891


892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907

908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926

927
928
929
930
931
932
933
934
935
...
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
...
997
998
999
1000
1001
1002
1003
1004
1005
1006
					   (<- (any (+ (* `\` (backmatch :quo))
								   (if-not (backmatch :quo) 1))))
					   (backmatch :quo)) :quo)))
		(defn fail [cause]
			(defn mk [ln col]
				{:kind :parse
				 :cause cause

				 :ln ln :col col})
			~(error (cmt (* (line) (column)) ,mk)))
		(defn req [id body]
			~(+ (* ,;body) ,(fail (keyword :malformed- id))))
		(defn kw [id body]
			~(* ,id (> 1 :bound) ,(req id ~(:s+ ,;body))))
		(defn comment-syntax [id open close]
................................................................................
	(enter body ""))

(defn err->msg [e]
	(defn err-span [h & m] [:span [:hl [:red h]] ": " ;m ])
	(match e
		{:kind :parse} (err-span "parse error"
			 (string (e :cause) " at ")
			 [:hl (string/format "%d:%d" (e :ln) (e :col))])
		_ (error e)))
		# _ (err-span "error"
		# 			"something went wrong (" [:em (string e)] ")")))


(defn indent [n lst]
	(map |(string (string/repeat "\t" n) $) lst))
................................................................................
	[:ref        _] :object
	x (keyword x)))
(defn gdtype->ctype [t]
	(match t
		:void        :void
		:float       :double
		:int         :int64_t
		:bool        :bool
		[:array      _] :gd_array
		[:dictionary _] :gd_dictionary
		[:ref        _] :GDExtensionObjectPtr

		# use an opaque wrapper struct defined in interface.h
		x (string "gd_" (:say (:read <sym> t)))))

................................................................................
	~(do (var ,acc ,init)
		 (loop ,binds
			 (set ,acc (do ,;body)))
		 ,acc))


(defn unit-files [u]
	(def h @[ `#pragma once` `#include "gdjn.h"` `#include "util.h"`
			 ;(u :header-prefix)])
	(def c @[
		(string `#include "` (:stab (u :name)) `.h"`)
		`typedef struct gdjn_vcall {`
		`	GDExtensionClassMethodPtrCall caller; `
		`	void* tgt;`
		`} gdjn_vcall;`
................................................................................
						:method (array/push (cls :methods) meth)
						:impl   (array/push (cls :impls)   meth)))
			)))

	(def root (:new <cursor> :unit unit))
	(each n ast (process n root))

	(defn class-prefix [c & r]
		(def pf (let [p (:prefix c)]
					(if (empty? p) [] [p])))
		(string/join ["gdjn_class" ;pf ;r] "_"))





	(defn bind-methods [class]
		(defn bind [f kind]
			(def t-args (map (fn [[t] &] t)
							 (f :args)))
			(def invocant
				((unit :invocants) [(f :ret) t-args]))
			(def invocant-ptr
				((unit :invocants-ptr) [(f :ret) t-args]))
			(def fp-t (func-ptr-t (gdtype->ctype (f :ret))
								  [(string "typeof("
										   (class-prefix (class :cursor)
														 (class :id))")*")
								   ;(map gdtype->ctype t-args)]))

			(def strings-lst @[])
			(def strings
				(cache (fn [idx text] 
						   (def id (string "_priv_str_" idx))
						   (array/push strings-lst id text)
................................................................................
									 `,`])
						:impl [`.return_value = ` 
							   ;(prop-info (if (= :void (f :ret)) :nil
											   (f :ret)))]
					)])
				)

			(def fn-path (class-prefix (f :cursor) "method" (f :id)))
			(with-names [:s_methodName (f :id) ;strings-lst]
				(if (not= kind :method) ""
					(string fp-t " func = " fn-path ";"))
				(string/format `auto info = (%s) {`
					(case kind
						:method "GDExtensionClassMethodInfo"
						:impl "GDExtensionClassVirtualMethodInfo"))
................................................................................
						(length t-args) ",")
				;(indent 1 arg-info)
				;(if (= kind :method) [
					`	.method_userdata = func,`
					`	.method_flags = GDEXTENSION_METHOD_FLAGS_DEFAULT,`
					(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))
				 ;(map |(bind $ :impl) (class :impls))) "}"))

	(defn push-item [kind cursor item] # abuse hashtables for fun & profit
		(array/push (unit kind) item)
		(when (and cursor (cursor :doc))
			(put (unit :doc) item (cursor :doc))))

	(loop [c :in (unit :classes)]
		(def id (class-prefix (c :cursor) (c :id)))
		(def [id-ctor id-dtor
			  id-ctor-api
			  id-init id-create]
			(map |(string id  "_" $) ["new"     "del"
									  "api_new" "init" "create"]))

		(def id-base (as-> (c :base) b
................................................................................
						   (string "gdjn_class_" b))) #HAAACK
		(when (not (empty? (c :impls)))
			(def vtbl @[])
			(loop [i :range [0 (length (c :impls))]
				     :let   [f ((c :impls) i)]]
				(def t-args (map (fn [[t] &] t)
								 (f :args)))
				(def call   (class-prefix (f :cursor) "method" (f :id)))
				(def caller ((unit :invocants-ptr) [(f :ret) t-args]))
				(put (c :vtbl-map) (f :id) i)
				(array/push vtbl
							(string "{.caller=" caller ", .tgt=" call "}"))
				)
			(let [vstr (string/join (map |(string "\n\t" $ ",") vtbl))
				  vwr (string "{" vstr "\n}") ]
................................................................................
							   (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
................................................................................
						   (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)] [

					  ;(with-names [:name name]
					  `_t(stringName).equal(&name, method, &res);`
						  `if (res) {`
							  (string "\treturn (void*)&" id "_vtbl[" idx "];")
						  `}`)])
			 ;(if (= :native (c :base-mode)) [`return nullptr;`]
				  # inherits from a gdextension class; call up
				  [(string/format "return %s_virt(data, method, hash);"
								  id-base)])
			 ))
		(def id-virt-call (class-prefix (c :cursor) (c :id) "virt_call"))
		(array/push (unit :funcs) (:dec- <func-c> :void id-virt-call
			 [[:GDExtensionClassInstancePtr   :inst]
			  [:GDExtensionConstStringNamePtr :method]
			  [:void* :vcall]
			  ["const GDExtensionConstTypePtr*" :args]
			  [:GDExtensionTypePtr :ret]]
			 `auto c = (const gdjn_vcall*)vcall;`
			 `c -> caller(c -> tgt, inst, args, ret);`))

		(array/push (unit :load)
					;(with-names ["className" (c :id)
								  "superName" (c :base)]
						 "auto classDesc = (GDExtensionClassCreationInfo4) {"
						 `	.is_virtual = false,`
						 (string "\t.is_abstract = " (if (c :abstract)  "true" "false")",")
						 `	.is_exposed = true,`
						 `	.is_runtime = true,`
						 (string "\t.create_instance_func = " id-ctor-api ",")
................................................................................
		(def binder (bind-methods c))
		(array/concat (unit :load) binder)



		)
	(loop [f :in (unit :methods)]
		(def class (class-prefix (f :cursor)))
		(def cid (class-prefix (f :cursor) "method" (f :id)))
		(def cfn (:dec <func-c> (gdtype->ctype (f :ret)) cid
					   [ [(string class "*") "me"]
						;(map (fn [[t id dox]]
								  [(gdtype->ctype t) id])
							  (f :args))]
					   (f :text)))
		(def arg-dox
................................................................................
	(let [uf (unit-files unit)]
		(:write stdout (case emit
			"header" (lines->str (uf :header))
			"loader" (lines->str (uf :impl))
			(error :bad-cmd)))))

(defn main [& argv]
	# (entry ;argv))
	(try (entry ;argv)
		([e] (:write stderr (style ;(err->msg e))))))







>







 







|







 







|







 







|







 







|


|
>
>
>
>






|

|


|
|







 







|







 







|
|











>
|









|







 







|







 







>


>

|







 







|
>
>
|













<
|
>
|
|
|
|
|





|








>

|







 







|
|







 







|
|
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
...
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
...
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
...
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
...
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
...
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
...
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
...
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
...
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
...
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915

916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
...
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
....
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
					   (<- (any (+ (* `\` (backmatch :quo))
								   (if-not (backmatch :quo) 1))))
					   (backmatch :quo)) :quo)))
		(defn fail [cause]
			(defn mk [ln col]
				{:kind :parse
				 :cause cause
				 :src (dyn *src-file* "<stdin>")
				 :ln ln :col col})
			~(error (cmt (* (line) (column)) ,mk)))
		(defn req [id body]
			~(+ (* ,;body) ,(fail (keyword :malformed- id))))
		(defn kw [id body]
			~(* ,id (> 1 :bound) ,(req id ~(:s+ ,;body))))
		(defn comment-syntax [id open close]
................................................................................
	(enter body ""))

(defn err->msg [e]
	(defn err-span [h & m] [:span [:hl [:red h]] ": " ;m ])
	(match e
		{:kind :parse} (err-span "parse error"
			 (string (e :cause) " at ")
			 [:hl (string/format "%s:%d:%d" (e :src) (e :ln) (e :col))])
		_ (error e)))
		# _ (err-span "error"
		# 			"something went wrong (" [:em (string e)] ")")))


(defn indent [n lst]
	(map |(string (string/repeat "\t" n) $) lst))
................................................................................
	[:ref        _] :object
	x (keyword x)))
(defn gdtype->ctype [t]
	(match t
		:void        :void
		:float       :double
		:int         :int64_t
		:bool        :uint8_t
		[:array      _] :gd_array
		[:dictionary _] :gd_dictionary
		[:ref        _] :GDExtensionObjectPtr

		# use an opaque wrapper struct defined in interface.h
		x (string "gd_" (:say (:read <sym> t)))))

................................................................................
	~(do (var ,acc ,init)
		 (loop ,binds
			 (set ,acc (do ,;body)))
		 ,acc))


(defn unit-files [u]
	(def h @[ `#pragma once` `#include "gdjn.h"`
			 ;(u :header-prefix)])
	(def c @[
		(string `#include "` (:stab (u :name)) `.h"`)
		`typedef struct gdjn_vcall {`
		`	GDExtensionClassMethodPtrCall caller; `
		`	void* tgt;`
		`} gdjn_vcall;`
................................................................................
						:method (array/push (cls :methods) meth)
						:impl   (array/push (cls :impls)   meth)))
			)))

	(def root (:new <cursor> :unit unit))
	(each n ast (process n root))

	(defn class-prefix* [sep c begin r]
		(def pf (let [p (:prefix c)]
					(if (empty? p) [] [p])))
		(string/join [;begin ;pf ;r] sep))
	(defn class-prefix. [c & r]
		(class-prefix* "." c [] r))
	(defn class-prefix_  [c & r]
		(class-prefix* "_" c ["gdjn_class"] r))

	(defn bind-methods [class]
		(defn bind [f kind]
			(def t-args (map (fn [[t] &] t)
							 (f :args)))
			(def invocant
				|((unit :invocants) [(f :ret) t-args]))
			(def invocant-ptr
				|((unit :invocants-ptr) [(f :ret) t-args]))
			(def fp-t (func-ptr-t (gdtype->ctype (f :ret))
								  [(string "typeof("
										   (class-prefix_ (class :cursor)
														  (class :id))")*")
								   ;(map gdtype->ctype t-args)]))

			(def strings-lst @[])
			(def strings
				(cache (fn [idx text] 
						   (def id (string "_priv_str_" idx))
						   (array/push strings-lst id text)
................................................................................
									 `,`])
						:impl [`.return_value = ` 
							   ;(prop-info (if (= :void (f :ret)) :nil
											   (f :ret)))]
					)])
				)

			(def fn-path (class-prefix_ (f :cursor) "method" (f :id)))
			(with-names [:s_methodName (f :id) ;strings-lst]
				(if (not= kind :method) ""
					(string fp-t " func = " fn-path ";"))
				(string/format `auto info = (%s) {`
					(case kind
						:method "GDExtensionClassMethodInfo"
						:impl "GDExtensionClassVirtualMethodInfo"))
................................................................................
						(length t-args) ",")
				;(indent 1 arg-info)
				;(if (= kind :method) [
					`	.method_userdata = func,`
					`	.method_flags = GDEXTENSION_METHOD_FLAGS_DEFAULT,`
					(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);`)))
		(def class-path (class-prefix* "_" (class :cursor) [] [(class :id)]))
		(array/concat @[] "{" ;(with-names [:s_className class-path]
				 ;(map |(bind $ :method) (class :methods))
				 ;(map |(bind $ :impl) (class :impls))) "}"))

	(defn push-item [kind cursor item] # abuse hashtables for fun & profit
		(array/push (unit kind) item)
		(when (and cursor (cursor :doc))
			(put (unit :doc) item (cursor :doc))))

	(loop [c :in (unit :classes)]
		(def id (class-prefix_ (c :cursor) (c :id)))
		(def [id-ctor id-dtor
			  id-ctor-api
			  id-init id-create]
			(map |(string id  "_" $) ["new"     "del"
									  "api_new" "init" "create"]))

		(def id-base (as-> (c :base) b
................................................................................
						   (string "gdjn_class_" b))) #HAAACK
		(when (not (empty? (c :impls)))
			(def vtbl @[])
			(loop [i :range [0 (length (c :impls))]
				     :let   [f ((c :impls) i)]]
				(def t-args (map (fn [[t] &] t)
								 (f :args)))
				(def call   (class-prefix_ (f :cursor) "method" (f :id)))
				(def caller ((unit :invocants-ptr) [(f :ret) t-args]))
				(put (c :vtbl-map) (f :id) i)
				(array/push vtbl
							(string "{.caller=" caller ", .tgt=" call "}"))
				)
			(let [vstr (string/join (map |(string "\n\t" $ ",") vtbl))
				  vwr (string "{" vstr "\n}") ]
................................................................................
							   (with-names ["superName" (c :base)]
								   "super = _t(classdb).constructObject(&superName);")
							   [(string/format "super = %s_create();"
											   id-base)])
						   "return super;"))

		(def icb-null "(&(GDExtensionInstanceBindingCallbacks){})")
		(def class-path (class-prefix* "_" (c :cursor) [] [(c :id)]))
		(array/push (unit :funcs)
					(:dec <func-c> self-ref-t id-ctor []
					  (string `printf("creating object ` id `\n");`)
					  (string "typeof("id")* me = _alloc("id", 1);")
					  ;(with-names ["className" class-path]
						   (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
................................................................................
						   (string id-init "(me, gdobj);"))
					  "return me;"))
		(push-event :dtor id-dtor :void
					[[:void* :_data]
					 [:GDExtensionClassInstancePtr :_ptr_me]]
					|[(string "typeof("id")* me = _ptr_me;")
					  ;$
					  (if (= :native (c :base-mode)) "_free(me);"
						   (string/format "%s_del(_data, &me -> super);"
										  id-base))])
		(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]]

			 ;(catseq [[name idx] :pairs (c :vtbl-map)]
					  [ `{bool res = false;`
					   ;(with-names [:name name]
							 `_t(stringName).equal(&name, method, &res);`)
					   `if (res) {`
					   (string "\treturn (void*)&" id "_vtbl[" idx "];")
					   `}}`])
			 ;(if (= :native (c :base-mode)) [`return nullptr;`]
				  # inherits from a gdextension class; call up
				  [(string/format "return %s_virt(data, method, hash);"
								  id-base)])
			 ))
		(def id-virt-call (class-prefix_ (c :cursor) (c :id) "virt_call"))
		(array/push (unit :funcs) (:dec- <func-c> :void id-virt-call
			 [[:GDExtensionClassInstancePtr   :inst]
			  [:GDExtensionConstStringNamePtr :method]
			  [:void* :vcall]
			  ["const GDExtensionConstTypePtr*" :args]
			  [:GDExtensionTypePtr :ret]]
			 `auto c = (const gdjn_vcall*)vcall;`
			 `c -> caller(c -> tgt, inst, args, ret);`))
		(def class-path (class-prefix* "_" (c :cursor) [] [(c :id)]))
		(array/push (unit :load)
					;(with-names ["className" class-path
								  "superName" (c :base)]
						 "auto classDesc = (GDExtensionClassCreationInfo4) {"
						 `	.is_virtual = false,`
						 (string "\t.is_abstract = " (if (c :abstract)  "true" "false")",")
						 `	.is_exposed = true,`
						 `	.is_runtime = true,`
						 (string "\t.create_instance_func = " id-ctor-api ",")
................................................................................
		(def binder (bind-methods c))
		(array/concat (unit :load) binder)



		)
	(loop [f :in (unit :methods)]
		(def class (class-prefix_ (f :cursor)))
		(def cid (class-prefix_ (f :cursor) "method" (f :id)))
		(def cfn (:dec <func-c> (gdtype->ctype (f :ret)) cid
					   [ [(string class "*") "me"]
						;(map (fn [[t id dox]]
								  [(gdtype->ctype t) id])
							  (f :args))]
					   (f :text)))
		(def arg-dox
................................................................................
	(let [uf (unit-files unit)]
		(:write stdout (case emit
			"header" (lines->str (uf :header))
			"loader" (lines->str (uf :impl))
			(error :bad-cmd)))))

(defn main [& argv]
	(entry ;argv))
	# (try (entry ;argv)
	# 	([e] (:write stderr (style ;(err->msg e)) "\n"))))