gdnative.gen.c 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021
  1. // Copyright © 2019 - 2020 Oscar Campos <oscar.campos@thepimpam.com>
  2. // Copyright © 2017 - William Edwards
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License");
  5. // you may not use this file except in compliance with the License.
  6. // You may obtain a copy of the License at
  7. //
  8. // http://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software
  11. // distributed under the License is distributed on an "AS IS" BASIS,
  12. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. // See the License for the specific language governing permissions and
  14. // limitations under the License.
  15. #include "gdnative.gen.h"
  16. #include <gdnative/aabb.h>
  17. #include <gdnative/array.h>
  18. #include <gdnative/basis.h>
  19. #include <gdnative/color.h>
  20. #include <gdnative/dictionary.h>
  21. #include <gdnative/gdnative.h>
  22. #include <gdnative/node_path.h>
  23. #include <gdnative/plane.h>
  24. #include <gdnative/pool_arrays.h>
  25. #include <gdnative/quat.h>
  26. #include <gdnative/rect2.h>
  27. #include <gdnative/rid.h>
  28. #include <gdnative/string.h>
  29. #include <gdnative/string_name.h>
  30. #include <gdnative/transform.h>
  31. #include <gdnative/transform2d.h>
  32. #include <gdnative/variant.h>
  33. #include <gdnative/vector2.h>
  34. #include <gdnative/vector3.h>
  35. #include <gdnative_api_struct.gen.h>
  36. /*------------------------------------------------------------------------------
  37. // This file was autogenerated by PimPam GDNative-Go binding tools
  38. // Please do not modify this file, any change will be lost
  39. //----------------------------------------------------------------------------*/
  40. /* GDNative CORE 1.0 */
  41. void go_godot_color_new_rgba(godot_gdnative_core_api_struct * p_api, godot_color * r_dest, const godot_real p_r, const godot_real p_g, const godot_real p_b, const godot_real p_a) {
  42. p_api->godot_color_new_rgba(r_dest, p_r, p_g, p_b, p_a);
  43. }
  44. void go_godot_color_new_rgb(godot_gdnative_core_api_struct * p_api, godot_color * r_dest, const godot_real p_r, const godot_real p_g, const godot_real p_b) {
  45. p_api->godot_color_new_rgb(r_dest, p_r, p_g, p_b);
  46. }
  47. godot_real go_godot_color_get_r(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  48. return p_api->godot_color_get_r(p_self);
  49. }
  50. void go_godot_color_set_r(godot_gdnative_core_api_struct * p_api, godot_color * p_self, const godot_real r) {
  51. p_api->godot_color_set_r(p_self, r);
  52. }
  53. godot_real go_godot_color_get_g(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  54. return p_api->godot_color_get_g(p_self);
  55. }
  56. void go_godot_color_set_g(godot_gdnative_core_api_struct * p_api, godot_color * p_self, const godot_real g) {
  57. p_api->godot_color_set_g(p_self, g);
  58. }
  59. godot_real go_godot_color_get_b(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  60. return p_api->godot_color_get_b(p_self);
  61. }
  62. void go_godot_color_set_b(godot_gdnative_core_api_struct * p_api, godot_color * p_self, const godot_real b) {
  63. p_api->godot_color_set_b(p_self, b);
  64. }
  65. godot_real go_godot_color_get_a(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  66. return p_api->godot_color_get_a(p_self);
  67. }
  68. void go_godot_color_set_a(godot_gdnative_core_api_struct * p_api, godot_color * p_self, const godot_real a) {
  69. p_api->godot_color_set_a(p_self, a);
  70. }
  71. godot_real go_godot_color_get_h(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  72. return p_api->godot_color_get_h(p_self);
  73. }
  74. godot_real go_godot_color_get_s(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  75. return p_api->godot_color_get_s(p_self);
  76. }
  77. godot_real go_godot_color_get_v(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  78. return p_api->godot_color_get_v(p_self);
  79. }
  80. godot_string go_godot_color_as_string(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  81. return p_api->godot_color_as_string(p_self);
  82. }
  83. godot_int go_godot_color_to_rgba32(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  84. return p_api->godot_color_to_rgba32(p_self);
  85. }
  86. godot_int go_godot_color_to_argb32(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  87. return p_api->godot_color_to_argb32(p_self);
  88. }
  89. godot_real go_godot_color_gray(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  90. return p_api->godot_color_gray(p_self);
  91. }
  92. godot_color go_godot_color_inverted(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  93. return p_api->godot_color_inverted(p_self);
  94. }
  95. godot_color go_godot_color_contrasted(godot_gdnative_core_api_struct * p_api, const godot_color * p_self) {
  96. return p_api->godot_color_contrasted(p_self);
  97. }
  98. godot_color go_godot_color_linear_interpolate(godot_gdnative_core_api_struct * p_api, const godot_color * p_self, const godot_color * p_b, const godot_real p_t) {
  99. return p_api->godot_color_linear_interpolate(p_self, p_b, p_t);
  100. }
  101. godot_color go_godot_color_blend(godot_gdnative_core_api_struct * p_api, const godot_color * p_self, const godot_color * p_over) {
  102. return p_api->godot_color_blend(p_self, p_over);
  103. }
  104. godot_string go_godot_color_to_html(godot_gdnative_core_api_struct * p_api, const godot_color * p_self, const godot_bool p_with_alpha) {
  105. return p_api->godot_color_to_html(p_self, p_with_alpha);
  106. }
  107. godot_bool go_godot_color_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_color * p_self, const godot_color * p_b) {
  108. return p_api->godot_color_operator_equal(p_self, p_b);
  109. }
  110. godot_bool go_godot_color_operator_less(godot_gdnative_core_api_struct * p_api, const godot_color * p_self, const godot_color * p_b) {
  111. return p_api->godot_color_operator_less(p_self, p_b);
  112. }
  113. void go_godot_vector2_new(godot_gdnative_core_api_struct * p_api, godot_vector2 * r_dest, const godot_real p_x, const godot_real p_y) {
  114. p_api->godot_vector2_new(r_dest, p_x, p_y);
  115. }
  116. godot_string go_godot_vector2_as_string(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  117. return p_api->godot_vector2_as_string(p_self);
  118. }
  119. godot_vector2 go_godot_vector2_normalized(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  120. return p_api->godot_vector2_normalized(p_self);
  121. }
  122. godot_real go_godot_vector2_length(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  123. return p_api->godot_vector2_length(p_self);
  124. }
  125. godot_real go_godot_vector2_angle(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  126. return p_api->godot_vector2_angle(p_self);
  127. }
  128. godot_real go_godot_vector2_length_squared(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  129. return p_api->godot_vector2_length_squared(p_self);
  130. }
  131. godot_bool go_godot_vector2_is_normalized(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  132. return p_api->godot_vector2_is_normalized(p_self);
  133. }
  134. godot_real go_godot_vector2_distance_to(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_to) {
  135. return p_api->godot_vector2_distance_to(p_self, p_to);
  136. }
  137. godot_real go_godot_vector2_distance_squared_to(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_to) {
  138. return p_api->godot_vector2_distance_squared_to(p_self, p_to);
  139. }
  140. godot_real go_godot_vector2_angle_to(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_to) {
  141. return p_api->godot_vector2_angle_to(p_self, p_to);
  142. }
  143. godot_real go_godot_vector2_angle_to_point(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_to) {
  144. return p_api->godot_vector2_angle_to_point(p_self, p_to);
  145. }
  146. godot_vector2 go_godot_vector2_linear_interpolate(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_b, const godot_real p_t) {
  147. return p_api->godot_vector2_linear_interpolate(p_self, p_b, p_t);
  148. }
  149. godot_vector2 go_godot_vector2_cubic_interpolate(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_b, const godot_vector2 * p_pre_a, const godot_vector2 * p_post_b, const godot_real p_t) {
  150. return p_api->godot_vector2_cubic_interpolate(p_self, p_b, p_pre_a, p_post_b, p_t);
  151. }
  152. godot_vector2 go_godot_vector2_rotated(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_real p_phi) {
  153. return p_api->godot_vector2_rotated(p_self, p_phi);
  154. }
  155. godot_vector2 go_godot_vector2_tangent(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  156. return p_api->godot_vector2_tangent(p_self);
  157. }
  158. godot_vector2 go_godot_vector2_floor(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  159. return p_api->godot_vector2_floor(p_self);
  160. }
  161. godot_vector2 go_godot_vector2_snapped(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_by) {
  162. return p_api->godot_vector2_snapped(p_self, p_by);
  163. }
  164. godot_real go_godot_vector2_aspect(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  165. return p_api->godot_vector2_aspect(p_self);
  166. }
  167. godot_real go_godot_vector2_dot(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_with) {
  168. return p_api->godot_vector2_dot(p_self, p_with);
  169. }
  170. godot_vector2 go_godot_vector2_slide(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_n) {
  171. return p_api->godot_vector2_slide(p_self, p_n);
  172. }
  173. godot_vector2 go_godot_vector2_bounce(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_n) {
  174. return p_api->godot_vector2_bounce(p_self, p_n);
  175. }
  176. godot_vector2 go_godot_vector2_reflect(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_n) {
  177. return p_api->godot_vector2_reflect(p_self, p_n);
  178. }
  179. godot_vector2 go_godot_vector2_abs(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  180. return p_api->godot_vector2_abs(p_self);
  181. }
  182. godot_vector2 go_godot_vector2_clamped(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_real p_length) {
  183. return p_api->godot_vector2_clamped(p_self, p_length);
  184. }
  185. godot_vector2 go_godot_vector2_operator_add(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_b) {
  186. return p_api->godot_vector2_operator_add(p_self, p_b);
  187. }
  188. godot_vector2 go_godot_vector2_operator_subtract(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_b) {
  189. return p_api->godot_vector2_operator_subtract(p_self, p_b);
  190. }
  191. godot_vector2 go_godot_vector2_operator_multiply_vector(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_b) {
  192. return p_api->godot_vector2_operator_multiply_vector(p_self, p_b);
  193. }
  194. godot_vector2 go_godot_vector2_operator_multiply_scalar(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_real p_b) {
  195. return p_api->godot_vector2_operator_multiply_scalar(p_self, p_b);
  196. }
  197. godot_vector2 go_godot_vector2_operator_divide_vector(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_b) {
  198. return p_api->godot_vector2_operator_divide_vector(p_self, p_b);
  199. }
  200. godot_vector2 go_godot_vector2_operator_divide_scalar(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_real p_b) {
  201. return p_api->godot_vector2_operator_divide_scalar(p_self, p_b);
  202. }
  203. godot_bool go_godot_vector2_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_b) {
  204. return p_api->godot_vector2_operator_equal(p_self, p_b);
  205. }
  206. godot_bool go_godot_vector2_operator_less(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self, const godot_vector2 * p_b) {
  207. return p_api->godot_vector2_operator_less(p_self, p_b);
  208. }
  209. godot_vector2 go_godot_vector2_operator_neg(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  210. return p_api->godot_vector2_operator_neg(p_self);
  211. }
  212. void go_godot_vector2_set_x(godot_gdnative_core_api_struct * p_api, godot_vector2 * p_self, const godot_real p_x) {
  213. p_api->godot_vector2_set_x(p_self, p_x);
  214. }
  215. void go_godot_vector2_set_y(godot_gdnative_core_api_struct * p_api, godot_vector2 * p_self, const godot_real p_y) {
  216. p_api->godot_vector2_set_y(p_self, p_y);
  217. }
  218. godot_real go_godot_vector2_get_x(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  219. return p_api->godot_vector2_get_x(p_self);
  220. }
  221. godot_real go_godot_vector2_get_y(godot_gdnative_core_api_struct * p_api, const godot_vector2 * p_self) {
  222. return p_api->godot_vector2_get_y(p_self);
  223. }
  224. void go_godot_quat_new(godot_gdnative_core_api_struct * p_api, godot_quat * r_dest, const godot_real p_x, const godot_real p_y, const godot_real p_z, const godot_real p_w) {
  225. p_api->godot_quat_new(r_dest, p_x, p_y, p_z, p_w);
  226. }
  227. void go_godot_quat_new_with_axis_angle(godot_gdnative_core_api_struct * p_api, godot_quat * r_dest, const godot_vector3 * p_axis, const godot_real p_angle) {
  228. p_api->godot_quat_new_with_axis_angle(r_dest, p_axis, p_angle);
  229. }
  230. godot_real go_godot_quat_get_x(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  231. return p_api->godot_quat_get_x(p_self);
  232. }
  233. void go_godot_quat_set_x(godot_gdnative_core_api_struct * p_api, godot_quat * p_self, const godot_real val) {
  234. p_api->godot_quat_set_x(p_self, val);
  235. }
  236. godot_real go_godot_quat_get_y(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  237. return p_api->godot_quat_get_y(p_self);
  238. }
  239. void go_godot_quat_set_y(godot_gdnative_core_api_struct * p_api, godot_quat * p_self, const godot_real val) {
  240. p_api->godot_quat_set_y(p_self, val);
  241. }
  242. godot_real go_godot_quat_get_z(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  243. return p_api->godot_quat_get_z(p_self);
  244. }
  245. void go_godot_quat_set_z(godot_gdnative_core_api_struct * p_api, godot_quat * p_self, const godot_real val) {
  246. p_api->godot_quat_set_z(p_self, val);
  247. }
  248. godot_real go_godot_quat_get_w(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  249. return p_api->godot_quat_get_w(p_self);
  250. }
  251. void go_godot_quat_set_w(godot_gdnative_core_api_struct * p_api, godot_quat * p_self, const godot_real val) {
  252. p_api->godot_quat_set_w(p_self, val);
  253. }
  254. godot_string go_godot_quat_as_string(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  255. return p_api->godot_quat_as_string(p_self);
  256. }
  257. godot_real go_godot_quat_length(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  258. return p_api->godot_quat_length(p_self);
  259. }
  260. godot_real go_godot_quat_length_squared(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  261. return p_api->godot_quat_length_squared(p_self);
  262. }
  263. godot_quat go_godot_quat_normalized(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  264. return p_api->godot_quat_normalized(p_self);
  265. }
  266. godot_bool go_godot_quat_is_normalized(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  267. return p_api->godot_quat_is_normalized(p_self);
  268. }
  269. godot_quat go_godot_quat_inverse(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  270. return p_api->godot_quat_inverse(p_self);
  271. }
  272. godot_real go_godot_quat_dot(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self, const godot_quat * p_b) {
  273. return p_api->godot_quat_dot(p_self, p_b);
  274. }
  275. godot_vector3 go_godot_quat_xform(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self, const godot_vector3 * p_v) {
  276. return p_api->godot_quat_xform(p_self, p_v);
  277. }
  278. godot_quat go_godot_quat_slerp(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self, const godot_quat * p_b, const godot_real p_t) {
  279. return p_api->godot_quat_slerp(p_self, p_b, p_t);
  280. }
  281. godot_quat go_godot_quat_slerpni(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self, const godot_quat * p_b, const godot_real p_t) {
  282. return p_api->godot_quat_slerpni(p_self, p_b, p_t);
  283. }
  284. godot_quat go_godot_quat_cubic_slerp(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self, const godot_quat * p_b, const godot_quat * p_pre_a, const godot_quat * p_post_b, const godot_real p_t) {
  285. return p_api->godot_quat_cubic_slerp(p_self, p_b, p_pre_a, p_post_b, p_t);
  286. }
  287. godot_quat go_godot_quat_operator_multiply(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self, const godot_real p_b) {
  288. return p_api->godot_quat_operator_multiply(p_self, p_b);
  289. }
  290. godot_quat go_godot_quat_operator_add(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self, const godot_quat * p_b) {
  291. return p_api->godot_quat_operator_add(p_self, p_b);
  292. }
  293. godot_quat go_godot_quat_operator_subtract(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self, const godot_quat * p_b) {
  294. return p_api->godot_quat_operator_subtract(p_self, p_b);
  295. }
  296. godot_quat go_godot_quat_operator_divide(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self, const godot_real p_b) {
  297. return p_api->godot_quat_operator_divide(p_self, p_b);
  298. }
  299. godot_bool go_godot_quat_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self, const godot_quat * p_b) {
  300. return p_api->godot_quat_operator_equal(p_self, p_b);
  301. }
  302. godot_quat go_godot_quat_operator_neg(godot_gdnative_core_api_struct * p_api, const godot_quat * p_self) {
  303. return p_api->godot_quat_operator_neg(p_self);
  304. }
  305. void go_godot_basis_new_with_rows(godot_gdnative_core_api_struct * p_api, godot_basis * r_dest, const godot_vector3 * p_x_axis, const godot_vector3 * p_y_axis, const godot_vector3 * p_z_axis) {
  306. p_api->godot_basis_new_with_rows(r_dest, p_x_axis, p_y_axis, p_z_axis);
  307. }
  308. void go_godot_basis_new_with_axis_and_angle(godot_gdnative_core_api_struct * p_api, godot_basis * r_dest, const godot_vector3 * p_axis, const godot_real p_phi) {
  309. p_api->godot_basis_new_with_axis_and_angle(r_dest, p_axis, p_phi);
  310. }
  311. void go_godot_basis_new_with_euler(godot_gdnative_core_api_struct * p_api, godot_basis * r_dest, const godot_vector3 * p_euler) {
  312. p_api->godot_basis_new_with_euler(r_dest, p_euler);
  313. }
  314. godot_string go_godot_basis_as_string(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self) {
  315. return p_api->godot_basis_as_string(p_self);
  316. }
  317. godot_basis go_godot_basis_inverse(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self) {
  318. return p_api->godot_basis_inverse(p_self);
  319. }
  320. godot_basis go_godot_basis_transposed(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self) {
  321. return p_api->godot_basis_transposed(p_self);
  322. }
  323. godot_basis go_godot_basis_orthonormalized(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self) {
  324. return p_api->godot_basis_orthonormalized(p_self);
  325. }
  326. godot_real go_godot_basis_determinant(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self) {
  327. return p_api->godot_basis_determinant(p_self);
  328. }
  329. godot_basis go_godot_basis_rotated(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_vector3 * p_axis, const godot_real p_phi) {
  330. return p_api->godot_basis_rotated(p_self, p_axis, p_phi);
  331. }
  332. godot_basis go_godot_basis_scaled(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_vector3 * p_scale) {
  333. return p_api->godot_basis_scaled(p_self, p_scale);
  334. }
  335. godot_vector3 go_godot_basis_get_scale(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self) {
  336. return p_api->godot_basis_get_scale(p_self);
  337. }
  338. godot_vector3 go_godot_basis_get_euler(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self) {
  339. return p_api->godot_basis_get_euler(p_self);
  340. }
  341. godot_real go_godot_basis_tdotx(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_vector3 * p_with) {
  342. return p_api->godot_basis_tdotx(p_self, p_with);
  343. }
  344. godot_real go_godot_basis_tdoty(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_vector3 * p_with) {
  345. return p_api->godot_basis_tdoty(p_self, p_with);
  346. }
  347. godot_real go_godot_basis_tdotz(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_vector3 * p_with) {
  348. return p_api->godot_basis_tdotz(p_self, p_with);
  349. }
  350. godot_vector3 go_godot_basis_xform(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_vector3 * p_v) {
  351. return p_api->godot_basis_xform(p_self, p_v);
  352. }
  353. godot_vector3 go_godot_basis_xform_inv(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_vector3 * p_v) {
  354. return p_api->godot_basis_xform_inv(p_self, p_v);
  355. }
  356. godot_int go_godot_basis_get_orthogonal_index(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self) {
  357. return p_api->godot_basis_get_orthogonal_index(p_self);
  358. }
  359. void go_godot_basis_new(godot_gdnative_core_api_struct * p_api, godot_basis * r_dest) {
  360. p_api->godot_basis_new(r_dest);
  361. }
  362. void go_godot_basis_new_with_euler_quat(godot_gdnative_core_api_struct * p_api, godot_basis * r_dest, const godot_quat * p_euler) {
  363. p_api->godot_basis_new_with_euler_quat(r_dest, p_euler);
  364. }
  365. void go_godot_basis_get_elements(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, godot_vector3 * p_elements) {
  366. p_api->godot_basis_get_elements(p_self, p_elements);
  367. }
  368. godot_vector3 go_godot_basis_get_axis(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_int p_axis) {
  369. return p_api->godot_basis_get_axis(p_self, p_axis);
  370. }
  371. void go_godot_basis_set_axis(godot_gdnative_core_api_struct * p_api, godot_basis * p_self, const godot_int p_axis, const godot_vector3 * p_value) {
  372. p_api->godot_basis_set_axis(p_self, p_axis, p_value);
  373. }
  374. godot_vector3 go_godot_basis_get_row(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_int p_row) {
  375. return p_api->godot_basis_get_row(p_self, p_row);
  376. }
  377. void go_godot_basis_set_row(godot_gdnative_core_api_struct * p_api, godot_basis * p_self, const godot_int p_row, const godot_vector3 * p_value) {
  378. p_api->godot_basis_set_row(p_self, p_row, p_value);
  379. }
  380. godot_bool go_godot_basis_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_basis * p_b) {
  381. return p_api->godot_basis_operator_equal(p_self, p_b);
  382. }
  383. godot_basis go_godot_basis_operator_add(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_basis * p_b) {
  384. return p_api->godot_basis_operator_add(p_self, p_b);
  385. }
  386. godot_basis go_godot_basis_operator_subtract(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_basis * p_b) {
  387. return p_api->godot_basis_operator_subtract(p_self, p_b);
  388. }
  389. godot_basis go_godot_basis_operator_multiply_vector(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_basis * p_b) {
  390. return p_api->godot_basis_operator_multiply_vector(p_self, p_b);
  391. }
  392. godot_basis go_godot_basis_operator_multiply_scalar(godot_gdnative_core_api_struct * p_api, const godot_basis * p_self, const godot_real p_b) {
  393. return p_api->godot_basis_operator_multiply_scalar(p_self, p_b);
  394. }
  395. void go_godot_vector3_new(godot_gdnative_core_api_struct * p_api, godot_vector3 * r_dest, const godot_real p_x, const godot_real p_y, const godot_real p_z) {
  396. p_api->godot_vector3_new(r_dest, p_x, p_y, p_z);
  397. }
  398. godot_string go_godot_vector3_as_string(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  399. return p_api->godot_vector3_as_string(p_self);
  400. }
  401. godot_int go_godot_vector3_min_axis(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  402. return p_api->godot_vector3_min_axis(p_self);
  403. }
  404. godot_int go_godot_vector3_max_axis(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  405. return p_api->godot_vector3_max_axis(p_self);
  406. }
  407. godot_real go_godot_vector3_length(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  408. return p_api->godot_vector3_length(p_self);
  409. }
  410. godot_real go_godot_vector3_length_squared(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  411. return p_api->godot_vector3_length_squared(p_self);
  412. }
  413. godot_bool go_godot_vector3_is_normalized(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  414. return p_api->godot_vector3_is_normalized(p_self);
  415. }
  416. godot_vector3 go_godot_vector3_normalized(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  417. return p_api->godot_vector3_normalized(p_self);
  418. }
  419. godot_vector3 go_godot_vector3_inverse(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  420. return p_api->godot_vector3_inverse(p_self);
  421. }
  422. godot_vector3 go_godot_vector3_snapped(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_by) {
  423. return p_api->godot_vector3_snapped(p_self, p_by);
  424. }
  425. godot_vector3 go_godot_vector3_rotated(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_axis, const godot_real p_phi) {
  426. return p_api->godot_vector3_rotated(p_self, p_axis, p_phi);
  427. }
  428. godot_vector3 go_godot_vector3_linear_interpolate(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b, const godot_real p_t) {
  429. return p_api->godot_vector3_linear_interpolate(p_self, p_b, p_t);
  430. }
  431. godot_vector3 go_godot_vector3_cubic_interpolate(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b, const godot_vector3 * p_pre_a, const godot_vector3 * p_post_b, const godot_real p_t) {
  432. return p_api->godot_vector3_cubic_interpolate(p_self, p_b, p_pre_a, p_post_b, p_t);
  433. }
  434. godot_real go_godot_vector3_dot(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  435. return p_api->godot_vector3_dot(p_self, p_b);
  436. }
  437. godot_vector3 go_godot_vector3_cross(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  438. return p_api->godot_vector3_cross(p_self, p_b);
  439. }
  440. godot_basis go_godot_vector3_outer(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  441. return p_api->godot_vector3_outer(p_self, p_b);
  442. }
  443. godot_basis go_godot_vector3_to_diagonal_matrix(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  444. return p_api->godot_vector3_to_diagonal_matrix(p_self);
  445. }
  446. godot_vector3 go_godot_vector3_abs(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  447. return p_api->godot_vector3_abs(p_self);
  448. }
  449. godot_vector3 go_godot_vector3_floor(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  450. return p_api->godot_vector3_floor(p_self);
  451. }
  452. godot_vector3 go_godot_vector3_ceil(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  453. return p_api->godot_vector3_ceil(p_self);
  454. }
  455. godot_real go_godot_vector3_distance_to(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  456. return p_api->godot_vector3_distance_to(p_self, p_b);
  457. }
  458. godot_real go_godot_vector3_distance_squared_to(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  459. return p_api->godot_vector3_distance_squared_to(p_self, p_b);
  460. }
  461. godot_real go_godot_vector3_angle_to(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_to) {
  462. return p_api->godot_vector3_angle_to(p_self, p_to);
  463. }
  464. godot_vector3 go_godot_vector3_slide(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_n) {
  465. return p_api->godot_vector3_slide(p_self, p_n);
  466. }
  467. godot_vector3 go_godot_vector3_bounce(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_n) {
  468. return p_api->godot_vector3_bounce(p_self, p_n);
  469. }
  470. godot_vector3 go_godot_vector3_reflect(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_n) {
  471. return p_api->godot_vector3_reflect(p_self, p_n);
  472. }
  473. godot_vector3 go_godot_vector3_operator_add(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  474. return p_api->godot_vector3_operator_add(p_self, p_b);
  475. }
  476. godot_vector3 go_godot_vector3_operator_subtract(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  477. return p_api->godot_vector3_operator_subtract(p_self, p_b);
  478. }
  479. godot_vector3 go_godot_vector3_operator_multiply_vector(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  480. return p_api->godot_vector3_operator_multiply_vector(p_self, p_b);
  481. }
  482. godot_vector3 go_godot_vector3_operator_multiply_scalar(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_real p_b) {
  483. return p_api->godot_vector3_operator_multiply_scalar(p_self, p_b);
  484. }
  485. godot_vector3 go_godot_vector3_operator_divide_vector(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  486. return p_api->godot_vector3_operator_divide_vector(p_self, p_b);
  487. }
  488. godot_vector3 go_godot_vector3_operator_divide_scalar(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_real p_b) {
  489. return p_api->godot_vector3_operator_divide_scalar(p_self, p_b);
  490. }
  491. godot_bool go_godot_vector3_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  492. return p_api->godot_vector3_operator_equal(p_self, p_b);
  493. }
  494. godot_bool go_godot_vector3_operator_less(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3 * p_b) {
  495. return p_api->godot_vector3_operator_less(p_self, p_b);
  496. }
  497. godot_vector3 go_godot_vector3_operator_neg(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self) {
  498. return p_api->godot_vector3_operator_neg(p_self);
  499. }
  500. void go_godot_vector3_set_axis(godot_gdnative_core_api_struct * p_api, godot_vector3 * p_self, const godot_vector3_axis p_axis, const godot_real p_val) {
  501. p_api->godot_vector3_set_axis(p_self, p_axis, p_val);
  502. }
  503. godot_real go_godot_vector3_get_axis(godot_gdnative_core_api_struct * p_api, const godot_vector3 * p_self, const godot_vector3_axis p_axis) {
  504. return p_api->godot_vector3_get_axis(p_self, p_axis);
  505. }
  506. void go_godot_pool_byte_array_new(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * r_dest) {
  507. p_api->godot_pool_byte_array_new(r_dest);
  508. }
  509. void go_godot_pool_byte_array_new_copy(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * r_dest, const godot_pool_byte_array * p_src) {
  510. p_api->godot_pool_byte_array_new_copy(r_dest, p_src);
  511. }
  512. void go_godot_pool_byte_array_new_with_array(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * r_dest, const godot_array * p_a) {
  513. p_api->godot_pool_byte_array_new_with_array(r_dest, p_a);
  514. }
  515. void go_godot_pool_byte_array_append(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * p_self, const uint8_t p_data) {
  516. p_api->godot_pool_byte_array_append(p_self, p_data);
  517. }
  518. void go_godot_pool_byte_array_append_array(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * p_self, const godot_pool_byte_array * p_array) {
  519. p_api->godot_pool_byte_array_append_array(p_self, p_array);
  520. }
  521. godot_error go_godot_pool_byte_array_insert(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * p_self, const godot_int p_idx, const uint8_t p_data) {
  522. return p_api->godot_pool_byte_array_insert(p_self, p_idx, p_data);
  523. }
  524. void go_godot_pool_byte_array_invert(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * p_self) {
  525. p_api->godot_pool_byte_array_invert(p_self);
  526. }
  527. void go_godot_pool_byte_array_push_back(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * p_self, const uint8_t p_data) {
  528. p_api->godot_pool_byte_array_push_back(p_self, p_data);
  529. }
  530. void go_godot_pool_byte_array_remove(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * p_self, const godot_int p_idx) {
  531. p_api->godot_pool_byte_array_remove(p_self, p_idx);
  532. }
  533. void go_godot_pool_byte_array_resize(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * p_self, const godot_int p_size) {
  534. p_api->godot_pool_byte_array_resize(p_self, p_size);
  535. }
  536. godot_pool_byte_array_read_access * go_godot_pool_byte_array_read(godot_gdnative_core_api_struct * p_api, const godot_pool_byte_array * p_self) {
  537. return p_api->godot_pool_byte_array_read(p_self);
  538. }
  539. godot_pool_byte_array_write_access * go_godot_pool_byte_array_write(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * p_self) {
  540. return p_api->godot_pool_byte_array_write(p_self);
  541. }
  542. void go_godot_pool_byte_array_set(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * p_self, const godot_int p_idx, const uint8_t p_data) {
  543. p_api->godot_pool_byte_array_set(p_self, p_idx, p_data);
  544. }
  545. uint8_t go_godot_pool_byte_array_get(godot_gdnative_core_api_struct * p_api, const godot_pool_byte_array * p_self, const godot_int p_idx) {
  546. return p_api->godot_pool_byte_array_get(p_self, p_idx);
  547. }
  548. godot_int go_godot_pool_byte_array_size(godot_gdnative_core_api_struct * p_api, const godot_pool_byte_array * p_self) {
  549. return p_api->godot_pool_byte_array_size(p_self);
  550. }
  551. void go_godot_pool_byte_array_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array * p_self) {
  552. p_api->godot_pool_byte_array_destroy(p_self);
  553. }
  554. void go_godot_pool_int_array_new(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * r_dest) {
  555. p_api->godot_pool_int_array_new(r_dest);
  556. }
  557. void go_godot_pool_int_array_new_copy(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * r_dest, const godot_pool_int_array * p_src) {
  558. p_api->godot_pool_int_array_new_copy(r_dest, p_src);
  559. }
  560. void go_godot_pool_int_array_new_with_array(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * r_dest, const godot_array * p_a) {
  561. p_api->godot_pool_int_array_new_with_array(r_dest, p_a);
  562. }
  563. void go_godot_pool_int_array_append(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * p_self, const godot_int p_data) {
  564. p_api->godot_pool_int_array_append(p_self, p_data);
  565. }
  566. void go_godot_pool_int_array_append_array(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * p_self, const godot_pool_int_array * p_array) {
  567. p_api->godot_pool_int_array_append_array(p_self, p_array);
  568. }
  569. godot_error go_godot_pool_int_array_insert(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * p_self, const godot_int p_idx, const godot_int p_data) {
  570. return p_api->godot_pool_int_array_insert(p_self, p_idx, p_data);
  571. }
  572. void go_godot_pool_int_array_invert(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * p_self) {
  573. p_api->godot_pool_int_array_invert(p_self);
  574. }
  575. void go_godot_pool_int_array_push_back(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * p_self, const godot_int p_data) {
  576. p_api->godot_pool_int_array_push_back(p_self, p_data);
  577. }
  578. void go_godot_pool_int_array_remove(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * p_self, const godot_int p_idx) {
  579. p_api->godot_pool_int_array_remove(p_self, p_idx);
  580. }
  581. void go_godot_pool_int_array_resize(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * p_self, const godot_int p_size) {
  582. p_api->godot_pool_int_array_resize(p_self, p_size);
  583. }
  584. godot_pool_int_array_read_access * go_godot_pool_int_array_read(godot_gdnative_core_api_struct * p_api, const godot_pool_int_array * p_self) {
  585. return p_api->godot_pool_int_array_read(p_self);
  586. }
  587. godot_pool_int_array_write_access * go_godot_pool_int_array_write(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * p_self) {
  588. return p_api->godot_pool_int_array_write(p_self);
  589. }
  590. void go_godot_pool_int_array_set(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * p_self, const godot_int p_idx, const godot_int p_data) {
  591. p_api->godot_pool_int_array_set(p_self, p_idx, p_data);
  592. }
  593. godot_int go_godot_pool_int_array_get(godot_gdnative_core_api_struct * p_api, const godot_pool_int_array * p_self, const godot_int p_idx) {
  594. return p_api->godot_pool_int_array_get(p_self, p_idx);
  595. }
  596. godot_int go_godot_pool_int_array_size(godot_gdnative_core_api_struct * p_api, const godot_pool_int_array * p_self) {
  597. return p_api->godot_pool_int_array_size(p_self);
  598. }
  599. void go_godot_pool_int_array_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_int_array * p_self) {
  600. p_api->godot_pool_int_array_destroy(p_self);
  601. }
  602. void go_godot_pool_real_array_new(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * r_dest) {
  603. p_api->godot_pool_real_array_new(r_dest);
  604. }
  605. void go_godot_pool_real_array_new_copy(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * r_dest, const godot_pool_real_array * p_src) {
  606. p_api->godot_pool_real_array_new_copy(r_dest, p_src);
  607. }
  608. void go_godot_pool_real_array_new_with_array(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * r_dest, const godot_array * p_a) {
  609. p_api->godot_pool_real_array_new_with_array(r_dest, p_a);
  610. }
  611. void go_godot_pool_real_array_append(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * p_self, const godot_real p_data) {
  612. p_api->godot_pool_real_array_append(p_self, p_data);
  613. }
  614. void go_godot_pool_real_array_append_array(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * p_self, const godot_pool_real_array * p_array) {
  615. p_api->godot_pool_real_array_append_array(p_self, p_array);
  616. }
  617. godot_error go_godot_pool_real_array_insert(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * p_self, const godot_int p_idx, const godot_real p_data) {
  618. return p_api->godot_pool_real_array_insert(p_self, p_idx, p_data);
  619. }
  620. void go_godot_pool_real_array_invert(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * p_self) {
  621. p_api->godot_pool_real_array_invert(p_self);
  622. }
  623. void go_godot_pool_real_array_push_back(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * p_self, const godot_real p_data) {
  624. p_api->godot_pool_real_array_push_back(p_self, p_data);
  625. }
  626. void go_godot_pool_real_array_remove(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * p_self, const godot_int p_idx) {
  627. p_api->godot_pool_real_array_remove(p_self, p_idx);
  628. }
  629. void go_godot_pool_real_array_resize(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * p_self, const godot_int p_size) {
  630. p_api->godot_pool_real_array_resize(p_self, p_size);
  631. }
  632. godot_pool_real_array_read_access * go_godot_pool_real_array_read(godot_gdnative_core_api_struct * p_api, const godot_pool_real_array * p_self) {
  633. return p_api->godot_pool_real_array_read(p_self);
  634. }
  635. godot_pool_real_array_write_access * go_godot_pool_real_array_write(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * p_self) {
  636. return p_api->godot_pool_real_array_write(p_self);
  637. }
  638. void go_godot_pool_real_array_set(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * p_self, const godot_int p_idx, const godot_real p_data) {
  639. p_api->godot_pool_real_array_set(p_self, p_idx, p_data);
  640. }
  641. godot_real go_godot_pool_real_array_get(godot_gdnative_core_api_struct * p_api, const godot_pool_real_array * p_self, const godot_int p_idx) {
  642. return p_api->godot_pool_real_array_get(p_self, p_idx);
  643. }
  644. godot_int go_godot_pool_real_array_size(godot_gdnative_core_api_struct * p_api, const godot_pool_real_array * p_self) {
  645. return p_api->godot_pool_real_array_size(p_self);
  646. }
  647. void go_godot_pool_real_array_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_real_array * p_self) {
  648. p_api->godot_pool_real_array_destroy(p_self);
  649. }
  650. void go_godot_pool_string_array_new(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * r_dest) {
  651. p_api->godot_pool_string_array_new(r_dest);
  652. }
  653. void go_godot_pool_string_array_new_copy(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * r_dest, const godot_pool_string_array * p_src) {
  654. p_api->godot_pool_string_array_new_copy(r_dest, p_src);
  655. }
  656. void go_godot_pool_string_array_new_with_array(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * r_dest, const godot_array * p_a) {
  657. p_api->godot_pool_string_array_new_with_array(r_dest, p_a);
  658. }
  659. void go_godot_pool_string_array_append(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * p_self, const godot_string * p_data) {
  660. p_api->godot_pool_string_array_append(p_self, p_data);
  661. }
  662. void go_godot_pool_string_array_append_array(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * p_self, const godot_pool_string_array * p_array) {
  663. p_api->godot_pool_string_array_append_array(p_self, p_array);
  664. }
  665. godot_error go_godot_pool_string_array_insert(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * p_self, const godot_int p_idx, const godot_string * p_data) {
  666. return p_api->godot_pool_string_array_insert(p_self, p_idx, p_data);
  667. }
  668. void go_godot_pool_string_array_invert(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * p_self) {
  669. p_api->godot_pool_string_array_invert(p_self);
  670. }
  671. void go_godot_pool_string_array_push_back(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * p_self, const godot_string * p_data) {
  672. p_api->godot_pool_string_array_push_back(p_self, p_data);
  673. }
  674. void go_godot_pool_string_array_remove(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * p_self, const godot_int p_idx) {
  675. p_api->godot_pool_string_array_remove(p_self, p_idx);
  676. }
  677. void go_godot_pool_string_array_resize(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * p_self, const godot_int p_size) {
  678. p_api->godot_pool_string_array_resize(p_self, p_size);
  679. }
  680. godot_pool_string_array_read_access * go_godot_pool_string_array_read(godot_gdnative_core_api_struct * p_api, const godot_pool_string_array * p_self) {
  681. return p_api->godot_pool_string_array_read(p_self);
  682. }
  683. godot_pool_string_array_write_access * go_godot_pool_string_array_write(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * p_self) {
  684. return p_api->godot_pool_string_array_write(p_self);
  685. }
  686. void go_godot_pool_string_array_set(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * p_self, const godot_int p_idx, const godot_string * p_data) {
  687. p_api->godot_pool_string_array_set(p_self, p_idx, p_data);
  688. }
  689. godot_string go_godot_pool_string_array_get(godot_gdnative_core_api_struct * p_api, const godot_pool_string_array * p_self, const godot_int p_idx) {
  690. return p_api->godot_pool_string_array_get(p_self, p_idx);
  691. }
  692. godot_int go_godot_pool_string_array_size(godot_gdnative_core_api_struct * p_api, const godot_pool_string_array * p_self) {
  693. return p_api->godot_pool_string_array_size(p_self);
  694. }
  695. void go_godot_pool_string_array_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_string_array * p_self) {
  696. p_api->godot_pool_string_array_destroy(p_self);
  697. }
  698. void go_godot_pool_vector2_array_new(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * r_dest) {
  699. p_api->godot_pool_vector2_array_new(r_dest);
  700. }
  701. void go_godot_pool_vector2_array_new_copy(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * r_dest, const godot_pool_vector2_array * p_src) {
  702. p_api->godot_pool_vector2_array_new_copy(r_dest, p_src);
  703. }
  704. void go_godot_pool_vector2_array_new_with_array(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * r_dest, const godot_array * p_a) {
  705. p_api->godot_pool_vector2_array_new_with_array(r_dest, p_a);
  706. }
  707. void go_godot_pool_vector2_array_append(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * p_self, const godot_vector2 * p_data) {
  708. p_api->godot_pool_vector2_array_append(p_self, p_data);
  709. }
  710. void go_godot_pool_vector2_array_append_array(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * p_self, const godot_pool_vector2_array * p_array) {
  711. p_api->godot_pool_vector2_array_append_array(p_self, p_array);
  712. }
  713. godot_error go_godot_pool_vector2_array_insert(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * p_self, const godot_int p_idx, const godot_vector2 * p_data) {
  714. return p_api->godot_pool_vector2_array_insert(p_self, p_idx, p_data);
  715. }
  716. void go_godot_pool_vector2_array_invert(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * p_self) {
  717. p_api->godot_pool_vector2_array_invert(p_self);
  718. }
  719. void go_godot_pool_vector2_array_push_back(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * p_self, const godot_vector2 * p_data) {
  720. p_api->godot_pool_vector2_array_push_back(p_self, p_data);
  721. }
  722. void go_godot_pool_vector2_array_remove(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * p_self, const godot_int p_idx) {
  723. p_api->godot_pool_vector2_array_remove(p_self, p_idx);
  724. }
  725. void go_godot_pool_vector2_array_resize(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * p_self, const godot_int p_size) {
  726. p_api->godot_pool_vector2_array_resize(p_self, p_size);
  727. }
  728. godot_pool_vector2_array_read_access * go_godot_pool_vector2_array_read(godot_gdnative_core_api_struct * p_api, const godot_pool_vector2_array * p_self) {
  729. return p_api->godot_pool_vector2_array_read(p_self);
  730. }
  731. godot_pool_vector2_array_write_access * go_godot_pool_vector2_array_write(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * p_self) {
  732. return p_api->godot_pool_vector2_array_write(p_self);
  733. }
  734. void go_godot_pool_vector2_array_set(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * p_self, const godot_int p_idx, const godot_vector2 * p_data) {
  735. p_api->godot_pool_vector2_array_set(p_self, p_idx, p_data);
  736. }
  737. godot_vector2 go_godot_pool_vector2_array_get(godot_gdnative_core_api_struct * p_api, const godot_pool_vector2_array * p_self, const godot_int p_idx) {
  738. return p_api->godot_pool_vector2_array_get(p_self, p_idx);
  739. }
  740. godot_int go_godot_pool_vector2_array_size(godot_gdnative_core_api_struct * p_api, const godot_pool_vector2_array * p_self) {
  741. return p_api->godot_pool_vector2_array_size(p_self);
  742. }
  743. void go_godot_pool_vector2_array_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array * p_self) {
  744. p_api->godot_pool_vector2_array_destroy(p_self);
  745. }
  746. void go_godot_pool_vector3_array_new(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * r_dest) {
  747. p_api->godot_pool_vector3_array_new(r_dest);
  748. }
  749. void go_godot_pool_vector3_array_new_copy(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * r_dest, const godot_pool_vector3_array * p_src) {
  750. p_api->godot_pool_vector3_array_new_copy(r_dest, p_src);
  751. }
  752. void go_godot_pool_vector3_array_new_with_array(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * r_dest, const godot_array * p_a) {
  753. p_api->godot_pool_vector3_array_new_with_array(r_dest, p_a);
  754. }
  755. void go_godot_pool_vector3_array_append(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * p_self, const godot_vector3 * p_data) {
  756. p_api->godot_pool_vector3_array_append(p_self, p_data);
  757. }
  758. void go_godot_pool_vector3_array_append_array(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * p_self, const godot_pool_vector3_array * p_array) {
  759. p_api->godot_pool_vector3_array_append_array(p_self, p_array);
  760. }
  761. godot_error go_godot_pool_vector3_array_insert(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * p_self, const godot_int p_idx, const godot_vector3 * p_data) {
  762. return p_api->godot_pool_vector3_array_insert(p_self, p_idx, p_data);
  763. }
  764. void go_godot_pool_vector3_array_invert(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * p_self) {
  765. p_api->godot_pool_vector3_array_invert(p_self);
  766. }
  767. void go_godot_pool_vector3_array_push_back(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * p_self, const godot_vector3 * p_data) {
  768. p_api->godot_pool_vector3_array_push_back(p_self, p_data);
  769. }
  770. void go_godot_pool_vector3_array_remove(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * p_self, const godot_int p_idx) {
  771. p_api->godot_pool_vector3_array_remove(p_self, p_idx);
  772. }
  773. void go_godot_pool_vector3_array_resize(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * p_self, const godot_int p_size) {
  774. p_api->godot_pool_vector3_array_resize(p_self, p_size);
  775. }
  776. godot_pool_vector3_array_read_access * go_godot_pool_vector3_array_read(godot_gdnative_core_api_struct * p_api, const godot_pool_vector3_array * p_self) {
  777. return p_api->godot_pool_vector3_array_read(p_self);
  778. }
  779. godot_pool_vector3_array_write_access * go_godot_pool_vector3_array_write(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * p_self) {
  780. return p_api->godot_pool_vector3_array_write(p_self);
  781. }
  782. void go_godot_pool_vector3_array_set(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * p_self, const godot_int p_idx, const godot_vector3 * p_data) {
  783. p_api->godot_pool_vector3_array_set(p_self, p_idx, p_data);
  784. }
  785. godot_vector3 go_godot_pool_vector3_array_get(godot_gdnative_core_api_struct * p_api, const godot_pool_vector3_array * p_self, const godot_int p_idx) {
  786. return p_api->godot_pool_vector3_array_get(p_self, p_idx);
  787. }
  788. godot_int go_godot_pool_vector3_array_size(godot_gdnative_core_api_struct * p_api, const godot_pool_vector3_array * p_self) {
  789. return p_api->godot_pool_vector3_array_size(p_self);
  790. }
  791. void go_godot_pool_vector3_array_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array * p_self) {
  792. p_api->godot_pool_vector3_array_destroy(p_self);
  793. }
  794. void go_godot_pool_color_array_new(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * r_dest) {
  795. p_api->godot_pool_color_array_new(r_dest);
  796. }
  797. void go_godot_pool_color_array_new_copy(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * r_dest, const godot_pool_color_array * p_src) {
  798. p_api->godot_pool_color_array_new_copy(r_dest, p_src);
  799. }
  800. void go_godot_pool_color_array_new_with_array(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * r_dest, const godot_array * p_a) {
  801. p_api->godot_pool_color_array_new_with_array(r_dest, p_a);
  802. }
  803. void go_godot_pool_color_array_append(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * p_self, const godot_color * p_data) {
  804. p_api->godot_pool_color_array_append(p_self, p_data);
  805. }
  806. void go_godot_pool_color_array_append_array(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * p_self, const godot_pool_color_array * p_array) {
  807. p_api->godot_pool_color_array_append_array(p_self, p_array);
  808. }
  809. godot_error go_godot_pool_color_array_insert(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * p_self, const godot_int p_idx, const godot_color * p_data) {
  810. return p_api->godot_pool_color_array_insert(p_self, p_idx, p_data);
  811. }
  812. void go_godot_pool_color_array_invert(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * p_self) {
  813. p_api->godot_pool_color_array_invert(p_self);
  814. }
  815. void go_godot_pool_color_array_push_back(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * p_self, const godot_color * p_data) {
  816. p_api->godot_pool_color_array_push_back(p_self, p_data);
  817. }
  818. void go_godot_pool_color_array_remove(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * p_self, const godot_int p_idx) {
  819. p_api->godot_pool_color_array_remove(p_self, p_idx);
  820. }
  821. void go_godot_pool_color_array_resize(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * p_self, const godot_int p_size) {
  822. p_api->godot_pool_color_array_resize(p_self, p_size);
  823. }
  824. godot_pool_color_array_read_access * go_godot_pool_color_array_read(godot_gdnative_core_api_struct * p_api, const godot_pool_color_array * p_self) {
  825. return p_api->godot_pool_color_array_read(p_self);
  826. }
  827. godot_pool_color_array_write_access * go_godot_pool_color_array_write(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * p_self) {
  828. return p_api->godot_pool_color_array_write(p_self);
  829. }
  830. void go_godot_pool_color_array_set(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * p_self, const godot_int p_idx, const godot_color * p_data) {
  831. p_api->godot_pool_color_array_set(p_self, p_idx, p_data);
  832. }
  833. godot_color go_godot_pool_color_array_get(godot_gdnative_core_api_struct * p_api, const godot_pool_color_array * p_self, const godot_int p_idx) {
  834. return p_api->godot_pool_color_array_get(p_self, p_idx);
  835. }
  836. godot_int go_godot_pool_color_array_size(godot_gdnative_core_api_struct * p_api, const godot_pool_color_array * p_self) {
  837. return p_api->godot_pool_color_array_size(p_self);
  838. }
  839. void go_godot_pool_color_array_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_color_array * p_self) {
  840. p_api->godot_pool_color_array_destroy(p_self);
  841. }
  842. godot_pool_byte_array_read_access * go_godot_pool_byte_array_read_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_byte_array_read_access * p_read) {
  843. return p_api->godot_pool_byte_array_read_access_copy(p_read);
  844. }
  845. const uint8_t * go_godot_pool_byte_array_read_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_byte_array_read_access * p_read) {
  846. return p_api->godot_pool_byte_array_read_access_ptr(p_read);
  847. }
  848. void go_godot_pool_byte_array_read_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array_read_access * p_read, godot_pool_byte_array_read_access * p_other) {
  849. p_api->godot_pool_byte_array_read_access_operator_assign(p_read, p_other);
  850. }
  851. void go_godot_pool_byte_array_read_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array_read_access * p_read) {
  852. p_api->godot_pool_byte_array_read_access_destroy(p_read);
  853. }
  854. godot_pool_int_array_read_access * go_godot_pool_int_array_read_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_int_array_read_access * p_read) {
  855. return p_api->godot_pool_int_array_read_access_copy(p_read);
  856. }
  857. const godot_int * go_godot_pool_int_array_read_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_int_array_read_access * p_read) {
  858. return p_api->godot_pool_int_array_read_access_ptr(p_read);
  859. }
  860. void go_godot_pool_int_array_read_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_int_array_read_access * p_read, godot_pool_int_array_read_access * p_other) {
  861. p_api->godot_pool_int_array_read_access_operator_assign(p_read, p_other);
  862. }
  863. void go_godot_pool_int_array_read_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_int_array_read_access * p_read) {
  864. p_api->godot_pool_int_array_read_access_destroy(p_read);
  865. }
  866. godot_pool_real_array_read_access * go_godot_pool_real_array_read_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_real_array_read_access * p_read) {
  867. return p_api->godot_pool_real_array_read_access_copy(p_read);
  868. }
  869. const godot_real * go_godot_pool_real_array_read_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_real_array_read_access * p_read) {
  870. return p_api->godot_pool_real_array_read_access_ptr(p_read);
  871. }
  872. void go_godot_pool_real_array_read_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_real_array_read_access * p_read, godot_pool_real_array_read_access * p_other) {
  873. p_api->godot_pool_real_array_read_access_operator_assign(p_read, p_other);
  874. }
  875. void go_godot_pool_real_array_read_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_real_array_read_access * p_read) {
  876. p_api->godot_pool_real_array_read_access_destroy(p_read);
  877. }
  878. godot_pool_string_array_read_access * go_godot_pool_string_array_read_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_string_array_read_access * p_read) {
  879. return p_api->godot_pool_string_array_read_access_copy(p_read);
  880. }
  881. const godot_string * go_godot_pool_string_array_read_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_string_array_read_access * p_read) {
  882. return p_api->godot_pool_string_array_read_access_ptr(p_read);
  883. }
  884. void go_godot_pool_string_array_read_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_string_array_read_access * p_read, godot_pool_string_array_read_access * p_other) {
  885. p_api->godot_pool_string_array_read_access_operator_assign(p_read, p_other);
  886. }
  887. void go_godot_pool_string_array_read_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_string_array_read_access * p_read) {
  888. p_api->godot_pool_string_array_read_access_destroy(p_read);
  889. }
  890. godot_pool_vector2_array_read_access * go_godot_pool_vector2_array_read_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_vector2_array_read_access * p_read) {
  891. return p_api->godot_pool_vector2_array_read_access_copy(p_read);
  892. }
  893. const godot_vector2 * go_godot_pool_vector2_array_read_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_vector2_array_read_access * p_read) {
  894. return p_api->godot_pool_vector2_array_read_access_ptr(p_read);
  895. }
  896. void go_godot_pool_vector2_array_read_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array_read_access * p_read, godot_pool_vector2_array_read_access * p_other) {
  897. p_api->godot_pool_vector2_array_read_access_operator_assign(p_read, p_other);
  898. }
  899. void go_godot_pool_vector2_array_read_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array_read_access * p_read) {
  900. p_api->godot_pool_vector2_array_read_access_destroy(p_read);
  901. }
  902. godot_pool_vector3_array_read_access * go_godot_pool_vector3_array_read_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_vector3_array_read_access * p_read) {
  903. return p_api->godot_pool_vector3_array_read_access_copy(p_read);
  904. }
  905. const godot_vector3 * go_godot_pool_vector3_array_read_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_vector3_array_read_access * p_read) {
  906. return p_api->godot_pool_vector3_array_read_access_ptr(p_read);
  907. }
  908. void go_godot_pool_vector3_array_read_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array_read_access * p_read, godot_pool_vector3_array_read_access * p_other) {
  909. p_api->godot_pool_vector3_array_read_access_operator_assign(p_read, p_other);
  910. }
  911. void go_godot_pool_vector3_array_read_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array_read_access * p_read) {
  912. p_api->godot_pool_vector3_array_read_access_destroy(p_read);
  913. }
  914. godot_pool_color_array_read_access * go_godot_pool_color_array_read_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_color_array_read_access * p_read) {
  915. return p_api->godot_pool_color_array_read_access_copy(p_read);
  916. }
  917. const godot_color * go_godot_pool_color_array_read_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_color_array_read_access * p_read) {
  918. return p_api->godot_pool_color_array_read_access_ptr(p_read);
  919. }
  920. void go_godot_pool_color_array_read_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_color_array_read_access * p_read, godot_pool_color_array_read_access * p_other) {
  921. p_api->godot_pool_color_array_read_access_operator_assign(p_read, p_other);
  922. }
  923. void go_godot_pool_color_array_read_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_color_array_read_access * p_read) {
  924. p_api->godot_pool_color_array_read_access_destroy(p_read);
  925. }
  926. godot_pool_byte_array_write_access * go_godot_pool_byte_array_write_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_byte_array_write_access * p_write) {
  927. return p_api->godot_pool_byte_array_write_access_copy(p_write);
  928. }
  929. uint8_t * go_godot_pool_byte_array_write_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_byte_array_write_access * p_write) {
  930. return p_api->godot_pool_byte_array_write_access_ptr(p_write);
  931. }
  932. void go_godot_pool_byte_array_write_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array_write_access * p_write, godot_pool_byte_array_write_access * p_other) {
  933. p_api->godot_pool_byte_array_write_access_operator_assign(p_write, p_other);
  934. }
  935. void go_godot_pool_byte_array_write_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_byte_array_write_access * p_write) {
  936. p_api->godot_pool_byte_array_write_access_destroy(p_write);
  937. }
  938. godot_pool_int_array_write_access * go_godot_pool_int_array_write_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_int_array_write_access * p_write) {
  939. return p_api->godot_pool_int_array_write_access_copy(p_write);
  940. }
  941. godot_int * go_godot_pool_int_array_write_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_int_array_write_access * p_write) {
  942. return p_api->godot_pool_int_array_write_access_ptr(p_write);
  943. }
  944. void go_godot_pool_int_array_write_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_int_array_write_access * p_write, godot_pool_int_array_write_access * p_other) {
  945. p_api->godot_pool_int_array_write_access_operator_assign(p_write, p_other);
  946. }
  947. void go_godot_pool_int_array_write_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_int_array_write_access * p_write) {
  948. p_api->godot_pool_int_array_write_access_destroy(p_write);
  949. }
  950. godot_pool_real_array_write_access * go_godot_pool_real_array_write_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_real_array_write_access * p_write) {
  951. return p_api->godot_pool_real_array_write_access_copy(p_write);
  952. }
  953. godot_real * go_godot_pool_real_array_write_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_real_array_write_access * p_write) {
  954. return p_api->godot_pool_real_array_write_access_ptr(p_write);
  955. }
  956. void go_godot_pool_real_array_write_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_real_array_write_access * p_write, godot_pool_real_array_write_access * p_other) {
  957. p_api->godot_pool_real_array_write_access_operator_assign(p_write, p_other);
  958. }
  959. void go_godot_pool_real_array_write_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_real_array_write_access * p_write) {
  960. p_api->godot_pool_real_array_write_access_destroy(p_write);
  961. }
  962. godot_pool_string_array_write_access * go_godot_pool_string_array_write_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_string_array_write_access * p_write) {
  963. return p_api->godot_pool_string_array_write_access_copy(p_write);
  964. }
  965. godot_string * go_godot_pool_string_array_write_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_string_array_write_access * p_write) {
  966. return p_api->godot_pool_string_array_write_access_ptr(p_write);
  967. }
  968. void go_godot_pool_string_array_write_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_string_array_write_access * p_write, godot_pool_string_array_write_access * p_other) {
  969. p_api->godot_pool_string_array_write_access_operator_assign(p_write, p_other);
  970. }
  971. void go_godot_pool_string_array_write_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_string_array_write_access * p_write) {
  972. p_api->godot_pool_string_array_write_access_destroy(p_write);
  973. }
  974. godot_pool_vector2_array_write_access * go_godot_pool_vector2_array_write_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_vector2_array_write_access * p_write) {
  975. return p_api->godot_pool_vector2_array_write_access_copy(p_write);
  976. }
  977. godot_vector2 * go_godot_pool_vector2_array_write_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_vector2_array_write_access * p_write) {
  978. return p_api->godot_pool_vector2_array_write_access_ptr(p_write);
  979. }
  980. void go_godot_pool_vector2_array_write_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array_write_access * p_write, godot_pool_vector2_array_write_access * p_other) {
  981. p_api->godot_pool_vector2_array_write_access_operator_assign(p_write, p_other);
  982. }
  983. void go_godot_pool_vector2_array_write_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_vector2_array_write_access * p_write) {
  984. p_api->godot_pool_vector2_array_write_access_destroy(p_write);
  985. }
  986. godot_pool_vector3_array_write_access * go_godot_pool_vector3_array_write_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_vector3_array_write_access * p_write) {
  987. return p_api->godot_pool_vector3_array_write_access_copy(p_write);
  988. }
  989. godot_vector3 * go_godot_pool_vector3_array_write_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_vector3_array_write_access * p_write) {
  990. return p_api->godot_pool_vector3_array_write_access_ptr(p_write);
  991. }
  992. void go_godot_pool_vector3_array_write_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array_write_access * p_write, godot_pool_vector3_array_write_access * p_other) {
  993. p_api->godot_pool_vector3_array_write_access_operator_assign(p_write, p_other);
  994. }
  995. void go_godot_pool_vector3_array_write_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_vector3_array_write_access * p_write) {
  996. p_api->godot_pool_vector3_array_write_access_destroy(p_write);
  997. }
  998. godot_pool_color_array_write_access * go_godot_pool_color_array_write_access_copy(godot_gdnative_core_api_struct * p_api, const godot_pool_color_array_write_access * p_write) {
  999. return p_api->godot_pool_color_array_write_access_copy(p_write);
  1000. }
  1001. godot_color * go_godot_pool_color_array_write_access_ptr(godot_gdnative_core_api_struct * p_api, const godot_pool_color_array_write_access * p_write) {
  1002. return p_api->godot_pool_color_array_write_access_ptr(p_write);
  1003. }
  1004. void go_godot_pool_color_array_write_access_operator_assign(godot_gdnative_core_api_struct * p_api, godot_pool_color_array_write_access * p_write, godot_pool_color_array_write_access * p_other) {
  1005. p_api->godot_pool_color_array_write_access_operator_assign(p_write, p_other);
  1006. }
  1007. void go_godot_pool_color_array_write_access_destroy(godot_gdnative_core_api_struct * p_api, godot_pool_color_array_write_access * p_write) {
  1008. p_api->godot_pool_color_array_write_access_destroy(p_write);
  1009. }
  1010. void go_godot_array_new(godot_gdnative_core_api_struct * p_api, godot_array * r_dest) {
  1011. p_api->godot_array_new(r_dest);
  1012. }
  1013. void go_godot_array_new_copy(godot_gdnative_core_api_struct * p_api, godot_array * r_dest, const godot_array * p_src) {
  1014. p_api->godot_array_new_copy(r_dest, p_src);
  1015. }
  1016. void go_godot_array_new_pool_color_array(godot_gdnative_core_api_struct * p_api, godot_array * r_dest, const godot_pool_color_array * p_pca) {
  1017. p_api->godot_array_new_pool_color_array(r_dest, p_pca);
  1018. }
  1019. void go_godot_array_new_pool_vector3_array(godot_gdnative_core_api_struct * p_api, godot_array * r_dest, const godot_pool_vector3_array * p_pv3a) {
  1020. p_api->godot_array_new_pool_vector3_array(r_dest, p_pv3a);
  1021. }
  1022. void go_godot_array_new_pool_vector2_array(godot_gdnative_core_api_struct * p_api, godot_array * r_dest, const godot_pool_vector2_array * p_pv2a) {
  1023. p_api->godot_array_new_pool_vector2_array(r_dest, p_pv2a);
  1024. }
  1025. void go_godot_array_new_pool_string_array(godot_gdnative_core_api_struct * p_api, godot_array * r_dest, const godot_pool_string_array * p_psa) {
  1026. p_api->godot_array_new_pool_string_array(r_dest, p_psa);
  1027. }
  1028. void go_godot_array_new_pool_real_array(godot_gdnative_core_api_struct * p_api, godot_array * r_dest, const godot_pool_real_array * p_pra) {
  1029. p_api->godot_array_new_pool_real_array(r_dest, p_pra);
  1030. }
  1031. void go_godot_array_new_pool_int_array(godot_gdnative_core_api_struct * p_api, godot_array * r_dest, const godot_pool_int_array * p_pia) {
  1032. p_api->godot_array_new_pool_int_array(r_dest, p_pia);
  1033. }
  1034. void go_godot_array_new_pool_byte_array(godot_gdnative_core_api_struct * p_api, godot_array * r_dest, const godot_pool_byte_array * p_pba) {
  1035. p_api->godot_array_new_pool_byte_array(r_dest, p_pba);
  1036. }
  1037. void go_godot_array_set(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_int p_idx, const godot_variant * p_value) {
  1038. p_api->godot_array_set(p_self, p_idx, p_value);
  1039. }
  1040. godot_variant go_godot_array_get(godot_gdnative_core_api_struct * p_api, const godot_array * p_self, const godot_int p_idx) {
  1041. return p_api->godot_array_get(p_self, p_idx);
  1042. }
  1043. godot_variant * go_godot_array_operator_index(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_int p_idx) {
  1044. return p_api->godot_array_operator_index(p_self, p_idx);
  1045. }
  1046. const godot_variant * go_godot_array_operator_index_const(godot_gdnative_core_api_struct * p_api, const godot_array * p_self, const godot_int p_idx) {
  1047. return p_api->godot_array_operator_index_const(p_self, p_idx);
  1048. }
  1049. void go_godot_array_append(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_variant * p_value) {
  1050. p_api->godot_array_append(p_self, p_value);
  1051. }
  1052. void go_godot_array_clear(godot_gdnative_core_api_struct * p_api, godot_array * p_self) {
  1053. p_api->godot_array_clear(p_self);
  1054. }
  1055. godot_int go_godot_array_count(godot_gdnative_core_api_struct * p_api, const godot_array * p_self, const godot_variant * p_value) {
  1056. return p_api->godot_array_count(p_self, p_value);
  1057. }
  1058. godot_bool go_godot_array_empty(godot_gdnative_core_api_struct * p_api, const godot_array * p_self) {
  1059. return p_api->godot_array_empty(p_self);
  1060. }
  1061. void go_godot_array_erase(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_variant * p_value) {
  1062. p_api->godot_array_erase(p_self, p_value);
  1063. }
  1064. godot_variant go_godot_array_front(godot_gdnative_core_api_struct * p_api, const godot_array * p_self) {
  1065. return p_api->godot_array_front(p_self);
  1066. }
  1067. godot_variant go_godot_array_back(godot_gdnative_core_api_struct * p_api, const godot_array * p_self) {
  1068. return p_api->godot_array_back(p_self);
  1069. }
  1070. godot_int go_godot_array_find(godot_gdnative_core_api_struct * p_api, const godot_array * p_self, const godot_variant * p_what, const godot_int p_from) {
  1071. return p_api->godot_array_find(p_self, p_what, p_from);
  1072. }
  1073. godot_int go_godot_array_find_last(godot_gdnative_core_api_struct * p_api, const godot_array * p_self, const godot_variant * p_what) {
  1074. return p_api->godot_array_find_last(p_self, p_what);
  1075. }
  1076. godot_bool go_godot_array_has(godot_gdnative_core_api_struct * p_api, const godot_array * p_self, const godot_variant * p_value) {
  1077. return p_api->godot_array_has(p_self, p_value);
  1078. }
  1079. godot_int go_godot_array_hash(godot_gdnative_core_api_struct * p_api, const godot_array * p_self) {
  1080. return p_api->godot_array_hash(p_self);
  1081. }
  1082. void go_godot_array_insert(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_int p_pos, const godot_variant * p_value) {
  1083. p_api->godot_array_insert(p_self, p_pos, p_value);
  1084. }
  1085. void go_godot_array_invert(godot_gdnative_core_api_struct * p_api, godot_array * p_self) {
  1086. p_api->godot_array_invert(p_self);
  1087. }
  1088. godot_variant go_godot_array_pop_back(godot_gdnative_core_api_struct * p_api, godot_array * p_self) {
  1089. return p_api->godot_array_pop_back(p_self);
  1090. }
  1091. godot_variant go_godot_array_pop_front(godot_gdnative_core_api_struct * p_api, godot_array * p_self) {
  1092. return p_api->godot_array_pop_front(p_self);
  1093. }
  1094. void go_godot_array_push_back(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_variant * p_value) {
  1095. p_api->godot_array_push_back(p_self, p_value);
  1096. }
  1097. void go_godot_array_push_front(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_variant * p_value) {
  1098. p_api->godot_array_push_front(p_self, p_value);
  1099. }
  1100. void go_godot_array_remove(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_int p_idx) {
  1101. p_api->godot_array_remove(p_self, p_idx);
  1102. }
  1103. void go_godot_array_resize(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_int p_size) {
  1104. p_api->godot_array_resize(p_self, p_size);
  1105. }
  1106. godot_int go_godot_array_rfind(godot_gdnative_core_api_struct * p_api, const godot_array * p_self, const godot_variant * p_what, const godot_int p_from) {
  1107. return p_api->godot_array_rfind(p_self, p_what, p_from);
  1108. }
  1109. godot_int go_godot_array_size(godot_gdnative_core_api_struct * p_api, const godot_array * p_self) {
  1110. return p_api->godot_array_size(p_self);
  1111. }
  1112. void go_godot_array_sort(godot_gdnative_core_api_struct * p_api, godot_array * p_self) {
  1113. p_api->godot_array_sort(p_self);
  1114. }
  1115. void go_godot_array_sort_custom(godot_gdnative_core_api_struct * p_api, godot_array * p_self, godot_object * p_obj, const godot_string * p_func) {
  1116. p_api->godot_array_sort_custom(p_self, p_obj, p_func);
  1117. }
  1118. godot_int go_godot_array_bsearch(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_variant * p_value, const godot_bool p_before) {
  1119. return p_api->godot_array_bsearch(p_self, p_value, p_before);
  1120. }
  1121. godot_int go_godot_array_bsearch_custom(godot_gdnative_core_api_struct * p_api, godot_array * p_self, const godot_variant * p_value, godot_object * p_obj, const godot_string * p_func, const godot_bool p_before) {
  1122. return p_api->godot_array_bsearch_custom(p_self, p_value, p_obj, p_func, p_before);
  1123. }
  1124. void go_godot_array_destroy(godot_gdnative_core_api_struct * p_api, godot_array * p_self) {
  1125. p_api->godot_array_destroy(p_self);
  1126. }
  1127. void go_godot_dictionary_new(godot_gdnative_core_api_struct * p_api, godot_dictionary * r_dest) {
  1128. p_api->godot_dictionary_new(r_dest);
  1129. }
  1130. void go_godot_dictionary_new_copy(godot_gdnative_core_api_struct * p_api, godot_dictionary * r_dest, const godot_dictionary * p_src) {
  1131. p_api->godot_dictionary_new_copy(r_dest, p_src);
  1132. }
  1133. void go_godot_dictionary_destroy(godot_gdnative_core_api_struct * p_api, godot_dictionary * p_self) {
  1134. p_api->godot_dictionary_destroy(p_self);
  1135. }
  1136. godot_int go_godot_dictionary_size(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self) {
  1137. return p_api->godot_dictionary_size(p_self);
  1138. }
  1139. godot_bool go_godot_dictionary_empty(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self) {
  1140. return p_api->godot_dictionary_empty(p_self);
  1141. }
  1142. void go_godot_dictionary_clear(godot_gdnative_core_api_struct * p_api, godot_dictionary * p_self) {
  1143. p_api->godot_dictionary_clear(p_self);
  1144. }
  1145. godot_bool go_godot_dictionary_has(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self, const godot_variant * p_key) {
  1146. return p_api->godot_dictionary_has(p_self, p_key);
  1147. }
  1148. godot_bool go_godot_dictionary_has_all(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self, const godot_array * p_keys) {
  1149. return p_api->godot_dictionary_has_all(p_self, p_keys);
  1150. }
  1151. void go_godot_dictionary_erase(godot_gdnative_core_api_struct * p_api, godot_dictionary * p_self, const godot_variant * p_key) {
  1152. p_api->godot_dictionary_erase(p_self, p_key);
  1153. }
  1154. godot_int go_godot_dictionary_hash(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self) {
  1155. return p_api->godot_dictionary_hash(p_self);
  1156. }
  1157. godot_array go_godot_dictionary_keys(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self) {
  1158. return p_api->godot_dictionary_keys(p_self);
  1159. }
  1160. godot_array go_godot_dictionary_values(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self) {
  1161. return p_api->godot_dictionary_values(p_self);
  1162. }
  1163. godot_variant go_godot_dictionary_get(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self, const godot_variant * p_key) {
  1164. return p_api->godot_dictionary_get(p_self, p_key);
  1165. }
  1166. void go_godot_dictionary_set(godot_gdnative_core_api_struct * p_api, godot_dictionary * p_self, const godot_variant * p_key, const godot_variant * p_value) {
  1167. p_api->godot_dictionary_set(p_self, p_key, p_value);
  1168. }
  1169. godot_variant * go_godot_dictionary_operator_index(godot_gdnative_core_api_struct * p_api, godot_dictionary * p_self, const godot_variant * p_key) {
  1170. return p_api->godot_dictionary_operator_index(p_self, p_key);
  1171. }
  1172. const godot_variant * go_godot_dictionary_operator_index_const(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self, const godot_variant * p_key) {
  1173. return p_api->godot_dictionary_operator_index_const(p_self, p_key);
  1174. }
  1175. godot_variant * go_godot_dictionary_next(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self, const godot_variant * p_key) {
  1176. return p_api->godot_dictionary_next(p_self, p_key);
  1177. }
  1178. godot_bool go_godot_dictionary_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self, const godot_dictionary * p_b) {
  1179. return p_api->godot_dictionary_operator_equal(p_self, p_b);
  1180. }
  1181. godot_string go_godot_dictionary_to_json(godot_gdnative_core_api_struct * p_api, const godot_dictionary * p_self) {
  1182. return p_api->godot_dictionary_to_json(p_self);
  1183. }
  1184. void go_godot_node_path_new(godot_gdnative_core_api_struct * p_api, godot_node_path * r_dest, const godot_string * p_from) {
  1185. p_api->godot_node_path_new(r_dest, p_from);
  1186. }
  1187. void go_godot_node_path_new_copy(godot_gdnative_core_api_struct * p_api, godot_node_path * r_dest, const godot_node_path * p_src) {
  1188. p_api->godot_node_path_new_copy(r_dest, p_src);
  1189. }
  1190. void go_godot_node_path_destroy(godot_gdnative_core_api_struct * p_api, godot_node_path * p_self) {
  1191. p_api->godot_node_path_destroy(p_self);
  1192. }
  1193. godot_string go_godot_node_path_as_string(godot_gdnative_core_api_struct * p_api, const godot_node_path * p_self) {
  1194. return p_api->godot_node_path_as_string(p_self);
  1195. }
  1196. godot_bool go_godot_node_path_is_absolute(godot_gdnative_core_api_struct * p_api, const godot_node_path * p_self) {
  1197. return p_api->godot_node_path_is_absolute(p_self);
  1198. }
  1199. godot_int go_godot_node_path_get_name_count(godot_gdnative_core_api_struct * p_api, const godot_node_path * p_self) {
  1200. return p_api->godot_node_path_get_name_count(p_self);
  1201. }
  1202. godot_string go_godot_node_path_get_name(godot_gdnative_core_api_struct * p_api, const godot_node_path * p_self, const godot_int p_idx) {
  1203. return p_api->godot_node_path_get_name(p_self, p_idx);
  1204. }
  1205. godot_int go_godot_node_path_get_subname_count(godot_gdnative_core_api_struct * p_api, const godot_node_path * p_self) {
  1206. return p_api->godot_node_path_get_subname_count(p_self);
  1207. }
  1208. godot_string go_godot_node_path_get_subname(godot_gdnative_core_api_struct * p_api, const godot_node_path * p_self, const godot_int p_idx) {
  1209. return p_api->godot_node_path_get_subname(p_self, p_idx);
  1210. }
  1211. godot_string go_godot_node_path_get_concatenated_subnames(godot_gdnative_core_api_struct * p_api, const godot_node_path * p_self) {
  1212. return p_api->godot_node_path_get_concatenated_subnames(p_self);
  1213. }
  1214. godot_bool go_godot_node_path_is_empty(godot_gdnative_core_api_struct * p_api, const godot_node_path * p_self) {
  1215. return p_api->godot_node_path_is_empty(p_self);
  1216. }
  1217. godot_bool go_godot_node_path_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_node_path * p_self, const godot_node_path * p_b) {
  1218. return p_api->godot_node_path_operator_equal(p_self, p_b);
  1219. }
  1220. void go_godot_plane_new_with_reals(godot_gdnative_core_api_struct * p_api, godot_plane * r_dest, const godot_real p_a, const godot_real p_b, const godot_real p_c, const godot_real p_d) {
  1221. p_api->godot_plane_new_with_reals(r_dest, p_a, p_b, p_c, p_d);
  1222. }
  1223. void go_godot_plane_new_with_vectors(godot_gdnative_core_api_struct * p_api, godot_plane * r_dest, const godot_vector3 * p_v1, const godot_vector3 * p_v2, const godot_vector3 * p_v3) {
  1224. p_api->godot_plane_new_with_vectors(r_dest, p_v1, p_v2, p_v3);
  1225. }
  1226. void go_godot_plane_new_with_normal(godot_gdnative_core_api_struct * p_api, godot_plane * r_dest, const godot_vector3 * p_normal, const godot_real p_d) {
  1227. p_api->godot_plane_new_with_normal(r_dest, p_normal, p_d);
  1228. }
  1229. godot_string go_godot_plane_as_string(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self) {
  1230. return p_api->godot_plane_as_string(p_self);
  1231. }
  1232. godot_plane go_godot_plane_normalized(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self) {
  1233. return p_api->godot_plane_normalized(p_self);
  1234. }
  1235. godot_vector3 go_godot_plane_center(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self) {
  1236. return p_api->godot_plane_center(p_self);
  1237. }
  1238. godot_vector3 go_godot_plane_get_any_point(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self) {
  1239. return p_api->godot_plane_get_any_point(p_self);
  1240. }
  1241. godot_bool go_godot_plane_is_point_over(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self, const godot_vector3 * p_point) {
  1242. return p_api->godot_plane_is_point_over(p_self, p_point);
  1243. }
  1244. godot_real go_godot_plane_distance_to(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self, const godot_vector3 * p_point) {
  1245. return p_api->godot_plane_distance_to(p_self, p_point);
  1246. }
  1247. godot_bool go_godot_plane_has_point(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self, const godot_vector3 * p_point, const godot_real p_epsilon) {
  1248. return p_api->godot_plane_has_point(p_self, p_point, p_epsilon);
  1249. }
  1250. godot_vector3 go_godot_plane_project(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self, const godot_vector3 * p_point) {
  1251. return p_api->godot_plane_project(p_self, p_point);
  1252. }
  1253. godot_bool go_godot_plane_intersect_3(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self, godot_vector3 * r_dest, const godot_plane * p_b, const godot_plane * p_c) {
  1254. return p_api->godot_plane_intersect_3(p_self, r_dest, p_b, p_c);
  1255. }
  1256. godot_bool go_godot_plane_intersects_ray(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self, godot_vector3 * r_dest, const godot_vector3 * p_from, const godot_vector3 * p_dir) {
  1257. return p_api->godot_plane_intersects_ray(p_self, r_dest, p_from, p_dir);
  1258. }
  1259. godot_bool go_godot_plane_intersects_segment(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self, godot_vector3 * r_dest, const godot_vector3 * p_begin, const godot_vector3 * p_end) {
  1260. return p_api->godot_plane_intersects_segment(p_self, r_dest, p_begin, p_end);
  1261. }
  1262. godot_plane go_godot_plane_operator_neg(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self) {
  1263. return p_api->godot_plane_operator_neg(p_self);
  1264. }
  1265. godot_bool go_godot_plane_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self, const godot_plane * p_b) {
  1266. return p_api->godot_plane_operator_equal(p_self, p_b);
  1267. }
  1268. void go_godot_plane_set_normal(godot_gdnative_core_api_struct * p_api, godot_plane * p_self, const godot_vector3 * p_normal) {
  1269. p_api->godot_plane_set_normal(p_self, p_normal);
  1270. }
  1271. godot_vector3 go_godot_plane_get_normal(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self) {
  1272. return p_api->godot_plane_get_normal(p_self);
  1273. }
  1274. godot_real go_godot_plane_get_d(godot_gdnative_core_api_struct * p_api, const godot_plane * p_self) {
  1275. return p_api->godot_plane_get_d(p_self);
  1276. }
  1277. void go_godot_plane_set_d(godot_gdnative_core_api_struct * p_api, godot_plane * p_self, const godot_real p_d) {
  1278. p_api->godot_plane_set_d(p_self, p_d);
  1279. }
  1280. void go_godot_rect2_new_with_position_and_size(godot_gdnative_core_api_struct * p_api, godot_rect2 * r_dest, const godot_vector2 * p_pos, const godot_vector2 * p_size) {
  1281. p_api->godot_rect2_new_with_position_and_size(r_dest, p_pos, p_size);
  1282. }
  1283. void go_godot_rect2_new(godot_gdnative_core_api_struct * p_api, godot_rect2 * r_dest, const godot_real p_x, const godot_real p_y, const godot_real p_width, const godot_real p_height) {
  1284. p_api->godot_rect2_new(r_dest, p_x, p_y, p_width, p_height);
  1285. }
  1286. godot_string go_godot_rect2_as_string(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self) {
  1287. return p_api->godot_rect2_as_string(p_self);
  1288. }
  1289. godot_real go_godot_rect2_get_area(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self) {
  1290. return p_api->godot_rect2_get_area(p_self);
  1291. }
  1292. godot_bool go_godot_rect2_intersects(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self, const godot_rect2 * p_b) {
  1293. return p_api->godot_rect2_intersects(p_self, p_b);
  1294. }
  1295. godot_bool go_godot_rect2_encloses(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self, const godot_rect2 * p_b) {
  1296. return p_api->godot_rect2_encloses(p_self, p_b);
  1297. }
  1298. godot_bool go_godot_rect2_has_no_area(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self) {
  1299. return p_api->godot_rect2_has_no_area(p_self);
  1300. }
  1301. godot_rect2 go_godot_rect2_clip(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self, const godot_rect2 * p_b) {
  1302. return p_api->godot_rect2_clip(p_self, p_b);
  1303. }
  1304. godot_rect2 go_godot_rect2_merge(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self, const godot_rect2 * p_b) {
  1305. return p_api->godot_rect2_merge(p_self, p_b);
  1306. }
  1307. godot_bool go_godot_rect2_has_point(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self, const godot_vector2 * p_point) {
  1308. return p_api->godot_rect2_has_point(p_self, p_point);
  1309. }
  1310. godot_rect2 go_godot_rect2_grow(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self, const godot_real p_by) {
  1311. return p_api->godot_rect2_grow(p_self, p_by);
  1312. }
  1313. godot_rect2 go_godot_rect2_expand(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self, const godot_vector2 * p_to) {
  1314. return p_api->godot_rect2_expand(p_self, p_to);
  1315. }
  1316. godot_bool go_godot_rect2_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self, const godot_rect2 * p_b) {
  1317. return p_api->godot_rect2_operator_equal(p_self, p_b);
  1318. }
  1319. godot_vector2 go_godot_rect2_get_position(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self) {
  1320. return p_api->godot_rect2_get_position(p_self);
  1321. }
  1322. godot_vector2 go_godot_rect2_get_size(godot_gdnative_core_api_struct * p_api, const godot_rect2 * p_self) {
  1323. return p_api->godot_rect2_get_size(p_self);
  1324. }
  1325. void go_godot_rect2_set_position(godot_gdnative_core_api_struct * p_api, godot_rect2 * p_self, const godot_vector2 * p_pos) {
  1326. p_api->godot_rect2_set_position(p_self, p_pos);
  1327. }
  1328. void go_godot_rect2_set_size(godot_gdnative_core_api_struct * p_api, godot_rect2 * p_self, const godot_vector2 * p_size) {
  1329. p_api->godot_rect2_set_size(p_self, p_size);
  1330. }
  1331. void go_godot_aabb_new(godot_gdnative_core_api_struct * p_api, godot_aabb * r_dest, const godot_vector3 * p_pos, const godot_vector3 * p_size) {
  1332. p_api->godot_aabb_new(r_dest, p_pos, p_size);
  1333. }
  1334. godot_vector3 go_godot_aabb_get_position(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1335. return p_api->godot_aabb_get_position(p_self);
  1336. }
  1337. void go_godot_aabb_set_position(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_vector3 * p_v) {
  1338. p_api->godot_aabb_set_position(p_self, p_v);
  1339. }
  1340. godot_vector3 go_godot_aabb_get_size(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1341. return p_api->godot_aabb_get_size(p_self);
  1342. }
  1343. void go_godot_aabb_set_size(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_vector3 * p_v) {
  1344. p_api->godot_aabb_set_size(p_self, p_v);
  1345. }
  1346. godot_string go_godot_aabb_as_string(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1347. return p_api->godot_aabb_as_string(p_self);
  1348. }
  1349. godot_real go_godot_aabb_get_area(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1350. return p_api->godot_aabb_get_area(p_self);
  1351. }
  1352. godot_bool go_godot_aabb_has_no_area(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1353. return p_api->godot_aabb_has_no_area(p_self);
  1354. }
  1355. godot_bool go_godot_aabb_has_no_surface(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1356. return p_api->godot_aabb_has_no_surface(p_self);
  1357. }
  1358. godot_bool go_godot_aabb_intersects(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_aabb * p_with) {
  1359. return p_api->godot_aabb_intersects(p_self, p_with);
  1360. }
  1361. godot_bool go_godot_aabb_encloses(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_aabb * p_with) {
  1362. return p_api->godot_aabb_encloses(p_self, p_with);
  1363. }
  1364. godot_aabb go_godot_aabb_merge(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_aabb * p_with) {
  1365. return p_api->godot_aabb_merge(p_self, p_with);
  1366. }
  1367. godot_aabb go_godot_aabb_intersection(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_aabb * p_with) {
  1368. return p_api->godot_aabb_intersection(p_self, p_with);
  1369. }
  1370. godot_bool go_godot_aabb_intersects_plane(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_plane * p_plane) {
  1371. return p_api->godot_aabb_intersects_plane(p_self, p_plane);
  1372. }
  1373. godot_bool go_godot_aabb_intersects_segment(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_vector3 * p_from, const godot_vector3 * p_to) {
  1374. return p_api->godot_aabb_intersects_segment(p_self, p_from, p_to);
  1375. }
  1376. godot_bool go_godot_aabb_has_point(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_vector3 * p_point) {
  1377. return p_api->godot_aabb_has_point(p_self, p_point);
  1378. }
  1379. godot_vector3 go_godot_aabb_get_support(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_vector3 * p_dir) {
  1380. return p_api->godot_aabb_get_support(p_self, p_dir);
  1381. }
  1382. godot_vector3 go_godot_aabb_get_longest_axis(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1383. return p_api->godot_aabb_get_longest_axis(p_self);
  1384. }
  1385. godot_int go_godot_aabb_get_longest_axis_index(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1386. return p_api->godot_aabb_get_longest_axis_index(p_self);
  1387. }
  1388. godot_real go_godot_aabb_get_longest_axis_size(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1389. return p_api->godot_aabb_get_longest_axis_size(p_self);
  1390. }
  1391. godot_vector3 go_godot_aabb_get_shortest_axis(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1392. return p_api->godot_aabb_get_shortest_axis(p_self);
  1393. }
  1394. godot_int go_godot_aabb_get_shortest_axis_index(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1395. return p_api->godot_aabb_get_shortest_axis_index(p_self);
  1396. }
  1397. godot_real go_godot_aabb_get_shortest_axis_size(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self) {
  1398. return p_api->godot_aabb_get_shortest_axis_size(p_self);
  1399. }
  1400. godot_aabb go_godot_aabb_expand(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_vector3 * p_to_point) {
  1401. return p_api->godot_aabb_expand(p_self, p_to_point);
  1402. }
  1403. godot_aabb go_godot_aabb_grow(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_real p_by) {
  1404. return p_api->godot_aabb_grow(p_self, p_by);
  1405. }
  1406. godot_vector3 go_godot_aabb_get_endpoint(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_int p_idx) {
  1407. return p_api->godot_aabb_get_endpoint(p_self, p_idx);
  1408. }
  1409. godot_bool go_godot_aabb_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_aabb * p_self, const godot_aabb * p_b) {
  1410. return p_api->godot_aabb_operator_equal(p_self, p_b);
  1411. }
  1412. void go_godot_rid_new(godot_gdnative_core_api_struct * p_api, godot_rid * r_dest) {
  1413. p_api->godot_rid_new(r_dest);
  1414. }
  1415. godot_int go_godot_rid_get_id(godot_gdnative_core_api_struct * p_api, const godot_rid * p_self) {
  1416. return p_api->godot_rid_get_id(p_self);
  1417. }
  1418. void go_godot_rid_new_with_resource(godot_gdnative_core_api_struct * p_api, godot_rid * r_dest, const godot_object * p_from) {
  1419. p_api->godot_rid_new_with_resource(r_dest, p_from);
  1420. }
  1421. godot_bool go_godot_rid_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_rid * p_self, const godot_rid * p_b) {
  1422. return p_api->godot_rid_operator_equal(p_self, p_b);
  1423. }
  1424. godot_bool go_godot_rid_operator_less(godot_gdnative_core_api_struct * p_api, const godot_rid * p_self, const godot_rid * p_b) {
  1425. return p_api->godot_rid_operator_less(p_self, p_b);
  1426. }
  1427. void go_godot_transform_new_with_axis_origin(godot_gdnative_core_api_struct * p_api, godot_transform * r_dest, const godot_vector3 * p_x_axis, const godot_vector3 * p_y_axis, const godot_vector3 * p_z_axis, const godot_vector3 * p_origin) {
  1428. p_api->godot_transform_new_with_axis_origin(r_dest, p_x_axis, p_y_axis, p_z_axis, p_origin);
  1429. }
  1430. void go_godot_transform_new(godot_gdnative_core_api_struct * p_api, godot_transform * r_dest, const godot_basis * p_basis, const godot_vector3 * p_origin) {
  1431. p_api->godot_transform_new(r_dest, p_basis, p_origin);
  1432. }
  1433. godot_basis go_godot_transform_get_basis(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self) {
  1434. return p_api->godot_transform_get_basis(p_self);
  1435. }
  1436. void go_godot_transform_set_basis(godot_gdnative_core_api_struct * p_api, godot_transform * p_self, const godot_basis * p_v) {
  1437. p_api->godot_transform_set_basis(p_self, p_v);
  1438. }
  1439. godot_vector3 go_godot_transform_get_origin(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self) {
  1440. return p_api->godot_transform_get_origin(p_self);
  1441. }
  1442. void go_godot_transform_set_origin(godot_gdnative_core_api_struct * p_api, godot_transform * p_self, const godot_vector3 * p_v) {
  1443. p_api->godot_transform_set_origin(p_self, p_v);
  1444. }
  1445. godot_string go_godot_transform_as_string(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self) {
  1446. return p_api->godot_transform_as_string(p_self);
  1447. }
  1448. godot_transform go_godot_transform_inverse(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self) {
  1449. return p_api->godot_transform_inverse(p_self);
  1450. }
  1451. godot_transform go_godot_transform_affine_inverse(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self) {
  1452. return p_api->godot_transform_affine_inverse(p_self);
  1453. }
  1454. godot_transform go_godot_transform_orthonormalized(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self) {
  1455. return p_api->godot_transform_orthonormalized(p_self);
  1456. }
  1457. godot_transform go_godot_transform_rotated(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_vector3 * p_axis, const godot_real p_phi) {
  1458. return p_api->godot_transform_rotated(p_self, p_axis, p_phi);
  1459. }
  1460. godot_transform go_godot_transform_scaled(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_vector3 * p_scale) {
  1461. return p_api->godot_transform_scaled(p_self, p_scale);
  1462. }
  1463. godot_transform go_godot_transform_translated(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_vector3 * p_ofs) {
  1464. return p_api->godot_transform_translated(p_self, p_ofs);
  1465. }
  1466. godot_transform go_godot_transform_looking_at(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_vector3 * p_target, const godot_vector3 * p_up) {
  1467. return p_api->godot_transform_looking_at(p_self, p_target, p_up);
  1468. }
  1469. godot_plane go_godot_transform_xform_plane(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_plane * p_v) {
  1470. return p_api->godot_transform_xform_plane(p_self, p_v);
  1471. }
  1472. godot_plane go_godot_transform_xform_inv_plane(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_plane * p_v) {
  1473. return p_api->godot_transform_xform_inv_plane(p_self, p_v);
  1474. }
  1475. void go_godot_transform_new_identity(godot_gdnative_core_api_struct * p_api, godot_transform * r_dest) {
  1476. p_api->godot_transform_new_identity(r_dest);
  1477. }
  1478. godot_bool go_godot_transform_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_transform * p_b) {
  1479. return p_api->godot_transform_operator_equal(p_self, p_b);
  1480. }
  1481. godot_transform go_godot_transform_operator_multiply(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_transform * p_b) {
  1482. return p_api->godot_transform_operator_multiply(p_self, p_b);
  1483. }
  1484. godot_vector3 go_godot_transform_xform_vector3(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_vector3 * p_v) {
  1485. return p_api->godot_transform_xform_vector3(p_self, p_v);
  1486. }
  1487. godot_vector3 go_godot_transform_xform_inv_vector3(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_vector3 * p_v) {
  1488. return p_api->godot_transform_xform_inv_vector3(p_self, p_v);
  1489. }
  1490. godot_aabb go_godot_transform_xform_aabb(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_aabb * p_v) {
  1491. return p_api->godot_transform_xform_aabb(p_self, p_v);
  1492. }
  1493. godot_aabb go_godot_transform_xform_inv_aabb(godot_gdnative_core_api_struct * p_api, const godot_transform * p_self, const godot_aabb * p_v) {
  1494. return p_api->godot_transform_xform_inv_aabb(p_self, p_v);
  1495. }
  1496. void go_godot_transform2d_new(godot_gdnative_core_api_struct * p_api, godot_transform2d * r_dest, const godot_real p_rot, const godot_vector2 * p_pos) {
  1497. p_api->godot_transform2d_new(r_dest, p_rot, p_pos);
  1498. }
  1499. void go_godot_transform2d_new_axis_origin(godot_gdnative_core_api_struct * p_api, godot_transform2d * r_dest, const godot_vector2 * p_x_axis, const godot_vector2 * p_y_axis, const godot_vector2 * p_origin) {
  1500. p_api->godot_transform2d_new_axis_origin(r_dest, p_x_axis, p_y_axis, p_origin);
  1501. }
  1502. godot_string go_godot_transform2d_as_string(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self) {
  1503. return p_api->godot_transform2d_as_string(p_self);
  1504. }
  1505. godot_transform2d go_godot_transform2d_inverse(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self) {
  1506. return p_api->godot_transform2d_inverse(p_self);
  1507. }
  1508. godot_transform2d go_godot_transform2d_affine_inverse(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self) {
  1509. return p_api->godot_transform2d_affine_inverse(p_self);
  1510. }
  1511. godot_real go_godot_transform2d_get_rotation(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self) {
  1512. return p_api->godot_transform2d_get_rotation(p_self);
  1513. }
  1514. godot_vector2 go_godot_transform2d_get_origin(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self) {
  1515. return p_api->godot_transform2d_get_origin(p_self);
  1516. }
  1517. godot_vector2 go_godot_transform2d_get_scale(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self) {
  1518. return p_api->godot_transform2d_get_scale(p_self);
  1519. }
  1520. godot_transform2d go_godot_transform2d_orthonormalized(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self) {
  1521. return p_api->godot_transform2d_orthonormalized(p_self);
  1522. }
  1523. godot_transform2d go_godot_transform2d_rotated(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_real p_phi) {
  1524. return p_api->godot_transform2d_rotated(p_self, p_phi);
  1525. }
  1526. godot_transform2d go_godot_transform2d_scaled(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_vector2 * p_scale) {
  1527. return p_api->godot_transform2d_scaled(p_self, p_scale);
  1528. }
  1529. godot_transform2d go_godot_transform2d_translated(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_vector2 * p_offset) {
  1530. return p_api->godot_transform2d_translated(p_self, p_offset);
  1531. }
  1532. godot_vector2 go_godot_transform2d_xform_vector2(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_vector2 * p_v) {
  1533. return p_api->godot_transform2d_xform_vector2(p_self, p_v);
  1534. }
  1535. godot_vector2 go_godot_transform2d_xform_inv_vector2(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_vector2 * p_v) {
  1536. return p_api->godot_transform2d_xform_inv_vector2(p_self, p_v);
  1537. }
  1538. godot_vector2 go_godot_transform2d_basis_xform_vector2(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_vector2 * p_v) {
  1539. return p_api->godot_transform2d_basis_xform_vector2(p_self, p_v);
  1540. }
  1541. godot_vector2 go_godot_transform2d_basis_xform_inv_vector2(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_vector2 * p_v) {
  1542. return p_api->godot_transform2d_basis_xform_inv_vector2(p_self, p_v);
  1543. }
  1544. godot_transform2d go_godot_transform2d_interpolate_with(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_transform2d * p_m, const godot_real p_c) {
  1545. return p_api->godot_transform2d_interpolate_with(p_self, p_m, p_c);
  1546. }
  1547. godot_bool go_godot_transform2d_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_transform2d * p_b) {
  1548. return p_api->godot_transform2d_operator_equal(p_self, p_b);
  1549. }
  1550. godot_transform2d go_godot_transform2d_operator_multiply(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_transform2d * p_b) {
  1551. return p_api->godot_transform2d_operator_multiply(p_self, p_b);
  1552. }
  1553. void go_godot_transform2d_new_identity(godot_gdnative_core_api_struct * p_api, godot_transform2d * r_dest) {
  1554. p_api->godot_transform2d_new_identity(r_dest);
  1555. }
  1556. godot_rect2 go_godot_transform2d_xform_rect2(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_rect2 * p_v) {
  1557. return p_api->godot_transform2d_xform_rect2(p_self, p_v);
  1558. }
  1559. godot_rect2 go_godot_transform2d_xform_inv_rect2(godot_gdnative_core_api_struct * p_api, const godot_transform2d * p_self, const godot_rect2 * p_v) {
  1560. return p_api->godot_transform2d_xform_inv_rect2(p_self, p_v);
  1561. }
  1562. godot_variant_type go_godot_variant_get_type(godot_gdnative_core_api_struct * p_api, const godot_variant * p_v) {
  1563. return p_api->godot_variant_get_type(p_v);
  1564. }
  1565. void go_godot_variant_new_copy(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_variant * p_src) {
  1566. p_api->godot_variant_new_copy(r_dest, p_src);
  1567. }
  1568. void go_godot_variant_new_nil(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest) {
  1569. p_api->godot_variant_new_nil(r_dest);
  1570. }
  1571. void go_godot_variant_new_bool(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_bool p_b) {
  1572. p_api->godot_variant_new_bool(r_dest, p_b);
  1573. }
  1574. void go_godot_variant_new_uint(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const uint64_t p_i) {
  1575. p_api->godot_variant_new_uint(r_dest, p_i);
  1576. }
  1577. void go_godot_variant_new_int(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const int64_t p_i) {
  1578. p_api->godot_variant_new_int(r_dest, p_i);
  1579. }
  1580. void go_godot_variant_new_real(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const double p_r) {
  1581. p_api->godot_variant_new_real(r_dest, p_r);
  1582. }
  1583. void go_godot_variant_new_string(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_string * p_s) {
  1584. p_api->godot_variant_new_string(r_dest, p_s);
  1585. }
  1586. void go_godot_variant_new_vector2(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_vector2 * p_v2) {
  1587. p_api->godot_variant_new_vector2(r_dest, p_v2);
  1588. }
  1589. void go_godot_variant_new_rect2(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_rect2 * p_rect2) {
  1590. p_api->godot_variant_new_rect2(r_dest, p_rect2);
  1591. }
  1592. void go_godot_variant_new_vector3(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_vector3 * p_v3) {
  1593. p_api->godot_variant_new_vector3(r_dest, p_v3);
  1594. }
  1595. void go_godot_variant_new_transform2d(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_transform2d * p_t2d) {
  1596. p_api->godot_variant_new_transform2d(r_dest, p_t2d);
  1597. }
  1598. void go_godot_variant_new_plane(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_plane * p_plane) {
  1599. p_api->godot_variant_new_plane(r_dest, p_plane);
  1600. }
  1601. void go_godot_variant_new_quat(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_quat * p_quat) {
  1602. p_api->godot_variant_new_quat(r_dest, p_quat);
  1603. }
  1604. void go_godot_variant_new_aabb(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_aabb * p_aabb) {
  1605. p_api->godot_variant_new_aabb(r_dest, p_aabb);
  1606. }
  1607. void go_godot_variant_new_basis(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_basis * p_basis) {
  1608. p_api->godot_variant_new_basis(r_dest, p_basis);
  1609. }
  1610. void go_godot_variant_new_transform(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_transform * p_trans) {
  1611. p_api->godot_variant_new_transform(r_dest, p_trans);
  1612. }
  1613. void go_godot_variant_new_color(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_color * p_color) {
  1614. p_api->godot_variant_new_color(r_dest, p_color);
  1615. }
  1616. void go_godot_variant_new_node_path(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_node_path * p_np) {
  1617. p_api->godot_variant_new_node_path(r_dest, p_np);
  1618. }
  1619. void go_godot_variant_new_rid(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_rid * p_rid) {
  1620. p_api->godot_variant_new_rid(r_dest, p_rid);
  1621. }
  1622. void go_godot_variant_new_object(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_object * p_obj) {
  1623. p_api->godot_variant_new_object(r_dest, p_obj);
  1624. }
  1625. void go_godot_variant_new_dictionary(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_dictionary * p_dict) {
  1626. p_api->godot_variant_new_dictionary(r_dest, p_dict);
  1627. }
  1628. void go_godot_variant_new_array(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_array * p_arr) {
  1629. p_api->godot_variant_new_array(r_dest, p_arr);
  1630. }
  1631. void go_godot_variant_new_pool_byte_array(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_pool_byte_array * p_pba) {
  1632. p_api->godot_variant_new_pool_byte_array(r_dest, p_pba);
  1633. }
  1634. void go_godot_variant_new_pool_int_array(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_pool_int_array * p_pia) {
  1635. p_api->godot_variant_new_pool_int_array(r_dest, p_pia);
  1636. }
  1637. void go_godot_variant_new_pool_real_array(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_pool_real_array * p_pra) {
  1638. p_api->godot_variant_new_pool_real_array(r_dest, p_pra);
  1639. }
  1640. void go_godot_variant_new_pool_string_array(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_pool_string_array * p_psa) {
  1641. p_api->godot_variant_new_pool_string_array(r_dest, p_psa);
  1642. }
  1643. void go_godot_variant_new_pool_vector2_array(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_pool_vector2_array * p_pv2a) {
  1644. p_api->godot_variant_new_pool_vector2_array(r_dest, p_pv2a);
  1645. }
  1646. void go_godot_variant_new_pool_vector3_array(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_pool_vector3_array * p_pv3a) {
  1647. p_api->godot_variant_new_pool_vector3_array(r_dest, p_pv3a);
  1648. }
  1649. void go_godot_variant_new_pool_color_array(godot_gdnative_core_api_struct * p_api, godot_variant * r_dest, const godot_pool_color_array * p_pca) {
  1650. p_api->godot_variant_new_pool_color_array(r_dest, p_pca);
  1651. }
  1652. godot_bool go_godot_variant_as_bool(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1653. return p_api->godot_variant_as_bool(p_self);
  1654. }
  1655. uint64_t go_godot_variant_as_uint(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1656. return p_api->godot_variant_as_uint(p_self);
  1657. }
  1658. int64_t go_godot_variant_as_int(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1659. return p_api->godot_variant_as_int(p_self);
  1660. }
  1661. double go_godot_variant_as_real(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1662. return p_api->godot_variant_as_real(p_self);
  1663. }
  1664. godot_string go_godot_variant_as_string(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1665. return p_api->godot_variant_as_string(p_self);
  1666. }
  1667. godot_vector2 go_godot_variant_as_vector2(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1668. return p_api->godot_variant_as_vector2(p_self);
  1669. }
  1670. godot_rect2 go_godot_variant_as_rect2(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1671. return p_api->godot_variant_as_rect2(p_self);
  1672. }
  1673. godot_vector3 go_godot_variant_as_vector3(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1674. return p_api->godot_variant_as_vector3(p_self);
  1675. }
  1676. godot_transform2d go_godot_variant_as_transform2d(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1677. return p_api->godot_variant_as_transform2d(p_self);
  1678. }
  1679. godot_plane go_godot_variant_as_plane(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1680. return p_api->godot_variant_as_plane(p_self);
  1681. }
  1682. godot_quat go_godot_variant_as_quat(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1683. return p_api->godot_variant_as_quat(p_self);
  1684. }
  1685. godot_aabb go_godot_variant_as_aabb(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1686. return p_api->godot_variant_as_aabb(p_self);
  1687. }
  1688. godot_basis go_godot_variant_as_basis(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1689. return p_api->godot_variant_as_basis(p_self);
  1690. }
  1691. godot_transform go_godot_variant_as_transform(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1692. return p_api->godot_variant_as_transform(p_self);
  1693. }
  1694. godot_color go_godot_variant_as_color(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1695. return p_api->godot_variant_as_color(p_self);
  1696. }
  1697. godot_node_path go_godot_variant_as_node_path(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1698. return p_api->godot_variant_as_node_path(p_self);
  1699. }
  1700. godot_rid go_godot_variant_as_rid(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1701. return p_api->godot_variant_as_rid(p_self);
  1702. }
  1703. godot_object * go_godot_variant_as_object(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1704. return p_api->godot_variant_as_object(p_self);
  1705. }
  1706. godot_dictionary go_godot_variant_as_dictionary(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1707. return p_api->godot_variant_as_dictionary(p_self);
  1708. }
  1709. godot_array go_godot_variant_as_array(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1710. return p_api->godot_variant_as_array(p_self);
  1711. }
  1712. godot_pool_byte_array go_godot_variant_as_pool_byte_array(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1713. return p_api->godot_variant_as_pool_byte_array(p_self);
  1714. }
  1715. godot_pool_int_array go_godot_variant_as_pool_int_array(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1716. return p_api->godot_variant_as_pool_int_array(p_self);
  1717. }
  1718. godot_pool_real_array go_godot_variant_as_pool_real_array(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1719. return p_api->godot_variant_as_pool_real_array(p_self);
  1720. }
  1721. godot_pool_string_array go_godot_variant_as_pool_string_array(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1722. return p_api->godot_variant_as_pool_string_array(p_self);
  1723. }
  1724. godot_pool_vector2_array go_godot_variant_as_pool_vector2_array(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1725. return p_api->godot_variant_as_pool_vector2_array(p_self);
  1726. }
  1727. godot_pool_vector3_array go_godot_variant_as_pool_vector3_array(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1728. return p_api->godot_variant_as_pool_vector3_array(p_self);
  1729. }
  1730. godot_pool_color_array go_godot_variant_as_pool_color_array(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1731. return p_api->godot_variant_as_pool_color_array(p_self);
  1732. }
  1733. godot_variant go_godot_variant_call(godot_gdnative_core_api_struct * p_api, godot_variant * p_self, const godot_string * p_method, const godot_variant ** p_args, const godot_int p_argcount, godot_variant_call_error * r_error) {
  1734. return p_api->godot_variant_call(p_self, p_method, p_args, p_argcount, r_error);
  1735. }
  1736. godot_bool go_godot_variant_has_method(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self, const godot_string * p_method) {
  1737. return p_api->godot_variant_has_method(p_self, p_method);
  1738. }
  1739. godot_bool go_godot_variant_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self, const godot_variant * p_other) {
  1740. return p_api->godot_variant_operator_equal(p_self, p_other);
  1741. }
  1742. godot_bool go_godot_variant_operator_less(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self, const godot_variant * p_other) {
  1743. return p_api->godot_variant_operator_less(p_self, p_other);
  1744. }
  1745. godot_bool go_godot_variant_hash_compare(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self, const godot_variant * p_other) {
  1746. return p_api->godot_variant_hash_compare(p_self, p_other);
  1747. }
  1748. godot_bool go_godot_variant_booleanize(godot_gdnative_core_api_struct * p_api, const godot_variant * p_self) {
  1749. return p_api->godot_variant_booleanize(p_self);
  1750. }
  1751. void go_godot_variant_destroy(godot_gdnative_core_api_struct * p_api, godot_variant * p_self) {
  1752. p_api->godot_variant_destroy(p_self);
  1753. }
  1754. godot_int go_godot_char_string_length(godot_gdnative_core_api_struct * p_api, const godot_char_string * p_cs) {
  1755. return p_api->godot_char_string_length(p_cs);
  1756. }
  1757. const char * go_godot_char_string_get_data(godot_gdnative_core_api_struct * p_api, const godot_char_string * p_cs) {
  1758. return p_api->godot_char_string_get_data(p_cs);
  1759. }
  1760. void go_godot_char_string_destroy(godot_gdnative_core_api_struct * p_api, godot_char_string * p_cs) {
  1761. p_api->godot_char_string_destroy(p_cs);
  1762. }
  1763. void go_godot_string_new(godot_gdnative_core_api_struct * p_api, godot_string * r_dest) {
  1764. p_api->godot_string_new(r_dest);
  1765. }
  1766. void go_godot_string_new_copy(godot_gdnative_core_api_struct * p_api, godot_string * r_dest, const godot_string * p_src) {
  1767. p_api->godot_string_new_copy(r_dest, p_src);
  1768. }
  1769. void go_godot_string_new_with_wide_string(godot_gdnative_core_api_struct * p_api, godot_string * r_dest, const wchar_t * p_contents, const int p_size) {
  1770. p_api->godot_string_new_with_wide_string(r_dest, p_contents, p_size);
  1771. }
  1772. const wchar_t * go_godot_string_operator_index(godot_gdnative_core_api_struct * p_api, godot_string * p_self, const godot_int p_idx) {
  1773. return p_api->godot_string_operator_index(p_self, p_idx);
  1774. }
  1775. wchar_t go_godot_string_operator_index_const(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_int p_idx) {
  1776. return p_api->godot_string_operator_index_const(p_self, p_idx);
  1777. }
  1778. const wchar_t * go_godot_string_wide_str(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1779. return p_api->godot_string_wide_str(p_self);
  1780. }
  1781. godot_bool go_godot_string_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_b) {
  1782. return p_api->godot_string_operator_equal(p_self, p_b);
  1783. }
  1784. godot_bool go_godot_string_operator_less(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_b) {
  1785. return p_api->godot_string_operator_less(p_self, p_b);
  1786. }
  1787. godot_string go_godot_string_operator_plus(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_b) {
  1788. return p_api->godot_string_operator_plus(p_self, p_b);
  1789. }
  1790. godot_int go_godot_string_length(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1791. return p_api->godot_string_length(p_self);
  1792. }
  1793. signed char go_godot_string_casecmp_to(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_str) {
  1794. return p_api->godot_string_casecmp_to(p_self, p_str);
  1795. }
  1796. signed char go_godot_string_nocasecmp_to(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_str) {
  1797. return p_api->godot_string_nocasecmp_to(p_self, p_str);
  1798. }
  1799. signed char go_godot_string_naturalnocasecmp_to(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_str) {
  1800. return p_api->godot_string_naturalnocasecmp_to(p_self, p_str);
  1801. }
  1802. godot_bool go_godot_string_begins_with(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_string) {
  1803. return p_api->godot_string_begins_with(p_self, p_string);
  1804. }
  1805. godot_bool go_godot_string_begins_with_char_array(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const char * p_char_array) {
  1806. return p_api->godot_string_begins_with_char_array(p_self, p_char_array);
  1807. }
  1808. godot_array go_godot_string_bigrams(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1809. return p_api->godot_string_bigrams(p_self);
  1810. }
  1811. godot_string go_godot_string_chr(godot_gdnative_core_api_struct * p_api, wchar_t p_character) {
  1812. return p_api->godot_string_chr(p_character);
  1813. }
  1814. godot_bool go_godot_string_ends_with(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_string) {
  1815. return p_api->godot_string_ends_with(p_self, p_string);
  1816. }
  1817. godot_int go_godot_string_find(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_what) {
  1818. return p_api->godot_string_find(p_self, p_what);
  1819. }
  1820. godot_int go_godot_string_find_from(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_what, godot_int p_from) {
  1821. return p_api->godot_string_find_from(p_self, p_what, p_from);
  1822. }
  1823. godot_int go_godot_string_findmk(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_array * p_keys) {
  1824. return p_api->godot_string_findmk(p_self, p_keys);
  1825. }
  1826. godot_int go_godot_string_findmk_from(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_array * p_keys, godot_int p_from) {
  1827. return p_api->godot_string_findmk_from(p_self, p_keys, p_from);
  1828. }
  1829. godot_int go_godot_string_findmk_from_in_place(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_array * p_keys, godot_int p_from, godot_int * r_key) {
  1830. return p_api->godot_string_findmk_from_in_place(p_self, p_keys, p_from, r_key);
  1831. }
  1832. godot_int go_godot_string_findn(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_what) {
  1833. return p_api->godot_string_findn(p_self, p_what);
  1834. }
  1835. godot_int go_godot_string_findn_from(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_what, godot_int p_from) {
  1836. return p_api->godot_string_findn_from(p_self, p_what, p_from);
  1837. }
  1838. godot_int go_godot_string_find_last(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_what) {
  1839. return p_api->godot_string_find_last(p_self, p_what);
  1840. }
  1841. godot_string go_godot_string_format(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_variant * p_values) {
  1842. return p_api->godot_string_format(p_self, p_values);
  1843. }
  1844. godot_string go_godot_string_format_with_custom_placeholder(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_variant * p_values, const char * p_placeholder) {
  1845. return p_api->godot_string_format_with_custom_placeholder(p_self, p_values, p_placeholder);
  1846. }
  1847. godot_string go_godot_string_hex_encode_buffer(godot_gdnative_core_api_struct * p_api, const uint8_t * p_buffer, godot_int p_len) {
  1848. return p_api->godot_string_hex_encode_buffer(p_buffer, p_len);
  1849. }
  1850. godot_int go_godot_string_hex_to_int(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1851. return p_api->godot_string_hex_to_int(p_self);
  1852. }
  1853. godot_int go_godot_string_hex_to_int_without_prefix(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1854. return p_api->godot_string_hex_to_int_without_prefix(p_self);
  1855. }
  1856. godot_string go_godot_string_insert(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_at_pos, godot_string p_string) {
  1857. return p_api->godot_string_insert(p_self, p_at_pos, p_string);
  1858. }
  1859. godot_bool go_godot_string_is_numeric(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1860. return p_api->godot_string_is_numeric(p_self);
  1861. }
  1862. godot_bool go_godot_string_is_subsequence_of(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_string) {
  1863. return p_api->godot_string_is_subsequence_of(p_self, p_string);
  1864. }
  1865. godot_bool go_godot_string_is_subsequence_ofi(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_string) {
  1866. return p_api->godot_string_is_subsequence_ofi(p_self, p_string);
  1867. }
  1868. godot_string go_godot_string_lpad(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_min_length) {
  1869. return p_api->godot_string_lpad(p_self, p_min_length);
  1870. }
  1871. godot_string go_godot_string_lpad_with_custom_character(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_min_length, const godot_string * p_character) {
  1872. return p_api->godot_string_lpad_with_custom_character(p_self, p_min_length, p_character);
  1873. }
  1874. godot_bool go_godot_string_match(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_wildcard) {
  1875. return p_api->godot_string_match(p_self, p_wildcard);
  1876. }
  1877. godot_bool go_godot_string_matchn(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_wildcard) {
  1878. return p_api->godot_string_matchn(p_self, p_wildcard);
  1879. }
  1880. godot_string go_godot_string_md5(godot_gdnative_core_api_struct * p_api, const uint8_t * p_md5) {
  1881. return p_api->godot_string_md5(p_md5);
  1882. }
  1883. godot_string go_godot_string_num(godot_gdnative_core_api_struct * p_api, double p_num) {
  1884. return p_api->godot_string_num(p_num);
  1885. }
  1886. godot_string go_godot_string_num_int64(godot_gdnative_core_api_struct * p_api, int64_t p_num, godot_int p_base) {
  1887. return p_api->godot_string_num_int64(p_num, p_base);
  1888. }
  1889. godot_string go_godot_string_num_int64_capitalized(godot_gdnative_core_api_struct * p_api, int64_t p_num, godot_int p_base, godot_bool p_capitalize_hex) {
  1890. return p_api->godot_string_num_int64_capitalized(p_num, p_base, p_capitalize_hex);
  1891. }
  1892. godot_string go_godot_string_num_real(godot_gdnative_core_api_struct * p_api, double p_num) {
  1893. return p_api->godot_string_num_real(p_num);
  1894. }
  1895. godot_string go_godot_string_num_scientific(godot_gdnative_core_api_struct * p_api, double p_num) {
  1896. return p_api->godot_string_num_scientific(p_num);
  1897. }
  1898. godot_string go_godot_string_num_with_decimals(godot_gdnative_core_api_struct * p_api, double p_num, godot_int p_decimals) {
  1899. return p_api->godot_string_num_with_decimals(p_num, p_decimals);
  1900. }
  1901. godot_string go_godot_string_pad_decimals(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_digits) {
  1902. return p_api->godot_string_pad_decimals(p_self, p_digits);
  1903. }
  1904. godot_string go_godot_string_pad_zeros(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_digits) {
  1905. return p_api->godot_string_pad_zeros(p_self, p_digits);
  1906. }
  1907. godot_string go_godot_string_replace_first(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_key, godot_string p_with) {
  1908. return p_api->godot_string_replace_first(p_self, p_key, p_with);
  1909. }
  1910. godot_string go_godot_string_replace(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_key, godot_string p_with) {
  1911. return p_api->godot_string_replace(p_self, p_key, p_with);
  1912. }
  1913. godot_string go_godot_string_replacen(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_key, godot_string p_with) {
  1914. return p_api->godot_string_replacen(p_self, p_key, p_with);
  1915. }
  1916. godot_int go_godot_string_rfind(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_what) {
  1917. return p_api->godot_string_rfind(p_self, p_what);
  1918. }
  1919. godot_int go_godot_string_rfindn(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_what) {
  1920. return p_api->godot_string_rfindn(p_self, p_what);
  1921. }
  1922. godot_int go_godot_string_rfind_from(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_what, godot_int p_from) {
  1923. return p_api->godot_string_rfind_from(p_self, p_what, p_from);
  1924. }
  1925. godot_int go_godot_string_rfindn_from(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_what, godot_int p_from) {
  1926. return p_api->godot_string_rfindn_from(p_self, p_what, p_from);
  1927. }
  1928. godot_string go_godot_string_rpad(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_min_length) {
  1929. return p_api->godot_string_rpad(p_self, p_min_length);
  1930. }
  1931. godot_string go_godot_string_rpad_with_custom_character(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_min_length, const godot_string * p_character) {
  1932. return p_api->godot_string_rpad_with_custom_character(p_self, p_min_length, p_character);
  1933. }
  1934. godot_real go_godot_string_similarity(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_string) {
  1935. return p_api->godot_string_similarity(p_self, p_string);
  1936. }
  1937. godot_string go_godot_string_sprintf(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_array * p_values, godot_bool * p_error) {
  1938. return p_api->godot_string_sprintf(p_self, p_values, p_error);
  1939. }
  1940. godot_string go_godot_string_substr(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_from, godot_int p_chars) {
  1941. return p_api->godot_string_substr(p_self, p_from, p_chars);
  1942. }
  1943. double go_godot_string_to_double(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1944. return p_api->godot_string_to_double(p_self);
  1945. }
  1946. godot_real go_godot_string_to_float(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1947. return p_api->godot_string_to_float(p_self);
  1948. }
  1949. godot_int go_godot_string_to_int(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1950. return p_api->godot_string_to_int(p_self);
  1951. }
  1952. godot_string go_godot_string_camelcase_to_underscore(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1953. return p_api->godot_string_camelcase_to_underscore(p_self);
  1954. }
  1955. godot_string go_godot_string_camelcase_to_underscore_lowercased(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1956. return p_api->godot_string_camelcase_to_underscore_lowercased(p_self);
  1957. }
  1958. godot_string go_godot_string_capitalize(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1959. return p_api->godot_string_capitalize(p_self);
  1960. }
  1961. double go_godot_string_char_to_double(godot_gdnative_core_api_struct * p_api, const char * p_what) {
  1962. return p_api->godot_string_char_to_double(p_what);
  1963. }
  1964. godot_int go_godot_string_char_to_int(godot_gdnative_core_api_struct * p_api, const char * p_what) {
  1965. return p_api->godot_string_char_to_int(p_what);
  1966. }
  1967. int64_t go_godot_string_wchar_to_int(godot_gdnative_core_api_struct * p_api, const wchar_t * p_str) {
  1968. return p_api->godot_string_wchar_to_int(p_str);
  1969. }
  1970. godot_int go_godot_string_char_to_int_with_len(godot_gdnative_core_api_struct * p_api, const char * p_what, godot_int p_len) {
  1971. return p_api->godot_string_char_to_int_with_len(p_what, p_len);
  1972. }
  1973. int64_t go_godot_string_char_to_int64_with_len(godot_gdnative_core_api_struct * p_api, const wchar_t * p_str, int p_len) {
  1974. return p_api->godot_string_char_to_int64_with_len(p_str, p_len);
  1975. }
  1976. int64_t go_godot_string_hex_to_int64(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1977. return p_api->godot_string_hex_to_int64(p_self);
  1978. }
  1979. int64_t go_godot_string_hex_to_int64_with_prefix(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1980. return p_api->godot_string_hex_to_int64_with_prefix(p_self);
  1981. }
  1982. int64_t go_godot_string_to_int64(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  1983. return p_api->godot_string_to_int64(p_self);
  1984. }
  1985. double go_godot_string_unicode_char_to_double(godot_gdnative_core_api_struct * p_api, const wchar_t * p_str, const wchar_t ** r_end) {
  1986. return p_api->godot_string_unicode_char_to_double(p_str, r_end);
  1987. }
  1988. godot_int go_godot_string_get_slice_count(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_splitter) {
  1989. return p_api->godot_string_get_slice_count(p_self, p_splitter);
  1990. }
  1991. godot_string go_godot_string_get_slice(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_string p_splitter, godot_int p_slice) {
  1992. return p_api->godot_string_get_slice(p_self, p_splitter, p_slice);
  1993. }
  1994. godot_string go_godot_string_get_slicec(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, wchar_t p_splitter, godot_int p_slice) {
  1995. return p_api->godot_string_get_slicec(p_self, p_splitter, p_slice);
  1996. }
  1997. godot_array go_godot_string_split(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_splitter) {
  1998. return p_api->godot_string_split(p_self, p_splitter);
  1999. }
  2000. godot_array go_godot_string_split_allow_empty(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_splitter) {
  2001. return p_api->godot_string_split_allow_empty(p_self, p_splitter);
  2002. }
  2003. godot_array go_godot_string_split_floats(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_splitter) {
  2004. return p_api->godot_string_split_floats(p_self, p_splitter);
  2005. }
  2006. godot_array go_godot_string_split_floats_allows_empty(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_splitter) {
  2007. return p_api->godot_string_split_floats_allows_empty(p_self, p_splitter);
  2008. }
  2009. godot_array go_godot_string_split_floats_mk(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_array * p_splitters) {
  2010. return p_api->godot_string_split_floats_mk(p_self, p_splitters);
  2011. }
  2012. godot_array go_godot_string_split_floats_mk_allows_empty(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_array * p_splitters) {
  2013. return p_api->godot_string_split_floats_mk_allows_empty(p_self, p_splitters);
  2014. }
  2015. godot_array go_godot_string_split_ints(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_splitter) {
  2016. return p_api->godot_string_split_ints(p_self, p_splitter);
  2017. }
  2018. godot_array go_godot_string_split_ints_allows_empty(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_splitter) {
  2019. return p_api->godot_string_split_ints_allows_empty(p_self, p_splitter);
  2020. }
  2021. godot_array go_godot_string_split_ints_mk(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_array * p_splitters) {
  2022. return p_api->godot_string_split_ints_mk(p_self, p_splitters);
  2023. }
  2024. godot_array go_godot_string_split_ints_mk_allows_empty(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_array * p_splitters) {
  2025. return p_api->godot_string_split_ints_mk_allows_empty(p_self, p_splitters);
  2026. }
  2027. godot_array go_godot_string_split_spaces(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2028. return p_api->godot_string_split_spaces(p_self);
  2029. }
  2030. wchar_t go_godot_string_char_lowercase(godot_gdnative_core_api_struct * p_api, wchar_t p_char) {
  2031. return p_api->godot_string_char_lowercase(p_char);
  2032. }
  2033. wchar_t go_godot_string_char_uppercase(godot_gdnative_core_api_struct * p_api, wchar_t p_char) {
  2034. return p_api->godot_string_char_uppercase(p_char);
  2035. }
  2036. godot_string go_godot_string_to_lower(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2037. return p_api->godot_string_to_lower(p_self);
  2038. }
  2039. godot_string go_godot_string_to_upper(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2040. return p_api->godot_string_to_upper(p_self);
  2041. }
  2042. godot_string go_godot_string_get_basename(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2043. return p_api->godot_string_get_basename(p_self);
  2044. }
  2045. godot_string go_godot_string_get_extension(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2046. return p_api->godot_string_get_extension(p_self);
  2047. }
  2048. godot_string go_godot_string_left(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_pos) {
  2049. return p_api->godot_string_left(p_self, p_pos);
  2050. }
  2051. wchar_t go_godot_string_ord_at(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_idx) {
  2052. return p_api->godot_string_ord_at(p_self, p_idx);
  2053. }
  2054. godot_string go_godot_string_plus_file(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_file) {
  2055. return p_api->godot_string_plus_file(p_self, p_file);
  2056. }
  2057. godot_string go_godot_string_right(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_pos) {
  2058. return p_api->godot_string_right(p_self, p_pos);
  2059. }
  2060. godot_string go_godot_string_strip_edges(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_bool p_left, godot_bool p_right) {
  2061. return p_api->godot_string_strip_edges(p_self, p_left, p_right);
  2062. }
  2063. godot_string go_godot_string_strip_escapes(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2064. return p_api->godot_string_strip_escapes(p_self);
  2065. }
  2066. void go_godot_string_erase(godot_gdnative_core_api_struct * p_api, godot_string * p_self, godot_int p_pos, godot_int p_chars) {
  2067. p_api->godot_string_erase(p_self, p_pos, p_chars);
  2068. }
  2069. godot_char_string go_godot_string_ascii(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2070. return p_api->godot_string_ascii(p_self);
  2071. }
  2072. godot_char_string go_godot_string_ascii_extended(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2073. return p_api->godot_string_ascii_extended(p_self);
  2074. }
  2075. godot_char_string go_godot_string_utf8(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2076. return p_api->godot_string_utf8(p_self);
  2077. }
  2078. godot_bool go_godot_string_parse_utf8(godot_gdnative_core_api_struct * p_api, godot_string * p_self, const char * p_utf8) {
  2079. return p_api->godot_string_parse_utf8(p_self, p_utf8);
  2080. }
  2081. godot_bool go_godot_string_parse_utf8_with_len(godot_gdnative_core_api_struct * p_api, godot_string * p_self, const char * p_utf8, godot_int p_len) {
  2082. return p_api->godot_string_parse_utf8_with_len(p_self, p_utf8, p_len);
  2083. }
  2084. godot_string go_godot_string_chars_to_utf8(godot_gdnative_core_api_struct * p_api, const char * p_utf8) {
  2085. return p_api->godot_string_chars_to_utf8(p_utf8);
  2086. }
  2087. godot_string go_godot_string_chars_to_utf8_with_len(godot_gdnative_core_api_struct * p_api, const char * p_utf8, godot_int p_len) {
  2088. return p_api->godot_string_chars_to_utf8_with_len(p_utf8, p_len);
  2089. }
  2090. uint32_t go_godot_string_hash(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2091. return p_api->godot_string_hash(p_self);
  2092. }
  2093. uint64_t go_godot_string_hash64(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2094. return p_api->godot_string_hash64(p_self);
  2095. }
  2096. uint32_t go_godot_string_hash_chars(godot_gdnative_core_api_struct * p_api, const char * p_cstr) {
  2097. return p_api->godot_string_hash_chars(p_cstr);
  2098. }
  2099. uint32_t go_godot_string_hash_chars_with_len(godot_gdnative_core_api_struct * p_api, const char * p_cstr, godot_int p_len) {
  2100. return p_api->godot_string_hash_chars_with_len(p_cstr, p_len);
  2101. }
  2102. uint32_t go_godot_string_hash_utf8_chars(godot_gdnative_core_api_struct * p_api, const wchar_t * p_str) {
  2103. return p_api->godot_string_hash_utf8_chars(p_str);
  2104. }
  2105. uint32_t go_godot_string_hash_utf8_chars_with_len(godot_gdnative_core_api_struct * p_api, const wchar_t * p_str, godot_int p_len) {
  2106. return p_api->godot_string_hash_utf8_chars_with_len(p_str, p_len);
  2107. }
  2108. godot_pool_byte_array go_godot_string_md5_buffer(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2109. return p_api->godot_string_md5_buffer(p_self);
  2110. }
  2111. godot_string go_godot_string_md5_text(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2112. return p_api->godot_string_md5_text(p_self);
  2113. }
  2114. godot_pool_byte_array go_godot_string_sha256_buffer(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2115. return p_api->godot_string_sha256_buffer(p_self);
  2116. }
  2117. godot_string go_godot_string_sha256_text(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2118. return p_api->godot_string_sha256_text(p_self);
  2119. }
  2120. godot_bool go_godot_string_empty(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2121. return p_api->godot_string_empty(p_self);
  2122. }
  2123. godot_string go_godot_string_get_base_dir(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2124. return p_api->godot_string_get_base_dir(p_self);
  2125. }
  2126. godot_string go_godot_string_get_file(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2127. return p_api->godot_string_get_file(p_self);
  2128. }
  2129. godot_string go_godot_string_humanize_size(godot_gdnative_core_api_struct * p_api, uint64_t p_size) {
  2130. return p_api->godot_string_humanize_size(p_size);
  2131. }
  2132. godot_bool go_godot_string_is_abs_path(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2133. return p_api->godot_string_is_abs_path(p_self);
  2134. }
  2135. godot_bool go_godot_string_is_rel_path(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2136. return p_api->godot_string_is_rel_path(p_self);
  2137. }
  2138. godot_bool go_godot_string_is_resource_file(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2139. return p_api->godot_string_is_resource_file(p_self);
  2140. }
  2141. godot_string go_godot_string_path_to(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_path) {
  2142. return p_api->godot_string_path_to(p_self, p_path);
  2143. }
  2144. godot_string go_godot_string_path_to_file(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, const godot_string * p_path) {
  2145. return p_api->godot_string_path_to_file(p_self, p_path);
  2146. }
  2147. godot_string go_godot_string_simplify_path(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2148. return p_api->godot_string_simplify_path(p_self);
  2149. }
  2150. godot_string go_godot_string_c_escape(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2151. return p_api->godot_string_c_escape(p_self);
  2152. }
  2153. godot_string go_godot_string_c_escape_multiline(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2154. return p_api->godot_string_c_escape_multiline(p_self);
  2155. }
  2156. godot_string go_godot_string_c_unescape(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2157. return p_api->godot_string_c_unescape(p_self);
  2158. }
  2159. godot_string go_godot_string_http_escape(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2160. return p_api->godot_string_http_escape(p_self);
  2161. }
  2162. godot_string go_godot_string_http_unescape(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2163. return p_api->godot_string_http_unescape(p_self);
  2164. }
  2165. godot_string go_godot_string_json_escape(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2166. return p_api->godot_string_json_escape(p_self);
  2167. }
  2168. godot_string go_godot_string_word_wrap(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_int p_chars_per_line) {
  2169. return p_api->godot_string_word_wrap(p_self, p_chars_per_line);
  2170. }
  2171. godot_string go_godot_string_xml_escape(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2172. return p_api->godot_string_xml_escape(p_self);
  2173. }
  2174. godot_string go_godot_string_xml_escape_with_quotes(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2175. return p_api->godot_string_xml_escape_with_quotes(p_self);
  2176. }
  2177. godot_string go_godot_string_xml_unescape(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2178. return p_api->godot_string_xml_unescape(p_self);
  2179. }
  2180. godot_string go_godot_string_percent_decode(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2181. return p_api->godot_string_percent_decode(p_self);
  2182. }
  2183. godot_string go_godot_string_percent_encode(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2184. return p_api->godot_string_percent_encode(p_self);
  2185. }
  2186. godot_bool go_godot_string_is_valid_float(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2187. return p_api->godot_string_is_valid_float(p_self);
  2188. }
  2189. godot_bool go_godot_string_is_valid_hex_number(godot_gdnative_core_api_struct * p_api, const godot_string * p_self, godot_bool p_with_prefix) {
  2190. return p_api->godot_string_is_valid_hex_number(p_self, p_with_prefix);
  2191. }
  2192. godot_bool go_godot_string_is_valid_html_color(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2193. return p_api->godot_string_is_valid_html_color(p_self);
  2194. }
  2195. godot_bool go_godot_string_is_valid_identifier(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2196. return p_api->godot_string_is_valid_identifier(p_self);
  2197. }
  2198. godot_bool go_godot_string_is_valid_integer(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2199. return p_api->godot_string_is_valid_integer(p_self);
  2200. }
  2201. godot_bool go_godot_string_is_valid_ip_address(godot_gdnative_core_api_struct * p_api, const godot_string * p_self) {
  2202. return p_api->godot_string_is_valid_ip_address(p_self);
  2203. }
  2204. void go_godot_string_destroy(godot_gdnative_core_api_struct * p_api, godot_string * p_self) {
  2205. p_api->godot_string_destroy(p_self);
  2206. }
  2207. void go_godot_string_name_new(godot_gdnative_core_api_struct * p_api, godot_string_name * r_dest, const godot_string * p_name) {
  2208. p_api->godot_string_name_new(r_dest, p_name);
  2209. }
  2210. void go_godot_string_name_new_data(godot_gdnative_core_api_struct * p_api, godot_string_name * r_dest, const char * p_name) {
  2211. p_api->godot_string_name_new_data(r_dest, p_name);
  2212. }
  2213. godot_string go_godot_string_name_get_name(godot_gdnative_core_api_struct * p_api, const godot_string_name * p_self) {
  2214. return p_api->godot_string_name_get_name(p_self);
  2215. }
  2216. uint32_t go_godot_string_name_get_hash(godot_gdnative_core_api_struct * p_api, const godot_string_name * p_self) {
  2217. return p_api->godot_string_name_get_hash(p_self);
  2218. }
  2219. const void * go_godot_string_name_get_data_unique_pointer(godot_gdnative_core_api_struct * p_api, const godot_string_name * p_self) {
  2220. return p_api->godot_string_name_get_data_unique_pointer(p_self);
  2221. }
  2222. godot_bool go_godot_string_name_operator_equal(godot_gdnative_core_api_struct * p_api, const godot_string_name * p_self, const godot_string_name * p_other) {
  2223. return p_api->godot_string_name_operator_equal(p_self, p_other);
  2224. }
  2225. godot_bool go_godot_string_name_operator_less(godot_gdnative_core_api_struct * p_api, const godot_string_name * p_self, const godot_string_name * p_other) {
  2226. return p_api->godot_string_name_operator_less(p_self, p_other);
  2227. }
  2228. void go_godot_string_name_destroy(godot_gdnative_core_api_struct * p_api, godot_string_name * p_self) {
  2229. p_api->godot_string_name_destroy(p_self);
  2230. }
  2231. void go_godot_object_destroy(godot_gdnative_core_api_struct * p_api, godot_object * p_o) {
  2232. p_api->godot_object_destroy(p_o);
  2233. }
  2234. godot_object * go_godot_global_get_singleton(godot_gdnative_core_api_struct * p_api, char * p_name) {
  2235. return p_api->godot_global_get_singleton(p_name);
  2236. }
  2237. godot_method_bind * go_godot_method_bind_get_method(godot_gdnative_core_api_struct * p_api, const char * p_classname, const char * p_methodname) {
  2238. return p_api->godot_method_bind_get_method(p_classname, p_methodname);
  2239. }
  2240. void go_godot_method_bind_ptrcall(godot_gdnative_core_api_struct * p_api, godot_method_bind * p_method_bind, godot_object * p_instance, const void ** p_args, void * p_ret) {
  2241. p_api->godot_method_bind_ptrcall(p_method_bind, p_instance, p_args, p_ret);
  2242. }
  2243. godot_variant go_godot_method_bind_call(godot_gdnative_core_api_struct * p_api, godot_method_bind * p_method_bind, godot_object * p_instance, const godot_variant ** p_args, const int p_arg_count, godot_variant_call_error * p_call_error) {
  2244. return p_api->godot_method_bind_call(p_method_bind, p_instance, p_args, p_arg_count, p_call_error);
  2245. }
  2246. godot_class_constructor go_godot_get_class_constructor(godot_gdnative_core_api_struct * p_api, const char * p_classname) {
  2247. return p_api->godot_get_class_constructor(p_classname);
  2248. }
  2249. godot_dictionary go_godot_get_global_constants(godot_gdnative_core_api_struct * p_api) {
  2250. return p_api->godot_get_global_constants();
  2251. }
  2252. void go_godot_register_native_call_type(godot_gdnative_core_api_struct * p_api, const char * call_type, native_call_cb p_callback) {
  2253. p_api->godot_register_native_call_type(call_type, p_callback);
  2254. }
  2255. void * go_godot_alloc(godot_gdnative_core_api_struct * p_api, int p_bytes) {
  2256. return p_api->godot_alloc(p_bytes);
  2257. }
  2258. void * go_godot_realloc(godot_gdnative_core_api_struct * p_api, void * p_ptr, int p_bytes) {
  2259. return p_api->godot_realloc(p_ptr, p_bytes);
  2260. }
  2261. void go_godot_free(godot_gdnative_core_api_struct * p_api, void * p_ptr) {
  2262. p_api->godot_free(p_ptr);
  2263. }
  2264. void go_godot_print_error(godot_gdnative_core_api_struct * p_api, const char * p_description, const char * p_function, const char * p_file, int p_line) {
  2265. p_api->godot_print_error(p_description, p_function, p_file, p_line);
  2266. }
  2267. void go_godot_print_warning(godot_gdnative_core_api_struct * p_api, const char * p_description, const char * p_function, const char * p_file, int p_line) {
  2268. p_api->godot_print_warning(p_description, p_function, p_file, p_line);
  2269. }
  2270. void go_godot_print(godot_gdnative_core_api_struct * p_api, const godot_string * p_message) {
  2271. p_api->godot_print(p_message);
  2272. }