core_bind.cpp 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. #include "core_bind.h"
  2. #include "os/os.h"
  3. #include "geometry.h"
  4. #include "io/marshalls.h"
  5. #include "io/base64.h"
  6. #include "core/globals.h"
  7. #include "io/file_access_encrypted.h"
  8. #include "os/keyboard.h"
  9. _ResourceLoader *_ResourceLoader::singleton=NULL;
  10. Ref<ResourceInteractiveLoader> _ResourceLoader::load_interactive(const String& p_path,const String& p_type_hint) {
  11. return ResourceLoader::load_interactive(p_path,p_type_hint);
  12. }
  13. RES _ResourceLoader::load(const String &p_path,const String& p_type_hint, bool p_no_cache) {
  14. RES ret = ResourceLoader::load(p_path,p_type_hint, p_no_cache);
  15. return ret;
  16. }
  17. DVector<String> _ResourceLoader::get_recognized_extensions_for_type(const String& p_type) {
  18. List<String> exts;
  19. ResourceLoader::get_recognized_extensions_for_type(p_type,&exts);
  20. DVector<String> ret;
  21. for(List<String>::Element *E=exts.front();E;E=E->next()) {
  22. ret.push_back(E->get());
  23. }
  24. return ret;
  25. }
  26. void _ResourceLoader::set_abort_on_missing_resources(bool p_abort) {
  27. ResourceLoader::set_abort_on_missing_resources(p_abort);
  28. }
  29. StringArray _ResourceLoader::get_dependencies(const String& p_path) {
  30. List<String> deps;
  31. ResourceLoader::get_dependencies(p_path, &deps);
  32. StringArray ret;
  33. for(List<String>::Element *E=deps.front();E;E=E->next()) {
  34. ret.push_back(E->get());
  35. }
  36. return ret;
  37. };
  38. bool _ResourceLoader::has(const String &p_path) {
  39. String local_path = Globals::get_singleton()->localize_path(p_path);
  40. return ResourceCache::has(local_path);
  41. };
  42. void _ResourceLoader::_bind_methods() {
  43. ObjectTypeDB::bind_method(_MD("load_interactive:ResourceInteractiveLoader","path","type_hint"),&_ResourceLoader::load_interactive,DEFVAL(""));
  44. ObjectTypeDB::bind_method(_MD("load:Resource","path","type_hint", "p_no_cache"),&_ResourceLoader::load,DEFVAL(""), DEFVAL(false));
  45. ObjectTypeDB::bind_method(_MD("get_recognized_extensions_for_type","type"),&_ResourceLoader::get_recognized_extensions_for_type);
  46. ObjectTypeDB::bind_method(_MD("set_abort_on_missing_resources","abort"),&_ResourceLoader::set_abort_on_missing_resources);
  47. ObjectTypeDB::bind_method(_MD("get_dependencies"),&_ResourceLoader::get_dependencies);
  48. ObjectTypeDB::bind_method(_MD("has"),&_ResourceLoader::has);
  49. }
  50. _ResourceLoader::_ResourceLoader() {
  51. singleton=this;
  52. }
  53. Error _ResourceSaver::save(const String &p_path,const RES& p_resource, uint32_t p_flags) {
  54. ERR_FAIL_COND_V(p_resource.is_null(),ERR_INVALID_PARAMETER);
  55. return ResourceSaver::save(p_path,p_resource, p_flags);
  56. }
  57. DVector<String> _ResourceSaver::get_recognized_extensions(const RES& p_resource) {
  58. ERR_FAIL_COND_V(p_resource.is_null(),DVector<String>());
  59. List<String> exts;
  60. ResourceSaver::get_recognized_extensions(p_resource,&exts);
  61. DVector<String> ret;
  62. for(List<String>::Element *E=exts.front();E;E=E->next()) {
  63. ret.push_back(E->get());
  64. }
  65. return ret;
  66. }
  67. _ResourceSaver *_ResourceSaver::singleton=NULL;
  68. void _ResourceSaver::_bind_methods() {
  69. ObjectTypeDB::bind_method(_MD("save","path","resource:Resource"),&_ResourceSaver::save, DEFVAL(0));
  70. ObjectTypeDB::bind_method(_MD("get_recognized_extensions","type"),&_ResourceSaver::get_recognized_extensions);
  71. BIND_CONSTANT(FLAG_RELATIVE_PATHS);
  72. BIND_CONSTANT(FLAG_BUNDLE_RESOURCES);
  73. BIND_CONSTANT(FLAG_CHANGE_PATH);
  74. BIND_CONSTANT(FLAG_OMIT_EDITOR_PROPERTIES);
  75. BIND_CONSTANT(FLAG_SAVE_BIG_ENDIAN);
  76. BIND_CONSTANT(FLAG_COMPRESS);
  77. }
  78. _ResourceSaver::_ResourceSaver() {
  79. singleton=this;
  80. }
  81. /////////////////OS
  82. Point2 _OS::get_mouse_pos() const {
  83. return OS::get_singleton()->get_mouse_pos();
  84. }
  85. void _OS::set_window_title(const String& p_title) {
  86. OS::get_singleton()->set_window_title(p_title);
  87. }
  88. int _OS::get_mouse_button_state() const {
  89. return OS::get_singleton()->get_mouse_button_state();
  90. }
  91. String _OS::get_unique_ID() const {
  92. return OS::get_singleton()->get_unique_ID();
  93. }
  94. bool _OS::has_touchscreen_ui_hint() const {
  95. return OS::get_singleton()->has_touchscreen_ui_hint();
  96. }
  97. void _OS::set_clipboard(const String& p_text) {
  98. OS::get_singleton()->set_clipboard(p_text);
  99. }
  100. String _OS::get_clipboard() const {
  101. return OS::get_singleton()->get_clipboard();
  102. }
  103. void _OS::set_video_mode(const Size2& p_size, bool p_fullscreen,bool p_resizeable,int p_screen) {
  104. OS::VideoMode vm;
  105. vm.width=p_size.width;
  106. vm.height=p_size.height;
  107. vm.fullscreen=p_fullscreen;
  108. vm.resizable=p_resizeable;
  109. OS::get_singleton()->set_video_mode( vm,p_screen);
  110. }
  111. Size2 _OS::get_video_mode(int p_screen) const {
  112. OS::VideoMode vm;
  113. vm = OS::get_singleton()->get_video_mode(p_screen);
  114. return Size2(vm.width,vm.height);
  115. }
  116. bool _OS::is_video_mode_fullscreen(int p_screen) const {
  117. OS::VideoMode vm;
  118. vm = OS::get_singleton()->get_video_mode(p_screen);
  119. return vm.fullscreen;
  120. }
  121. int _OS::get_screen_count() const {
  122. return OS::get_singleton()->get_screen_count();
  123. }
  124. int _OS::get_current_screen() const {
  125. return OS::get_singleton()->get_current_screen();
  126. }
  127. void _OS::set_current_screen(int p_screen) {
  128. OS::get_singleton()->set_current_screen(p_screen);
  129. }
  130. Point2 _OS::get_screen_position(int p_screen) const {
  131. return OS::get_singleton()->get_screen_position(p_screen);
  132. }
  133. Size2 _OS::get_screen_size(int p_screen) const {
  134. return OS::get_singleton()->get_screen_size(p_screen);
  135. }
  136. Point2 _OS::get_window_position() const {
  137. return OS::get_singleton()->get_window_position();
  138. }
  139. void _OS::set_window_position(const Point2& p_position) {
  140. OS::get_singleton()->set_window_position(p_position);
  141. }
  142. Size2 _OS::get_window_size() const {
  143. return OS::get_singleton()->get_window_size();
  144. }
  145. void _OS::set_window_size(const Size2& p_size) {
  146. OS::get_singleton()->set_window_size(p_size);
  147. }
  148. void _OS::set_window_fullscreen(bool p_enabled) {
  149. OS::get_singleton()->set_window_fullscreen(p_enabled);
  150. }
  151. bool _OS::is_window_fullscreen() const {
  152. return OS::get_singleton()->is_window_fullscreen();
  153. }
  154. void _OS::set_window_resizable(bool p_enabled) {
  155. OS::get_singleton()->set_window_resizable(p_enabled);
  156. }
  157. bool _OS::is_window_resizable() const {
  158. return OS::get_singleton()->is_window_resizable();
  159. }
  160. void _OS::set_window_minimized(bool p_enabled) {
  161. OS::get_singleton()->set_window_minimized(p_enabled);
  162. }
  163. bool _OS::is_window_minimized() const {
  164. return OS::get_singleton()->is_window_minimized();
  165. }
  166. void _OS::set_window_maximized(bool p_enabled) {
  167. OS::get_singleton()->set_window_maximized(p_enabled);
  168. }
  169. bool _OS::is_window_maximized() const {
  170. return OS::get_singleton()->is_window_maximized();
  171. }
  172. void _OS::set_use_file_access_save_and_swap(bool p_enable) {
  173. FileAccess::set_backup_save(p_enable);
  174. }
  175. bool _OS::is_video_mode_resizable(int p_screen) const {
  176. OS::VideoMode vm;
  177. vm = OS::get_singleton()->get_video_mode(p_screen);
  178. return vm.resizable;
  179. }
  180. Array _OS::get_fullscreen_mode_list(int p_screen) const {
  181. List<OS::VideoMode> vmlist;
  182. OS::get_singleton()->get_fullscreen_mode_list(&vmlist,p_screen);
  183. Array vmarr;
  184. for(List<OS::VideoMode>::Element *E=vmlist.front();E;E=E->next() ){
  185. vmarr.push_back(Size2(E->get().width,E->get().height));
  186. }
  187. return vmarr;
  188. }
  189. void _OS::set_iterations_per_second(int p_ips) {
  190. OS::get_singleton()->set_iterations_per_second(p_ips);
  191. }
  192. int _OS::get_iterations_per_second() const {
  193. return OS::get_singleton()->get_iterations_per_second();
  194. }
  195. void _OS::set_target_fps(int p_fps) {
  196. OS::get_singleton()->set_target_fps(p_fps);
  197. }
  198. float _OS::get_target_fps() const {
  199. return OS::get_singleton()->get_target_fps();
  200. }
  201. void _OS::set_low_processor_usage_mode(bool p_enabled) {
  202. OS::get_singleton()->set_low_processor_usage_mode(p_enabled);
  203. }
  204. bool _OS::is_in_low_processor_usage_mode() const {
  205. return OS::get_singleton()->is_in_low_processor_usage_mode();
  206. }
  207. String _OS::get_executable_path() const {
  208. return OS::get_singleton()->get_executable_path();
  209. }
  210. Error _OS::shell_open(String p_uri) {
  211. return OS::get_singleton()->shell_open(p_uri);
  212. };
  213. int _OS::execute(const String& p_path, const Vector<String> & p_arguments, bool p_blocking, Array p_output) {
  214. OS::ProcessID pid;
  215. List<String> args;
  216. for(int i=0;i<p_arguments.size();i++)
  217. args.push_back(p_arguments[i]);
  218. String pipe;
  219. Error err = OS::get_singleton()->execute(p_path,args,p_blocking,&pid, &pipe);
  220. p_output.clear();
  221. p_output.push_back(pipe);
  222. if (err != OK)
  223. return -1;
  224. else
  225. return pid;
  226. }
  227. Error _OS::kill(int p_pid) {
  228. return OS::get_singleton()->kill(p_pid);
  229. }
  230. int _OS::get_process_ID() const {
  231. return OS::get_singleton()->get_process_ID();
  232. };
  233. bool _OS::has_environment(const String& p_var) const {
  234. return OS::get_singleton()->has_environment(p_var);
  235. }
  236. String _OS::get_environment(const String& p_var) const {
  237. return OS::get_singleton()->get_environment(p_var);
  238. }
  239. String _OS::get_name() const {
  240. return OS::get_singleton()->get_name();
  241. }
  242. Vector<String> _OS::get_cmdline_args() {
  243. List<String> cmdline = OS::get_singleton()->get_cmdline_args();
  244. Vector<String> cmdlinev;
  245. for(List<String>::Element *E=cmdline.front();E;E=E->next()) {
  246. cmdlinev.push_back(E->get());
  247. }
  248. return cmdlinev;
  249. }
  250. String _OS::get_locale() const {
  251. return OS::get_singleton()->get_locale();
  252. }
  253. String _OS::get_model_name() const {
  254. return OS::get_singleton()->get_model_name();
  255. }
  256. MainLoop *_OS::get_main_loop() const {
  257. return OS::get_singleton()->get_main_loop();
  258. }
  259. void _OS::set_time_scale(float p_scale) {
  260. OS::get_singleton()->set_time_scale(p_scale);
  261. }
  262. float _OS::get_time_scale() {
  263. return OS::get_singleton()->get_time_scale();
  264. }
  265. bool _OS::is_ok_left_and_cancel_right() const {
  266. return OS::get_singleton()->get_swap_ok_cancel();
  267. }
  268. /*
  269. enum Weekday {
  270. DAY_SUNDAY,
  271. DAY_MONDAY,
  272. DAY_TUESDAY,
  273. DAY_WEDNESDAY,
  274. DAY_THURSDAY,
  275. DAY_FRIDAY,
  276. DAY_SATURDAY
  277. };
  278. enum Month {
  279. MONTH_JANUARY,
  280. MONTH_FEBRUARY,
  281. MONTH_MARCH,
  282. MONTH_APRIL,
  283. MONTH_MAY,
  284. MONTH_JUNE,
  285. MONTH_JULY,
  286. MONTH_AUGUST,
  287. MONTH_SEPTEMBER,
  288. MONTH_OCTOBER,
  289. MONTH_NOVEMBER,
  290. MONTH_DECEMBER
  291. };
  292. */
  293. /*
  294. struct Date {
  295. int year;
  296. Month month;
  297. int day;
  298. Weekday weekday;
  299. bool dst;
  300. };
  301. struct Time {
  302. int hour;
  303. int min;
  304. int sec;
  305. };
  306. */
  307. int _OS::get_static_memory_usage() const {
  308. return OS::get_singleton()->get_static_memory_usage();
  309. }
  310. int _OS::get_static_memory_peak_usage() const {
  311. return OS::get_singleton()->get_static_memory_peak_usage();
  312. }
  313. int _OS::get_dynamic_memory_usage() const{
  314. return OS::get_singleton()->get_dynamic_memory_usage();
  315. }
  316. void _OS::set_icon(const Image& p_icon) {
  317. OS::get_singleton()->set_icon(p_icon);
  318. }
  319. Dictionary _OS::get_date() const {
  320. OS::Date date = OS::get_singleton()->get_date();
  321. Dictionary dated;
  322. dated["year"]=date.year;
  323. dated["month"]=date.month;
  324. dated["day"]=date.day;
  325. dated["weekday"]=date.weekday;
  326. dated["dst"]=date.dst;
  327. return dated;
  328. }
  329. Dictionary _OS::get_time() const {
  330. OS::Time time = OS::get_singleton()->get_time();
  331. Dictionary timed;
  332. timed["hour"]=time.hour;
  333. timed["minute"]=time.min;
  334. timed["second"]=time.sec;
  335. return timed;
  336. }
  337. uint64_t _OS::get_unix_time() const {
  338. return OS::get_singleton()->get_unix_time();
  339. };
  340. void _OS::delay_usec(uint32_t p_usec) const {
  341. OS::get_singleton()->delay_usec(p_usec);
  342. }
  343. void _OS::delay_msec(uint32_t p_msec) const {
  344. OS::get_singleton()->delay_usec(int64_t(p_msec)*1000);
  345. }
  346. uint32_t _OS::get_ticks_msec() const {
  347. return OS::get_singleton()->get_ticks_msec();
  348. }
  349. uint32_t _OS::get_splash_tick_msec() const {
  350. return OS::get_singleton()->get_splash_tick_msec();
  351. }
  352. bool _OS::can_use_threads() const {
  353. return OS::get_singleton()->can_use_threads();
  354. }
  355. bool _OS::can_draw() const {
  356. return OS::get_singleton()->can_draw();
  357. }
  358. int _OS::get_frames_drawn() {
  359. return OS::get_singleton()->get_frames_drawn();
  360. }
  361. int _OS::get_processor_count() const {
  362. return OS::get_singleton()->get_processor_count();
  363. }
  364. bool _OS::is_stdout_verbose() const {
  365. return OS::get_singleton()->is_stdout_verbose();
  366. }
  367. void _OS::dump_memory_to_file(const String& p_file) {
  368. OS::get_singleton()->dump_memory_to_file(p_file.utf8().get_data());
  369. }
  370. struct _OSCoreBindImg {
  371. String path;
  372. Size2 size;
  373. int fmt;
  374. ObjectID id;
  375. int vram;
  376. bool operator<(const _OSCoreBindImg& p_img) const { return vram==p_img.vram ? id<p_img.id : vram > p_img.vram; }
  377. };
  378. void _OS::print_all_textures_by_size() {
  379. List<_OSCoreBindImg> imgs;
  380. int total=0;
  381. {
  382. List<Ref<Resource> > rsrc;
  383. ResourceCache::get_cached_resources(&rsrc);
  384. for (List<Ref<Resource> >::Element *E=rsrc.front();E;E=E->next()) {
  385. if (!E->get()->is_type("ImageTexture"))
  386. continue;
  387. Size2 size = E->get()->call("get_size");
  388. int fmt = E->get()->call("get_format");
  389. _OSCoreBindImg img;
  390. img.size=size;
  391. img.fmt=fmt;
  392. img.path=E->get()->get_path();
  393. img.vram=Image::get_image_data_size(img.size.width,img.size.height,Image::Format(img.fmt));
  394. img.id=E->get()->get_instance_ID();
  395. total+=img.vram;
  396. imgs.push_back(img);
  397. }
  398. }
  399. imgs.sort();
  400. for(List<_OSCoreBindImg>::Element *E=imgs.front();E;E=E->next()) {
  401. print_line(E->get().path+" - "+String::humanize_size(E->get().vram)+" ("+E->get().size+") - total:"+String::humanize_size(total) );
  402. total-=E->get().vram;
  403. }
  404. }
  405. void _OS::print_resources_by_type(const Vector<String>& p_types) {
  406. Map<String,int> type_count;
  407. List<Ref<Resource> > resources;
  408. ResourceCache::get_cached_resources(&resources);
  409. List<Ref<Resource> > rsrc;
  410. ResourceCache::get_cached_resources(&rsrc);
  411. for (List<Ref<Resource> >::Element *E=rsrc.front();E;E=E->next()) {
  412. Ref<Resource> r = E->get();
  413. bool found = false;
  414. for (int i=0; i<p_types.size(); i++) {
  415. if (r->is_type(p_types[i]))
  416. found = true;
  417. }
  418. if (!found)
  419. continue;
  420. if (!type_count.has(r->get_type())) {
  421. type_count[r->get_type()]=0;
  422. }
  423. type_count[r->get_type()]++;
  424. print_line(r->get_type()+": "+r->get_path());
  425. List<String> metas;
  426. r->get_meta_list(&metas);
  427. for (List<String>::Element* me = metas.front(); me; me = me->next()) {
  428. print_line(" "+String(me->get()) + ": " + r->get_meta(me->get()));
  429. };
  430. }
  431. for(Map<String,int>::Element *E=type_count.front();E;E=E->next()) {
  432. print_line(E->key()+" count: "+itos(E->get()));
  433. }
  434. };
  435. void _OS::print_all_resources(const String& p_to_file ) {
  436. OS::get_singleton()->print_all_resources(p_to_file);
  437. }
  438. void _OS::print_resources_in_use(bool p_short) {
  439. OS::get_singleton()->print_resources_in_use(p_short);
  440. }
  441. void _OS::dump_resources_to_file(const String& p_file) {
  442. OS::get_singleton()->dump_resources_to_file(p_file.utf8().get_data());
  443. }
  444. String _OS::get_data_dir() const {
  445. return OS::get_singleton()->get_data_dir();
  446. };
  447. float _OS::get_frames_per_second() const {
  448. return OS::get_singleton()->get_frames_per_second();
  449. }
  450. Error _OS::native_video_play(String p_path, float p_volume, String p_audio_track, String p_subtitle_track) {
  451. return OS::get_singleton()->native_video_play(p_path, p_volume, p_audio_track, p_subtitle_track);
  452. };
  453. bool _OS::native_video_is_playing() {
  454. return OS::get_singleton()->native_video_is_playing();
  455. };
  456. void _OS::native_video_pause() {
  457. OS::get_singleton()->native_video_pause();
  458. };
  459. void _OS::native_video_stop() {
  460. OS::get_singleton()->native_video_stop();
  461. };
  462. bool _OS::is_debug_build() const {
  463. #ifdef DEBUG_ENABLED
  464. return true;
  465. #else
  466. return false;
  467. #endif
  468. }
  469. String _OS::get_system_dir(SystemDir p_dir) const {
  470. return OS::get_singleton()->get_system_dir(OS::SystemDir(p_dir));
  471. }
  472. String _OS::get_custom_level() const {
  473. return OS::get_singleton()->get_custom_level();
  474. }
  475. String _OS::get_scancode_string(uint32_t p_code) const {
  476. return keycode_get_string(p_code);
  477. }
  478. bool _OS::is_scancode_unicode(uint32_t p_unicode) const {
  479. return keycode_has_unicode(p_unicode);
  480. }
  481. int _OS::find_scancode_from_string(const String& p_code) const {
  482. return find_keycode(p_code);
  483. }
  484. _OS *_OS::singleton=NULL;
  485. void _OS::_bind_methods() {
  486. //ObjectTypeDB::bind_method(_MD("get_mouse_pos"),&_OS::get_mouse_pos);
  487. //ObjectTypeDB::bind_method(_MD("is_mouse_grab_enabled"),&_OS::is_mouse_grab_enabled);
  488. ObjectTypeDB::bind_method(_MD("set_clipboard","clipboard"),&_OS::set_clipboard);
  489. ObjectTypeDB::bind_method(_MD("get_clipboard"),&_OS::get_clipboard);
  490. ObjectTypeDB::bind_method(_MD("set_video_mode","size","fullscreen","resizable","screen"),&_OS::set_video_mode,DEFVAL(0));
  491. ObjectTypeDB::bind_method(_MD("get_video_mode_size","screen"),&_OS::get_video_mode,DEFVAL(0));
  492. ObjectTypeDB::bind_method(_MD("is_video_mode_fullscreen","screen"),&_OS::is_video_mode_fullscreen,DEFVAL(0));
  493. ObjectTypeDB::bind_method(_MD("is_video_mode_resizable","screen"),&_OS::is_video_mode_resizable,DEFVAL(0));
  494. ObjectTypeDB::bind_method(_MD("get_fullscreen_mode_list","screen"),&_OS::get_fullscreen_mode_list,DEFVAL(0));
  495. ObjectTypeDB::bind_method(_MD("get_screen_count"),&_OS::get_screen_count);
  496. ObjectTypeDB::bind_method(_MD("get_current_screen"),&_OS::get_current_screen);
  497. ObjectTypeDB::bind_method(_MD("set_current_screen","screen"),&_OS::set_current_screen);
  498. ObjectTypeDB::bind_method(_MD("get_screen_position","screen"),&_OS::get_screen_position,DEFVAL(0));
  499. ObjectTypeDB::bind_method(_MD("get_screen_size","screen"),&_OS::get_screen_size,DEFVAL(0));
  500. ObjectTypeDB::bind_method(_MD("get_window_position"),&_OS::get_window_position);
  501. ObjectTypeDB::bind_method(_MD("set_window_position","position"),&_OS::set_window_position);
  502. ObjectTypeDB::bind_method(_MD("get_window_size"),&_OS::get_window_size);
  503. ObjectTypeDB::bind_method(_MD("set_window_size","size"),&_OS::set_window_size);
  504. ObjectTypeDB::bind_method(_MD("set_window_fullscreen","enabled"),&_OS::set_window_fullscreen);
  505. ObjectTypeDB::bind_method(_MD("is_window_fullscreen"),&_OS::is_window_fullscreen);
  506. ObjectTypeDB::bind_method(_MD("set_window_resizable","enabled"),&_OS::set_window_resizable);
  507. ObjectTypeDB::bind_method(_MD("is_window_resizable"),&_OS::is_window_resizable);
  508. ObjectTypeDB::bind_method(_MD("set_window_minimized", "enabled"),&_OS::set_window_minimized);
  509. ObjectTypeDB::bind_method(_MD("is_window_minimized"),&_OS::is_window_minimized);
  510. ObjectTypeDB::bind_method(_MD("set_window_maximized", "enabled"),&_OS::set_window_maximized);
  511. ObjectTypeDB::bind_method(_MD("is_window_maximized"),&_OS::is_window_maximized);
  512. ObjectTypeDB::bind_method(_MD("set_iterations_per_second","iterations_per_second"),&_OS::set_iterations_per_second);
  513. ObjectTypeDB::bind_method(_MD("get_iterations_per_second"),&_OS::get_iterations_per_second);
  514. ObjectTypeDB::bind_method(_MD("set_target_fps","target_fps"),&_OS::set_target_fps);
  515. ObjectTypeDB::bind_method(_MD("get_target_fps"),&_OS::get_target_fps);
  516. ObjectTypeDB::bind_method(_MD("set_time_scale","time_scale"),&_OS::set_time_scale);
  517. ObjectTypeDB::bind_method(_MD("get_time_scale"),&_OS::get_time_scale);
  518. ObjectTypeDB::bind_method(_MD("has_touchscreen_ui_hint"),&_OS::has_touchscreen_ui_hint);
  519. ObjectTypeDB::bind_method(_MD("set_window_title","title"),&_OS::set_window_title);
  520. ObjectTypeDB::bind_method(_MD("set_low_processor_usage_mode","enable"),&_OS::set_low_processor_usage_mode);
  521. ObjectTypeDB::bind_method(_MD("is_in_low_processor_usage_mode"),&_OS::is_in_low_processor_usage_mode);
  522. ObjectTypeDB::bind_method(_MD("get_processor_count"),&_OS::get_processor_count);
  523. ObjectTypeDB::bind_method(_MD("get_executable_path"),&_OS::get_executable_path);
  524. ObjectTypeDB::bind_method(_MD("execute","path","arguments","blocking","output"),&_OS::execute,DEFVAL(Array()));
  525. ObjectTypeDB::bind_method(_MD("kill","pid"),&_OS::kill);
  526. ObjectTypeDB::bind_method(_MD("shell_open","uri"),&_OS::shell_open);
  527. ObjectTypeDB::bind_method(_MD("get_process_ID"),&_OS::get_process_ID);
  528. ObjectTypeDB::bind_method(_MD("get_environment","environment"),&_OS::get_environment);
  529. ObjectTypeDB::bind_method(_MD("has_environment","environment"),&_OS::has_environment);
  530. ObjectTypeDB::bind_method(_MD("get_name"),&_OS::get_name);
  531. ObjectTypeDB::bind_method(_MD("get_cmdline_args"),&_OS::get_cmdline_args);
  532. ObjectTypeDB::bind_method(_MD("get_main_loop"),&_OS::get_main_loop);
  533. ObjectTypeDB::bind_method(_MD("get_date"),&_OS::get_date);
  534. ObjectTypeDB::bind_method(_MD("get_time"),&_OS::get_time);
  535. ObjectTypeDB::bind_method(_MD("get_unix_time"),&_OS::get_unix_time);
  536. ObjectTypeDB::bind_method(_MD("set_icon"),&_OS::set_icon);
  537. ObjectTypeDB::bind_method(_MD("delay_usec","usec"),&_OS::delay_usec);
  538. ObjectTypeDB::bind_method(_MD("delay_msec","msec"),&_OS::delay_msec);
  539. ObjectTypeDB::bind_method(_MD("get_ticks_msec"),&_OS::get_ticks_msec);
  540. ObjectTypeDB::bind_method(_MD("get_splash_tick_msec"),&_OS::get_splash_tick_msec);
  541. ObjectTypeDB::bind_method(_MD("get_locale"),&_OS::get_locale);
  542. ObjectTypeDB::bind_method(_MD("get_model_name"),&_OS::get_model_name);
  543. ObjectTypeDB::bind_method(_MD("get_custom_level"),&_OS::get_custom_level);
  544. ObjectTypeDB::bind_method(_MD("can_draw"),&_OS::can_draw);
  545. ObjectTypeDB::bind_method(_MD("get_frames_drawn"),&_OS::get_frames_drawn);
  546. ObjectTypeDB::bind_method(_MD("is_stdout_verbose"),&_OS::is_stdout_verbose);
  547. ObjectTypeDB::bind_method(_MD("can_use_threads"),&_OS::can_use_threads);
  548. ObjectTypeDB::bind_method(_MD("is_debug_build"),&_OS::is_debug_build);
  549. //ObjectTypeDB::bind_method(_MD("get_mouse_button_state"),&_OS::get_mouse_button_state);
  550. ObjectTypeDB::bind_method(_MD("dump_memory_to_file","file"),&_OS::dump_memory_to_file);
  551. ObjectTypeDB::bind_method(_MD("dump_resources_to_file","file"),&_OS::dump_resources_to_file);
  552. ObjectTypeDB::bind_method(_MD("print_resources_in_use","short"),&_OS::print_resources_in_use,DEFVAL(false));
  553. ObjectTypeDB::bind_method(_MD("print_all_resources","tofile"),&_OS::print_all_resources,DEFVAL(""));
  554. ObjectTypeDB::bind_method(_MD("get_static_memory_usage"),&_OS::get_static_memory_usage);
  555. ObjectTypeDB::bind_method(_MD("get_static_memory_peak_usage"),&_OS::get_static_memory_peak_usage);
  556. ObjectTypeDB::bind_method(_MD("get_dynamic_memory_usage"),&_OS::get_dynamic_memory_usage);
  557. ObjectTypeDB::bind_method(_MD("get_data_dir"),&_OS::get_data_dir);
  558. ObjectTypeDB::bind_method(_MD("get_system_dir","dir"),&_OS::get_system_dir);
  559. ObjectTypeDB::bind_method(_MD("get_unique_ID"),&_OS::get_unique_ID);
  560. ObjectTypeDB::bind_method(_MD("is_ok_left_and_cancel_right"),&_OS::is_ok_left_and_cancel_right);
  561. ObjectTypeDB::bind_method(_MD("get_frames_per_second"),&_OS::get_frames_per_second);
  562. ObjectTypeDB::bind_method(_MD("print_all_textures_by_size"),&_OS::print_all_textures_by_size);
  563. ObjectTypeDB::bind_method(_MD("print_resources_by_type"),&_OS::print_resources_by_type);
  564. ObjectTypeDB::bind_method(_MD("native_video_play"),&_OS::native_video_play);
  565. ObjectTypeDB::bind_method(_MD("native_video_is_playing"),&_OS::native_video_is_playing);
  566. ObjectTypeDB::bind_method(_MD("native_video_stop"),&_OS::native_video_stop);
  567. ObjectTypeDB::bind_method(_MD("native_video_pause"),&_OS::native_video_pause);
  568. ObjectTypeDB::bind_method(_MD("get_scancode_string","code"),&_OS::get_scancode_string);
  569. ObjectTypeDB::bind_method(_MD("is_scancode_unicode","code"),&_OS::is_scancode_unicode);
  570. ObjectTypeDB::bind_method(_MD("find_scancode_from_string","string"),&_OS::find_scancode_from_string);
  571. ObjectTypeDB::bind_method(_MD("set_use_file_access_save_and_swap","enabled"),&_OS::set_use_file_access_save_and_swap);
  572. BIND_CONSTANT( DAY_SUNDAY );
  573. BIND_CONSTANT( DAY_MONDAY );
  574. BIND_CONSTANT( DAY_TUESDAY );
  575. BIND_CONSTANT( DAY_WEDNESDAY );
  576. BIND_CONSTANT( DAY_THURSDAY );
  577. BIND_CONSTANT( DAY_FRIDAY );
  578. BIND_CONSTANT( DAY_SATURDAY );
  579. BIND_CONSTANT( MONTH_JANUARY );
  580. BIND_CONSTANT( MONTH_FEBRUARY );
  581. BIND_CONSTANT( MONTH_MARCH );
  582. BIND_CONSTANT( MONTH_APRIL );
  583. BIND_CONSTANT( MONTH_MAY );
  584. BIND_CONSTANT( MONTH_JUNE );
  585. BIND_CONSTANT( MONTH_JULY );
  586. BIND_CONSTANT( MONTH_AUGUST );
  587. BIND_CONSTANT( MONTH_SEPTEMBER );
  588. BIND_CONSTANT( MONTH_OCTOBER );
  589. BIND_CONSTANT( MONTH_NOVEMBER );
  590. BIND_CONSTANT( MONTH_DECEMBER );
  591. BIND_CONSTANT( SYSTEM_DIR_DESKTOP);
  592. BIND_CONSTANT( SYSTEM_DIR_DCIM );
  593. BIND_CONSTANT( SYSTEM_DIR_DOCUMENTS );
  594. BIND_CONSTANT( SYSTEM_DIR_DOWNLOADS );
  595. BIND_CONSTANT( SYSTEM_DIR_MOVIES );
  596. BIND_CONSTANT( SYSTEM_DIR_MUSIC );
  597. BIND_CONSTANT( SYSTEM_DIR_PICTURES );
  598. BIND_CONSTANT( SYSTEM_DIR_RINGTONES );
  599. }
  600. _OS::_OS() {
  601. singleton=this;
  602. }
  603. ///////////////////// GEOMETRY
  604. _Geometry *_Geometry::singleton=NULL;
  605. _Geometry *_Geometry::get_singleton() {
  606. return singleton;
  607. }
  608. DVector<Plane> _Geometry::build_box_planes(const Vector3& p_extents) {
  609. return Geometry::build_box_planes(p_extents);
  610. }
  611. DVector<Plane> _Geometry::build_cylinder_planes(float p_radius, float p_height, int p_sides, Vector3::Axis p_axis) {
  612. return Geometry::build_cylinder_planes(p_radius,p_height,p_sides,p_axis);
  613. }
  614. DVector<Plane> _Geometry::build_capsule_planes(float p_radius, float p_height, int p_sides, int p_lats, Vector3::Axis p_axis) {
  615. return Geometry::build_capsule_planes(p_radius,p_height,p_sides,p_lats,p_axis);
  616. }
  617. real_t _Geometry::segment_intersects_circle(const Vector2& p_from, const Vector2& p_to, const Vector2& p_circle_pos, real_t p_circle_radius) {
  618. return Geometry::segment_intersects_circle(p_from,p_to,p_circle_pos,p_circle_radius);
  619. }
  620. Variant _Geometry::segment_intersects_segment_2d(const Vector2& p_from_a,const Vector2& p_to_a,const Vector2& p_from_b,const Vector2& p_to_b) {
  621. Vector2 result;
  622. if (Geometry::segment_intersects_segment_2d(p_from_a, p_to_a, p_from_b, p_to_b, &result)) {
  623. return result;
  624. } else {
  625. return Variant();
  626. };
  627. };
  628. DVector<Vector2> _Geometry::get_closest_points_between_segments_2d( const Vector2& p1,const Vector2& q1, const Vector2& p2,const Vector2& q2) {
  629. Vector2 r1, r2;
  630. Geometry::get_closest_points_between_segments(p1,q1,p2,q2,r1,r2);
  631. DVector<Vector2> r;
  632. r.resize(2);
  633. r.set(0,r1);
  634. r.set(1,r2);
  635. return r;
  636. }
  637. DVector<Vector3> _Geometry::get_closest_points_between_segments(const Vector3& p1,const Vector3& p2,const Vector3& q1,const Vector3& q2) {
  638. Vector3 r1, r2;
  639. Geometry::get_closest_points_between_segments(p1,p2,q1,q2,r1,r2);
  640. DVector<Vector3> r;
  641. r.resize(2);
  642. r.set(0,r1);
  643. r.set(1,r2);
  644. return r;
  645. }
  646. Vector3 _Geometry::get_closest_point_to_segment(const Vector3& p_point, const Vector3& p_a,const Vector3& p_b) {
  647. Vector3 s[2]={p_a,p_b};
  648. return Geometry::get_closest_point_to_segment(p_point,s);
  649. }
  650. Variant _Geometry::ray_intersects_triangle( const Vector3& p_from, const Vector3& p_dir, const Vector3& p_v0,const Vector3& p_v1,const Vector3& p_v2) {
  651. Vector3 res;
  652. if (Geometry::ray_intersects_triangle(p_from,p_dir,p_v0,p_v1,p_v2,&res))
  653. return res;
  654. else
  655. return Variant();
  656. }
  657. Variant _Geometry::segment_intersects_triangle( const Vector3& p_from, const Vector3& p_to, const Vector3& p_v0,const Vector3& p_v1,const Vector3& p_v2) {
  658. Vector3 res;
  659. if (Geometry::segment_intersects_triangle(p_from,p_to,p_v0,p_v1,p_v2,&res))
  660. return res;
  661. else
  662. return Variant();
  663. }
  664. bool _Geometry::point_is_inside_triangle(const Vector2& s, const Vector2& a, const Vector2& b, const Vector2& c) const {
  665. return Geometry::is_point_in_triangle(s,a,b,c);
  666. }
  667. DVector<Vector3> _Geometry::segment_intersects_sphere( const Vector3& p_from, const Vector3& p_to, const Vector3& p_sphere_pos,real_t p_sphere_radius) {
  668. DVector<Vector3> r;
  669. Vector3 res,norm;
  670. if (!Geometry::segment_intersects_sphere(p_from,p_to,p_sphere_pos,p_sphere_radius,&res,&norm))
  671. return r;
  672. r.resize(2);
  673. r.set(0,res);
  674. r.set(1,norm);
  675. return r;
  676. }
  677. DVector<Vector3> _Geometry::segment_intersects_cylinder( const Vector3& p_from, const Vector3& p_to, float p_height,float p_radius) {
  678. DVector<Vector3> r;
  679. Vector3 res,norm;
  680. if (!Geometry::segment_intersects_cylinder(p_from,p_to,p_height,p_radius,&res,&norm))
  681. return r;
  682. r.resize(2);
  683. r.set(0,res);
  684. r.set(1,norm);
  685. return r;
  686. }
  687. DVector<Vector3> _Geometry::segment_intersects_convex(const Vector3& p_from, const Vector3& p_to,const Vector<Plane>& p_planes) {
  688. DVector<Vector3> r;
  689. Vector3 res,norm;
  690. if (!Geometry::segment_intersects_convex(p_from,p_to,p_planes.ptr(),p_planes.size(),&res,&norm))
  691. return r;
  692. r.resize(2);
  693. r.set(0,res);
  694. r.set(1,norm);
  695. return r;
  696. }
  697. Vector<int> _Geometry::triangulate_polygon(const Vector<Vector2>& p_polygon) {
  698. return Geometry::triangulate_polygon(p_polygon);
  699. }
  700. Dictionary _Geometry::make_atlas(const Vector<Size2>& p_rects) {
  701. Dictionary ret;
  702. Vector<Size2i> rects;
  703. for (int i=0; i<p_rects.size(); i++) {
  704. rects.push_back(p_rects[i]);
  705. };
  706. Vector<Point2i> result;
  707. Size2i size;
  708. Geometry::make_atlas(rects, result, size);
  709. Size2 r_size = size;
  710. Vector<Point2> r_result;
  711. for (int i=0; i<result.size(); i++) {
  712. r_result.push_back(result[i]);
  713. };
  714. ret["points"] = r_result;
  715. ret["size"] = r_size;
  716. return ret;
  717. };
  718. int _Geometry::get_uv84_normal_bit(const Vector3& p_vector) {
  719. return Geometry::get_uv84_normal_bit(p_vector);
  720. }
  721. void _Geometry::_bind_methods() {
  722. ObjectTypeDB::bind_method(_MD("build_box_planes","extents"),&_Geometry::build_box_planes);
  723. ObjectTypeDB::bind_method(_MD("build_cylinder_planes","radius","height","sides","axis"),&_Geometry::build_cylinder_planes,DEFVAL(Vector3::AXIS_Z));
  724. ObjectTypeDB::bind_method(_MD("build_capsule_planes","radius","height","sides","lats","axis"),&_Geometry::build_capsule_planes,DEFVAL(Vector3::AXIS_Z));
  725. ObjectTypeDB::bind_method(_MD("segment_intersects_circle","segment_from","segment_to","circle_pos","circle_radius"),&_Geometry::segment_intersects_circle);
  726. ObjectTypeDB::bind_method(_MD("segment_intersects_segment_2d","from_a","to_a","from_b","to_b"),&_Geometry::segment_intersects_segment_2d);
  727. ObjectTypeDB::bind_method(_MD("get_closest_points_between_segments_2d","p1","q1","p2","q2"),&_Geometry::get_closest_points_between_segments_2d);
  728. ObjectTypeDB::bind_method(_MD("get_closest_points_between_segments","p1","p2","q1","q2"),&_Geometry::get_closest_points_between_segments);
  729. ObjectTypeDB::bind_method(_MD("get_closest_point_to_segment","point","s1","s2"),&_Geometry::get_closest_point_to_segment);
  730. ObjectTypeDB::bind_method(_MD("get_uv84_normal_bit","normal"),&_Geometry::get_uv84_normal_bit);
  731. ObjectTypeDB::bind_method(_MD("ray_intersects_triangle","from","dir","a","b","c"),&_Geometry::ray_intersects_triangle);
  732. ObjectTypeDB::bind_method(_MD("segment_intersects_triangle","from","to","a","b","c"),&_Geometry::segment_intersects_triangle);
  733. ObjectTypeDB::bind_method(_MD("segment_intersects_sphere","from","to","spos","sradius"),&_Geometry::segment_intersects_sphere);
  734. ObjectTypeDB::bind_method(_MD("segment_intersects_cylinder","from","to","height","radius"),&_Geometry::segment_intersects_cylinder);
  735. ObjectTypeDB::bind_method(_MD("segment_intersects_convex","from","to","planes"),&_Geometry::segment_intersects_convex);
  736. ObjectTypeDB::bind_method(_MD("point_is_inside_triangle","point","a","b","c"),&_Geometry::point_is_inside_triangle);
  737. ObjectTypeDB::bind_method(_MD("triangulate_polygon","polygon"),&_Geometry::triangulate_polygon);
  738. ObjectTypeDB::bind_method(_MD("make_atlas","sizes"),&_Geometry::make_atlas);
  739. }
  740. _Geometry::_Geometry() {
  741. singleton=this;
  742. }
  743. ///////////////////////// FILE
  744. Error _File::open_encrypted(const String& p_path, int p_mode_flags,const Vector<uint8_t>& p_key) {
  745. Error err = open(p_path,p_mode_flags);
  746. if (err)
  747. return err;
  748. FileAccessEncrypted *fae = memnew( FileAccessEncrypted );
  749. err = fae->open_and_parse(f,p_key,(p_mode_flags==WRITE)?FileAccessEncrypted::MODE_WRITE_AES256:FileAccessEncrypted::MODE_READ);
  750. if (err) {
  751. memdelete(fae);
  752. close();
  753. return err;
  754. }
  755. f=fae;
  756. return OK;
  757. }
  758. Error _File::open_encrypted_pass(const String& p_path, int p_mode_flags,const String& p_pass) {
  759. Error err = open(p_path,p_mode_flags);
  760. if (err)
  761. return err;
  762. FileAccessEncrypted *fae = memnew( FileAccessEncrypted );
  763. err = fae->open_and_parse_password(f,p_pass,(p_mode_flags==WRITE)?FileAccessEncrypted::MODE_WRITE_AES256:FileAccessEncrypted::MODE_READ);
  764. if (err) {
  765. memdelete(fae);
  766. close();
  767. return err;
  768. }
  769. f=fae;
  770. return OK;
  771. }
  772. Error _File::open(const String& p_path, int p_mode_flags) {
  773. close();
  774. Error err;
  775. f = FileAccess::open(p_path,p_mode_flags,&err);
  776. if (f)
  777. f->set_endian_swap(eswap);
  778. return err;
  779. }
  780. void _File::close(){
  781. if (f)
  782. memdelete(f);
  783. f=NULL;
  784. }
  785. bool _File::is_open() const{
  786. return f!=NULL;
  787. }
  788. void _File::seek(int64_t p_position){
  789. ERR_FAIL_COND(!f);
  790. f->seek(p_position);
  791. }
  792. void _File::seek_end(int64_t p_position){
  793. ERR_FAIL_COND(!f);
  794. f->seek_end(p_position);
  795. }
  796. int64_t _File::get_pos() const{
  797. ERR_FAIL_COND_V(!f,0);
  798. return f->get_pos();
  799. }
  800. int64_t _File::get_len() const{
  801. ERR_FAIL_COND_V(!f,0);
  802. return f->get_len();
  803. }
  804. bool _File::eof_reached() const{
  805. ERR_FAIL_COND_V(!f,false);
  806. return f->eof_reached();
  807. }
  808. uint8_t _File::get_8() const{
  809. ERR_FAIL_COND_V(!f,0);
  810. return f->get_8();
  811. }
  812. uint16_t _File::get_16() const{
  813. ERR_FAIL_COND_V(!f,0);
  814. return f->get_16();
  815. }
  816. uint32_t _File::get_32() const{
  817. ERR_FAIL_COND_V(!f,0);
  818. return f->get_32();
  819. }
  820. uint64_t _File::get_64() const{
  821. ERR_FAIL_COND_V(!f,0);
  822. return f->get_64();
  823. }
  824. float _File::get_float() const{
  825. ERR_FAIL_COND_V(!f,0);
  826. return f->get_float();
  827. }
  828. double _File::get_double() const{
  829. ERR_FAIL_COND_V(!f,0);
  830. return f->get_double();
  831. }
  832. real_t _File::get_real() const{
  833. ERR_FAIL_COND_V(!f,0);
  834. return f->get_real();
  835. }
  836. DVector<uint8_t> _File::get_buffer(int p_length) const{
  837. DVector<uint8_t> data;
  838. ERR_FAIL_COND_V(!f,data);
  839. ERR_FAIL_COND_V(p_length<0,data);
  840. if (p_length==0)
  841. return data;
  842. Error err = data.resize(p_length);
  843. ERR_FAIL_COND_V(err!=OK,data);
  844. DVector<uint8_t>::Write w = data.write();
  845. int len = f->get_buffer(&w[0],p_length);
  846. ERR_FAIL_COND_V( len < 0 , DVector<uint8_t>());
  847. w = DVector<uint8_t>::Write();
  848. if (len < p_length)
  849. data.resize(p_length);
  850. return data;
  851. }
  852. String _File::get_as_text() const {
  853. String text;
  854. String l = get_line();
  855. while(!eof_reached()) {
  856. text+=l+"\n";
  857. l = get_line();
  858. }
  859. text+=l;
  860. return text;
  861. }
  862. String _File::get_line() const{
  863. ERR_FAIL_COND_V(!f,String());
  864. return f->get_line();
  865. }
  866. Vector<String> _File::get_csv_line() const {
  867. ERR_FAIL_COND_V(!f,Vector<String>());
  868. return f->get_csv_line();
  869. }
  870. /**< use this for files WRITTEN in _big_ endian machines (ie, amiga/mac)
  871. * It's not about the current CPU type but file formats.
  872. * this flags get reset to false (little endian) on each open
  873. */
  874. void _File::set_endian_swap(bool p_swap){
  875. eswap=p_swap;
  876. if (f)
  877. f->set_endian_swap(p_swap);
  878. }
  879. bool _File::get_endian_swap(){
  880. return eswap;
  881. }
  882. Error _File::get_error() const{
  883. if (!f)
  884. return ERR_UNCONFIGURED;
  885. return f->get_error();
  886. }
  887. void _File::store_8(uint8_t p_dest){
  888. ERR_FAIL_COND(!f);
  889. f->store_8(p_dest);
  890. }
  891. void _File::store_16(uint16_t p_dest){
  892. ERR_FAIL_COND(!f);
  893. f->store_16(p_dest);
  894. }
  895. void _File::store_32(uint32_t p_dest){
  896. ERR_FAIL_COND(!f);
  897. f->store_32(p_dest);
  898. }
  899. void _File::store_64(uint64_t p_dest){
  900. ERR_FAIL_COND(!f);
  901. f->store_64(p_dest);
  902. }
  903. void _File::store_float(float p_dest){
  904. ERR_FAIL_COND(!f);
  905. f->store_float(p_dest);
  906. }
  907. void _File::store_double(double p_dest){
  908. ERR_FAIL_COND(!f);
  909. f->store_double(p_dest);
  910. }
  911. void _File::store_real(real_t p_real){
  912. ERR_FAIL_COND(!f);
  913. f->store_real(p_real);
  914. }
  915. void _File::store_string(const String& p_string){
  916. ERR_FAIL_COND(!f);
  917. f->store_string(p_string);
  918. }
  919. void _File::store_pascal_string(const String& p_string) {
  920. ERR_FAIL_COND(!f);
  921. f->store_pascal_string(p_string);
  922. };
  923. String _File::get_pascal_string() {
  924. ERR_FAIL_COND_V(!f, "");
  925. return f->get_pascal_string();
  926. };
  927. void _File::store_line(const String& p_string){
  928. ERR_FAIL_COND(!f);
  929. f->store_line(p_string);
  930. }
  931. void _File::store_buffer(const DVector<uint8_t>& p_buffer){
  932. ERR_FAIL_COND(!f);
  933. int len = p_buffer.size();
  934. if (len==0)
  935. return;
  936. DVector<uint8_t>::Read r = p_buffer.read();
  937. f->store_buffer(&r[0],len);
  938. }
  939. bool _File::file_exists(const String& p_name) const{
  940. return FileAccess::exists(p_name);
  941. }
  942. void _File::store_var(const Variant& p_var) {
  943. ERR_FAIL_COND(!f);
  944. int len;
  945. Error err = encode_variant(p_var,NULL,len);
  946. ERR_FAIL_COND( err != OK );
  947. DVector<uint8_t> buff;
  948. buff.resize(len);
  949. DVector<uint8_t>::Write w = buff.write();
  950. err = encode_variant(p_var,&w[0],len);
  951. ERR_FAIL_COND( err != OK );
  952. w=DVector<uint8_t>::Write();
  953. store_32(len);
  954. store_buffer(buff);
  955. }
  956. Variant _File::get_var() const {
  957. ERR_FAIL_COND_V(!f,Variant());
  958. uint32_t len = get_32();
  959. DVector<uint8_t> buff = get_buffer(len);
  960. ERR_FAIL_COND_V(buff.size() != len, Variant());
  961. DVector<uint8_t>::Read r = buff.read();
  962. Variant v;
  963. Error err = decode_variant(v,&r[0],len);
  964. ERR_FAIL_COND_V( err!=OK, Variant() );
  965. return v;
  966. }
  967. void _File::_bind_methods() {
  968. ObjectTypeDB::bind_method(_MD("open_encrypted","path","mode_flags","key"),&_File::open_encrypted);
  969. ObjectTypeDB::bind_method(_MD("open_encrypted_with_pass","path","mode_flags","pass"),&_File::open_encrypted_pass);
  970. ObjectTypeDB::bind_method(_MD("open","path","flags"),&_File::open);
  971. ObjectTypeDB::bind_method(_MD("close"),&_File::close);
  972. ObjectTypeDB::bind_method(_MD("is_open"),&_File::is_open);
  973. ObjectTypeDB::bind_method(_MD("seek","pos"),&_File::seek);
  974. ObjectTypeDB::bind_method(_MD("seek_end","pos"),&_File::seek_end,DEFVAL(0));
  975. ObjectTypeDB::bind_method(_MD("get_pos"),&_File::get_pos);
  976. ObjectTypeDB::bind_method(_MD("get_len"),&_File::get_len);
  977. ObjectTypeDB::bind_method(_MD("eof_reached"),&_File::eof_reached);
  978. ObjectTypeDB::bind_method(_MD("get_8"),&_File::get_8);
  979. ObjectTypeDB::bind_method(_MD("get_16"),&_File::get_16);
  980. ObjectTypeDB::bind_method(_MD("get_32"),&_File::get_32);
  981. ObjectTypeDB::bind_method(_MD("get_64"),&_File::get_64);
  982. ObjectTypeDB::bind_method(_MD("get_float"),&_File::get_float);
  983. ObjectTypeDB::bind_method(_MD("get_double"),&_File::get_double);
  984. ObjectTypeDB::bind_method(_MD("get_real"),&_File::get_real);
  985. ObjectTypeDB::bind_method(_MD("get_buffer","len"),&_File::get_buffer);
  986. ObjectTypeDB::bind_method(_MD("get_line"),&_File::get_line);
  987. ObjectTypeDB::bind_method(_MD("get_as_text"),&_File::get_as_text);
  988. ObjectTypeDB::bind_method(_MD("get_endian_swap"),&_File::get_endian_swap);
  989. ObjectTypeDB::bind_method(_MD("set_endian_swap","enable"),&_File::set_endian_swap);
  990. ObjectTypeDB::bind_method(_MD("get_error:Error"),&_File::get_error);
  991. ObjectTypeDB::bind_method(_MD("get_var"),&_File::get_var);
  992. ObjectTypeDB::bind_method(_MD("get_csv_line"),&_File::get_csv_line);
  993. ObjectTypeDB::bind_method(_MD("store_8","value"),&_File::store_8);
  994. ObjectTypeDB::bind_method(_MD("store_16","value"),&_File::store_16);
  995. ObjectTypeDB::bind_method(_MD("store_32","value"),&_File::store_32);
  996. ObjectTypeDB::bind_method(_MD("store_64","value"),&_File::store_64);
  997. ObjectTypeDB::bind_method(_MD("store_float","value"),&_File::store_float);
  998. ObjectTypeDB::bind_method(_MD("store_double","value"),&_File::store_double);
  999. ObjectTypeDB::bind_method(_MD("store_real","value"),&_File::store_real);
  1000. ObjectTypeDB::bind_method(_MD("store_buffer","buffer"),&_File::store_buffer);
  1001. ObjectTypeDB::bind_method(_MD("store_line","line"),&_File::store_line);
  1002. ObjectTypeDB::bind_method(_MD("store_string","string"),&_File::store_string);
  1003. ObjectTypeDB::bind_method(_MD("store_var","value"),&_File::store_var);
  1004. ObjectTypeDB::bind_method(_MD("store_pascal_string","string"),&_File::store_pascal_string);
  1005. ObjectTypeDB::bind_method(_MD("get_pascal_string"),&_File::get_pascal_string);
  1006. ObjectTypeDB::bind_method(_MD("file_exists","path"),&_File::file_exists);
  1007. BIND_CONSTANT( READ );
  1008. BIND_CONSTANT( WRITE );
  1009. BIND_CONSTANT( READ_WRITE );
  1010. }
  1011. _File::_File(){
  1012. f = NULL;
  1013. eswap=false;
  1014. }
  1015. _File::~_File(){
  1016. if (f)
  1017. memdelete(f);
  1018. }
  1019. ///////////////////////////////////////////////////////
  1020. Error _Directory::open(const String& p_path) {
  1021. Error err;
  1022. DirAccess *alt=DirAccess::open(p_path,&err);
  1023. if (!alt)
  1024. return err;
  1025. if (d)
  1026. memdelete(d);
  1027. d=alt;
  1028. return OK;
  1029. }
  1030. bool _Directory::list_dir_begin() {
  1031. ERR_FAIL_COND_V(!d,false);
  1032. return d->list_dir_begin();
  1033. }
  1034. String _Directory::get_next(){
  1035. ERR_FAIL_COND_V(!d,"");
  1036. return d->get_next();
  1037. }
  1038. bool _Directory::current_is_dir() const{
  1039. ERR_FAIL_COND_V(!d,false);
  1040. return d->current_is_dir();
  1041. }
  1042. void _Directory::list_dir_end(){
  1043. ERR_FAIL_COND(!d);
  1044. return d->list_dir_end();
  1045. }
  1046. int _Directory::get_drive_count(){
  1047. ERR_FAIL_COND_V(!d,0);
  1048. return d->get_drive_count();
  1049. }
  1050. String _Directory::get_drive(int p_drive){
  1051. ERR_FAIL_COND_V(!d,"");
  1052. return d->get_drive(p_drive);
  1053. }
  1054. Error _Directory::change_dir(String p_dir){
  1055. ERR_FAIL_COND_V(!d,ERR_UNCONFIGURED);
  1056. return d->change_dir(p_dir);
  1057. }
  1058. String _Directory::get_current_dir() {
  1059. ERR_FAIL_COND_V(!d,"");
  1060. return d->get_current_dir();
  1061. }
  1062. Error _Directory::make_dir(String p_dir){
  1063. ERR_FAIL_COND_V(!d,ERR_UNCONFIGURED);
  1064. return d->make_dir(p_dir);
  1065. }
  1066. Error _Directory::make_dir_recursive(String p_dir){
  1067. ERR_FAIL_COND_V(!d,ERR_UNCONFIGURED);
  1068. return d->make_dir_recursive(p_dir);
  1069. }
  1070. bool _Directory::file_exists(String p_file){
  1071. ERR_FAIL_COND_V(!d,false);
  1072. return d->file_exists(p_file);
  1073. }
  1074. bool _Directory::dir_exists(String p_dir) {
  1075. ERR_FAIL_COND_V(!d,false);
  1076. return d->dir_exists(p_dir);
  1077. }
  1078. int _Directory::get_space_left(){
  1079. ERR_FAIL_COND_V(!d,0);
  1080. return d->get_space_left();
  1081. }
  1082. Error _Directory::copy(String p_from,String p_to){
  1083. ERR_FAIL_COND_V(!d,ERR_UNCONFIGURED);
  1084. return d->copy(p_from,p_to);
  1085. }
  1086. Error _Directory::rename(String p_from, String p_to){
  1087. ERR_FAIL_COND_V(!d,ERR_UNCONFIGURED);
  1088. return d->rename(p_from,p_to);
  1089. }
  1090. Error _Directory::remove(String p_name){
  1091. ERR_FAIL_COND_V(!d,ERR_UNCONFIGURED);
  1092. return d->remove(p_name);
  1093. }
  1094. void _Directory::_bind_methods() {
  1095. ObjectTypeDB::bind_method(_MD("open:Error","path"),&_Directory::open);
  1096. ObjectTypeDB::bind_method(_MD("list_dir_begin"),&_Directory::list_dir_begin);
  1097. ObjectTypeDB::bind_method(_MD("get_next"),&_Directory::get_next);
  1098. ObjectTypeDB::bind_method(_MD("current_is_dir"),&_Directory::current_is_dir);
  1099. ObjectTypeDB::bind_method(_MD("list_dir_end"),&_Directory::list_dir_end);
  1100. ObjectTypeDB::bind_method(_MD("get_drive_count"),&_Directory::get_drive_count);
  1101. ObjectTypeDB::bind_method(_MD("get_drive","idx"),&_Directory::get_drive);
  1102. ObjectTypeDB::bind_method(_MD("change_dir:Error","todir"),&_Directory::change_dir);
  1103. ObjectTypeDB::bind_method(_MD("get_current_dir"),&_Directory::get_current_dir);
  1104. ObjectTypeDB::bind_method(_MD("make_dir:Error","name"),&_Directory::make_dir);
  1105. ObjectTypeDB::bind_method(_MD("make_dir_recursive:Error","name"),&_Directory::make_dir_recursive);
  1106. ObjectTypeDB::bind_method(_MD("file_exists","name"),&_Directory::file_exists);
  1107. ObjectTypeDB::bind_method(_MD("dir_exists","name"),&_Directory::dir_exists);
  1108. // ObjectTypeDB::bind_method(_MD("get_modified_time","file"),&_Directory::get_modified_time);
  1109. ObjectTypeDB::bind_method(_MD("get_space_left"),&_Directory::get_space_left);
  1110. ObjectTypeDB::bind_method(_MD("copy:Error","from","to"),&_Directory::copy);
  1111. ObjectTypeDB::bind_method(_MD("rename:Error","from","to"),&_Directory::rename);
  1112. ObjectTypeDB::bind_method(_MD("remove:Error","file"),&_Directory::remove);
  1113. }
  1114. _Directory::_Directory() {
  1115. d = DirAccess::create(DirAccess::ACCESS_RESOURCES);
  1116. }
  1117. _Directory::~_Directory() {
  1118. if (d)
  1119. memdelete(d);
  1120. }
  1121. String _Marshalls::variant_to_base64(const Variant& p_var) {
  1122. int len;
  1123. Error err = encode_variant(p_var,NULL,len);
  1124. ERR_FAIL_COND_V( err != OK, "" );
  1125. DVector<uint8_t> buff;
  1126. buff.resize(len);
  1127. DVector<uint8_t>::Write w = buff.write();
  1128. err = encode_variant(p_var,&w[0],len);
  1129. ERR_FAIL_COND_V( err != OK, "" );
  1130. int b64len = len / 3 * 4 + 4 + 1;
  1131. DVector<uint8_t> b64buff;
  1132. b64buff.resize(b64len);
  1133. DVector<uint8_t>::Write w64 = b64buff.write();
  1134. int strlen = base64_encode((char*)(&w64[0]), (char*)(&w[0]), len);
  1135. //OS::get_singleton()->print("len is %i, vector size is %i\n", b64len, strlen);
  1136. w64[strlen] = 0;
  1137. String ret = (char*)&w64[0];
  1138. return ret;
  1139. };
  1140. Variant _Marshalls::base64_to_variant(const String& p_str) {
  1141. int strlen = p_str.length();
  1142. CharString cstr = p_str.ascii();
  1143. DVector<uint8_t> buf;
  1144. buf.resize(strlen / 4 * 3 + 1);
  1145. DVector<uint8_t>::Write w = buf.write();
  1146. int len = base64_decode((char*)(&w[0]), (char*)cstr.get_data(), strlen);
  1147. Variant v;
  1148. Error err = decode_variant(v, &w[0], len);
  1149. ERR_FAIL_COND_V( err!=OK, Variant() );
  1150. return v;
  1151. };
  1152. void _Marshalls::_bind_methods() {
  1153. ObjectTypeDB::bind_method(_MD("variant_to_base64:String","variant"),&_Marshalls::variant_to_base64);
  1154. ObjectTypeDB::bind_method(_MD("base64_to_variant:Variant","base64_str"),&_Marshalls::base64_to_variant);
  1155. };
  1156. ////////////////
  1157. Error _Semaphore::wait() {
  1158. return semaphore->wait();
  1159. }
  1160. Error _Semaphore::post() {
  1161. return semaphore->post();
  1162. }
  1163. void _Semaphore::_bind_methods() {
  1164. ObjectTypeDB::bind_method(_MD("wait:Error"),&_Semaphore::wait);
  1165. ObjectTypeDB::bind_method(_MD("post:Error"),&_Semaphore::post);
  1166. }
  1167. _Semaphore::_Semaphore() {
  1168. semaphore =Semaphore::create();
  1169. }
  1170. _Semaphore::~_Semaphore(){
  1171. memdelete(semaphore);
  1172. }
  1173. ///////////////
  1174. void _Mutex::lock() {
  1175. mutex->lock();
  1176. }
  1177. Error _Mutex::try_lock(){
  1178. return mutex->try_lock();
  1179. }
  1180. void _Mutex::unlock(){
  1181. mutex->unlock();
  1182. }
  1183. void _Mutex::_bind_methods() {
  1184. ObjectTypeDB::bind_method(_MD("lock"),&_Mutex::lock);
  1185. ObjectTypeDB::bind_method(_MD("try_lock:Error"),&_Mutex::try_lock);
  1186. ObjectTypeDB::bind_method(_MD("unlock"),&_Mutex::unlock);
  1187. }
  1188. _Mutex::_Mutex() {
  1189. mutex =Mutex::create();
  1190. }
  1191. _Mutex::~_Mutex(){
  1192. memdelete(mutex);
  1193. }
  1194. ///////////////
  1195. void _Thread::_start_func(void *ud) {
  1196. Ref<_Thread>* tud=(Ref<_Thread>*)ud;
  1197. Ref<_Thread> t=*tud;
  1198. memdelete(tud);
  1199. Variant::CallError ce;
  1200. const Variant* arg[1]={&t->userdata};
  1201. t->ret=t->target_instance->call(t->target_method,arg,1,ce);
  1202. if (ce.error!=Variant::CallError::CALL_OK) {
  1203. String reason;
  1204. switch(ce.error) {
  1205. case Variant::CallError::CALL_ERROR_INVALID_ARGUMENT: {
  1206. reason="Invalid Argument #"+itos(ce.argument);
  1207. } break;
  1208. case Variant::CallError::CALL_ERROR_TOO_MANY_ARGUMENTS: {
  1209. reason="Too Many Arguments";
  1210. } break;
  1211. case Variant::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS: {
  1212. reason="Too Many Arguments";
  1213. } break;
  1214. case Variant::CallError::CALL_ERROR_INVALID_METHOD: {
  1215. reason="Method Not Found";
  1216. } break;
  1217. default: {}
  1218. }
  1219. ERR_EXPLAIN("Could not call function '"+t->target_method.operator String()+"'' starting thread ID: "+t->get_id()+" Reason: "+reason);
  1220. ERR_FAIL();
  1221. }
  1222. }
  1223. Error _Thread::start(Object *p_instance,const StringName& p_method,const Variant& p_userdata,int p_priority) {
  1224. ERR_FAIL_COND_V(active,ERR_ALREADY_IN_USE);
  1225. ERR_FAIL_COND_V(!p_instance,ERR_INVALID_PARAMETER);
  1226. ERR_FAIL_COND_V(p_method==StringName(),ERR_INVALID_PARAMETER);
  1227. ERR_FAIL_INDEX_V(p_priority,3,ERR_INVALID_PARAMETER);
  1228. ret=Variant();
  1229. target_method=p_method;
  1230. target_instance=p_instance;
  1231. userdata=p_userdata;
  1232. active=true;
  1233. Ref<_Thread> *ud = memnew( Ref<_Thread>(this) );
  1234. Thread::Settings s;
  1235. s.priority=(Thread::Priority)p_priority;
  1236. thread = Thread::create(_start_func,ud,s);
  1237. if (!thread) {
  1238. active=false;
  1239. target_method=StringName();
  1240. target_instance=NULL;
  1241. userdata=Variant();
  1242. return ERR_CANT_CREATE;
  1243. }
  1244. return OK;
  1245. }
  1246. String _Thread::get_id() const {
  1247. if (!thread)
  1248. return String();
  1249. return itos(thread->get_ID());
  1250. }
  1251. bool _Thread::is_active() const {
  1252. return active;
  1253. }
  1254. Variant _Thread::wait_to_finish() {
  1255. ERR_FAIL_COND_V(!thread,Variant());
  1256. ERR_FAIL_COND_V(!active,Variant());
  1257. Thread::wait_to_finish(thread);
  1258. Variant r = ret;
  1259. active=false;
  1260. target_method=StringName();
  1261. target_instance=NULL;
  1262. userdata=Variant();
  1263. thread=NULL;
  1264. return r;
  1265. }
  1266. void _Thread::_bind_methods() {
  1267. ObjectTypeDB::bind_method(_MD("start:Error","instance","method","userdata","priority"),&_Thread::start,DEFVAL(Variant()),DEFVAL(PRIORITY_NORMAL));
  1268. ObjectTypeDB::bind_method(_MD("get_id"),&_Thread::get_id);
  1269. ObjectTypeDB::bind_method(_MD("is_active"),&_Thread::is_active);
  1270. ObjectTypeDB::bind_method(_MD("wait_to_finish:var"),&_Thread::wait_to_finish);
  1271. BIND_CONSTANT( PRIORITY_LOW );
  1272. BIND_CONSTANT( PRIORITY_NORMAL );
  1273. BIND_CONSTANT( PRIORITY_HIGH );
  1274. }
  1275. _Thread::_Thread() {
  1276. active=false;
  1277. thread=NULL;
  1278. target_instance=NULL;
  1279. }
  1280. _Thread::~_Thread() {
  1281. if (active) {
  1282. ERR_EXPLAIN("Reference to a Thread object object was lost while the thread is still running..");
  1283. }
  1284. ERR_FAIL_COND(active==true);
  1285. }