core_bind.cpp 46 KB

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