| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  core_bind.h                                                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                    http://www.godotengine.org                         */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #ifndef CORE_BIND_H
 | 
					
						
							|  |  |  | #define CORE_BIND_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "io/resource_loader.h"
 | 
					
						
							|  |  |  | #include "io/resource_saver.h"
 | 
					
						
							|  |  |  | #include "os/file_access.h"
 | 
					
						
							|  |  |  | #include "os/dir_access.h"
 | 
					
						
							|  |  |  | #include "os/thread.h"
 | 
					
						
							|  |  |  | #include "os/semaphore.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _ResourceLoader : public Object  { | 
					
						
							|  |  |  | 	OBJ_TYPE(_ResourceLoader,Object); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 	static _ResourceLoader *singleton; | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static _ResourceLoader *get_singleton() { return singleton; } | 
					
						
							|  |  |  | 	Ref<ResourceInteractiveLoader> load_interactive(const String& p_path,const String& p_type_hint=""); | 
					
						
							| 
									
										
										
										
											2014-12-20 15:30:06 -03:00
										 |  |  | 	RES load(const String &p_path,const String& p_type_hint="", bool p_no_cache = false); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	DVector<String> get_recognized_extensions_for_type(const String& p_type); | 
					
						
							|  |  |  | 	void set_abort_on_missing_resources(bool p_abort); | 
					
						
							|  |  |  | 	StringArray get_dependencies(const String& p_path); | 
					
						
							|  |  |  | 	bool has(const String& p_path); | 
					
						
							| 
									
										
										
										
											2016-02-27 23:10:44 -03:00
										 |  |  | 	Ref<ResourceImportMetadata> load_import_metadata(const String& p_path); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_ResourceLoader(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _ResourceSaver : public Object  { | 
					
						
							|  |  |  | 	OBJ_TYPE(_ResourceSaver,Object); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 	static _ResourceSaver *singleton; | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 	enum SaverFlags { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		FLAG_RELATIVE_PATHS=1, | 
					
						
							|  |  |  | 		FLAG_BUNDLE_RESOURCES=2, | 
					
						
							|  |  |  | 		FLAG_CHANGE_PATH=4, | 
					
						
							|  |  |  | 		FLAG_OMIT_EDITOR_PROPERTIES=8, | 
					
						
							|  |  |  | 		FLAG_SAVE_BIG_ENDIAN=16, | 
					
						
							|  |  |  | 		FLAG_COMPRESS=32, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	static _ResourceSaver *get_singleton() { return singleton; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error save(const String &p_path,const RES& p_resource, uint32_t p_flags); | 
					
						
							|  |  |  | 	DVector<String> get_recognized_extensions(const RES& p_resource); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_ResourceSaver(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MainLoop; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _OS : public Object  { | 
					
						
							|  |  |  | 	OBJ_TYPE(_OS,Object); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 	static _OS *singleton; | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum Weekday { | 
					
						
							|  |  |  | 		DAY_SUNDAY, | 
					
						
							|  |  |  | 		DAY_MONDAY, | 
					
						
							|  |  |  | 		DAY_TUESDAY, | 
					
						
							|  |  |  | 		DAY_WEDNESDAY, | 
					
						
							|  |  |  | 		DAY_THURSDAY, | 
					
						
							|  |  |  | 		DAY_FRIDAY, | 
					
						
							|  |  |  | 		DAY_SATURDAY | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum Month { | 
					
						
							| 
									
										
										
										
											2016-03-12 19:13:57 -07:00
										 |  |  | 		/// Start at 1 to follow Windows SYSTEMTIME structure
 | 
					
						
							|  |  |  | 		/// https://msdn.microsoft.com/en-us/library/windows/desktop/ms724950(v=vs.85).aspx
 | 
					
						
							|  |  |  | 		MONTH_JANUARY = 1, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		MONTH_FEBRUARY, | 
					
						
							|  |  |  | 		MONTH_MARCH, | 
					
						
							|  |  |  | 		MONTH_APRIL, | 
					
						
							|  |  |  | 		MONTH_MAY, | 
					
						
							|  |  |  | 		MONTH_JUNE, | 
					
						
							|  |  |  | 		MONTH_JULY, | 
					
						
							|  |  |  | 		MONTH_AUGUST, | 
					
						
							|  |  |  | 		MONTH_SEPTEMBER, | 
					
						
							|  |  |  | 		MONTH_OCTOBER, | 
					
						
							|  |  |  | 		MONTH_NOVEMBER, | 
					
						
							|  |  |  | 		MONTH_DECEMBER | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Point2 get_mouse_pos() const; | 
					
						
							|  |  |  | 	void set_window_title(const String& p_title); | 
					
						
							|  |  |  | 	int get_mouse_button_state() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_clipboard(const String& p_text); | 
					
						
							|  |  |  | 	String get_clipboard() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_video_mode(const Size2& p_size, bool p_fullscreen,bool p_resizeable,int p_screen=0); | 
					
						
							|  |  |  | 	Size2 get_video_mode(int p_screen=0) const; | 
					
						
							|  |  |  | 	bool is_video_mode_fullscreen(int p_screen=0) const; | 
					
						
							|  |  |  | 	bool is_video_mode_resizable(int p_screen=0) const; | 
					
						
							|  |  |  | 	Array get_fullscreen_mode_list(int p_screen=0) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-11 18:52:42 +08:00
										 |  |  | 	virtual int get_screen_count() const; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	virtual int get_current_screen() const; | 
					
						
							|  |  |  | 	virtual void set_current_screen(int p_screen); | 
					
						
							| 
									
										
										
										
											2015-01-13 17:25:50 +08:00
										 |  |  | 	virtual Point2 get_screen_position(int p_screen=0) const; | 
					
						
							| 
									
										
										
										
											2015-01-11 19:35:53 +08:00
										 |  |  | 	virtual Size2 get_screen_size(int p_screen=0) const; | 
					
						
							| 
									
										
										
										
											2016-05-29 13:40:00 -03:00
										 |  |  | 	virtual int get_screen_dpi(int p_screen=0) const; | 
					
						
							| 
									
										
										
										
											2015-01-11 15:47:27 +08:00
										 |  |  | 	virtual Point2 get_window_position() const; | 
					
						
							|  |  |  | 	virtual void set_window_position(const Point2& p_position); | 
					
						
							| 
									
										
										
										
											2015-01-11 17:36:56 +08:00
										 |  |  | 	virtual Size2 get_window_size() const; | 
					
						
							|  |  |  | 	virtual void set_window_size(const Size2& p_size); | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	virtual void set_window_fullscreen(bool p_enabled); | 
					
						
							|  |  |  | 	virtual bool is_window_fullscreen() const; | 
					
						
							|  |  |  | 	virtual void set_window_resizable(bool p_enabled); | 
					
						
							|  |  |  | 	virtual bool is_window_resizable() const; | 
					
						
							|  |  |  | 	virtual void set_window_minimized(bool p_enabled); | 
					
						
							|  |  |  | 	virtual bool is_window_minimized() const; | 
					
						
							|  |  |  | 	virtual void set_window_maximized(bool p_enabled); | 
					
						
							|  |  |  | 	virtual bool is_window_maximized() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-03 04:18:28 +00:00
										 |  |  | 	virtual void set_borderless_window(bool p_borderless); | 
					
						
							|  |  |  | 	virtual bool get_borderless_window() const; | 
					
						
							| 
									
										
										
										
											2015-01-10 15:47:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-17 07:46:11 -03:00
										 |  |  | 	Error native_video_play(String p_path, float p_volume, String p_audio_track, String p_subtitle_track); | 
					
						
							| 
									
										
										
										
											2014-03-13 22:57:24 -03:00
										 |  |  | 	bool native_video_is_playing(); | 
					
						
							|  |  |  | 	void native_video_pause(); | 
					
						
							| 
									
										
										
										
											2016-02-19 15:09:06 +11:00
										 |  |  | 	void native_video_unpause(); | 
					
						
							| 
									
										
										
										
											2014-03-13 22:57:24 -03:00
										 |  |  | 	void native_video_stop(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void set_iterations_per_second(int p_ips); | 
					
						
							|  |  |  | 	int get_iterations_per_second() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 23:35:39 +08:00
										 |  |  | 	void set_target_fps(int p_fps); | 
					
						
							|  |  |  | 	float get_target_fps() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void set_low_processor_usage_mode(bool p_enabled); | 
					
						
							|  |  |  | 	bool is_in_low_processor_usage_mode() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String get_executable_path() const; | 
					
						
							| 
									
										
										
										
											2014-06-29 23:24:05 -03:00
										 |  |  | 	int execute(const String& p_path, const Vector<String> & p_arguments,bool p_blocking,Array p_output=Array()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Error kill(int p_pid); | 
					
						
							|  |  |  | 	Error shell_open(String p_uri); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-05 12:39:30 -03:00
										 |  |  | 	int get_process_ID() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	bool has_environment(const String& p_var) const; | 
					
						
							|  |  |  | 	String get_environment(const String& p_var) const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String get_name() const; | 
					
						
							|  |  |  | 	Vector<String> get_cmdline_args(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String get_locale() const; | 
					
						
							|  |  |  | 	String get_model_name() const; | 
					
						
							|  |  |  | 	MainLoop *get_main_loop() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String get_custom_level() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	float get_frames_per_second() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void dump_memory_to_file(const String& p_file); | 
					
						
							|  |  |  | 	void dump_resources_to_file(const String& p_file); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void print_resources_in_use(bool p_short=false); | 
					
						
							|  |  |  | 	void print_all_resources(const String& p_to_file); | 
					
						
							| 
									
										
										
										
											2014-02-26 10:08:17 -03:00
										 |  |  | 	void print_all_textures_by_size(); | 
					
						
							| 
									
										
										
										
											2014-05-14 01:22:15 -03:00
										 |  |  | 	void print_resources_by_type(const Vector<String>& p_types); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool has_touchscreen_ui_hint() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 	bool is_debug_build() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	String get_unique_ID() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 13:11:55 -03:00
										 |  |  | 	String get_scancode_string(uint32_t p_code) const; | 
					
						
							|  |  |  | 	bool is_scancode_unicode(uint32_t p_unicode) const; | 
					
						
							|  |  |  | 	int find_scancode_from_string(const String& p_code) const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	struct Date { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int year; | 
					
						
							|  |  |  | 		Month month; | 
					
						
							|  |  |  | 		int day; | 
					
						
							|  |  |  | 		Weekday weekday; | 
					
						
							|  |  |  | 		bool dst; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct Time { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int hour; | 
					
						
							|  |  |  | 		int min; | 
					
						
							|  |  |  | 		int sec; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 22:10:38 -03:00
										 |  |  | 	void set_use_file_access_save_and_swap(bool p_enable); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void set_icon(const Image& p_icon); | 
					
						
							| 
									
										
										
										
											2015-06-06 03:40:56 +02:00
										 |  |  | 	Dictionary get_date(bool utc) const; | 
					
						
							|  |  |  | 	Dictionary get_time(bool utc) const; | 
					
						
							| 
									
										
										
										
											2016-03-15 21:17:10 -07:00
										 |  |  | 	Dictionary get_datetime(bool utc) const; | 
					
						
							|  |  |  | 	Dictionary get_datetime_from_unix_time(uint64_t unix_time_val) const; | 
					
						
							|  |  |  | 	uint64_t get_unix_time_from_datetime(Dictionary datetime) const; | 
					
						
							| 
									
										
										
										
											2015-06-06 05:35:38 +02:00
										 |  |  | 	Dictionary get_time_zone_info() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	uint64_t get_unix_time() const; | 
					
						
							| 
									
										
										
										
											2016-01-10 18:24:55 -03:00
										 |  |  | 	uint64_t get_system_time_secs() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int get_static_memory_usage() const; | 
					
						
							|  |  |  | 	int get_static_memory_peak_usage() const; | 
					
						
							|  |  |  | 	int get_dynamic_memory_usage() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void delay_usec(uint32_t p_usec) const; | 
					
						
							|  |  |  | 	void delay_msec(uint32_t p_msec) const; | 
					
						
							|  |  |  | 	uint32_t get_ticks_msec() const; | 
					
						
							| 
									
										
										
										
											2015-04-12 17:55:01 -03:00
										 |  |  | 	uint32_t get_splash_tick_msec() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-13 22:57:24 -03:00
										 |  |  | 	bool can_use_threads() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool can_draw() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int  get_frames_drawn(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool is_stdout_verbose() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int get_processor_count() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 	enum SystemDir { | 
					
						
							|  |  |  | 		SYSTEM_DIR_DESKTOP, | 
					
						
							|  |  |  | 		SYSTEM_DIR_DCIM, | 
					
						
							|  |  |  | 		SYSTEM_DIR_DOCUMENTS, | 
					
						
							|  |  |  | 		SYSTEM_DIR_DOWNLOADS, | 
					
						
							|  |  |  | 		SYSTEM_DIR_MOVIES, | 
					
						
							|  |  |  | 		SYSTEM_DIR_MUSIC, | 
					
						
							|  |  |  | 		SYSTEM_DIR_PICTURES, | 
					
						
							|  |  |  | 		SYSTEM_DIR_RINGTONES, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-04 18:09:51 -03:00
										 |  |  | 	enum ScreenOrientation { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		SCREEN_ORIENTATION_LANDSCAPE, | 
					
						
							|  |  |  | 		SCREEN_ORIENTATION_PORTRAIT, | 
					
						
							|  |  |  | 		SCREEN_ORIENTATION_REVERSE_LANDSCAPE, | 
					
						
							|  |  |  | 		SCREEN_ORIENTATION_REVERSE_PORTRAIT, | 
					
						
							|  |  |  | 		SCREEN_ORIENTATION_SENSOR_LANDSCAPE, | 
					
						
							|  |  |  | 		SCREEN_ORIENTATION_SENSOR_PORTRAIT, | 
					
						
							|  |  |  | 		SCREEN_ORIENTATION_SENSOR, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 	String get_system_dir(SystemDir p_dir) const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	String get_data_dir() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-21 09:39:46 -03:00
										 |  |  | 	void alert(const String& p_alert,const String& p_title="ALERT!"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-04 18:09:51 -03:00
										 |  |  | 	void set_screen_orientation(ScreenOrientation p_orientation); | 
					
						
							|  |  |  | 	ScreenOrientation get_screen_orientation() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-27 23:40:04 +09:00
										 |  |  | 	void set_keep_screen_on(bool p_enabled); | 
					
						
							|  |  |  | 	bool is_keep_screen_on() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-21 01:43:42 -03:00
										 |  |  | 	void set_time_scale(float p_scale); | 
					
						
							|  |  |  | 	float get_time_scale(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-15 01:19:46 -03:00
										 |  |  | 	bool is_ok_left_and_cancel_right() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-31 20:22:38 -03:00
										 |  |  | 	Error set_thread_name(const String& p_name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-05 19:14:33 -03:00
										 |  |  | 	void set_use_vsync(bool p_enable); | 
					
						
							|  |  |  | 	bool is_vsnc_enabled() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	static _OS *get_singleton() { return singleton; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_OS(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | VARIANT_ENUM_CAST(_OS::SystemDir); | 
					
						
							| 
									
										
										
										
											2015-08-04 18:09:51 -03:00
										 |  |  | VARIANT_ENUM_CAST(_OS::ScreenOrientation); | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | class _Geometry : public Object { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	OBJ_TYPE(_Geometry, Object); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static _Geometry *singleton; | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static _Geometry *get_singleton(); | 
					
						
							|  |  |  | 	DVector<Plane> build_box_planes(const Vector3& p_extents); | 
					
						
							|  |  |  | 	DVector<Plane> build_cylinder_planes(float p_radius, float p_height, int p_sides, Vector3::Axis p_axis=Vector3::AXIS_Z); | 
					
						
							|  |  |  | 	DVector<Plane> build_capsule_planes(float p_radius, float p_height, int p_sides, int p_lats, Vector3::Axis p_axis=Vector3::AXIS_Z); | 
					
						
							|  |  |  | 	Variant segment_intersects_segment_2d(const Vector2& p_from_a,const Vector2& p_to_a,const Vector2& p_from_b,const Vector2& p_to_b); | 
					
						
							|  |  |  | 	DVector<Vector2> get_closest_points_between_segments_2d( const Vector2& p1,const Vector2& q1, const Vector2& p2,const Vector2& q2); | 
					
						
							|  |  |  | 	DVector<Vector3> get_closest_points_between_segments(const Vector3& p1,const Vector3& p2,const Vector3& q1,const Vector3& q2); | 
					
						
							|  |  |  | 	Vector3 get_closest_point_to_segment(const Vector3& p_point, const Vector3& p_a,const Vector3& p_b); | 
					
						
							|  |  |  | 	Variant ray_intersects_triangle( const Vector3& p_from, const Vector3& p_dir, const Vector3& p_v0,const Vector3& p_v1,const Vector3& p_v2); | 
					
						
							|  |  |  | 	Variant segment_intersects_triangle( const Vector3& p_from, const Vector3& p_to, const Vector3& p_v0,const Vector3& p_v1,const Vector3& p_v2); | 
					
						
							| 
									
										
										
										
											2015-02-14 12:09:52 -03:00
										 |  |  | 	bool point_is_inside_triangle(const Vector2& s, const Vector2& a, const Vector2& b, const Vector2& c) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	DVector<Vector3> segment_intersects_sphere( const Vector3& p_from, const Vector3& p_to, const Vector3& p_sphere_pos,real_t p_sphere_radius); | 
					
						
							|  |  |  | 	DVector<Vector3> segment_intersects_cylinder( const Vector3& p_from, const Vector3& p_to, float p_height,float p_radius); | 
					
						
							|  |  |  | 	DVector<Vector3> segment_intersects_convex(const Vector3& p_from, const Vector3& p_to,const Vector<Plane>& p_planes); | 
					
						
							|  |  |  | 	real_t segment_intersects_circle(const Vector2& p_from, const Vector2& p_to, const Vector2& p_circle_pos, real_t p_circle_radius); | 
					
						
							| 
									
										
										
										
											2014-10-07 01:31:49 -03:00
										 |  |  | 	int get_uv84_normal_bit(const Vector3& p_vector); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Vector<int> triangulate_polygon(const Vector<Vector2>& p_polygon); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-03 00:10:51 -03:00
										 |  |  | 	Dictionary make_atlas(const Vector<Size2>& p_rects); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_Geometry(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _File : public Reference { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	OBJ_TYPE(_File,Reference); | 
					
						
							|  |  |  | 	FileAccess *f; | 
					
						
							|  |  |  | 	bool eswap; | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum ModeFlags  { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		READ=1, | 
					
						
							|  |  |  | 		WRITE=2, | 
					
						
							|  |  |  | 		READ_WRITE=3, | 
					
						
							| 
									
										
										
										
											2016-01-10 15:15:04 -03:00
										 |  |  | 		WRITE_READ=7, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-14 22:43:44 -03:00
										 |  |  | 	Error open_encrypted(const String& p_path, int p_mode_flags,const Vector<uint8_t>& p_key); | 
					
						
							|  |  |  | 	Error open_encrypted_pass(const String& p_path, int p_mode_flags,const String& p_pass); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Error open(const String& p_path, int p_mode_flags); ///< open a file
 | 
					
						
							|  |  |  | 	void close(); ///< close a file
 | 
					
						
							|  |  |  | 	bool is_open() const; ///< true when file is open
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void seek(int64_t p_position); ///< seek to a given position
 | 
					
						
							|  |  |  | 	void seek_end(int64_t p_position=0); ///< seek from the end of file
 | 
					
						
							|  |  |  | 	int64_t get_pos() const; ///< get position in the file
 | 
					
						
							|  |  |  | 	int64_t get_len() const; ///< get size of the file
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool eof_reached() const; ///< reading passed EOF
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	uint8_t get_8() const; ///< get a byte
 | 
					
						
							|  |  |  | 	uint16_t get_16() const; ///< get 16 bits uint
 | 
					
						
							|  |  |  | 	uint32_t get_32() const; ///< get 32 bits uint
 | 
					
						
							|  |  |  | 	uint64_t get_64() const; ///< get 64 bits uint
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	float get_float() const; | 
					
						
							|  |  |  | 	double get_double() const; | 
					
						
							|  |  |  | 	real_t get_real() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Variant get_var() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	DVector<uint8_t> get_buffer(int p_length) const; ///< get an array of bytes
 | 
					
						
							|  |  |  | 	String get_line() const; | 
					
						
							|  |  |  | 	String get_as_text() const; | 
					
						
							| 
									
										
										
										
											2016-02-25 19:25:29 +01:00
										 |  |  | 	String get_md5(const String& p_path) const; | 
					
						
							| 
									
										
										
										
											2016-06-17 10:55:16 +03:00
										 |  |  | 	String get_sha256(const String& p_path) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/**< use this for files WRITTEN in _big_ endian machines (ie, amiga/mac)
 | 
					
						
							|  |  |  | 	 * It's not about the current CPU type but file formats. | 
					
						
							|  |  |  | 	 * this flags get reset to false (little endian) on each open | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_endian_swap(bool p_swap); | 
					
						
							|  |  |  | 	bool get_endian_swap(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error get_error() const; ///< get last error
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void store_8(uint8_t p_dest); ///< store a byte
 | 
					
						
							|  |  |  | 	void store_16(uint16_t p_dest); ///< store 16 bits uint
 | 
					
						
							|  |  |  | 	void store_32(uint32_t p_dest); ///< store 32 bits uint
 | 
					
						
							|  |  |  | 	void store_64(uint64_t p_dest); ///< store 64 bits uint
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void store_float(float p_dest); | 
					
						
							|  |  |  | 	void store_double(double p_dest); | 
					
						
							|  |  |  | 	void store_real(real_t p_real); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void store_string(const String& p_string); | 
					
						
							|  |  |  | 	void store_line(const String& p_string); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-13 22:57:24 -03:00
										 |  |  | 	virtual void store_pascal_string(const String& p_string); | 
					
						
							|  |  |  | 	virtual String get_pascal_string(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-28 15:58:39 +01:00
										 |  |  | 	Vector<String> get_csv_line(String delim=",") const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void store_buffer(const DVector<uint8_t>& p_buffer); ///< store an array of bytes
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void store_var(const Variant& p_var); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool file_exists(const String& p_name) const; ///< return true if a file exists
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_File(); | 
					
						
							|  |  |  | 	virtual ~_File(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _Directory : public Reference { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	OBJ_TYPE(_Directory,Reference); | 
					
						
							|  |  |  | 	DirAccess *d; | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error open(const String& p_path); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool list_dir_begin(); ///< This starts dir listing
 | 
					
						
							|  |  |  | 	String get_next(); | 
					
						
							|  |  |  | 	bool current_is_dir() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void list_dir_end(); ///<
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int get_drive_count(); | 
					
						
							|  |  |  | 	String get_drive(int p_drive); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error change_dir(String p_dir); ///< can be relative or absolute, return false on success
 | 
					
						
							|  |  |  | 	String get_current_dir(); ///< return current dir location
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error make_dir(String p_dir); | 
					
						
							|  |  |  | 	Error make_dir_recursive(String p_dir); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool file_exists(String p_file); | 
					
						
							| 
									
										
										
										
											2014-05-25 11:34:51 +08:00
										 |  |  | 	bool dir_exists(String p_dir); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int get_space_left(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error copy(String p_from,String p_to); | 
					
						
							|  |  |  | 	Error rename(String p_from, String p_to); | 
					
						
							|  |  |  | 	Error remove(String p_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_Directory(); | 
					
						
							|  |  |  | 	virtual ~_Directory(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _Marshalls : public Reference { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	OBJ_TYPE(_Marshalls,Reference); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String variant_to_base64(const Variant& p_var); | 
					
						
							|  |  |  | 	Variant base64_to_variant(const String& p_str); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-28 12:50:52 +02:00
										 |  |  | 	String raw_to_base64(const DVector<uint8_t>& p_arr); | 
					
						
							|  |  |  | 	DVector<uint8_t> base64_to_raw(const String& p_str); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String utf8_to_base64(const String& p_str); | 
					
						
							|  |  |  | 	String base64_to_utf8(const String& p_str); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_Marshalls() {}; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _Mutex : public Reference { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	OBJ_TYPE(_Mutex,Reference); | 
					
						
							|  |  |  | 	Mutex *mutex; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void lock(); | 
					
						
							|  |  |  | 	Error try_lock(); | 
					
						
							|  |  |  | 	void unlock(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_Mutex(); | 
					
						
							|  |  |  | 	~_Mutex(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _Semaphore : public Reference { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	OBJ_TYPE(_Semaphore,Reference); | 
					
						
							|  |  |  | 	Semaphore *semaphore; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error wait(); | 
					
						
							|  |  |  | 	Error post(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_Semaphore(); | 
					
						
							|  |  |  | 	~_Semaphore(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _Thread : public Reference { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	OBJ_TYPE(_Thread,Reference); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Variant ret; | 
					
						
							|  |  |  | 	Variant userdata; | 
					
						
							|  |  |  | 	volatile bool active; | 
					
						
							|  |  |  | 	Object *target_instance; | 
					
						
							|  |  |  | 	StringName target_method; | 
					
						
							|  |  |  | 	Thread *thread; | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 	static void _start_func(void *ud); | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum Priority { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		PRIORITY_LOW, | 
					
						
							|  |  |  | 		PRIORITY_NORMAL, | 
					
						
							|  |  |  | 		PRIORITY_HIGH | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error start(Object *p_instance,const StringName& p_method,const Variant& p_userdata=Variant(),int p_priority=PRIORITY_NORMAL); | 
					
						
							|  |  |  | 	String get_id() const; | 
					
						
							|  |  |  | 	bool is_active() const; | 
					
						
							|  |  |  | 	Variant wait_to_finish(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_Thread(); | 
					
						
							|  |  |  | 	~_Thread(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // CORE_BIND_H
 |